-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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: Ember 5 deprecation stragglers #26666
UI: Ember 5 deprecation stragglers #26666
Conversation
CI Results: |
Build Results: |
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.
i wasn't totally sure how to test this PR out so i focused on reviewing the code changes. they seem safe to me 👍
@@ -68,6 +68,8 @@ module('Acceptance | secrets/secret/create, read, delete', function (hooks) { | |||
assert | |||
.dom(PAGE.infoRowValue('Automate secret deletion')) | |||
.hasText('1 second', 'displays the delete version after set when configuring the secret-engine'); | |||
// [BANDAID] avoid error from missing param for links in SecretEdit > KeyValueHeader | |||
await visit('/vault/secrets'); |
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.
ah darn, are adding those missing params something we can add easily in a different PR, or does it require a bigger change?
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.
KeyValueHeader already has a lot of complex logic, so it's not a simple fix. Ideally we want to replace that with Page::Breadcrumbs
anyway, so it didn't feel worth the effort
This PR wraps up ember 5 upgrade deprecations and fixes the test failures that happened after some of those deprecations were cleaned up.
Related PRs:
UI: Update transit links #26689
UI: add backend to secret link #26683
UI: Update custom message list filters #26653
UI: Add necessary params to links in PKI #26608
UI: Add necessary params to links in Access & KV v2 #26561
Ent tests pass