88 KiB
Release v1.38.0
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.38.0
@backstage/plugin-gateway-backend@1.0.0
Major Changes
6b5681c: Initial release of@backstage/plugin-gateway-backend
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
@backstage/backend-defaults@0.9.0
Minor Changes
1daedce: Remove Throttle of Bitbucket Server API calls01edf6e: Allow pass through of redis client and cluster options to Cache core servicecf4eb13: Addedactorproperty toBackstageUserPrincipalcontaining the subject of the last service (if any) who performed authentication on behalf of the user.
Patch Changes
-
7c6740e: Implemented SRV lookup support in the defaultHostDiscovery. You can now specify internal URLs on the formhttp+srv://some-srv-name/api/{{pluginId}}and they will be resolved in real time. -
939116c: Added an optionalbackend.trustProxyapp config value, which sets the corresponding Express.jstrust proxysetting. This lets you easily configure proxy trust without making a customconfigurecallback for therootHttpRouterservice.If you already are using a custom
configurecallback, and if that also does not callapplyDefaults(), you may want to add the following to it:const trustProxy = config.getOptional('backend.trustProxy'); if (trustProxy !== undefined) { app.set('trust proxy', trustProxy); } -
175528c: Addsbackend.auditor.severityLogLevelMappingsto map severity levels to log levels. -
Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/backend-app-api@1.2.2
- @backstage/plugin-auth-node@0.6.2
- @backstage/plugin-permission-node@0.9.1
- @backstage/backend-dev-utils@0.1.5
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.2
- @backstage/config-loader@1.10.0
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.15
- @backstage/types@1.2.1
- @backstage/plugin-events-node@0.4.10
@backstage/backend-plugin-api@1.3.0
Minor Changes
cf4eb13: Addedactorproperty toBackstageUserPrincipalcontaining the subject of the last service (if any) who performed authentication on behalf of the user.
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.2
- @backstage/plugin-permission-node@0.9.1
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-permission-common@0.8.4
@backstage/backend-test-utils@1.4.0
Minor Changes
cf4eb13: Addedactorproperty toBackstageUserPrincipalcontaining the subject of the last service (if any) who performed authentication on behalf of the user.
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/backend-plugin-api@1.3.0
- @backstage/backend-app-api@1.2.2
- @backstage/plugin-auth-node@0.6.2
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-events-node@0.4.10
@backstage/canon@0.3.0
Minor Changes
df4e292: Improve class name structure using data attributes instead of class names.f038613: Updated TextField and Select component to work with React Hook Form.1b0cf40: Add new Select component for Canon5074d61: BREAKING: Added a new TextField component to replace the Field and Input component. After feedback, it became clear that we needed to build a more opinionated version to avoid any problem in the future.
Patch Changes
-
6af7b16: Updated styles for the Menu component in Canon. -
bcbc593: Fix Checkbox styles on dark theme in Canon. -
e7efb7d: Add new breakpoint helpers up(), down() and current breakpoint to help you use our breakpoints in your React components. -
f7cb538: Internal refactor and fixes to the prop extraction logic for layout components. -
35b36ec: Add new Collapsible component for Canon. -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
513477f: Add global CSS reset for anchor tags. -
24f0e08: Improved Container styles, changing our max-width to 120rem and improving padding on smaller screens. -
851779d: Add new Avatar component to Canon.
-
ec5ebd1: Add new TableCellProfile component for Table and DataTable in Canon. -
5e80f0b: Fix types on the Icon component. -
0e654bf: Add new DataTable component and update Table component styles. -
7ae28ba: Move styles to the root of the TextField component. -
4fe5b08: We added a render prop to the Link component to make sure it can work with React Router. -
74d463c: Fix Select styles on small sizes + with long option names in Canon. -
f25a5be: Added a new gray scale for Canon for both light and dark theme. -
5ee4fc2: Add support for column sizing in DataTable. -
05a5003: Fix the Icon component when the name is not found to return null instead of an empty SVG.
@backstage/cli@0.32.0
Minor Changes
-
a47fd39: Removes default React imports from template files, aligning with the requirements for the upcoming React 19 migration. Introduces a new ESLint rule to disallowimport React from 'react'andimport * as React from 'react'.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
65b584c: Internal update to move thenewandcreate-github-appto their own module. -
c7254ae: Internal update to move theclean,pre/postpackandfixcommands into their own separate module.
Patch Changes
-
4ea76f7: Bump @module-federation/enhanced ^0.9.0 to fix GHSA-593f-38f6-jp5m -
87a5cb4: Fixed an issue causing therepo lintcommand to fail when the--max-warningsoption was used. -
6969f79: Avoid trailing/*when automatically adding imports for package with multiple entry points. -
98b7131: Update theto doplugin template to stop using the deprecated catalog alpha service reference. If you start seeing theshould create TODO item with catalog informationtest failing, you have two options to fix this: Update the test to mock the legacy alpha catalog service, or migrate theTODOplugin backend to use the new catalog service reference. We recommend the second option, see this pull request for an example of how to do the migration. -
d5c4fed: make certificate strings optional for Dev environments -
d83f3f4: Resolved a problem where thestartcommand did not correctly handle multiple--requireflags, ensuring all specified modules are now properly loaded. -
d2091c6: Added a newrepo startcommand to replace the existing pattern of usingyarn devscripts. Therepo startcommand runs the app and/or backend package in the repo by default, but will also fall back to running other individual frontend or backend packages or even plugin dev entry points if the can be uniquely selected.The goal of this change is to reduce the number of different necessary scripts and align on
yarn startbeing the only command needed for local development, similar to howrepo testhandles testing in the repo. It also opens up for more powerful options, like the--plugin <pluginId>flag that runs the dev entry point of the selected plugin.The new script is installed as follows, replacing the existing
yarn startscript:{ "scripts": { "start": "backstage-cli repo start" } }In order to help users migrate in existing projects, it is recommended to add the following scripts to the root
package.json:{ "scripts": { "dev": "echo \"Use 'yarn start' instead\"", "start-backend": "echo \"Use 'yarn start backend' instead\"" } }For more information, run
yarn start --helponce the new command is installed. -
918c883: Included a reference to the JSX transform guide in the warning about using the default React import. -
Updated dependencies
- @backstage/integration@1.16.3
- @backstage/catalog-model@1.7.3
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.2
- @backstage/config-loader@1.10.0
- @backstage/errors@1.2.7
- @backstage/eslint-plugin@0.1.10
- @backstage/release-manifests@0.0.12
- @backstage/types@1.2.1
@backstage/frontend-dynamic-feature-loader@0.1.0
Minor Changes
3bee3c3: The new packagefrontend-dynamic-features-loaderprovides a frontend feature loader that dynamically loads frontend features based on the new frontend system and exposed as module federation remotes. This new frontend feature loader works hand-in-hand with a new server of frontend plugin module federation remotes, which is added as part of backend dynamic feature service in package@backstage/backend-dynamic-feature-service.
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/config@1.3.2
@backstage/plugin-catalog@1.29.0
Minor Changes
-
9454ef9: Added support of filtering based on system columns in catalog table -
61d350f: BREAKING ALPHA:CatalogFilterBlueprint, used in the new frontend system, is now exported under plugin-catalog-react instead of plugin-catalog.+ import { CatalogFilterBlueprint } from '@backstage/plugin-catalog-react/alpha'; - import { CatalogFilterBlueprint } from '@backstage/plugin-catalog/alpha'; -
09afd67: AddsEntityContextMenuItemBlueprintto enable extending the entity page's context menu with user defined items.For example:
import { EntityContextMenuItemBlueprint } from '@backstage/plugin-catalog-react/alpha'; const myCustomHref = EntityContextMenuItemBlueprint.make({ name: 'test-href', params: { icon: <span>Example Icon</span>, useProps: () => ({ title: 'Example Href', href: '/example-path', disabled: false, component: 'a', }), }, }); const myCustomOnClick = EntityContextMenuItemBlueprint.make({ name: 'test-click', params: { icon: <span>Test Icon</span>, useProps: () => ({ title: 'Example onClick', onClick: () => window.alert('Hello world!'), disabled: false, }), }, });
Patch Changes
-
3f7e4f1: Fixed the layout of summary cards in the new frontend system, ensuring that the horizontal scroll grid doesn't grow too large as well as tweaked its scrolling parameters. -
e655f62: UpdatedREADME.mdto useyarn startinstead ofyarn dev. -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
3f7e4f1: The about, links, and labels card now all have theinfocard type by default in the new frontend system. -
3f7e4f1: The overview content is now part of the overview group by default in the new frontend system. -
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/integration-react@1.2.6
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/plugin-search-react@1.8.8
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-scaffolder-common@1.5.10
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-catalog-backend-module-bitbucket-server@0.4.0
Minor Changes
1daedce: Remove Throttle of Bitbucket Server API calls7b3ed9b: Added the ability for the plugin to receive events coming from Bitbucket Server push webhooks. It then performs a delta mutation on the catalog.
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-catalog-backend-module-github@0.8.0
Minor Changes
-
f0c22eb: BREAKING: Explicitly rejects branch names containing a slash character.The module now rejects any configuration that contains slashes in branch names. The reason for this is that the ingestion will run into downstream problems if they were let through. If you had configuration with a slash in the branch name in
filters.branch, your application may fail to start up.If you are affected by this, please move over to using branches that do not have slashes in them.
Patch Changes
16648ef: AddedvalidateLocationsExistto the config definition where it was missing.- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/plugin-catalog-backend@1.32.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-catalog-react@1.17.0
Minor Changes
-
0f37fa8:entityRouteParamsnow also accepts entity refs, and can help with encoding the resulting parameters. -
61d350f: BREAKING ALPHA:CatalogFilterBlueprint, used in the new frontend system, is now exported under plugin-catalog-react instead of plugin-catalog.+ import { CatalogFilterBlueprint } from '@backstage/plugin-catalog-react/alpha'; - import { CatalogFilterBlueprint } from '@backstage/plugin-catalog/alpha'; -
09afd67: AddsEntityContextMenuItemBlueprintto enable extending the entity page's context menu with user defined items.For example:
import { EntityContextMenuItemBlueprint } from '@backstage/plugin-catalog-react/alpha'; const myCustomHref = EntityContextMenuItemBlueprint.make({ name: 'test-href', params: { icon: <span>Example Icon</span>, useProps: () => ({ title: 'Example Href', href: '/example-path', disabled: false, component: 'a', }), }, }); const myCustomOnClick = EntityContextMenuItemBlueprint.make({ name: 'test-click', params: { icon: <span>Test Icon</span>, useProps: () => ({ title: 'Example onClick', onClick: () => window.alert('Hello world!'), disabled: false, }), }, });
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
3f7e4f1: Added a newoverviewentity content group for the new frontend system. -
186d016: Addoperationto alphadefaultEntityContentGroups. -
221ddba: Fix offset pagination to reset when updating filters inuseEntityList -
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/frontend-test-utils@0.3.1
- @backstage/integration-react@1.2.6
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-events-backend-module-bitbucket-server@0.1.0
Minor Changes
7b3ed9b: Added the ability for the plugin to receive events coming from Bitbucket Server push webhooks. It then performs a delta mutation on the catalog.
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-events-backend-module-github@0.3.0
Minor Changes
317ceb7: BREAKING ALPHA: Modules fromevents-backend-module-githubandevents-backend-module-gitlabare now exported asdefaultinstead of being a named export. In addition, they have been moved fromaplhatopublic.
Patch Changes
735fe12: Don't hard fail for not configuringwebhookSecretfor the GitHub and GitLab events backend. Instead, we don't add the ingress.- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/config@1.3.2
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-events-backend-module-gitlab@0.3.0
Minor Changes
317ceb7: BREAKING ALPHA: Modules fromevents-backend-module-githubandevents-backend-module-gitlabare now exported asdefaultinstead of being a named export. In addition, they have been moved fromaplhatopublic.
Patch Changes
735fe12: Don't hard fail for not configuringwebhookSecretfor the GitHub and GitLab events backend. Instead, we don't add the ingress.- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/config@1.3.2
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-notifications-backend-module-slack@0.1.0
Minor Changes
552170d: Added a new Slack NotificationProcessor for use with the notifications plugin
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-notifications-common@0.0.8
- @backstage/plugin-notifications-node@0.2.14
@backstage/plugin-permission-backend@0.6.0
Minor Changes
78eaa50: Improved validation for the/authorizeendpoint when aresourceRefis provided alongside a basic permission. Additionally, introduced a clearer error message for cases where users attempt to directly evaluate conditional permissions.
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/plugin-permission-node@0.9.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-scaffolder@1.30.0
Minor Changes
-
76681a5: BREAKING ALPHA: Extract out schema rendering components into their own Component. This means that the translation keys have changed foractionsPage.content.tableCell.*. They have moved to their own root keyrenderSchema.*instead.... - tableCell: { - name: 'Name', - title: 'Title', - description: 'Description', - type: 'Type', - }, - noRowsDescription: 'No schema defined', ... + renderSchema: { + tableCell: { + name: 'Name', + title: 'Title', + description: 'Description', + type: 'Type', + }, + undefined: 'No schema defined', + }, -
5890016: add api to retrieve template extensions info from scaffolder-backend
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
407eba1: Tweaked template editor tooltip to mention HTTPS requirement. -
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/integration-react@1.2.6
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/plugin-scaffolder-react@1.15.0
- @backstage/integration@1.16.3
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-scaffolder-common@1.5.10
@backstage/plugin-scaffolder-backend@1.32.0
Minor Changes
75e4db4: add template-extensions scaffolder service endpoint
Patch Changes
8685cab: Addedtemplateandsteplabels for scaffolder histogram metrics:scaffolder_task_durationandscaffolder_step_duration497d47a: Document the internal built-in filters, and ensure that the types are validated when usingcreateTemplateFilterandcreateTemplateGlobalFunctionfrom thezodschema.- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/plugin-scaffolder-backend-module-gitlab@0.9.0
- @backstage/plugin-catalog-node@1.16.3
- @backstage/plugin-scaffolder-backend-module-azure@0.2.8
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.9
- @backstage/plugin-scaffolder-backend-module-github@0.7.0
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.8
- @backstage/integration@1.16.3
- @backstage/plugin-auth-node@0.6.2
- @backstage/plugin-permission-node@0.9.1
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.7
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-bitbucket-cloud-common@0.2.29
- @backstage/plugin-events-node@0.4.10
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.8
- @backstage/plugin-scaffolder-backend-module-gerrit@0.2.8
- @backstage/plugin-scaffolder-backend-module-gitea@0.2.8
- @backstage/plugin-scaffolder-common@1.5.10
@backstage/plugin-scaffolder-backend-module-github@0.7.0
Minor Changes
-
c761cf5: BREAKING Thepublish:githubscaffolder action now defaults to initializing with a branch named "main" instead of "master" when creating new repositories.If you or your organization have relied on all new github repositories having a default branch name of "master" you must set the
defaultBranch: 'master'in your existing templates that feature thepublish:githubscaffolder action.To keep using the name "master" for your new github repos, these are the required changes:
- id: publish name: Publish action: publish:github input: allowedHosts: ['github.com'] description: This is ${{ parameters.name }} repoUrl: ${{ parameters.repoUrl }} + defaultBranch: 'master'
Patch Changes
1af427a: Made "github:autolinks:create" action idempotent79dc5ac: Made "github:deployKey:create" action idempotent411c879: Add support to github:repo:create to allow branch updates180ea6e: Made "github:branch-protection:create" action idempotent- 0be1a1e: Made "publish:github" action idempotent
a833f0f: Made "github:actions:dispatch" action idempotent- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
@backstage/plugin-scaffolder-backend-module-gitlab@0.9.0
Minor Changes
d86ce21: Added additional feedback in case branch is already created
Patch Changes
003dc15: Updated the path field in thegitlab:group:ensureExistsaction to support also strings with multiple segments (e.g.group/subgroup)19e23da: Adds more context to thegitlab:repo:pushcommitActionproperty for the installed actions section in the scaffolder- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/plugin-scaffolder-react@1.15.0
Minor Changes
5890016: add api to retrieve template extensions info from scaffolder-backend
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
6ed42b7: Scaffolding - Template card - button to show template entity detail -
7ae9996: Fixes the detail icon in light theme to be visible in proper color (same as favorite star). -
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/theme@0.6.5
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-scaffolder-common@1.5.10
@backstage/app-defaults@1.6.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/core-app-api@1.16.1
- @backstage/theme@0.6.5
@backstage/backend-app-api@1.2.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/backend-dynamic-feature-service@0.6.2
Patch Changes
3bee3c3: The new packagefrontend-dynamic-features-loaderprovides a frontend feature loader that dynamically loads frontend features based on the new frontend system and exposed as module federation remotes. This new frontend feature loader works hand-in-hand with a new server of frontend plugin module federation remotes, which is added as part of backend dynamic feature service in package@backstage/backend-dynamic-feature-service.- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/plugin-catalog-backend@1.32.1
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/plugin-events-backend@0.5.1
- @backstage/plugin-permission-node@0.9.1
- @backstage/plugin-search-backend-node@1.3.10
- @backstage/backend-openapi-utils@0.5.2
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.2
- @backstage/config-loader@1.10.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-app-node@0.1.32
- @backstage/plugin-events-node@0.4.10
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-search-common@1.2.17
@backstage/backend-openapi-utils@0.5.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
@backstage/core-app-api@1.16.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-plugin-api@1.10.6
- @backstage/config@1.3.2
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/core-compat-api@0.4.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-plugin-api@1.10.6
- @backstage/version-bridge@1.0.11
@backstage/core-components@0.17.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
5d7bad4: Fixed the messaging in theAlertDisplaywhere it was claiming that there were older messages available rather than newer. -
Updated dependencies
- @backstage/core-plugin-api@1.10.6
- @backstage/theme@0.6.5
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/version-bridge@1.0.11
@backstage/core-plugin-api@1.10.6
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/create-app@0.6.1
Patch Changes
-
5590536: Bumped create-app version. -
2fc663a: Bumped create-app version. -
edabbd6: Updated the rootpackage.jsonin the template to use the newbackstage-cli repo startcommand.The
yarn devcommand is now redundant and has been removed from the template. We recommend existing projects to add these or similar scripts to help redirect users:{ "scripts": { "dev": "echo \"Use 'yarn start' instead\"", "start-backend": "echo \"Use 'yarn start backend' instead\"" } } -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
c761cf5: BREAKING Thepublish:githubscaffolder action now defaults to initializing with a branch named "main" instead of "master" when creating new repositories.If you or your organization have relied on all new github repositories having a default branch name of "master" you must set the
defaultBranch: 'master'in your existing templates that feature thepublish:githubscaffolder action.To keep using the name "master" for your new github repos, these are the required changes:
- id: publish name: Publish action: publish:github input: allowedHosts: ['github.com'] description: This is ${{ parameters.name }} repoUrl: ${{ parameters.repoUrl }} + defaultBranch: 'master' -
Updated dependencies
- @backstage/cli-common@0.1.15
@backstage/dev-utils@1.1.9
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/integration-react@1.2.6
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/app-defaults@1.6.1
- @backstage/core-app-api@1.16.1
- @backstage/theme@0.6.5
- @backstage/catalog-model@1.7.3
@backstage/frontend-app-api@0.11.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/frontend-defaults@0.2.1
- @backstage/core-plugin-api@1.10.6
- @backstage/core-app-api@1.16.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/frontend-defaults@0.2.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
3bee3c3: The new packagefrontend-dynamic-features-loaderprovides a frontend feature loader that dynamically loads frontend features based on the new frontend system and exposed as module federation remotes. This new frontend feature loader works hand-in-hand with a new server of frontend plugin module federation remotes, which is added as part of backend dynamic feature service in package@backstage/backend-dynamic-feature-service. -
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/frontend-app-api@0.11.1
- @backstage/plugin-app@0.1.8
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/frontend-plugin-api@0.10.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/frontend-test-utils@0.3.1
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/frontend-app-api@0.11.1
- @backstage/test-utils@1.7.7
- @backstage/plugin-app@0.1.8
- @backstage/config@1.3.2
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/integration@1.16.3
Patch Changes
9768992: Mark GitHubwebhookSecretconfig property as optional. AwebhookSecretis not required when creating a GitHub App.- Updated dependencies
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/integration-react@1.2.6
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
5d10f99: Added scopeprojectfor Bitbucket Cloud. -
Updated dependencies
- @backstage/core-plugin-api@1.10.6
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
@backstage/repo-tools@0.13.2
Patch Changes
18ce51c: Checking up the files wherecreateRouterhas been declared and check if@deprecatedtag exists. If it does not exist then only the message will appear.- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/catalog-model@1.7.3
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/config-loader@1.10.0
- @backstage/errors@1.2.7
@techdocs/cli@1.9.2
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/plugin-techdocs-node@1.13.2
- @backstage/catalog-model@1.7.3
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.2
@backstage/test-utils@1.7.7
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/core-app-api@1.16.1
- @backstage/theme@0.6.5
- @backstage/config@1.3.2
- @backstage/types@1.2.1
- @backstage/plugin-permission-common@0.8.4
@backstage/theme@0.6.5
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
@backstage/plugin-api-docs@0.12.6
Patch Changes
-
317bc3d: api-docs plugin support i18n -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog@1.29.0
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/catalog-model@1.7.3
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-api-docs-module-protoc-gen-doc@0.1.10
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
@backstage/plugin-app@0.1.8
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/integration-react@1.2.6
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/theme@0.6.5
- @backstage/types@1.2.1
@backstage/plugin-app-backend@0.5.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/config@1.3.2
- @backstage/config-loader@1.10.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-app-node@0.1.32
@backstage/plugin-app-node@0.1.32
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/config-loader@1.10.0
@backstage/plugin-app-visualizer@0.1.18
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
@backstage/plugin-auth-backend@0.24.5
Patch Changes
25d05f9: Slight update to the config schema- Updated dependencies
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.2
- @backstage/plugin-catalog-node@1.16.3
- @backstage/plugin-auth-backend-module-oidc-provider@0.4.2
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-backend-module-atlassian-provider@0.4.2
- @backstage/plugin-auth-backend-module-auth0-provider@0.2.2
- @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.2
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.2
- @backstage/plugin-auth-backend-module-github-provider@0.3.2
- @backstage/plugin-auth-backend-module-gitlab-provider@0.3.2
- @backstage/plugin-auth-backend-module-microsoft-provider@0.3.2
- @backstage/plugin-auth-backend-module-oauth2-provider@0.4.2
- @backstage/plugin-auth-backend-module-okta-provider@0.2.2
- @backstage/plugin-auth-backend-module-onelogin-provider@0.3.2
- @backstage/plugin-auth-node@0.6.2
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.2
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.7
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.2
- @backstage/plugin-auth-backend-module-google-provider@0.3.2
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.7
@backstage/plugin-auth-backend-module-atlassian-provider@0.4.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
@backstage/plugin-auth-backend-module-auth0-provider@0.2.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
@backstage/plugin-auth-backend-module-aws-alb-provider@0.4.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.24.5
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/errors@1.2.7
@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.7
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
@backstage/plugin-auth-backend-module-bitbucket-provider@0.3.2
Patch Changes
5d10f99: Enabled persistency of scopes for Bitbucket Cloud.- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
@backstage/plugin-auth-backend-module-github-provider@0.3.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
@backstage/plugin-auth-backend-module-gitlab-provider@0.3.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
@backstage/plugin-auth-backend-module-google-provider@0.3.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
@backstage/plugin-auth-backend-module-guest-provider@0.2.7
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
@backstage/plugin-auth-backend-module-microsoft-provider@0.3.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
@backstage/plugin-auth-backend-module-oauth2-provider@0.4.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.7
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/errors@1.2.7
@backstage/plugin-auth-backend-module-oidc-provider@0.4.2
Patch Changes
-
7495edf: Added custom timeout setting for oidc providerHere is an example of how to use a custom timeout with the configuration:
auth: oidc: production: clientId: ${AUTH_GOOGLE_CLIENT_ID} clientSecret: ${AUTH_GOOGLE_CLIENT_SECRET} timeout: seconds: 30 -
Updated dependencies
- @backstage/plugin-auth-backend@0.24.5
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/config@1.3.2
- @backstage/types@1.2.1
@backstage/plugin-auth-backend-module-okta-provider@0.2.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
@backstage/plugin-auth-backend-module-onelogin-provider@0.3.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
@backstage/plugin-auth-backend-module-pinniped-provider@0.3.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/config@1.3.2
- @backstage/types@1.2.1
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.5.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/catalog-model@1.7.3
@backstage/plugin-auth-node@0.6.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
@backstage/plugin-auth-react@0.1.14
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/errors@1.2.7
@backstage/plugin-bitbucket-cloud-common@0.2.29
Patch Changes
- Updated dependencies
@backstage/plugin-catalog-backend@1.32.1
Patch Changes
7cc4995: Fix for duplicate results inqueryEntitieswhen providing anorderFieldparameter- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/plugin-permission-node@0.9.1
- @backstage/plugin-search-backend-module-catalog@0.3.3
- @backstage/backend-openapi-utils@0.5.2
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-events-node@0.4.10
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-catalog-backend-module-aws@0.4.10
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.15
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-kubernetes-common@0.9.4
@backstage/plugin-catalog-backend-module-azure@0.3.4
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-catalog-backend-module-backstage-openapi@0.5.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/backend-openapi-utils@0.5.2
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.4.7
Patch Changes
146e41b: Fixed bug in event-based discovery that caused unnecessary API calls to Bitbucket Cloud- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-bitbucket-cloud-common@0.2.29
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-catalog-backend-module-gcp@0.3.7
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-kubernetes-common@0.9.4
@backstage/plugin-catalog-backend-module-gerrit@0.3.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-catalog-backend-module-github-org@0.3.9
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend-module-github@0.8.0
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/config@1.3.2
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-catalog-backend-module-gitlab@0.6.5
Patch Changes
a568cda: add filter for repos by membership and topics871a8db: fix: Add missing config options to config declaration file- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-catalog-backend-module-gitlab-org@0.2.8
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/plugin-catalog-backend-module-gitlab@0.6.5
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.6.5
Patch Changes
27d1031: fixed misleading example location annotations in docs- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/plugin-catalog-node@1.16.3
- @backstage/plugin-catalog-backend@1.32.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-events-node@0.4.10
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-catalog-backend-module-ldap@0.11.4
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-catalog-backend-module-logs@0.1.9
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.32.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-catalog-backend-module-msgraph@0.6.9
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-catalog-backend-module-openapi@0.2.9
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/catalog-model@1.7.3
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-catalog-backend-module-puppetdb@0.2.9
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.7
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/catalog-model@1.7.3
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-scaffolder-common@1.5.10
@backstage/plugin-catalog-backend-module-unprocessed@0.5.7
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-unprocessed-entities-common@0.0.7
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-catalog-graph@0.4.18
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/types@1.2.1
@backstage/plugin-catalog-import@0.12.13
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
5b9514f: Expose theUnpackNestedValuetype as it's been removed fromreact-hook-form -
f1d9a64: adding translation forRegister an existing componenttext -
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/integration-react@1.2.6
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/integration@1.16.3
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-catalog-node@1.16.3
Patch Changes
2c5598c: Adds documentation for the CatalogProcessingExtensionPoint functions.98b7131: Use a different ID for the deprecated alpha version of the catalog service, as it has a different type definition and cannot be used interchangeably with the non-alpha version.- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-permission-node@0.9.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-catalog-unprocessed-entities@0.2.16
Patch Changes
-
ba88bfa: Added confirmation popup for delete entities in Catalog Unprocessed Entities plugin -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
2479827: Fixed theconvertTimeToLocalTimezonefunction in the FailedEntities component to correctly parse ISO 8601 date strings and set the timezone to the current local timezone. -
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
@backstage/plugin-config-schema@0.1.67
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
@backstage/plugin-devtools@0.1.26
Patch Changes
-
e655f62: UpdatedREADME.mdto useyarn startinstead ofyarn dev. -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/errors@1.2.7
- @backstage/plugin-devtools-common@0.1.15
@backstage/plugin-devtools-backend@0.5.4
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-permission-node@0.9.1
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.2
- @backstage/config-loader@1.10.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-devtools-common@0.1.15
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-events-backend@0.5.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/backend-openapi-utils@0.5.2
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-events-backend-module-aws-sqs@0.4.10
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/config@1.3.2
- @backstage/types@1.2.1
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-events-backend-module-azure@0.2.19
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.19
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-events-backend-module-gerrit@0.2.19
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-events-backend-test-utils@0.1.43
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-events-node@0.4.10
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
@backstage/plugin-home@0.8.7
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/core-app-api@1.16.1
- @backstage/plugin-home-react@0.1.25
- @backstage/theme@0.6.5
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
@backstage/plugin-home-react@0.1.25
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
2e4cb15: Fixes auto-hiding of content divider when title not specified -
Updated dependencies
@backstage/plugin-kubernetes@0.12.6
Patch Changes
-
b877e46: Added New Frontend System filter for the Kubernetes tab to useisKubernetesAvailableto control its visibility -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-kubernetes-react@0.5.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/catalog-model@1.7.3
- @backstage/plugin-kubernetes-common@0.9.4
@backstage/plugin-kubernetes-backend@0.19.5
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/plugin-kubernetes-node@0.2.5
- @backstage/plugin-permission-node@0.9.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.15
- @backstage/types@1.2.1
- @backstage/plugin-kubernetes-common@0.9.4
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-kubernetes-cluster@0.0.24
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-kubernetes-react@0.5.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/catalog-model@1.7.3
- @backstage/plugin-kubernetes-common@0.9.4
@backstage/plugin-kubernetes-node@0.2.5
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/catalog-model@1.7.3
- @backstage/types@1.2.1
- @backstage/plugin-kubernetes-common@0.9.4
@backstage/plugin-kubernetes-react@0.5.6
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-kubernetes-common@0.9.4
@backstage/plugin-notifications@0.5.4
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/theme@0.6.5
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-notifications-common@0.0.8
- @backstage/plugin-signals-react@0.0.12
@backstage/plugin-notifications-backend@0.5.5
Patch Changes
9a6080e: Allow throttling notification sending not to block the system with huge amount of receiving users- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-events-node@0.4.10
- @backstage/plugin-notifications-common@0.0.8
- @backstage/plugin-notifications-node@0.2.14
- @backstage/plugin-signals-node@0.1.19
@backstage/plugin-notifications-backend-module-email@0.3.8
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/integration-aws-node@0.1.15
- @backstage/types@1.2.1
- @backstage/plugin-notifications-common@0.0.8
- @backstage/plugin-notifications-node@0.2.14
@backstage/plugin-notifications-node@0.2.14
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/plugin-notifications-common@0.0.8
- @backstage/plugin-signals-node@0.1.19
@backstage/plugin-org@0.6.38
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/catalog-model@1.7.3
- @backstage/plugin-catalog-common@1.1.3
@backstage/plugin-org-react@0.1.37
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
@backstage/plugin-permission-backend-module-allow-all-policy@0.2.7
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/plugin-permission-node@0.9.1
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-permission-node@0.9.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-permission-react@0.4.33
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/core-plugin-api@1.10.6
- @backstage/config@1.3.2
- @backstage/plugin-permission-common@0.8.4
@backstage/plugin-proxy-backend@0.6.1
Patch Changes
9b5b744: Fixed handling of proxied SSE connections when the upstream server closes the connection- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/types@1.2.1
- @backstage/plugin-proxy-node@0.1.3
@backstage/plugin-proxy-node@0.1.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
@backstage/plugin-scaffolder-backend-module-azure@0.2.8
Patch Changes
2bd41ce: Made "publish:azure" action idempotent- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/plugin-scaffolder-backend-module-bitbucket@0.3.9
Patch Changes
- adfceee: Made "publish:bitbucket" action idempotent
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.8
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.8
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.8
Patch Changes
5266f1c: Made "publish:bitbucketCloud" action idempotent- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-bitbucket-cloud-common@0.2.29
@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.8
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.8
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.9
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
@backstage/plugin-scaffolder-backend-module-gcp@0.2.8
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/plugin-scaffolder-backend-module-gerrit@0.2.8
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/plugin-scaffolder-backend-module-gitea@0.2.8
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/plugin-scaffolder-backend-module-notifications@0.1.9
Patch Changes
25a7675: Made "notification:send" action idempotent- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-notifications-common@0.0.8
- @backstage/plugin-notifications-node@0.2.14
@backstage/plugin-scaffolder-backend-module-rails@0.5.8
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
@backstage/plugin-scaffolder-backend-module-sentry@0.2.8
Patch Changes
dcda66a: Made "sentry:project:create" action idempotent- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/plugin-scaffolder-backend-module-yeoman@0.4.9
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/types@1.2.1
- @backstage/plugin-scaffolder-node-test-utils@0.2.1
@backstage/plugin-scaffolder-node@0.8.1
Patch Changes
497d47a: Document the internal built-in filters, and ensure that the types are validated when usingcreateTemplateFilterandcreateTemplateGlobalFunctionfrom thezodschema.- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-scaffolder-common@1.5.10
@backstage/plugin-scaffolder-node-test-utils@0.2.1
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.1
- @backstage/backend-plugin-api@1.3.0
- @backstage/backend-test-utils@1.4.0
- @backstage/types@1.2.1
@backstage/plugin-search@1.4.25
Patch Changes
-
e655f62: UpdatedREADME.mdto useyarn startinstead ofyarn dev. -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-search-react@1.8.8
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-backend@2.0.1
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-permission-node@0.9.1
- @backstage/plugin-search-backend-node@1.3.10
- @backstage/backend-openapi-utils@0.5.2
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-backend-module-catalog@0.3.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-search-backend-node@1.3.10
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-backend-module-elasticsearch@1.7.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-search-backend-node@1.3.10
- @backstage/config@1.3.2
- @backstage/integration-aws-node@0.1.15
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-backend-module-explore@0.3.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-search-backend-node@1.3.10
- @backstage/config@1.3.2
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-backend-module-pg@0.5.43
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-search-backend-node@1.3.10
- @backstage/config@1.3.2
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-backend-module-stack-overflow-collator@0.3.8
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-search-backend-node@1.3.10
- @backstage/config@1.3.2
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-backend-module-techdocs@0.4.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.16.3
- @backstage/plugin-techdocs-node@1.13.2
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-search-backend-node@1.3.10
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-backend-node@1.3.10
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-search-react@1.8.8
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/theme@0.6.5
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-signals@0.0.18
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/theme@0.6.5
- @backstage/types@1.2.1
- @backstage/plugin-signals-react@0.0.12
@backstage/plugin-signals-backend@0.3.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/config@1.3.2
- @backstage/types@1.2.1
- @backstage/plugin-events-node@0.4.10
- @backstage/plugin-signals-node@0.1.19
@backstage/plugin-signals-node@0.1.19
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/config@1.3.2
- @backstage/types@1.2.1
- @backstage/plugin-events-node@0.4.10
@backstage/plugin-signals-react@0.0.12
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.10.6
- @backstage/types@1.2.1
@backstage/plugin-techdocs@1.12.5
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-techdocs-react@1.2.16
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/integration-react@1.2.6
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-search-react@1.8.8
- @backstage/plugin-auth-react@0.1.14
- @backstage/theme@0.6.5
- @backstage/integration@1.16.3
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-search-common@1.2.17
- @backstage/plugin-techdocs-common@0.1.0
@backstage/plugin-techdocs-addons-test-utils@1.0.47
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog@1.29.0
- @backstage/plugin-techdocs-react@1.2.16
- @backstage/plugin-catalog-react@1.17.0
- @backstage/integration-react@1.2.6
- @backstage/core-plugin-api@1.10.6
- @backstage/core-app-api@1.16.1
- @backstage/plugin-search-react@1.8.8
- @backstage/test-utils@1.7.7
- @backstage/plugin-techdocs@1.12.5
@backstage/plugin-techdocs-backend@2.0.1
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/plugin-catalog-node@1.16.3
- @backstage/plugin-techdocs-node@1.13.2
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/plugin-search-backend-module-techdocs@0.4.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-techdocs-common@0.1.0
@backstage/plugin-techdocs-module-addons-contrib@1.1.23
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
9c12a76: Fixed rendering issues inReportIssueaddon for unsupported repository types and improved shadow DOM event handling. The addon now properly prevents initialization when encountering unsupported repository types and correctly handles selection events within the shadow DOM. -
Updated dependencies
- @backstage/plugin-techdocs-react@1.2.16
- @backstage/frontend-plugin-api@0.10.1
- @backstage/integration-react@1.2.6
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/integration@1.16.3
@backstage/plugin-techdocs-node@1.13.2
Patch Changes
304a422: Update AWS file retrieval logic from storing file in buffer array to piping to res for better memory efficiency.2d7a3b8: Update Azure file retrieval logic from storing file in buffer array to piping to res for better memory efficiency.- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.15
- @backstage/plugin-search-common@1.2.17
- @backstage/plugin-techdocs-common@0.1.0
@backstage/plugin-techdocs-react@1.2.16
Patch Changes
-
0e9f7fe: Fix catalog entity docs page not loading due to multiple addons data attachment in the New Frontend System. -
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/version-bridge@1.0.11
@backstage/plugin-user-settings@0.8.21
Patch Changes
-
a47fd39: Removes instances of default React imports, a necessary update for the upcoming React 19 migration.https://legacy.reactjs.org/blog/2020/09/22/introducing-the-new-jsx-transform.html
-
Updated dependencies
- @backstage/plugin-catalog-react@1.17.0
- @backstage/frontend-plugin-api@0.10.1
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/core-app-api@1.16.1
- @backstage/theme@0.6.5
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-signals-react@0.0.12
- @backstage/plugin-user-settings-common@0.0.1
@backstage/plugin-user-settings-backend@0.3.1
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-auth-node@0.6.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-signals-node@0.1.19
- @backstage/plugin-user-settings-common@0.0.1
example-app@0.2.108
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.29.0
- @backstage/plugin-api-docs@0.12.6
- @backstage/plugin-devtools@0.1.26
- @backstage/plugin-search@1.4.25
- @backstage/plugin-techdocs-react@1.2.16
- @backstage/cli@0.32.0
- @backstage/canon@0.3.0
- @backstage/plugin-catalog-unprocessed-entities@0.2.16
- @backstage/plugin-kubernetes@0.12.6
- @backstage/plugin-catalog-react@1.17.0
- @backstage/plugin-techdocs-module-addons-contrib@1.1.23
- @backstage/integration-react@1.2.6
- @backstage/plugin-kubernetes-cluster@0.0.24
- @backstage/frontend-app-api@0.11.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/plugin-scaffolder-react@1.15.0
- @backstage/plugin-catalog-import@0.12.13
- @backstage/app-defaults@1.6.1
- @backstage/core-app-api@1.16.1
- @backstage/plugin-catalog-graph@0.4.18
- @backstage/plugin-notifications@0.5.4
- @backstage/plugin-user-settings@0.8.21
- @backstage/plugin-search-react@1.8.8
- @backstage/plugin-auth-react@0.1.14
- @backstage/plugin-scaffolder@1.30.0
- @backstage/plugin-techdocs@1.12.5
- @backstage/theme@0.6.5
- @backstage/plugin-home@0.8.7
- @backstage/plugin-org@0.6.38
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-search-common@1.2.17
- @backstage/plugin-signals@0.0.18
example-app-next@0.0.22
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.29.0
- @backstage/plugin-api-docs@0.12.6
- @backstage/plugin-search@1.4.25
- @backstage/plugin-techdocs-react@1.2.16
- @backstage/cli@0.32.0
- @backstage/canon@0.3.0
- @backstage/plugin-catalog-unprocessed-entities@0.2.16
- @backstage/plugin-kubernetes@0.12.6
- @backstage/plugin-catalog-react@1.17.0
- @backstage/plugin-techdocs-module-addons-contrib@1.1.23
- @backstage/frontend-plugin-api@0.10.1
- @backstage/frontend-defaults@0.2.1
- @backstage/integration-react@1.2.6
- @backstage/plugin-kubernetes-cluster@0.0.24
- @backstage/frontend-app-api@0.11.1
- @backstage/core-compat-api@0.4.1
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/plugin-permission-react@0.4.33
- @backstage/plugin-scaffolder-react@1.15.0
- @backstage/plugin-app-visualizer@0.1.18
- @backstage/plugin-catalog-import@0.12.13
- @backstage/app-defaults@1.6.1
- @backstage/core-app-api@1.16.1
- @backstage/plugin-catalog-graph@0.4.18
- @backstage/plugin-notifications@0.5.4
- @backstage/plugin-user-settings@0.8.21
- @backstage/plugin-search-react@1.8.8
- @backstage/plugin-auth-react@0.1.14
- @backstage/plugin-scaffolder@1.30.0
- @backstage/plugin-techdocs@1.12.5
- @backstage/theme@0.6.5
- @backstage/plugin-home@0.8.7
- @backstage/plugin-app@0.1.8
- @backstage/plugin-org@0.6.38
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-search-common@1.2.17
- @backstage/plugin-signals@0.0.18
app-next-example-plugin@0.0.22
Patch Changes
- Updated dependencies
example-backend@0.0.37
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/plugin-permission-backend@0.6.0
- @backstage/plugin-auth-backend@0.24.5
- @backstage/plugin-catalog-backend@1.32.1
- @backstage/plugin-scaffolder-backend@1.32.0
- @backstage/plugin-scaffolder-backend-module-github@0.7.0
- @backstage/backend-plugin-api@1.3.0
- @backstage/plugin-notifications-backend@0.5.5
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.9
- @backstage/plugin-proxy-backend@0.6.1
- @backstage/plugin-app-backend@0.5.1
- @backstage/plugin-auth-backend-module-github-provider@0.3.2
- @backstage/plugin-auth-node@0.6.2
- @backstage/plugin-devtools-backend@0.5.4
- @backstage/plugin-events-backend@0.5.1
- @backstage/plugin-kubernetes-backend@0.19.5
- @backstage/plugin-permission-node@0.9.1
- @backstage/plugin-search-backend@2.0.1
- @backstage/plugin-search-backend-node@1.3.10
- @backstage/plugin-signals-backend@0.3.3
- @backstage/plugin-techdocs-backend@2.0.1
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.1
- @backstage/plugin-catalog-backend-module-openapi@0.2.9
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.7
- @backstage/plugin-catalog-backend-module-unprocessed@0.5.7
- @backstage/plugin-search-backend-module-catalog@0.3.3
- @backstage/plugin-search-backend-module-techdocs@0.4.1
- @backstage/catalog-model@1.7.3
- @backstage/plugin-auth-backend-module-guest-provider@0.2.7
- @backstage/plugin-permission-backend-module-allow-all-policy@0.2.7
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-search-backend-module-explore@0.3.1
example-backend-legacy@0.2.109
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.9.0
- @backstage/plugin-permission-backend@0.6.0
- @backstage/plugin-scaffolder-backend-module-gitlab@0.9.0
- @backstage/plugin-catalog-node@1.16.3
- @backstage/plugin-auth-backend@0.24.5
- @backstage/plugin-catalog-backend@1.32.1
- @backstage/plugin-scaffolder-backend@1.32.0
- @backstage/backend-plugin-api@1.3.0
- @backstage/integration@1.16.3
- @backstage/plugin-auth-node@0.6.2
- @backstage/plugin-events-backend@0.5.1
- @backstage/plugin-kubernetes-backend@0.19.5
- @backstage/plugin-permission-node@0.9.1
- @backstage/plugin-search-backend@2.0.1
- @backstage/plugin-search-backend-node@1.3.10
- @backstage/plugin-signals-backend@0.3.3
- @backstage/plugin-techdocs-backend@2.0.1
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.7
- @backstage/plugin-catalog-backend-module-unprocessed@0.5.7
- @backstage/plugin-search-backend-module-catalog@0.3.3
- @backstage/plugin-search-backend-module-techdocs@0.4.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-events-node@0.4.10
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.8
- @backstage/plugin-scaffolder-backend-module-rails@0.5.8
- @backstage/plugin-search-backend-module-elasticsearch@1.7.1
- @backstage/plugin-search-backend-module-explore@0.3.1
- @backstage/plugin-search-backend-module-pg@0.5.43
- @backstage/plugin-signals-node@0.1.19
e2e-test@0.2.27
Patch Changes
- Updated dependencies
- @backstage/create-app@0.6.1
- @backstage/cli-common@0.1.15
- @backstage/errors@1.2.7
@internal/frontend@0.0.8
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.1
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@internal/scaffolder@0.0.8
Patch Changes
- Updated dependencies
techdocs-cli-embedded-app@0.2.107
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.29.0
- @backstage/plugin-techdocs-react@1.2.16
- @backstage/cli@0.32.0
- @backstage/integration-react@1.2.6
- @backstage/core-components@0.17.1
- @backstage/core-plugin-api@1.10.6
- @backstage/app-defaults@1.6.1
- @backstage/core-app-api@1.16.1
- @backstage/test-utils@1.7.7
- @backstage/plugin-techdocs@1.12.5
- @backstage/theme@0.6.5
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
@internal/plugin-todo-list@1.0.38
Patch Changes
- Updated dependencies
@internal/plugin-todo-list-backend@1.0.38
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.3.0
- @backstage/errors@1.2.7