-
Notifications
You must be signed in to change notification settings - Fork 1.4k
ui package upgrades #13632
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
DaanHoogland
wants to merge
28
commits into
main
Choose a base branch
from
ghi13631-ui-package-upgrades
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
ui package upgrades #13632
Changes from all commits
Commits
Show all changes
28 commits
Select commit
Hold shift + click to select a range
2356504
lodash upgrade
7272533
ui: upgrade dompurify 3.2.6 -> 3.4.12
257fb3a
ui: upgrade moment 2.29.3 -> 2.30.1
32880fb
ui: upgrade vue-i18n 9.2.2 -> 9.14.5
e430b23
ui: upgrade js-cookie 2.2.1 -> 3.0.8
6668379
ui: upgrade axios 0.21.4 -> 1.18.1
8d20c0c
ui: upgrade @babel/core 7.18.6 -> 7.29.7
126bc39
ui: upgrade @fortawesome packages 6.5.2 -> 6.7.2
9704fe1
ui: upgrade vue + @vue/compiler-sfc 3.2.37 -> 3.5.40
c1ea9f9
ui: upgrade @vue/test-utils 2.0.0 -> 2.4.11
9aa6bcc
ui: upgrade babel-plugin-import 1.13.5 -> 1.13.8
da855ab
ui: upgrade chartjs-adapter-moment 1.0.0 -> 1.0.1
6554c0c
ui: upgrade core-js 3.23.3 -> 3.49.0
55f4863
ui: upgrade cronstrue 2.26.0 -> 2.59.0
ee7ac56
ui: upgrade eslint-plugin-import 2.26.0 -> 2.32.0
e4d3ae9
ui: upgrade minio 7.0.33 -> 7.1.3
160a77c
ui: upgrade moment-timezone 0.5.43 -> 0.5.48
ae71cf5
ui: upgrade sass 1.53.0 -> 1.101.0
5ad236d
ui: upgrade vue-cropper 1.0.3 -> 1.1.4
ecf4b6d
ui: upgrade vue-qrious 3.1.0 -> 3.1.1
667db51
ui: upgrade vue-router 4.0.16 -> 4.6.4
50c7602
ui: upgrade vue3-google-login 2.0.26 -> 2.1.4
3c21416
ui: upgrade vuex 4.0.2 -> 4.1.0
9a16fe0
ui: upgrade webpack 4.46.0 -> 4.47.0
9f50cc8
ui: fix build for Node 17+ / OpenSSL 3 and raise heap to 4 GB
148158f
ui: fix build broken by vue/vue-router/minio upgrades
b99b3b4
ui: remove stale manual OpenSSL legacy-provider README step
2fa8fd4
Address comments
vishesh92 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| #!/usr/bin/env bash | ||
| # Licensed to the Apache Software Foundation (ASF) under one | ||
| # or more contributor license agreements. See the NOTICE file | ||
| # distributed with this work for additional information | ||
| # regarding copyright ownership. The ASF licenses this file | ||
| # to you under the Apache License, Version 2.0 (the | ||
| # "License"); you may not use this file except in compliance | ||
| # with the License. You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, | ||
| # software distributed under the License is distributed on an | ||
| # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| # KIND, either express or implied. See the License for the | ||
| # specific language governing permissions and limitations | ||
| # under the License. | ||
|
|
||
| # Webpack 4 hashes with MD4, which OpenSSL 3 (Node 17+) no longer provides | ||
| # by default, causing ERR_OSSL_EVP_UNSUPPORTED. --openssl-legacy-provider | ||
| # restores it, but the flag doesn't exist before Node 17 and node refuses to | ||
| # even start with it set in NODE_OPTIONS, so only add it when needed. | ||
| NODE_MAJOR=$(node -p "process.versions.node.split('.')[0]") | ||
| if [ "$NODE_MAJOR" -ge 17 ]; then | ||
| export NODE_OPTIONS="--openssl-legacy-provider${NODE_OPTIONS:+ ${NODE_OPTIONS}}" | ||
| fi | ||
| exec "$@" |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@vishesh92 , I think this means we have the choice to
(maybe seeing more bears on the road than actually are there)