Release v1.26.0
@backstage/backend-app-api@0.7.0
Minor Changes
- 3256f14: BREAKING: Modules are no longer loaded unless the plugin that they extend is present.
Patch Changes
-
10327fb: Deprecate the
getPathoption for thehttpRouterServiceFactoryand more generally the ability to configure plugin API paths to be anything else than/api/:pluginId/. Requests towards/api/*that do not match an installed plugin will also no longer be handled by the index router, typically instead returning a 404. -
2c50516: Fix auth cookie issuance for split backend deployments by preferring to set it against the request target host instead of origin
-
7e584d6: Fixed a bug where expired cookies would not be refreshed.
-
1a20b12: Make the auth service create and validate dedicated OBO tokens, containing the user identity proof.
-
00fca28: Implemented support for external access using both the legacy token form and static tokens.
-
d5a1fe1: Replaced winston logger with
LoggerService -
bce0879: Service-to-service authentication has been improved.
Each plugin now has the capability to generate its own signing keys for token issuance. The generated public keys are stored in a database, and they are made accessible through a newly created endpoint:
/.backstage/auth/v1/jwks.json.AuthServicecan now issue tokens with a reduced scope using thegetPluginRequestTokenmethod. This improvement enables plugins to identify the plugin originating the request. -
54f2ac8: Added
initializationoption tocreateServiceFactorywhich defines the initialization strategy for the service. The default strategy mimics the current behavior where plugin scoped services are initialized lazily by default and root scoped services are initialized eagerly. -
56f81b5: Improved error message thrown by
AuthServicewhen requesting a token for plugins that don't support the new authentication tokens. -
25ea3d2: Minor internal restructuring
-
d62bc51: Add support for limited user tokens by using user identity proof provided by the auth backend.
-
c884b9a: Automatically creates a get and delete cookie endpoint when a
user-cookiepolicy is added. -
Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/config-loader@1.8.0
- @backstage/plugin-permission-node@0.7.28
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-auth-node@0.4.12
- @backstage/cli-node@0.2.5
- @backstage/cli-common@0.1.13
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/config-loader@1.8.0
Minor Changes
-
2ce31b3: The default environment variable substitution function will now trim whitespace characters from the substituted value. This alleviates bugs where whitespace characters are mistakenly included in environment variables.
If you depend on the old behavior, you can override the default substitution function with your own, for example:
ConfigSources.default({
substitutionFunc: async name => process.env[name],
}); -
99bab65: Support parameter substitution for environment variables
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.13
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/integration@1.10.0
Minor Changes
- 7b11422: Add AWS CodeCommit URL Reader/Integration
Patch Changes
- Updated dependencies
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/repo-tools@0.8.0
Minor Changes
-
2bd291e: Adds a lint rule to
repo schema openapi lintto enforceallowReservedfor all parameters. To fix this, simply addallowReserved: trueto your parameters, like so/v1/todos:
get:
operationId: ListTodos
# ...
parameters:
- name: entity
in: query
+ allowReserved: true
schema:
type: string -
cfdc5e7: Adds two new commands,
repo schema openapi fuzzandpackage schema openapi fuzzfor fuzzing your plugins documented with OpenAPI. This can help find bugs in your application code through the use of auto-generated schema-compliant inputs. For more information on the underlying library this leverages, take a look at the docs.
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/config-loader@1.8.0
- @backstage/cli-node@0.2.5
- @backstage/catalog-model@1.4.5
- @backstage/cli-common@0.1.13
- @backstage/errors@1.2.4
@backstage/plugin-apollo-explorer@0.2.0
Minor Changes
- c664b15: feat(apollo-explorer): allow callbacks using apiholder
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.0
Minor Changes
- 06a6725: New auth backend module to add
azure-easyauthprovider. Note that as part of this change the default provider ID has been changed fromeasyAuthtoazureEasyAuth, which means that if you switch to this new module you need to update your app config as well as theproviderprop of theProxiedSignInPagein the frontend.
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-auth-backend-module-bitbucket-provider@0.1.0
Minor Changes
- ba763b6: Migrate the Bitbucket auth provider to the new
@backstage/plugin-auth-backend-module-bitbucket-providermodule package.
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.0
Minor Changes
- c26218d: Created a separate module for the Cloudflare Access auth provider
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-auth-react@0.1.0
Minor Changes
-
c884b9a: BREAKING: Removed the path option from
CookieAuthRefreshProvideranduseCookieAuthRefresh.A new
CookieAuthRedirectcomponent has been added to redirect a public app bundle to the protected one when using theapp-backendwith a separate public entry point.
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/errors@1.2.4
@backstage/plugin-badges-backend@0.4.0
Minor Changes
- 88d4769: Fix unauthorized requests by allowing unauthenticated requests.
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-catalog@1.19.0
Minor Changes
- 18c7f12: Add
isApiType()to EntitySwitch routing functions.
Patch Changes
- bcb2674: Added a "create something similar" button to the
<AboutCard>that is visible and links to the scaffolder template corresponding to the entity'sbackstage.io/source-templateannotation, if present. - 4ef0dcf: Fixed a bug that prevented the default
entityPresentationApifrom being set in apps using the new frontend system. - abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - 7495b36: Fixed sorting of columns created with
CatalogTable.columns.createLabelColumn. - Updated dependencies
- @backstage/plugin-search-react@1.7.10
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/plugin-permission-react@0.4.22
- @backstage/integration-react@1.1.26
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-scaffolder-common@1.5.1
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-catalog-backend-module-backstage-openapi@0.2.0
Minor Changes
- 2e2167a: The name and title of the returned openapi doc entity are now configurable
Patch Changes
- 58763e8: Use direct access of openapi.json files and not external route
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-catalog-node@1.11.1
- @backstage/backend-openapi-utils@0.1.10
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-catalog-backend-module-github@0.6.0
Minor Changes
-
29c3898: Remove use of
EventBrokerandEventSubscriberfor the GitHub org data providers.BREAKING CHANGE:
GithubOrgEntityProvider.onEventmade privateGithubOrgEntityProvider.supportsEventTopicsremovedeventBrokeroption was removed fromGithubMultiOrgEntityProvider.fromConfigGithubMultiOrgEntityProvider.supportsEventTopicsremoved
This change only impacts users who still use the legacy backend system and who still use
eventBrokeras option when creating these entity providers.Please pass the
EventsServiceinstance as optioneventsinstead. You can find more information at the installation documentation.
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - 469e87f: Properly instantiate
GithubMultiOrgEntityProviderandGithubOrgEntityProviderwithEventsServiceif defined - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-catalog-backend@1.21.1
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/catalog-client@1.6.4
- @backstage/integration@1.10.0
- @backstage/plugin-events-node@0.3.3
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/plugin-catalog-common@1.0.22
@backstage/plugin-github-pull-requests-board@0.2.0
Minor Changes
- c6cafe6: Fixed bug in CardHeader not expecting commit status as an array as returned by GraphQL
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - 617faf0: Handle null values returned from GitHub for the statusCheckRollup value on the commit object
- Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/integration@1.10.0
- @backstage/catalog-model@1.4.5
@backstage/plugin-kubernetes-backend@0.17.0
Minor Changes
- 6c19c14: BREAKING:
KubernetesProxynow requires theDiscoveryServiceto be passed to the constuctor - 5dd8177: BREAKING Winston logger has been replaced with
LoggerService
Patch Changes
- f5cec55: Fixing issue where
BackstageCredentialswere not properly forwarded for all calls - dd269e9: Fixed a bug where the proxy handler did not properly handle a missing header
- 9d89aed: Fixed a crash reading
credentialsfromundefined. - e5a2ccc: Updated dependency
@types/http-proxy-middlewareto^1.0.0. - Updated dependencies
- @backstage/plugin-kubernetes-node@0.1.11
- @backstage/backend-common@0.21.7
- @backstage/plugin-permission-node@0.7.28
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/catalog-client@1.6.4
- @backstage/integration-aws-node@0.1.12
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-kubernetes-common@0.7.5
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-notifications@0.2.0
Minor Changes
- 939b4ec: Notifications-backend URL query parameter changed from
minimal_severitytominimumSeverity. - ec40998: On the Notifications page, the user can trigger "Save" or "Mark as read" actions once for multiple selected notifications.
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - 9a41a7b: Migrate signals and notifications to the new backend in local development
- 939b4ec: The severity icons now get their colors from the theme.
- Updated dependencies
- @backstage/plugin-notifications-common@0.0.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/theme@0.5.3
- @backstage/plugin-signals-react@0.0.3
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/plugin-notifications-backend@0.2.0
Minor Changes
- 939b4ec: Notifications-backend URL query parameter changed from
minimal_severitytominimumSeverity. - ec40998: On the Notifications page, the user can trigger "Save" or "Mark as read" actions once for multiple selected notifications.
Patch Changes
- 0d99528: Notification processor functions are now renamed to
preProcessandpostProcess. Additionally, processor name is now required to be returned bygetName. A new processor functionalityprocessOptionswas added to process options before sending the notification. - e003e0e: The ordered list of notifications' severities is exported by notifications-common for reusability.
- 9a41a7b: Migrate signals and notifications to the new backend in local development
- 9987066: fix: retrieve relations and children when mapping group entities for notifications
- 6206039: Fix entity owner resolution in notifications
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-notifications-common@0.0.3
- @backstage/plugin-notifications-node@0.1.3
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/catalog-client@1.6.4
- @backstage/plugin-events-node@0.3.3
- @backstage/plugin-signals-node@0.1.3
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-scaffolder-backend-module-yeoman@0.3.0
Minor Changes
- fae9638: Add examples for
run:yeomanscaffolder action.
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/plugin-scaffolder-node-test-utils@0.1.3
- @backstage/types@1.1.1
@backstage/plugin-search-backend-module-elasticsearch@1.4.0
Minor Changes
- 4d754e3: When using the New Backend System, the Elasticsearch provider will only be added if the
search.elasticsearchconfig section exists.
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-search-backend-node@1.2.21
- @backstage/integration-aws-node@0.1.12
- @backstage/config@1.2.0
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-tech-insights-node@0.6.0
Minor Changes
- 5dd8177: BREAKING Winston logger has been replaced with
LoggerService
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/config@1.2.0
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/app-defaults@1.5.4
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-app-api@1.12.4
- @backstage/core-plugin-api@1.9.2
- @backstage/theme@0.5.3
- @backstage/plugin-permission-react@0.4.22
@backstage/backend-common@0.21.7
Patch Changes
- 007e7ea: Added placeholder for
listPublicServiceKeys()in theAuthServicereturned bycreateLegacyAuthAdapters. - 00fca28: Ensure that
ServerTokenManageralso reads the newbackend.auth.externalAccesssettings - 25ea3d2: Minor internal restructuring
- e31bacc: Added
pullOptionstoDockerContainerRunner#runContainermethod to pass down options when pulling an image. - 7b11422: Add AWS CodeCommit URL Reader/Integration
- 75a53b8: KubernetesContainerRunner.runContainer no longer closes the
logStreamit receives as input. - Updated dependencies
- @backstage/config-loader@1.8.0
- @backstage/backend-app-api@0.7.0
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/integration@1.10.0
- @backstage/integration-aws-node@0.1.12
- @backstage/backend-dev-utils@0.1.4
- @backstage/cli-common@0.1.13
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/backend-defaults@0.2.17
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-app-api@0.7.0
@backstage/backend-dynamic-feature-service@0.2.9
Patch Changes
- 82ff03e: Use
PackageRoletype explicitly - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/config-loader@1.8.0
- @backstage/backend-app-api@0.7.0
- @backstage/plugin-permission-node@0.7.28
- @backstage/plugin-catalog-backend@1.21.1
- @backstage/plugin-events-backend@0.3.4
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-search-backend-node@1.2.21
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-auth-node@0.4.12
- @backstage/cli-node@0.2.5
- @backstage/plugin-events-node@0.3.3
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/plugin-app-node@0.1.17
- @backstage/cli-common@0.1.13
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.13
- @backstage/plugin-search-common@1.2.11
@backstage/backend-openapi-utils@0.1.10
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/errors@1.2.4
@backstage/backend-plugin-api@0.6.17
Patch Changes
- 007e7ea: Added a new required
listPublicServiceKeystoAuthService. - 54f2ac8: Added
initializationoption tocreateServiceFactorywhich defines the initialization strategy for the service. The default strategy mimics the current behavior where plugin scoped services are initialized lazily by default and root scoped services are initialized eagerly. - 4fecffc: The credentials passed to the
issueUserCookiemethod of theHttpAuthServiceare no longer required to represent a user principal. - Updated dependencies
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-auth-node@0.4.12
- @backstage/config@1.2.0
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.13
@backstage/backend-tasks@0.5.22
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/backend-test-utils@0.3.7
Patch Changes
- 3256f14:
startTestBackendwill now add placeholder plugins when a modules are provided without their parent plugin. - 007e7ea: Added mock of the new
listPublicServiceKeysmethod forAuthService. - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-app-api@0.7.0
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/catalog-client@1.6.4
Patch Changes
- dad7505: Fix the
CatalogClient::getEntitiesmethod to only sort the resulting entities in case noorder-parameter is provided. - Updated dependencies
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/cli@0.26.3
Patch Changes
-
c884b9a: Fix the bundle public subpath configuration.
-
e3c213e: Add the deprecation plugin to the default linter setup, switched off.
This allows to disable deprecation warnings for
backstage-cli repo list-deprecationswith inline comments. -
4946f03: Updated dependency
webpack-dev-serverto^5.0.0. -
6b5ddbe: Fix the backend plugin to use correct plugin id
-
4fecffc: When building the frontend app public assets are now also copied to the public dist directory when in use.
-
ed9260f: Added
versions:migratecommand to help move packages to the new@backstage-communitynamespace -
Updated dependencies
- @backstage/eslint-plugin@0.1.7
- @backstage/config-loader@1.8.0
- @backstage/integration@1.10.0
- @backstage/cli-node@0.2.5
- @backstage/catalog-model@1.4.5
- @backstage/cli-common@0.1.13
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/release-manifests@0.0.11
- @backstage/types@1.1.1
@backstage/cli-node@0.2.5
Patch Changes
- ed9260f: Added
versions:migratecommand to help move packages to the new@backstage-communitynamespace - Updated dependencies
- @backstage/cli-common@0.1.13
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/core-app-api@1.12.4
Patch Changes
- c884b9a: The app is now aware of if it is being served from the
app-backendwith a separate public and protected bundles. When in protected mode the app will now continuously refresh the session cookie, as well as clear the cookie if the user signs out. - abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-plugin-api@1.9.2
- @backstage/version-bridge@1.0.8
- @backstage/config@1.2.0
- @backstage/types@1.1.1
@backstage/core-compat-api@0.2.4
Patch Changes
- d05d4bd: Moved
@backstage/core-app-apito dev dependencies. - abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/version-bridge@1.0.8
@backstage/core-components@0.14.4
Patch Changes
- ed5c901: No
undefinedclass name used atMarkdownContentif no custom class name was provided. - abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - f546e38: Added Link component in
TabUIproviding functionality like copy link or open in new tab. - Updated dependencies
- @backstage/core-plugin-api@1.9.2
- @backstage/theme@0.5.3
- @backstage/version-bridge@1.0.8
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/core-plugin-api@1.9.2
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/version-bridge@1.0.8
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/create-app@0.5.14
Patch Changes
- 366cf07: Bumped create-app version.
- 036b9b3: Bumped create-app version.
- 2e1218c: Fix docs reference
- Updated dependencies
- @backstage/cli-common@0.1.13
@backstage/dev-utils@1.0.31
Patch Changes
- 9a41a7b: Allow defining custom sidebar item for page and login for the development app
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - 995f66b: add @backstage/no-top-level-material-ui-4-imports lint rule
- Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-app-api@1.12.4
- @backstage/app-defaults@1.5.4
- @backstage/core-plugin-api@1.9.2
- @backstage/theme@0.5.3
- @backstage/integration-react@1.1.26
- @backstage/catalog-model@1.4.5
@backstage/eslint-plugin@0.1.7
Patch Changes
- 9ef572d: fix lint rule fixer for more than one
Component + Prop - 3a7eee7: eslint autofix for mui ThemeProvider
- d55828d: add fixer logic for import aliases
@backstage/frontend-app-api@0.6.4
Patch Changes
- 83f24f6: add
@backstage/no-top-level-material-ui-4-importslint rule - c884b9a: The app is now aware of if it is being served from the
app-backendwith a separate public and protected bundles. When in protected mode the app will now continuously refresh the session cookie, as well as clear the cookie if the user signs out. - 7ef7cc8: Fix duplicated subpath on routes resolved by the
useRouteRefhook. - abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-app-api@1.12.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/theme@0.5.3
- @backstage/version-bridge@1.0.8
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/frontend-plugin-api@0.6.4
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - 35452b3: Fixed the type for
useRouteRef, which wasn't handling optional external route refs correctly. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/version-bridge@1.0.8
- @backstage/types@1.1.1
@backstage/frontend-test-utils@0.1.6
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/frontend-app-api@0.6.4
- @backstage/frontend-plugin-api@0.6.4
- @backstage/test-utils@1.5.4
- @backstage/types@1.1.1
@backstage/integration-react@1.1.26
Patch Changes
- cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-plugin-api@1.9.2
- @backstage/integration@1.10.0
- @backstage/config@1.2.0
@techdocs/cli@1.8.9
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-techdocs-node@1.12.3
- @backstage/catalog-model@1.4.5
- @backstage/cli-common@0.1.13
- @backstage/config@1.2.0
@backstage/test-utils@1.5.4
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/core-app-api@1.12.4
- @backstage/core-plugin-api@1.9.2
- @backstage/theme@0.5.3
- @backstage/plugin-permission-react@0.4.22
- @backstage/config@1.2.0
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.13
@backstage/theme@0.5.3
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0.
@backstage/version-bridge@1.0.8
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0.
@backstage/plugin-adr@0.6.17
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-search-react@1.7.10
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/integration-react@1.1.26
- @backstage/catalog-model@1.4.5
- @backstage/plugin-adr-common@0.2.22
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-adr-backend@0.4.14
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/catalog-client@1.6.4
- @backstage/integration@1.10.0
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-adr-common@0.2.22
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-adr-common@0.2.22
Patch Changes
- Updated dependencies
- @backstage/integration@1.10.0
- @backstage/catalog-model@1.4.5
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-airbrake@0.3.34
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/dev-utils@1.0.31
- @backstage/core-plugin-api@1.9.2
- @backstage/test-utils@1.5.4
- @backstage/catalog-model@1.4.5
@backstage/plugin-airbrake-backend@0.3.14
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - e5a2ccc: Updated dependency
@types/http-proxy-middlewareto^1.0.0. - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/config@1.2.0
@backstage/plugin-allure@0.1.50
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-analytics-module-ga@0.2.4
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/config@1.2.0
@backstage/plugin-analytics-module-ga4@0.2.4
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/config@1.2.0
@backstage/plugin-analytics-module-newrelic-browser@0.1.4
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/config@1.2.0
@backstage/plugin-apache-airflow@0.2.24
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
@backstage/plugin-api-docs@0.11.4
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog@1.19.0
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/plugin-permission-react@0.4.22
- @backstage/catalog-model@1.4.5
- @backstage/plugin-catalog-common@1.0.22
@backstage/plugin-app-backend@0.3.65
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - c884b9a: Track assets namespace in the cache store, implement a cookie authentication for when the public entry is enabled and used with the new auth services.
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/config-loader@1.8.0
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/plugin-app-node@0.1.17
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/plugin-app-node@0.1.17
Patch Changes
- Updated dependencies
- @backstage/config-loader@1.8.0
- @backstage/backend-plugin-api@0.6.17
@backstage/plugin-app-visualizer@0.1.5
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
@backstage/plugin-auth-backend@0.22.4
Patch Changes
- f02fe79: Refactored the
azure-easyauthprovider to use the implementation from@backstage/plugin-auth-backend-module-azure-easyauth-provider. - d62bc51: Added token type header parameter and user identity proof to issued user tokens.
- ba763b6: Migrate the Bitbucket auth provider to the new
@backstage/plugin-auth-backend-module-bitbucket-providermodule package. - bf4d71a: Initial implementation of the
/v1/userinfoendpoint, which is now able to parse and return thesubandentclaims from a Backstage user token. - c26218d: Deprecated some of the Cloudflare Access types and used the implementation from
@backstage/plugin-auth-backend-module-cloudflare-access-provider - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-auth-backend-module-atlassian-provider@0.1.9
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.0
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.0
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.9
- @backstage/plugin-auth-node@0.4.12
- @backstage/plugin-auth-backend-module-oidc-provider@0.1.8
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.12
- @backstage/catalog-client@1.6.4
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.0
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-auth-backend-module-github-provider@0.1.14
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.14
- @backstage/plugin-auth-backend-module-google-provider@0.1.14
- @backstage/plugin-auth-backend-module-microsoft-provider@0.1.12
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.14
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.10
- @backstage/plugin-auth-backend-module-okta-provider@0.0.10
@backstage/plugin-auth-backend-module-atlassian-provider@0.1.9
Patch Changes
- 269b4c1: Read scopes from config and pass to AtlassianProvider as they are required
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
@backstage/plugin-auth-backend-module-aws-alb-provider@0.1.9
Patch Changes
-
f286d59: Added support for AWS GovCloud (US) regions
-
30f5a51: Added
authModuleAwsAlbProvideras a default export.It can now be used like this in your backend:
backend.add(import('@backstage/plugin-auth-backend-module-aws-alb-provider')); -
Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-auth-backend@0.22.4
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/errors@1.2.4
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.12
Patch Changes
- e0ed31c: Add user id annotation sign-in resolver
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/plugin-auth-backend-module-github-provider@0.1.14
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
@backstage/plugin-auth-backend-module-gitlab-provider@0.1.14
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
@backstage/plugin-auth-backend-module-google-provider@0.1.14
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
@backstage/plugin-auth-backend-module-guest-provider@0.1.3
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-auth-backend-module-microsoft-provider@0.1.12
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
@backstage/plugin-auth-backend-module-oauth2-provider@0.1.14
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.10
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/errors@1.2.4
@backstage/plugin-auth-backend-module-oidc-provider@0.1.8
Patch Changes
- 28eb473: Support revoke refresh token to oidc logout function
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-auth-backend@0.22.4
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
@backstage/plugin-auth-backend-module-okta-provider@0.0.10
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
@backstage/plugin-auth-backend-module-pinniped-provider@0.1.11
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/config@1.2.0
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.1.9
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/catalog-model@1.4.5
@backstage/plugin-auth-node@0.4.12
Patch Changes
- d62bc51: Add
tokenTypesexport with constants for various Backstage token types. - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/plugin-azure-devops@0.4.3
Patch Changes
-
95b0573:
getAllTeamsnow accepts an optionallimitparameter which can be used to return more than the default limit of 100 teams from the Azure DevOps APIpullRequestOptionshave been equipped withteamsLimitso that the property can be used withgetAllTeams -
4d895b3: Fixed bug in EntityPageAzurePipeline component where build definition annotation used for viewing pipelines
-
abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. -
cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. -
Updated dependencies
- @backstage/plugin-azure-devops-common@0.4.1
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/plugin-permission-react@0.4.22
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-azure-devops-backend@0.6.4
Patch Changes
-
95b0573:
getAllTeamsnow accepts an optionallimitparameter which can be used to return more than the default limit of 100 teams from the Azure DevOps APIpullRequestOptionshave been equipped withteamsLimitso that the property can be used withgetAllTeams -
d5a1fe1: Replaced winston logger with
LoggerService -
c7c4053: Fixed a bug where the
azureDevOps.tokenwas not truly optional -
Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-azure-devops-common@0.4.1
- @backstage/plugin-permission-node@0.7.28
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/integration@1.10.0
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-azure-devops-common@0.4.1
Patch Changes
-
95b0573:
getAllTeamsnow accepts an optionallimitparameter which can be used to return more than the default limit of 100 teams from the Azure DevOps APIpullRequestOptionshave been equipped withteamsLimitso that the property can be used withgetAllTeams -
Updated dependencies
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-azure-sites@0.1.23
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - cdb5ffa: Added the
no-top-level-material-ui-4-importsESLint rule to aid with the migration to Material UI v5 - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/theme@0.5.3
- @backstage/plugin-permission-react@0.4.22
- @backstage/catalog-model@1.4.5
- @backstage/plugin-azure-sites-common@0.1.3
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-azure-sites-backend@0.3.4
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-permission-node@0.7.28
- @backstage/backend-plugin-api@0.6.17
- @backstage/catalog-client@1.6.4
- @backstage/plugin-catalog-node@1.11.1
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-azure-sites-common@0.1.3
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-badges@0.2.58
Patch Changes
- 93c1d9c: Update README to fix invalid import command
- Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-bazaar@0.2.26
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-bazaar-backend@0.3.15
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/config@1.2.0
@backstage/plugin-bitbucket-cloud-common@0.2.18
Patch Changes
- Updated dependencies
- @backstage/integration@1.10.0
@backstage/plugin-bitrise@0.1.61
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-catalog-backend@1.21.1
Patch Changes
-
cfdc5e7: Fixes an issue where
/analyze-locationwould incorrectly throw a 500 error on an invalid url. -
d5a1fe1: Replaced winston logger with
LoggerService -
c52f7ac: Make entity collection errors a little quieter in the logs.
Instead of logging a warning line when an entity has an error during processing, it will now instead emit an event on the event broker.
This only removes a single log line, however it is possible to add the log line back if it is required by subscribing to the
CATALOG_ERRORS_TOPICas shown below.env.eventBroker.subscribe({
supportsEventTopics(): string[] {
return [CATALOG_ERRORS_TOPIC];
},
async onEvent(
params: EventParams<{
entity: string;
location?: string;
errors: Array<Error>;
}>,
): Promise<void> {
const { entity, location, errors } = params.eventPayload;
for (const error of errors) {
env.logger.warn(error.message, {
entity,
location,
});
}
},
}); -
Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-permission-node@0.7.28
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/catalog-client@1.6.4
- @backstage/integration@1.10.0
- @backstage/plugin-events-node@0.3.3
- @backstage/plugin-search-backend-module-catalog@0.1.22
- @backstage/plugin-catalog-node@1.11.1
- @backstage/backend-openapi-utils@0.1.10
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-catalog-backend-module-aws@0.3.12
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/integration@1.10.0
- @backstage/integration-aws-node@0.1.12
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-kubernetes-common@0.7.5
@backstage/plugin-catalog-backend-module-azure@0.1.37
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/integration@1.10.0
- @backstage/plugin-catalog-node@1.11.1
- @backstage/config@1.2.0
- @backstage/plugin-catalog-common@1.0.22
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.2.4
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/catalog-client@1.6.4
- @backstage/integration@1.10.0
- @backstage/plugin-events-node@0.3.3
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/plugin-bitbucket-cloud-common@0.2.18
- @backstage/plugin-catalog-common@1.0.22
@backstage/plugin-catalog-backend-module-bitbucket-server@0.1.31
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/integration@1.10.0
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-catalog-backend-module-gcp@0.1.18
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/plugin-kubernetes-common@0.7.5
@backstage/plugin-catalog-backend-module-gerrit@0.1.34
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/integration@1.10.0
- @backstage/plugin-catalog-node@1.11.1
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-catalog-backend-module-github-org@0.1.12
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-catalog-backend-module-github@0.6.0
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-events-node@0.3.3
- @backstage/plugin-catalog-node@1.11.1
- @backstage/config@1.2.0
@backstage/plugin-catalog-backend-module-gitlab@0.3.15
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/integration@1.10.0
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.4.22
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-catalog-backend@1.21.1
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-events-node@0.3.3
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-catalog-backend-module-ldap@0.5.33
Patch Changes
- Updated dependencies
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.22
@backstage/plugin-catalog-backend-module-msgraph@0.5.25
Patch Changes
- 9b6320f: Retry msgraph API calls, due to frequent ETIMEDOUT errors. Also allow disabling fetching user photos.
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/plugin-catalog-common@1.0.22
@backstage/plugin-catalog-backend-module-openapi@0.1.35
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-catalog-backend@1.21.1
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.22
@backstage/plugin-catalog-backend-module-puppetdb@0.1.23
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-scaffolder-common@1.5.1
@backstage/plugin-catalog-backend-module-unprocessed@0.4.4
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/plugin-catalog-unprocessed-entities-common@0.0.1
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-catalog-graph@0.4.4
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/types@1.1.1
@backstage/plugin-catalog-import@0.10.10
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/integration-react@1.1.26
- @backstage/catalog-client@1.6.4
- @backstage/integration@1.10.0
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-catalog-common@1.0.22
@backstage/plugin-catalog-node@1.11.1
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-node@0.7.28
- @backstage/backend-plugin-api@0.6.17
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-catalog-react@1.11.3
Patch Changes
- 47dec6f: Added the
no-top-level-material-ui-4-importsESLint rule to aid with the migration to Material UI v5 - b863830: Change behavior in EntityAutoCompletePicker to only hide filter if there are no available options. Previously the filter was hidden if there were <= 1 available options.
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/version-bridge@1.0.8
- @backstage/plugin-permission-react@0.4.22
- @backstage/integration-react@1.1.26
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-catalog-unprocessed-entities@0.2.3
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-cicd-statistics@0.1.36
Patch Changes
- 72f0622: Added the
no-top-level-material-ui-4-importsESLint rule to aid with the migration to Material UI v5 - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-cicd-statistics-module-gitlab@0.1.30
Patch Changes
- Updated dependencies
- @backstage/plugin-cicd-statistics@0.1.36
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-circleci@0.3.34
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-cloudbuild@0.5.1
Patch Changes
- 4be6335: Changed the column that serves as a hyperlink from SOURCE to BUILD.
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-code-climate@0.1.34
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-code-coverage@0.2.27
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-code-coverage-backend@0.2.31
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/catalog-client@1.6.4
- @backstage/integration@1.10.0
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-codescene@0.1.26
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/theme@0.5.3
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-config-schema@0.1.54
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - c43315a: Added the
no-top-level-material-ui-4-importsESLint rule to aid with the migration to Material UI v5 - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/plugin-cost-insights@0.12.23
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - 43ca784: Updated dependency
@types/yupto^0.32.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/theme@0.5.3
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/plugin-cost-insights-common@0.1.2
@backstage/plugin-devtools@0.1.13
Patch Changes
- Updated dependencies
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/plugin-permission-react@0.4.22
- @backstage/errors@1.2.4
- @backstage/plugin-devtools-common@0.1.9
@backstage/plugin-devtools-backend@0.3.3
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/config-loader@1.8.0
- @backstage/plugin-permission-node@0.7.28
- @backstage/backend-plugin-api@0.6.17
- @backstage/cli-common@0.1.13
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-devtools-common@0.1.9
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-dynatrace@10.0.3
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-entity-feedback@0.2.17
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/plugin-entity-feedback-common@0.1.3
@backstage/plugin-entity-feedback-backend@0.2.14
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-entity-feedback-common@0.1.3
@backstage/plugin-entity-validation@0.1.19
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/plugin-catalog-common@1.0.22
@backstage/plugin-events-backend@0.3.4
Patch Changes
- 7899e55: Allow unauthenticated requests for HTTP ingress.
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-events-node@0.3.3
- @backstage/config@1.2.0
@backstage/plugin-events-backend-module-aws-sqs@0.3.3
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-events-node@0.3.3
- @backstage/config@1.2.0
- @backstage/types@1.1.1
@backstage/plugin-events-backend-module-azure@0.2.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-events-node@0.3.3
@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-events-node@0.3.3
@backstage/plugin-events-backend-module-gerrit@0.2.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-events-node@0.3.3
@backstage/plugin-events-backend-module-github@0.2.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-events-node@0.3.3
- @backstage/config@1.2.0
@backstage/plugin-events-backend-module-gitlab@0.2.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-events-node@0.3.3
- @backstage/config@1.2.0
@backstage/plugin-events-backend-test-utils@0.1.27
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.3.3
@backstage/plugin-events-node@0.3.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
@backstage/plugin-explore@0.4.20
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-search-react@1.7.10
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/plugin-explore-react@0.0.38
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/plugin-explore-common@0.0.2
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-explore-backend@0.0.27
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-search-backend-module-explore@0.1.21
- @backstage/config@1.2.0
- @backstage/types@1.1.1
- @backstage/plugin-explore-common@0.0.2
@backstage/plugin-explore-react@0.0.38
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-plugin-api@1.9.2
- @backstage/plugin-explore-common@0.0.2
@backstage/plugin-firehydrant@0.2.18
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-fossa@0.2.66
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-gcalendar@0.3.27
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/errors@1.2.4
@backstage/plugin-gcp-projects@0.3.50
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
@backstage/plugin-git-release-manager@0.3.46
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/integration@1.10.0
@backstage/plugin-github-actions@0.6.15
Patch Changes
- 76320a7: Added the
no-top-level-material-ui-4-importsESLint rule to aid with the migration to Material UI v5 - abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/integration-react@1.1.26
- @backstage/integration@1.10.0
- @backstage/catalog-model@1.4.5
@backstage/plugin-github-deployments@0.1.65
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/integration-react@1.1.26
- @backstage/integration@1.10.0
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-github-issues@0.4.1
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/integration@1.10.0
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-gitops-profiles@0.3.49
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
@backstage/plugin-gocd@0.1.40
Patch Changes
- b9d7c57: Updated README
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-graphiql@0.3.7
Patch Changes
- d137034: Added the
no-top-level-material-ui-4-importsESLint rule to aid with the migration to Material UI v5 - abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
@backstage/plugin-graphql-voyager@0.1.16
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
@backstage/plugin-home@0.7.3
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/plugin-home-react@0.1.12
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-app-api@1.12.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/theme@0.5.3
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
@backstage/plugin-home-react@0.1.12
Patch Changes
- 293347f: Added ESLint rule
no-top-level-material-ui-4-importsin thehome-reactplugin to migrate the Material UI imports. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
@backstage/plugin-ilert@0.2.23
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - 7a3789a: Added the
no-top-level-material-ui-4-importsESLint rule to aid with the migration to Material UI v5 - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-jenkins@0.9.9
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - 20f01d6: Updated dependency
@types/testing-library__jest-domto^6.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/plugin-jenkins-common@0.1.25
@backstage/plugin-jenkins-backend@0.4.4
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-permission-node@0.7.28
- @backstage/backend-plugin-api@0.6.17
- @backstage/catalog-client@1.6.4
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-jenkins-common@0.1.25
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-kafka@0.3.34
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-kafka-backend@0.3.15
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-kubernetes@0.11.9
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-kubernetes-react@0.3.4
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/plugin-kubernetes-common@0.7.5
@backstage/plugin-kubernetes-cluster@0.0.10
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-kubernetes-react@0.3.4
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/plugin-kubernetes-common@0.7.5
@backstage/plugin-kubernetes-node@0.1.11
Patch Changes
- f5cec55: Fixing issue where
BackstageCredentialswere not properly forwarded for all calls - Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/catalog-model@1.4.5
- @backstage/types@1.1.1
- @backstage/plugin-kubernetes-common@0.7.5
@backstage/plugin-kubernetes-react@0.3.4
Patch Changes
- e6d474f: Fixed ResourceUtilization component for POD Memory Limits
- 58800ba: Added the
no-top-level-material-ui-4-importsESLint rule to aid with the migration to Material UI v5 - abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-kubernetes-common@0.7.5
@backstage/plugin-lighthouse@0.4.19
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/plugin-lighthouse-common@0.1.5
@backstage/plugin-lighthouse-backend@0.4.10
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/catalog-client@1.6.4
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/types@1.1.1
- @backstage/plugin-lighthouse-common@0.1.5
@backstage/plugin-linguist@0.1.19
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/plugin-linguist-common@0.1.2
@backstage/plugin-linguist-backend@0.5.15
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/catalog-client@1.6.4
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-linguist-common@0.1.2
@backstage/plugin-microsoft-calendar@0.1.16
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/errors@1.2.4
@backstage/plugin-newrelic@0.3.49
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
@backstage/plugin-newrelic-dashboard@0.3.9
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-nomad@0.1.15
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-nomad-backend@0.1.19
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-notifications-common@0.0.3
Patch Changes
- 0d99528: Notification processor functions are now renamed to
preProcessandpostProcess. Additionally, processor name is now required to be returned bygetName. A new processor functionalityprocessOptionswas added to process options before sending the notification. - e003e0e: The ordered list of notifications' severities is exported by notifications-common for reusability.
@backstage/plugin-notifications-node@0.1.3
Patch Changes
- 0d99528: Notification processor functions are now renamed to
preProcessandpostProcess. Additionally, processor name is now required to be returned bygetName. A new processor functionalityprocessOptionswas added to process options before sending the notification. - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-notifications-common@0.0.3
- @backstage/backend-plugin-api@0.6.17
- @backstage/catalog-client@1.6.4
- @backstage/plugin-signals-node@0.1.3
- @backstage/catalog-model@1.4.5
@backstage/plugin-octopus-deploy@0.2.16
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/plugin-scaffolder-react@1.8.4
- @backstage/catalog-model@1.4.5
@backstage/plugin-opencost@0.2.9
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
@backstage/plugin-org@0.6.24
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/catalog-model@1.4.5
- @backstage/plugin-catalog-common@1.0.22
@backstage/plugin-org-react@0.1.23
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - cfb2b78: Added the
no-top-level-material-ui-4-importsESLint rule to aid with the migration to Material UI v5 - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
@backstage/plugin-pagerduty@0.7.6
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/plugin-home-react@0.1.12
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-periskop@0.1.32
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-periskop-backend@0.2.15
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/config@1.2.0
@backstage/plugin-permission-backend@0.5.41
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-permission-node@0.7.28
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-permission-backend-module-allow-all-policy@0.1.14
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-node@0.7.28
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-permission-node@0.7.28
Patch Changes
- 29fa05b: Fixed an issue causing
ServerPermissionClientto generate an invalid token for authorizing permissions against the permission backend. - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-permission-react@0.4.22
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/core-plugin-api@1.9.2
- @backstage/config@1.2.0
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-playlist@0.2.8
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-search-react@1.7.10
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/plugin-permission-react@0.4.22
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-permission-common@0.7.13
- @backstage/plugin-playlist-common@0.1.15
@backstage/plugin-playlist-backend@0.3.21
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-permission-node@0.7.28
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-permission-common@0.7.13
- @backstage/plugin-playlist-common@0.1.15
@backstage/plugin-proxy-backend@0.4.15
Patch Changes
- e5a2ccc: Updated dependency
@types/http-proxy-middlewareto^1.0.0. - 43ca784: Updated dependency
@types/yupto^0.32.0. - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/config@1.2.0
@backstage/plugin-puppetdb@0.1.17
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-rollbar@0.4.34
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-rollbar-backend@0.1.62
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/config@1.2.0
@backstage/plugin-scaffolder@1.19.3
Patch Changes
- 4f1f6ca: Use default value for
MyGroupsPickerif provided - 605c971: Allow the task list search to work on the Scaffolder template title.
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - 87d2eb8: Updated dependency
json-schema-libraryto^9.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - 419e948: Don't show login prompt if token is set in the state
- Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/plugin-permission-react@0.4.22
- @backstage/plugin-scaffolder-react@1.8.4
- @backstage/integration-react@1.1.26
- @backstage/catalog-client@1.6.4
- @backstage/integration@1.10.0
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-scaffolder-common@1.5.1
@backstage/plugin-scaffolder-backend@1.22.4
Patch Changes
- f34a9b1: The
catalog:writeaction now automatically adds abackstage.io/template-sourceannotation, indicating which Scaffolder template was used to create the entity. - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-permission-node@0.7.28
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.7
- @backstage/plugin-scaffolder-backend-module-gitlab@0.3.3
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-scaffolder-backend-module-github@0.2.7
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-scaffolder-backend-module-gerrit@0.1.9
- @backstage/plugin-auth-node@0.4.12
- @backstage/catalog-client@1.6.4
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.2.7
- @backstage/plugin-scaffolder-backend-module-azure@0.1.9
- @backstage/plugin-scaffolder-backend-module-gitea@0.1.7
- @backstage/integration@1.10.0
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.15
- @backstage/plugin-permission-common@0.7.13
- @backstage/plugin-scaffolder-common@1.5.1
@backstage/plugin-scaffolder-backend-module-azure@0.1.9
Patch Changes
- 33f958a: Improve examples to ensure consistency across all publish actions
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-scaffolder-backend-module-bitbucket@0.2.7
Patch Changes
- 33f958a: Improve examples to ensure consistency across all publish actions
- Updated dependencies
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.7
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.7
Patch Changes
- 8dd33a1: Added examples for publish:bitbucketCloud actions
- 33f958a: Improve examples to ensure consistency across all publish actions
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.7
Patch Changes
- 4a15c86: Add examples for
publish:bitbucketServerscaffolder action & improve related tests - Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.18
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.41
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-backend-module-gerrit@0.1.9
Patch Changes
- 0fb178e: Add examples for
publish:gerrit:reviewscaffolder action & improve related tests - Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-scaffolder-backend-module-gitea@0.1.7
Patch Changes
- 33f958a: Improve examples to ensure consistency across all publish actions
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-scaffolder-backend-module-github@0.2.7
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - 33f958a: Improve examples to ensure consistency across all publish actions
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-scaffolder-backend-module-gitlab@0.3.3
Patch Changes
- aa514d1: Add examples for
publish:gitlab:merge-requestscaffolder action & improve related tests - 52f40ea: Add examples for
gitlab:group:ensureExistsscaffolder action & improve related tests - 33f958a: Improve examples to ensure consistency across all publish actions
- d112225: Add examples for
gitlab:projectDeployToken:createscaffolder action & improve related tests - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-scaffolder-backend-module-rails@0.4.34
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-backend-module-sentry@0.1.25
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-scaffolder-node@0.4.3
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-scaffolder-common@1.5.1
@backstage/plugin-scaffolder-node-test-utils@0.1.3
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-test-utils@0.3.7
- @backstage/plugin-scaffolder-node@0.4.3
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-react@1.8.4
Patch Changes
-
abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. -
87d2eb8: Updated dependency
json-schema-libraryto^9.0.0. -
cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. -
0e692cf: Added ESLint rule
no-top-level-material-ui-4-importsto migrate the Material UI imports. -
df99f62: The
valuesent on thecreateanalytics event (fired when a Scaffolder template is executed) is now set to the number of minutes saved by executing the template. This value is derived from thebackstage.io/time-savedannotation on the template entity, if available.Note: the
createevent is now captured in the<Workflow>component. If you are directly making use of the alpha-exported<Stepper>component, an analyticscreateevent will no longer be captured on your behalf. -
Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/theme@0.5.3
- @backstage/version-bridge@1.0.8
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/types@1.1.1
- @backstage/plugin-scaffolder-common@1.5.1
@backstage/plugin-search@1.4.10
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-search-react@1.7.10
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/version-bridge@1.0.8
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-search-backend@1.5.7
Patch Changes
- 2bd291e: Allow reserved characters in requests.
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/repo-tools@0.8.0
- @backstage/plugin-permission-node@0.7.28
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-search-backend-node@1.2.21
- @backstage/backend-openapi-utils@0.1.10
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.13
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-search-backend-module-catalog@0.1.22
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-search-backend-node@1.2.21
- @backstage/backend-tasks@0.5.22
- @backstage/catalog-client@1.6.4
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-permission-common@0.7.13
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-search-backend-module-explore@0.1.21
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-search-backend-node@1.2.21
- @backstage/backend-tasks@0.5.22
- @backstage/config@1.2.0
- @backstage/plugin-explore-common@0.0.2
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-search-backend-module-pg@0.5.26
Patch Changes
-
cf163a5: Enable module only on supported databases
Also pass logger to the service
-
Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-search-backend-node@1.2.21
- @backstage/config@1.2.0
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-search-backend-module-stack-overflow-collator@0.1.10
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-search-backend-node@1.2.21
- @backstage/backend-tasks@0.5.22
- @backstage/config@1.2.0
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-search-backend-module-techdocs@0.1.22
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-techdocs-node@1.12.3
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-search-backend-node@1.2.21
- @backstage/backend-tasks@0.5.22
- @backstage/catalog-client@1.6.4
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-permission-common@0.7.13
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-search-backend-node@1.2.21
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-permission-common@0.7.13
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-search-react@1.7.10
Patch Changes
- 8d50bd3: add mui imports eslint rule
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/theme@0.5.3
- @backstage/version-bridge@1.0.8
- @backstage/types@1.1.1
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-sentry@0.5.19
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-shortcuts@0.3.23
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/theme@0.5.3
- @backstage/types@1.1.1
@backstage/plugin-signals@0.0.5
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - 9a41a7b: Migrate signals and notifications to the new backend in local development
- f06458c: fixed typo in docs
- Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/theme@0.5.3
- @backstage/plugin-signals-react@0.0.3
- @backstage/types@1.1.1
@backstage/plugin-signals-backend@0.1.3
Patch Changes
- 5f9877b: Fix unauthorized signals connection by allowing unauthenticated requests
- 9a41a7b: Migrate signals and notifications to the new backend in local development
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/plugin-events-node@0.3.3
- @backstage/plugin-signals-node@0.1.3
- @backstage/config@1.2.0
- @backstage/types@1.1.1
@backstage/plugin-signals-node@0.1.3
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/plugin-events-node@0.3.3
- @backstage/config@1.2.0
- @backstage/types@1.1.1
@backstage/plugin-signals-react@0.0.3
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - f06458c: fixed typo in docs
- Updated dependencies
- @backstage/core-plugin-api@1.9.2
- @backstage/types@1.1.1
@backstage/plugin-sonarqube@0.7.16
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/plugin-sonarqube-react@0.1.15
@backstage/plugin-sonarqube-backend@0.2.19
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-sonarqube-react@0.1.15
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-splunk-on-call@0.4.23
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
@backstage/plugin-stack-overflow@0.1.29
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-search-react@1.7.10
- @backstage/plugin-home-react@0.1.12
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/config@1.2.0
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-stack-overflow-backend@0.2.21
Patch Changes
- Updated dependencies
- @backstage/plugin-search-backend-module-stack-overflow-collator@0.1.10
@backstage/plugin-stackstorm@0.1.15
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/errors@1.2.4
@backstage/plugin-tech-insights@0.3.26
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-insights-backend@0.5.31
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-tech-insights-node@0.6.0
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/catalog-client@1.6.4
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-insights-backend-module-jsonfc@0.1.49
Patch Changes
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-tech-insights-node@0.6.0
- @backstage/backend-plugin-api@0.6.17
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-radar@0.7.3
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
@backstage/plugin-techdocs@1.10.4
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-techdocs-react@1.2.3
- @backstage/plugin-search-react@1.7.10
- @backstage/plugin-auth-react@0.1.0
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/theme@0.5.3
- @backstage/integration-react@1.1.26
- @backstage/integration@1.10.0
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-techdocs-addons-test-utils@1.0.31
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog@1.19.0
- @backstage/plugin-techdocs-react@1.2.3
- @backstage/plugin-search-react@1.7.10
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-app-api@1.12.4
- @backstage/core-plugin-api@1.9.2
- @backstage/test-utils@1.5.4
- @backstage/plugin-techdocs@1.10.4
- @backstage/integration-react@1.1.26
@backstage/plugin-techdocs-backend@1.10.4
Patch Changes
- 8e28c88: Allow overriding default techdocs preparers with new
TechdocsPreparerExtensionPoint - c884b9a: Use the default cookie endpoints added automatically when a cookie policy is set.
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/plugin-techdocs-node@1.12.3
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-search-backend-module-techdocs@0.1.22
- @backstage/catalog-client@1.6.4
- @backstage/integration@1.10.0
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-permission-common@0.7.13
@backstage/plugin-techdocs-module-addons-contrib@1.1.9
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-techdocs-react@1.2.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/integration-react@1.1.26
- @backstage/integration@1.10.0
@backstage/plugin-techdocs-node@1.12.3
Patch Changes
- 8e28c88: Allow overriding default techdocs preparers with new
TechdocsPreparerExtensionPoint - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/integration@1.10.0
- @backstage/integration-aws-node@0.1.12
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-search-common@1.2.11
@backstage/plugin-techdocs-react@1.2.3
Patch Changes
- b450af3: Added ESLint rule
no-top-level-material-ui-4-importsin the Techdocs-react plugin to migrate the Material UI imports. - abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/version-bridge@1.0.8
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
@backstage/plugin-todo@0.2.38
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-todo-backend@0.3.16
Patch Changes
- 2bd291e: Allow reserved characters in requests.
- d5a1fe1: Replaced winston logger with
LoggerService - Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/catalog-client@1.6.4
- @backstage/integration@1.10.0
- @backstage/plugin-catalog-node@1.11.1
- @backstage/backend-openapi-utils@0.1.10
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
@backstage/plugin-user-settings@0.8.5
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/core-app-api@1.12.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/theme@0.5.3
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/plugin-user-settings-backend@0.2.16
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/types@1.1.1
@backstage/plugin-vault@0.1.29
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/plugin-catalog-react@1.11.3
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/catalog-model@1.4.5
- @backstage/errors@1.2.4
@backstage/plugin-vault-backend@0.4.10
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/backend-tasks@0.5.22
- @backstage/config@1.2.0
- @backstage/errors@1.2.4
- @backstage/plugin-vault-node@0.1.10
@backstage/plugin-vault-node@0.1.10
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.17
@backstage/plugin-xcmetrics@0.2.52
Patch Changes
- abfbcfc: Updated dependency
@testing-library/reactto^15.0.0. - cb1e3b0: Updated dependency
@testing-library/domto^10.0.0. - Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
- @backstage/errors@1.2.4
example-app@0.2.96
Patch Changes
- Updated dependencies
- @backstage/plugin-github-pull-requests-board@0.2.0
- @backstage/plugin-azure-devops@0.4.3
- @backstage/plugin-catalog@1.19.0
- @backstage/plugin-techdocs-react@1.2.3
- @backstage/plugin-notifications@0.2.0
- @backstage/plugin-github-actions@0.6.15
- @backstage/cli@0.26.3
- @backstage/plugin-search-react@1.7.10
- @backstage/plugin-auth-react@0.1.0
- @backstage/plugin-catalog-react@1.11.3
- @backstage/plugin-gocd@0.1.40
- @backstage/frontend-app-api@0.6.4
- @backstage/plugin-scaffolder@1.19.3
- @backstage/plugin-graphiql@0.3.7
- @backstage/core-components@0.14.4
- @backstage/plugin-cloudbuild@0.5.1
- @backstage/core-app-api@1.12.4
- @backstage/app-defaults@1.5.4
- @backstage/core-plugin-api@1.9.2
- @backstage/theme@0.5.3
- @backstage/plugin-adr@0.6.17
- @backstage/plugin-airbrake@0.3.34
- @backstage/plugin-apache-airflow@0.2.24
- @backstage/plugin-api-docs@0.11.4
- @backstage/plugin-azure-sites@0.1.23
- @backstage/plugin-catalog-graph@0.4.4
- @backstage/plugin-catalog-import@0.10.10
- @backstage/plugin-catalog-unprocessed-entities@0.2.3
- @backstage/plugin-code-coverage@0.2.27
- @backstage/plugin-cost-insights@0.12.23
- @backstage/plugin-dynatrace@10.0.3
- @backstage/plugin-entity-feedback@0.2.17
- @backstage/plugin-explore@0.4.20
- @backstage/plugin-gcalendar@0.3.27
- @backstage/plugin-gcp-projects@0.3.50
- @backstage/plugin-home@0.7.3
- @backstage/plugin-jenkins@0.9.9
- @backstage/plugin-kafka@0.3.34
- @backstage/plugin-kubernetes-cluster@0.0.10
- @backstage/plugin-kubernetes@0.11.9
- @backstage/plugin-lighthouse@0.4.19
- @backstage/plugin-microsoft-calendar@0.1.16
- @backstage/plugin-newrelic@0.3.49
- @backstage/plugin-nomad@0.1.15
- @backstage/plugin-octopus-deploy@0.2.16
- @backstage/plugin-org@0.6.24
- @backstage/plugin-pagerduty@0.7.6
- @backstage/plugin-permission-react@0.4.22
- @backstage/plugin-playlist@0.2.8
- @backstage/plugin-puppetdb@0.1.17
- @backstage/plugin-rollbar@0.4.34
- @backstage/plugin-scaffolder-react@1.8.4
- @backstage/plugin-search@1.4.10
- @backstage/plugin-sentry@0.5.19
- @backstage/plugin-shortcuts@0.3.23
- @backstage/plugin-signals@0.0.5
- @backstage/plugin-stack-overflow@0.1.29
- @backstage/plugin-stackstorm@0.1.15
- @backstage/plugin-tech-insights@0.3.26
- @backstage/plugin-tech-radar@0.7.3
- @backstage/plugin-techdocs-module-addons-contrib@1.1.9
- @backstage/plugin-techdocs@1.10.4
- @backstage/plugin-todo@0.2.38
- @backstage/plugin-user-settings@0.8.5
- @backstage/integration-react@1.1.26
- @backstage/plugin-badges@0.2.58
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-devtools@0.1.13
- @backstage/plugin-linguist@0.1.19
- @backstage/plugin-linguist-common@0.1.2
- @backstage/plugin-newrelic-dashboard@0.3.9
- @backstage/plugin-search-common@1.2.11
example-app-next@0.0.10
Patch Changes
- Updated dependencies
- @backstage/plugin-azure-devops@0.4.3
- @backstage/plugin-catalog@1.19.0
- @backstage/plugin-techdocs-react@1.2.3
- @backstage/plugin-github-actions@0.6.15
- @backstage/cli@0.26.3
- @backstage/plugin-search-react@1.7.10
- @backstage/plugin-catalog-react@1.11.3
- @backstage/plugin-gocd@0.1.40
- @backstage/frontend-app-api@0.6.4
- @backstage/plugin-scaffolder@1.19.3
- @backstage/plugin-graphiql@0.3.7
- @backstage/core-compat-api@0.2.4
- @backstage/core-components@0.14.4
- @backstage/plugin-cloudbuild@0.5.1
- @backstage/core-app-api@1.12.4
- @backstage/app-defaults@1.5.4
- @backstage/core-plugin-api@1.9.2
- @backstage/frontend-plugin-api@0.6.4
- @backstage/theme@0.5.3
- @backstage/plugin-adr@0.6.17
- @backstage/plugin-airbrake@0.3.34
- @backstage/plugin-apache-airflow@0.2.24
- @backstage/plugin-api-docs@0.11.4
- @backstage/plugin-azure-sites@0.1.23
- @backstage/plugin-catalog-graph@0.4.4
- @backstage/plugin-catalog-import@0.10.10
- @backstage/plugin-catalog-unprocessed-entities@0.2.3
- @backstage/plugin-code-coverage@0.2.27
- @backstage/plugin-cost-insights@0.12.23
- @backstage/plugin-dynatrace@10.0.3
- @backstage/plugin-entity-feedback@0.2.17
- @backstage/plugin-explore@0.4.20
- @backstage/plugin-gcalendar@0.3.27
- @backstage/plugin-gcp-projects@0.3.50
- @backstage/plugin-home@0.7.3
- @backstage/plugin-jenkins@0.9.9
- @backstage/plugin-kafka@0.3.34
- @backstage/plugin-kubernetes@0.11.9
- @backstage/plugin-lighthouse@0.4.19
- @backstage/plugin-microsoft-calendar@0.1.16
- @backstage/plugin-newrelic@0.3.49
- @backstage/plugin-octopus-deploy@0.2.16
- @backstage/plugin-org@0.6.24
- @backstage/plugin-pagerduty@0.7.6
- @backstage/plugin-permission-react@0.4.22
- @backstage/plugin-playlist@0.2.8
- @backstage/plugin-puppetdb@0.1.17
- @backstage/plugin-rollbar@0.4.34
- @backstage/plugin-scaffolder-react@1.8.4
- @backstage/plugin-search@1.4.10
- @backstage/plugin-sentry@0.5.19
- @backstage/plugin-shortcuts@0.3.23
- @backstage/plugin-stackstorm@0.1.15
- @backstage/plugin-tech-insights@0.3.26
- @backstage/plugin-tech-radar@0.7.3
- @backstage/plugin-techdocs-module-addons-contrib@1.1.9
- @backstage/plugin-techdocs@1.10.4
- @backstage/plugin-todo@0.2.38
- @backstage/plugin-user-settings@0.8.5
- @backstage/integration-react@1.1.26
- @backstage/plugin-badges@0.2.58
- app-next-example-plugin@0.0.10
- @backstage/catalog-model@1.4.5
- @backstage/plugin-app-visualizer@0.1.5
- @backstage/plugin-catalog-common@1.0.22
- @backstage/plugin-devtools@0.1.13
- @backstage/plugin-linguist@0.1.19
- @backstage/plugin-linguist-common@0.1.2
- @backstage/plugin-newrelic-dashboard@0.3.9
- @backstage/plugin-search-common@1.2.11
app-next-example-plugin@0.0.10
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/frontend-plugin-api@0.6.4
example-backend@0.2.97
Patch Changes
- Updated dependencies
- @backstage/plugin-search-backend-module-pg@0.5.26
- @backstage/plugin-badges-backend@0.4.0
- @backstage/plugin-kubernetes-backend@0.17.0
- @backstage/backend-common@0.21.7
- @backstage/plugin-azure-devops-backend@0.6.4
- @backstage/plugin-techdocs-backend@1.10.4
- @backstage/plugin-permission-node@0.7.28
- @backstage/plugin-auth-backend@0.22.4
- @backstage/plugin-scaffolder-backend-module-gitlab@0.3.3
- @backstage/plugin-catalog-backend@1.21.1
- @backstage/plugin-events-backend@0.3.4
- @backstage/plugin-tech-insights-node@0.6.0
- @backstage/plugin-search-backend@1.5.7
- @backstage/plugin-todo-backend@0.3.16
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.49
- @backstage/plugin-search-backend-module-techdocs@0.1.22
- @backstage/plugin-search-backend-module-explore@0.1.21
- @backstage/plugin-entity-feedback-backend@0.2.14
- @backstage/plugin-code-coverage-backend@0.2.31
- @backstage/plugin-tech-insights-backend@0.5.31
- @backstage/plugin-search-backend-node@1.2.21
- @backstage/plugin-lighthouse-backend@0.4.10
- @backstage/plugin-permission-backend@0.5.41
- @backstage/plugin-devtools-backend@0.3.3
- @backstage/plugin-linguist-backend@0.5.15
- @backstage/plugin-playlist-backend@0.3.21
- @backstage/plugin-explore-backend@0.0.27
- @backstage/plugin-jenkins-backend@0.4.4
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-kafka-backend@0.3.15
- @backstage/plugin-nomad-backend@0.1.19
- @backstage/plugin-adr-backend@0.4.14
- @backstage/plugin-app-backend@0.3.65
- @backstage/plugin-auth-node@0.4.12
- @backstage/plugin-signals-backend@0.1.3
- @backstage/plugin-proxy-backend@0.4.15
- @backstage/plugin-scaffolder-backend@1.22.4
- @backstage/catalog-client@1.6.4
- @backstage/integration@1.10.0
- @backstage/plugin-search-backend-module-elasticsearch@1.4.0
- example-app@0.2.96
- @backstage/plugin-catalog-backend-module-unprocessed@0.4.4
- @backstage/plugin-events-node@0.3.3
- @backstage/plugin-rollbar-backend@0.1.62
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.18
- @backstage/plugin-scaffolder-backend-module-rails@0.4.34
- @backstage/plugin-search-backend-module-catalog@0.1.22
- @backstage/plugin-signals-node@0.1.3
- @backstage/plugin-catalog-node@1.11.1
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
- @backstage/plugin-azure-sites-common@0.1.3
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.15
- @backstage/plugin-permission-common@0.7.13
example-backend-next@0.0.25
Patch Changes
- Updated dependencies
- @backstage/plugin-badges-backend@0.4.0
- @backstage/plugin-kubernetes-backend@0.17.0
- @backstage/plugin-azure-devops-backend@0.6.4
- @backstage/plugin-techdocs-backend@1.10.4
- @backstage/plugin-notifications-backend@0.2.0
- @backstage/plugin-permission-node@0.7.28
- @backstage/plugin-auth-backend@0.22.4
- @backstage/plugin-catalog-backend@1.21.1
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.2.0
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-search-backend@1.5.7
- @backstage/plugin-todo-backend@0.3.16
- @backstage/plugin-scaffolder-backend-module-github@0.2.7
- @backstage/plugin-search-backend-module-techdocs@0.1.22
- @backstage/plugin-search-backend-module-explore@0.1.21
- @backstage/plugin-entity-feedback-backend@0.2.14
- @backstage/plugin-search-backend-node@1.2.21
- @backstage/plugin-lighthouse-backend@0.4.10
- @backstage/plugin-permission-backend@0.5.41
- @backstage/plugin-sonarqube-backend@0.2.19
- @backstage/plugin-devtools-backend@0.3.3
- @backstage/plugin-linguist-backend@0.5.15
- @backstage/plugin-playlist-backend@0.3.21
- @backstage/plugin-jenkins-backend@0.4.4
- @backstage/backend-tasks@0.5.22
- @backstage/plugin-nomad-backend@0.1.19
- @backstage/plugin-adr-backend@0.4.14
- @backstage/plugin-app-backend@0.3.65
- @backstage/plugin-auth-node@0.4.12
- @backstage/plugin-signals-backend@0.1.3
- @backstage/plugin-proxy-backend@0.4.15
- @backstage/plugin-scaffolder-backend@1.22.4
- @backstage/backend-defaults@0.2.17
- @backstage/plugin-auth-backend-module-guest-provider@0.1.3
- @backstage/plugin-catalog-backend-module-openapi@0.1.35
- @backstage/plugin-catalog-backend-module-unprocessed@0.4.4
- @backstage/plugin-search-backend-module-catalog@0.1.22
- @backstage/plugin-permission-backend-module-allow-all-policy@0.1.14
- @backstage/catalog-model@1.4.5
- @backstage/plugin-auth-backend-module-github-provider@0.1.14
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.15
- @backstage/plugin-permission-common@0.7.13
e2e-test@0.2.15
Patch Changes
- Updated dependencies
- @backstage/create-app@0.5.14
- @backstage/cli-common@0.1.13
- @backstage/errors@1.2.4
techdocs-cli-embedded-app@0.2.95
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.19.0
- @backstage/plugin-techdocs-react@1.2.3
- @backstage/cli@0.26.3
- @backstage/core-components@0.14.4
- @backstage/core-app-api@1.12.4
- @backstage/app-defaults@1.5.4
- @backstage/core-plugin-api@1.9.2
- @backstage/test-utils@1.5.4
- @backstage/theme@0.5.3
- @backstage/plugin-techdocs@1.10.4
- @backstage/integration-react@1.1.26
- @backstage/catalog-model@1.4.5
- @backstage/config@1.2.0
@internal/plugin-todo-list@1.0.26
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.4
- @backstage/core-plugin-api@1.9.2
@internal/plugin-todo-list-backend@1.0.26
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.7
- @backstage/backend-plugin-api@0.6.17
- @backstage/plugin-auth-node@0.4.12
- @backstage/errors@1.2.4