Skip to content
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

UI: upgrade Ember to 5.4 #26708

Merged
merged 26 commits into from
May 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
a69eb92
update to ember 5.4
hashishaw Apr 30, 2024
fb3c46d
upgrade ember-a11y-testing
hashishaw Apr 30, 2024
21d1e08
update ember-power-select
hashishaw Apr 30, 2024
1e25496
Remove extended basic-dropdown/trigger
hashishaw Apr 30, 2024
6023ccd
keep ember-data on 4.12.2
hashishaw Apr 30, 2024
14b5d78
do required changes for upgrade to ember-concurrency v4
hashishaw Apr 30, 2024
0b43c9c
bump ember-template-lint-plugin-prettier to fix lint issues
hashishaw Apr 30, 2024
ffaae49
globally disable lint rule qunit/require-expect in tests
hashishaw Apr 30, 2024
da59513
update ember-cli-page-object version to 2
hashishaw Apr 30, 2024
e7dcdf2
run lint:js:fix
hashishaw Apr 30, 2024
9a44c08
only typeInSearch, clickTrigger come from ember-power-select/test-sup…
hashishaw May 2, 2024
409a67e
Add ariaLabel to search-select component
hashishaw May 2, 2024
5ff13ea
Silence ember-data 5 deprecations only
hashishaw May 2, 2024
62fa2ae
Merge branch 'main' into ui/VAULT-26131/upgrade-ember-to-5.4
hashishaw May 3, 2024
8df9bfa
remove unused test selector
hashishaw May 2, 2024
b1ed908
ensure ember-concurrency is correctly loaded in pki and replication e…
hashishaw May 3, 2024
370e99e
update ember version in readme
hashishaw May 3, 2024
835c432
update deprecation filter
hashishaw May 3, 2024
e4db9b6
fix aws role test and shared test
hashishaw May 3, 2024
06fde1b
fix accessibility error on search-select: ARIA input fields must have…
hashishaw May 6, 2024
15c1ebf
Require ariaLabel on search select
hashishaw May 6, 2024
e258719
Merge branch 'main' into ui/VAULT-26131/upgrade-ember-to-5.4
hashishaw May 6, 2024
6e39200
fix get-credentials-card test
hashishaw May 6, 2024
a394207
Merge branch 'main' into ui/VAULT-26131/upgrade-ember-to-5.4
hashishaw May 6, 2024
52dc6a2
Add changelog
hashishaw May 6, 2024
4a568e2
Merge branch 'main' into ui/VAULT-26131/upgrade-ember-to-5.4
hashishaw May 7, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ensure ember-concurrency is correctly loaded in pki and replication e…
…ngines
  • Loading branch information
hashishaw committed May 3, 2024
commit b1ed9086755ff78fb4310e251452eb312a81b834
3 changes: 3 additions & 0 deletions ui/lib/pki/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ module.exports = buildEngine({
lazyLoading: {
enabled: false,
},
babel: {
plugins: [require.resolve('ember-concurrency/async-arrow-task-transform')],
},
isDevelopingAddon() {
return true;
},
Expand Down
1 change: 1 addition & 0 deletions ui/lib/pki/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"ember-cli-babel": "*",
"ember-cli-htmlbars": "*",
"ember-cli-typescript": "*",
"ember-concurrency": "*",
"ember-auto-import": "*",
"@hashicorp/design-system-components": "*",
"@types/ember": "latest",
Expand Down
4 changes: 4 additions & 0 deletions ui/lib/replication/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ module.exports = EngineAddon.extend({
enabled: true,
},

babel: {
plugins: [require.resolve('ember-concurrency/async-arrow-task-transform')],
},

isDevelopingAddon() {
return true;
},
Expand Down