-
Notifications
You must be signed in to change notification settings - Fork 8.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
do not export all the types from licensing plugin #110942
Conversation
Pinging @elastic/kibana-core (Team:Core) |
@@ -4,7 +4,8 @@ | |||
"outDir": "./target/types", | |||
"emitDeclarationOnly": true, | |||
"declaration": true, | |||
"declarationMap": true | |||
"declarationMap": true, | |||
"isolatedModules": true, |
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.
to enforce export type
expressions when necessary. It prevents leaking an interface implementation.
@@ -4,7 +4,8 @@ | |||
"outDir": "./target/types", | |||
"emitDeclarationOnly": true, | |||
"declaration": true, | |||
"declarationMap": true | |||
"declarationMap": true, | |||
"isolatedModules": true, |
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.
🧡
⏳ Build in-progress, with failures
Failed CI Steps
Test FailuresJest Tests.x-pack/plugins/security/server/authorization/privileges.subFeatures when license allows subfeatures, but not a specific sub feature should create minimal privileges, but not augment the primary feature privileges or create the disallowed sub-feature privilegesStandard Out
Stack Trace
Jest Tests.x-pack/plugins/security/server/authorization/privileges.subFeatures when license allows subfeatures, but and a licensed sub feature should create minimal privileges, augment the primary feature privileges, and create the licensed sub-feature privilegesStandard Out
Stack Trace
Jest Tests.x-pack/plugins/features/server/feature_privilege_iterator.featurePrivilegeIterator excludes sub-feature privileges when the minimum license is not met with a gold licenseStandard Out
Stack Trace
and 6 more failures, only showing the first 3. History
To update your PR or re-run it, just comment with: |
* do not export all the types from licensing plugin * another export issue
💚 Backport successful
This backport PR will be merged automatically after passing CI. |
Summary
Closes #110902