83 KiB
Release v1.34.0
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.34.0
@backstage/backend-app-api@1.1.0
Minor Changes
ebf083d: Service factories added by feature loaders now have lower priority and will be ignored if a factory for the same service is added directly bybackend.add(serviceFactory).12eac85: EXPERIMENTAL: Adds a newinstanceMetadataServiceto hold information about a specific backend instance.
Patch Changes
eef3ef1: Removed unusedexpressdependencies.ae2408b: Add atoStringon the defaultBackendFeatureMetaimplementations5c9cc05: Use native fetch instead of node-fetch0e9c9fa: As soon as a backend termination signal is received, call before shutting down root lifecycle hooks.- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/backend-defaults@0.6.0
Minor Changes
-
fd5d337: Added a newbackend.health.headersconfiguration that can be used to set additional headers to include in health check responses.BREAKING CONSUMERS: As part of this change the
createHealthRouterfunction exported from@backstage/backend-defaults/rootHttpRouternow requires the root config service to be passed through theconfigoption. -
3f34ea9: Throttles Bitbucket Server API calls -
de6f280: BREAKING Upgraded @keyv/redis and keyv packages to resolve a bug related to incorrect resolution of cache keys.This is a breaking change for clients using the
redisstore for cache withuseRedisSetsoption set to false since cache keys will be calculated differently (without the sets:namespace: prefix). For clients with default configuration (or useRedisSets set to false) the cache keys will stay the same, but since @keyv/redis library no longer supports redis sets they won't be utilised anymore.If you were using
useRedisSetsoption in configuration make sure to remove it fromapp-config.yaml:backend: cache: store: redis connection: redis://user:pass@cache.example.com:6379 - useRedisSets: false -
29180ec: BREAKING PRODUCERS: TheLifecycleMiddlewareOptions.startupRequestPauseTimeouthas been removed. Use thebackend.lifecycle.startupRequestPauseTimeoutsetting in yourapp-config.yamlfile to customize how thecreateLifecycleMiddlewarefunction should behave. Also the root config service is required as an option when calling thecreateLifecycleMiddlewarefunction:- createLifecycleMiddleware({ lifecycle, startupRequestPauseTimeout }) + createLifecycleMiddleware({ config, lifecycle }) -
277092a: ImplementedAzureBlobStorageUrlReaderto read from the url of committed location from the entity provider -
18a2c00: All middleware used by the defaultcoreServices.httpis now exported for use by custom implementations.
Patch Changes
dfc8b41: Updated dependency@opentelemetry/apito^1.9.0.5b1e68c: Immediately close all connections when shutting down in local development.8863b38: ExportPluginTokenHandlerandpluginTokenHandlerDecoratorServiceRefto allow for custom decoration of the plugin token handler without having to re-implement the entire handler.29180ec: Fix server response time by moving the lifecycle startup hooks back to the plugin lifecycle service.57e0b11: The user and plugin token verification in the defaultAuthServiceimplementation will no longer forward verification errors to the caller, and instead log them as warnings.97c6837: ExportDefaultHttpAuthServiceto allow for custom token extraction logic.e5255f1: Log request and response metadata so it can be used for filtering log messages. The format of the request date was also changed fromclftoutc.57e0b11: The defaultauthServiceFactorynow correctly depends on the plugin scopedLoggerservices rather than the root scoped one.fe87fbf: Add task metrics as two gauges that track the last start and end timestamps as epoch seconds.1ac6b72: Supportconnection.type: cloudsqlin database client for usage with@google-cloud/cloud-sql-connectorandiamauth0e9c9fa: Implements theDefaultRootLifecycleService.addBeforeShutdownHookmethod, and updatesDefaultRootHttpRouterServiceandDefaultRootHealthServiceto listen to that event to stop accepting traffic and close service connections.d0cbd82: Remove use of thestoppablelibrary on theDefaultRootHttpRouterServiceas Node's native http server close method already drains requests.5c9cc05: Use native fetch instead of node-fetchcf627c6: Fixed an issue in the WinstonLogger where Errors thrown and given to logger.error with field values that could not be cast to a string would throw a TypeError- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/backend-app-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/cli-node@0.2.11
- @backstage/plugin-permission-node@0.8.6
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/backend-dev-utils@0.1.5
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/types@1.2.0
@backstage/backend-openapi-utils@0.4.0
Minor Changes
afcebea: Fixed a Typescript error when trying to use the new OpenAPI server-side generated code.
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
@backstage/backend-plugin-api@1.1.0
Minor Changes
12eac85: EXPERIMENTAL: Adds a newinstanceMetadataServiceto hold information about a specific backend instance.
Patch Changes
-
eef3ef1: Removed unusedexpressdependencies. -
0e9c9fa: TheRootLifecycleServicenow has a newaddBeforeShutdownHookmethod, and hooks added through this method will run immediately when a termination event is received.The backend will not proceed with the shutdown and run the
Shutdownhooks until allBeforeShutdownhooks have completed. -
Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
@backstage/backend-test-utils@1.2.0
Minor Changes
-
de6f280: BREAKING Upgraded @keyv/redis and keyv packages to resolve a bug related to incorrect resolution of cache keys.This is a breaking change for clients using the
redisstore for cache withuseRedisSetsoption set to false since cache keys will be calculated differently (without the sets:namespace: prefix). For clients with default configuration (or useRedisSets set to false) the cache keys will stay the same, but since @keyv/redis library no longer supports redis sets they won't be utilised anymore.If you were using
useRedisSetsoption in configuration make sure to remove it fromapp-config.yaml:backend: cache: store: redis connection: redis://user:pass@cache.example.com:6379 - useRedisSets: false
Patch Changes
0e9c9fa: Mock the newRootLifecycleService.addBeforeShutdownHookmethod.- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/backend-app-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/catalog-client@1.9.0
Minor Changes
384e494: Internal updates to generated code.
Patch Changes
d7e7836: Fixed a bug in thequeryEntitiesmethod where errors were not being handled properly.- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
@backstage/integration@1.16.0
Minor Changes
277092a: Add the integration for Azure blob storage to read the credentials to access the storage account and provide the default credential provider.
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/repo-tools@0.12.0
Minor Changes
c1eccd6: Fix invalid path and malformed flags bugs in api-reports.ts
Patch Changes
860e3b5: Generated OpenAPI clients now support paths with tags.5f04976: Fixed a bug that caused missing code in published packages.00058d0: Thegenerate-patchcommand will now add a single resolution entry for all versions of the patched package, rather than separate entries for each version query.- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/cli-node@0.2.11
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/cli-common@0.1.15
@backstage/plugin-catalog@1.26.0
Minor Changes
25beb82: Adds an optional columns attribute to HasSubdomainsCardProps and changes its default columns39f1abc: Consistent title behaviour across CatalogTable, CursorPaginatedCatalogTable, and OffsetPaginatedCatalogTable.1ffb9f3: UpdateCatalogTabletitle to use properly capitalized Kind facets (e.g. 'Component' instead of 'component')
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/plugin-search-react@1.8.4
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-react@0.4.29
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-catalog-backend@1.29.0
Minor Changes
02bd2cb: Added a newcatalog.disableRelationsCompatibilityconfiguration option that avoids JSON deserialization and serialization if possible when reading entities. This significantly reduces the memory usage of the catalog, and slightly increases performance, but it removes the backwards compatibility processing that ensures that bothentity.relation[].targetandentity.relation[].targetRefare present in returned entities.c1307b4: Implement/entitiesin terms ofqueryEntitiesto not run into memory and performance problems on large catalogs384e494: Internal updates to generated code.1d0bc11: Fetch all facets in a single database query
Patch Changes
dfc8b41: Updated dependency@opentelemetry/apito^1.9.0.8013c9c: Perform the by-query count inlined with the main queryfeba9ee: Internal refactor of filter parsing logic.1fdb48e: Use a faster count method on pg when computing some metricse4aab10: Fix a bug where sometimes theby-queryendpoint could return nulls for entities that were not yet stitched.f159b25: Compute deltas more efficiently, which generally leads to less wasted processing cycles0c33465: Implement/entities/by-name/:kind/:namespace/:nameusinggetEntitiesByRefs56511ba: Be more aggressive in dequeueing entities for stitching71152e3: Correctly report stitching queue length5c9cc05: Use native fetch instead of node-fetchd93390d: When parsing filters, do not make redundantanyOfandallOfnodes when there's only a single entry within them3ab57c6: Support changing location keys on existing entities, in delta mutations24ecea8: Avoid extra ordering in by-query when the user doesn't ask for it2924ffe: Compute some metrics using search table facet aggregations instead of reading the full refresh state- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-module-catalog@0.2.6
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-client@1.9.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/backend-openapi-utils@0.4.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-catalog-backend-module-azure@0.3.0
Minor Changes
277092a: Added the Azure Blob Storage as catalog entity provider to import all the desired entities from storage account provided in app-config.yaml
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-bitbucket-server@0.3.0
Minor Changes
3f34ea9: Throttles Bitbucket Server API calls
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
@backstage/plugin-catalog-backend-module-gitlab@0.6.0
Minor Changes
99dce5c: Implemented discovery for top-level groups defined in config.group or if undefined global top-level group in Gitlab
Patch Changes
191e5bf:restrictUsersToGroupshould use the entire group path when getting members5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-ldap@0.11.0
Minor Changes
732700a: Updated fix for ldap entity mapping which doesn't require extra config setting of dnCaseSensitive95ac4a2: Add new ldap vendor config 'LLDAP'
Patch Changes
5f04976: Fixed a bug that caused missing code in published packages.- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-node@1.15.0
Minor Changes
8edc4cd: Updated thecatalogServiceMockreturn type to match bothCatalogServiceandCatalogApi
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-catalog-react@1.15.0
Minor Changes
1ffb9f3: UpdateEntityKindFilterto include alabelfield with the properly capitalized Kind facet stringceaf602: Sort EntityTypePicker by default
Patch Changes
d97a2cd: Fixed an issue causing theEntityOwnerPickerto reset scrolling when more elements are loaded.c36bd35: Internal refactor to break potential circular importsf18c67d: Fix catalog filtering to allow searching entities by display name95092a6: Fixed an issue where<CatalogFilterLayout.Filters />would re-render its children on page load for smaller screens, potentially leading to unnecessary additional backend requests.4a43398: Fixed an issue where theEntityOwnerPickercomponent failed to load when themodeprop was set toowners-only. In this mode, theEntityOwnerPickerdoes not load details about the owners, such asdisplayNameortitle. To display these details, usemode=allinstead.- Updated dependencies
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/frontend-test-utils@0.2.4
- @backstage/integration-react@1.2.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-permission-react@0.4.29
@backstage/plugin-devtools-backend@0.5.0
Minor Changes
c781a9a: BREAKING Removed support for what is known as the legacy backend, please use the New Backend System.
Patch Changes
1e624ca: Restrict@types/expressversion range from*to^4.17.6.5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-devtools-common@0.1.14
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-events-backend@0.4.0
Minor Changes
384e494: Internal updates to generated code.
Patch Changes
-
1577511: Allow configuring a timeout for event bus polling requests. This can be set like so in your app-config:events: notifyTimeoutMs: 30000 -
Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/backend-openapi-utils@0.4.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-notifications@0.5.0
Minor Changes
fc15b77: Switched to using the new/notificationsendpoints. Be sure to update thenotificationsplugin backend before deploying this frontend plugin change.
Patch Changes
- Updated dependencies
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/plugin-notifications-common@0.0.7
- @backstage/plugin-signals-react@0.0.8
@backstage/plugin-notifications-backend@0.5.0
Minor Changes
fc15b77: BREAKING: Removed redundant/healthendpoint, switch to using the built-in endpoint instead.
Patch Changes
fc15b77: Deprecated root '/' endpoints, moving them under/notificationsinstead.5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-client@1.9.0
- @backstage/plugin-notifications-node@0.2.10
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-notifications-common@0.0.7
- @backstage/plugin-signals-node@0.1.15
@backstage/plugin-scaffolder-backend@1.28.0
Minor Changes
c05a343: Emit scaffolder events using the optionalEventsService
Patch Changes
dfc8b41: Updated dependency@opentelemetry/apito^1.9.0.3c62a50: Experimental support forformDecoratorsto enable secret collection and mutations to the parameters for scaffolder tasks6c326cf: The --no-node-snapshot check needs to be done against process.execArgv instead of process.argve913fdf: Add github backend module to create-app and improve error messages8f59dc5: Add fs:readdir to scaffolder startup0851834: Resolved an issue where thetemplateManagementPermissionwas not being exposed through the/permissions/metadataendpoint.- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-scaffolder-backend-module-github@0.5.4
- @backstage/integration@1.16.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/plugin-scaffolder-backend-module-gitlab@0.7.0
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.4
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/catalog-client@1.9.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.5
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.4
- @backstage/plugin-scaffolder-backend-module-gerrit@0.2.4
- @backstage/plugin-scaffolder-backend-module-gitea@0.2.4
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-bitbucket-cloud-common@0.2.26
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.3
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-scaffolder-backend-module-azure@0.2.4
@backstage/plugin-scaffolder-backend-module-gitlab@0.7.0
Minor Changes
c4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker32459d0: BREAKING: Upgraded thegitbeakerlibrary to version 41. As part of this, thescopesparameter to thegitlab:projectDeployToken:createis no longer optional, so you will have to pass it a value (for example['read_repository']).
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-search-backend@1.8.0
Minor Changes
384e494: Internal updates to generated code.
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/backend-openapi-utils@0.4.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-techdocs@1.12.0
Minor Changes
e153ca6: Add pagination support to TechDocs Index Page and make it the default
Patch Changes
7d8777d: Added support for the Search bar in docs residing in the entity page tab, and not only the global "/docs" page.- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/integration@1.16.0
- @backstage/plugin-search-react@1.8.4
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/plugin-auth-react@0.1.10
- @backstage/plugin-search-common@1.2.16
- @backstage/plugin-techdocs-common@0.1.0
- @backstage/plugin-techdocs-react@1.2.12
@backstage/app-defaults@1.5.15
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.15.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-permission-react@0.4.29
@backstage/backend-dynamic-feature-service@0.5.2
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/backend-app-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/cli-node@0.2.11
- @backstage/plugin-events-backend@0.4.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-app-node@0.1.28
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
@backstage/catalog-model@1.7.2
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
@backstage/cli@0.29.4
Patch Changes
2b6c1ea: If the Backstage yarn plugin is installed, it will now be automatically updated as part ofversions:bump.7dcff85: Remove special-casing for@typespackages when generating dependency entries during templating3c3a7e6: Revertcss-loader@v7bump0aff006: Bumped the version range forhtml-webpack-pluginto fix thehtmlPluginExports.getCompilationHooks is not a functionerror when using experimental Rspack.583f3d4: Added@backstage/cli/config/prettieras a replacement for@spotify/prettier-config, but with the same configuration.62a9062: Updated dependency@module-federation/enhancedto^0.8.0.5f04976: Updaterollupto avoid issues with build output when runningbackstage-cli package build.5f04976: Fixed a bug that caused missing code in published packages.a49030a: Add support for--output-fileoption from ESLint topackage lintandrepo lintcommands.96331fa: Enhance the behavior of the experimental support for module federation in the backstage CLI, by using thepackage.jsonexports (when present) to complete the list of exposed modules. This allows, for example, using exportedalphadefinitions through module federation.5c9cc05: Use native fetch instead of node-fetchdcd99d2: added experimental RSPack support for build command in the repo scope- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/release-manifests@0.0.12
- @backstage/cli-node@0.2.11
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/eslint-plugin@0.1.10
- @backstage/types@1.2.0
@backstage/cli-node@0.2.11
Patch Changes
af665ea: add PackageManager and Lockfile interfaces for future usecbfc69e: Internal refactor- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/types@1.2.0
@backstage/config@1.3.1
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
@backstage/config-loader@1.9.3
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/core-app-api@1.15.3
Patch Changes
e5fa018: The OAuth 2 client implementations will now attempt to refresh the session when the existing session doesn't have the required scopes. The previous behavior was to only try to refresh the session of it was missing, and otherwise directly request a new session. This fixes an issue where some auth providers will not return access tokens with certain scopes unless explicitly requested, leading to an auth popup even if the underlying session already had been granted the requested scopes.2830689: Decrease OAuth2 token refresh grace period- Updated dependencies
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
@backstage/core-compat-api@0.3.4
Patch Changes
1f30730: Updated dependency@oriflame/backstage-plugin-score-cardto^0.9.0.- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-plugin-api@1.10.2
- @backstage/version-bridge@1.0.10
@backstage/core-components@0.16.2
Patch Changes
e47be38: Added data-testid to placeholder rendered by Progress component to simplify assertions in tests- Updated dependencies
- @backstage/theme@0.6.3
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/version-bridge@1.0.10
@backstage/core-plugin-api@1.10.2
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
@backstage/create-app@0.5.23
Patch Changes
5819f8d: Updated Dockerfile to includebackstage.jsonfile583f3d4: Updated the template to use@backstage/cli/config/prettierinstead of@spotify/prettier-config.e913fdf: Add github backend module to create-app and improve error messages5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/cli-common@0.1.15
@backstage/dev-utils@1.1.5
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-app-api@1.15.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/app-defaults@1.5.15
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
@backstage/errors@1.2.6
Patch Changes
1d4b5b9: Trimerror.cause.stackin addition toerror.stackwhen trimming stack traces from serialized errors.- Updated dependencies
- @backstage/types@1.2.0
@backstage/frontend-app-api@0.10.3
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.15.3
- @backstage/frontend-plugin-api@0.9.3
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/frontend-defaults@0.1.4
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
@backstage/frontend-defaults@0.1.4
Patch Changes
- Updated dependencies
- @backstage/plugin-app@0.1.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/frontend-app-api@0.10.3
@backstage/frontend-plugin-api@0.9.3
Patch Changes
5f04976: Fixed a bug that caused missing code in published packages.- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
@backstage/frontend-test-utils@0.2.4
Patch Changes
- Updated dependencies
- @backstage/plugin-app@0.1.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/config@1.3.1
- @backstage/frontend-app-api@0.10.3
- @backstage/test-utils@1.7.3
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
@backstage/integration-aws-node@0.1.14
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/integration-react@1.2.2
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
@backstage/release-manifests@0.0.12
Patch Changes
2e140dc: Switch to native fetch for loading release manifestsb29eaea: Allow overriding the fetch function used inside getManifestByVersion
@techdocs/cli@1.8.24
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-techdocs-node@1.12.15
- @backstage/catalog-model@1.7.2
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
@backstage/test-utils@1.7.3
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.15.3
- @backstage/theme@0.6.3
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-permission-react@0.4.29
@backstage/theme@0.6.3
Patch Changes
5f04976: Fixed a bug that caused missing code in published packages.
@backstage/plugin-api-docs@0.12.2
Patch Changes
11babd9: Fix link styling in ProvidedApisCard component so it aligns with other card components.- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/plugin-catalog@1.26.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-react@0.4.29
@backstage/plugin-app@0.1.4
Patch Changes
e5fa018: The OAuth 2 client implementations will now attempt to refresh the session when the existing session doesn't have the required scopes. The previous behavior was to only try to refresh the session of it was missing, and otherwise directly request a new session. This fixes an issue where some auth providers will not return access tokens with certain scopes unless explicitly requested, leading to an auth popup even if the underlying session already had been granted the requested scopes.5f04976: Fixed a bug that caused missing code in published packages.- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/plugin-permission-react@0.4.29
@backstage/plugin-app-backend@0.4.3
Patch Changes
74c3f2a: Fixed a bug where config would not be injected on the/and/index.htmlpaths.5c9cc05: Use native fetch instead of node-fetchd66fa80: Fix root route handling when query parameters are present- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-app-node@0.1.28
@backstage/plugin-app-node@0.1.28
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/config-loader@1.9.3
@backstage/plugin-app-visualizer@0.1.14
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
@backstage/plugin-auth-backend@0.24.1
Patch Changes
c907440: Improved error forwarding for OAuth refresh endpoints40518ab: Fix issue withjwksendpoint returning invalid data withfirestore5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.3
- @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.3
- @backstage/plugin-auth-backend-module-microsoft-provider@0.2.3
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.1
- @backstage/plugin-auth-backend-module-google-provider@0.2.3
- @backstage/errors@1.2.6
- @backstage/plugin-auth-backend-module-atlassian-provider@0.3.3
- @backstage/plugin-auth-backend-module-auth0-provider@0.1.3
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.3
- @backstage/plugin-auth-backend-module-github-provider@0.2.3
- @backstage/plugin-auth-backend-module-gitlab-provider@0.2.3
- @backstage/plugin-auth-backend-module-oauth2-provider@0.3.3
- @backstage/plugin-auth-backend-module-oidc-provider@0.3.3
- @backstage/plugin-auth-backend-module-okta-provider@0.1.3
- @backstage/plugin-auth-backend-module-onelogin-provider@0.2.3
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.3
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.3
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.3
@backstage/plugin-auth-backend-module-atlassian-provider@0.3.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-auth0-provider@0.1.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-aws-alb-provider@0.3.1
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/plugin-auth-backend@0.24.1
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
@backstage/plugin-auth-backend-module-bitbucket-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.3
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.3
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
@backstage/plugin-auth-backend-module-github-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-gitlab-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-google-provider@0.2.3
Patch Changes
79b055a: Pass throughincludeGrantedScopesin order to persist scopes across refresh calls- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-guest-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
@backstage/plugin-auth-backend-module-microsoft-provider@0.2.3
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-oauth2-provider@0.3.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
@backstage/plugin-auth-backend-module-oidc-provider@0.3.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.24.1
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-okta-provider@0.1.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-onelogin-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-pinniped-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/config@1.3.1
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.4.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-model@1.7.2
@backstage/plugin-auth-node@0.5.5
Patch Changes
c907440: Improved error forwarding for OAuth refresh endpoints1e624ca: Restrict@types/expressversion range from*to^4.17.6.5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-client@1.9.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-auth-react@0.1.10
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
@backstage/plugin-bitbucket-cloud-common@0.2.26
Patch Changes
- Updated dependencies
@backstage/plugin-catalog-backend-module-aws@0.4.6
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-kubernetes-common@0.9.1
@backstage/plugin-catalog-backend-module-backstage-openapi@0.4.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/backend-openapi-utils@0.4.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.4.3
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-client@1.9.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-bitbucket-cloud-common@0.2.26
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-gcp@0.3.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-kubernetes-common@0.9.1
@backstage/plugin-catalog-backend-module-gerrit@0.2.5
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-catalog-backend-module-github@0.7.8
Patch Changes
468bbcc: Pass in a default schedule to theGithubEntityProviderif none is provided5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-client@1.9.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-github-org@0.3.5
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend-module-github@0.7.8
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
@backstage/plugin-catalog-backend-module-gitlab-org@0.2.4
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend-module-gitlab@0.6.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.6.1
Patch Changes
dfc8b41: Updated dependency@opentelemetry/apito^1.9.0.cce9cae: Deprecate old-backend-systemIncrementalCatalogBuilderfe87fbf: Add task metrics as two gauges that track the last start and end timestamps as epoch seconds.5aa44d2: Wire up the events together in the new backend systemd42ecb0: Remove backend-common package from incremental-ingestion plugin and update related codecbfc69e: Create adev/index.tsentrypoint foryarn start3ca5f70: Ensure that the scheduled worker task doesn't run at an unreasonably high frequency- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-catalog-backend-module-logs@0.1.5
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
@backstage/plugin-catalog-backend-module-msgraph@0.6.5
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-openapi@0.2.5
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-puppetdb@0.2.5
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-model@1.7.2
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-unprocessed@0.5.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/plugin-catalog-unprocessed-entities-common@0.0.6
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-catalog-common@1.1.2
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.7.2
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-catalog-graph@0.4.14
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
@backstage/plugin-catalog-import@0.12.8
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/integration@1.16.0
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-unprocessed-entities@0.2.12
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
@backstage/plugin-catalog-unprocessed-entities-common@0.0.6
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-config-schema@0.1.63
Patch Changes
c36bd35: Internal refactor to break potential circular imports- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
@backstage/plugin-devtools@0.1.22
Patch Changes
- Updated dependencies
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-devtools-common@0.1.14
- @backstage/plugin-permission-react@0.4.29
@backstage/plugin-devtools-common@0.1.14
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-events-backend-module-aws-sqs@0.4.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-events-backend-module-azure@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
@backstage/plugin-events-backend-module-gerrit@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
@backstage/plugin-events-backend-module-github@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
@backstage/plugin-events-backend-module-gitlab@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
@backstage/plugin-events-backend-test-utils@0.1.39
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.6
@backstage/plugin-events-node@0.4.6
Patch Changes
-
79a06f6: Clarified purpose of subscriber ID in TSDoc forEventsServiceSubscribeOptions. -
1577511: Allow configuring a timeout for event bus polling requests. This can be set like so in your app-config:events: notifyTimeoutMs: 30000 -
Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
@backstage/plugin-home@0.8.3
Patch Changes
-
7248f3b: Added a new Quick Start Card toplugin-home, which can display basic info to get users the info they need to onboard to the Catalog.import { QuickStartCard } from '@backstage/plugin-home'; <QuickStartCard title="Onboarding to the Catalog" modalTitle="Onboarding Quick Start" docsLinkTitle="Learn more with getting started docs" docsLink="https://backstage.io/docs/getting-started" image={ <img src={ContentImage} alt="quick start" width="100%" height="100%" /> } cardDescription="Backstage system model will help you create new entities" video={ <video controls preload="auto" poster={"./videoPoster.png"} > <source src={"OnboardingDemo.mp4"} type="video/mp4" /> </video> } downloadImage={ <Button href={QuickStartPDF} target={'_blank'} download={true} > Download infographic button </Button> } />See the storybook examples
-
9951ba4: Updated dependency@rjsf/utilsto5.23.1. Updated dependency@rjsf/coreto5.23.1. Updated dependency@rjsf/material-uito5.23.1. Updated dependency@rjsf/validator-ajv8to5.23.1. -
Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-app-api@1.15.3
- @backstage/catalog-client@1.9.0
- @backstage/plugin-home-react@0.1.21
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
@backstage/plugin-home-react@0.1.21
Patch Changes
9951ba4: Updated dependency@rjsf/utilsto5.23.1. Updated dependency@rjsf/coreto5.23.1. Updated dependency@rjsf/material-uito5.23.1. Updated dependency@rjsf/validator-ajv8to5.23.1.- Updated dependencies
@backstage/plugin-kubernetes@0.12.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-kubernetes-common@0.9.1
- @backstage/plugin-kubernetes-react@0.5.2
@backstage/plugin-kubernetes-backend@0.19.1
Patch Changes
cbfc69e: Create adev/index.tsentrypoint foryarn start928db6a: Support fetch pod metrics with custom resources- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/errors@1.2.6
- @backstage/plugin-kubernetes-node@0.2.1
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/types@1.2.0
- @backstage/plugin-kubernetes-common@0.9.1
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-kubernetes-cluster@0.0.20
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-kubernetes-common@0.9.1
- @backstage/plugin-kubernetes-react@0.5.2
@backstage/plugin-kubernetes-common@0.9.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.7.2
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-kubernetes-node@0.2.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-model@1.7.2
- @backstage/types@1.2.0
- @backstage/plugin-kubernetes-common@0.9.1
@backstage/plugin-kubernetes-react@0.5.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/plugin-kubernetes-common@0.9.1
@backstage/plugin-notifications-backend-module-email@0.3.4
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-notifications-node@0.2.10
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/types@1.2.0
- @backstage/plugin-notifications-common@0.0.7
@backstage/plugin-notifications-common@0.0.7
Patch Changes
- Updated dependencies
- @backstage/config@1.3.1
@backstage/plugin-notifications-node@0.2.10
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-client@1.9.0
- @backstage/catalog-model@1.7.2
- @backstage/plugin-notifications-common@0.0.7
- @backstage/plugin-signals-node@0.1.15
@backstage/plugin-org@0.6.34
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-org-react@0.1.33
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
@backstage/plugin-permission-backend@0.5.52
Patch Changes
1e624ca: Restrict@types/expressversion range from*to^4.17.6.5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-permission-backend-module-allow-all-policy@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-permission-common@0.8.3
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-permission-node@0.8.6
Patch Changes
b149e2a: ThecreatePermissionIntegrationRouterfunction now detects and prevents the exposure of duplicate permissions.- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-permission-react@0.4.29
Patch Changes
- Updated dependencies
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-proxy-backend@0.5.9
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-scaffolder@1.27.2
Patch Changes
3c62a50: Experimental support forformDecoratorsto enable secret collection and mutations to the parameters for scaffolder tasksc4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker9951ba4: Updated dependency@rjsf/utilsto5.23.1. Updated dependency@rjsf/coreto5.23.1. Updated dependency@rjsf/material-uito5.23.1. Updated dependency@rjsf/validator-ajv8to5.23.1.184161f: Scaffolder field extensions registered withFormFieldBlueprintare now collected in theuseCustomFieldExtensionshook, enabling them for use in the scaffolder.- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/integration@1.16.0
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/plugin-scaffolder-react@1.14.2
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-react@0.4.29
@backstage/plugin-scaffolder-backend-module-azure@0.2.4
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-scaffolder-backend-module-bitbucket@0.3.5
Patch Changes
5f04976: Fixed a bug that caused missing code in published packages.5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.4
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.4
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.4
Patch Changes
c4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/plugin-bitbucket-cloud-common@0.2.26
@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.4
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.4
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.5
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-scaffolder-backend-module-gcp@0.2.4
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-scaffolder-backend-module-gerrit@0.2.4
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-scaffolder-backend-module-gitea@0.2.4
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-scaffolder-backend-module-github@0.5.4
Patch Changes
7df6179: adding requiredLinearHistory property for branch protection settingsb5e002b: Changegithub:environment:createaction to request and use a token when resolving reviewer entity refs from the Backstage catalog.e913fdf: Add github backend module to create-app and improve error messages973dd6f: Minor spell fix in action parameters- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/catalog-client@1.9.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
@backstage/plugin-scaffolder-backend-module-notifications@0.1.5
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/plugin-notifications-node@0.2.10
- @backstage/plugin-notifications-common@0.0.7
@backstage/plugin-scaffolder-backend-module-rails@0.5.4
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-scaffolder-backend-module-sentry@0.2.4
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-scaffolder-backend-module-yeoman@0.4.5
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/types@1.2.0
- @backstage/plugin-scaffolder-node-test-utils@0.1.17
@backstage/plugin-scaffolder-common@1.5.8
Patch Changes
3c62a50: Experimental support forformDecoratorsto enable secret collection and mutations to the parameters for scaffolder tasks- Updated dependencies
- @backstage/catalog-model@1.7.2
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-scaffolder-node@0.6.2
Patch Changes
c4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker1a23421: Make sure that isomorphic git push commands are not proxied.- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/types@1.2.0
@backstage/plugin-scaffolder-node-test-utils@0.1.17
Patch Changes
- Updated dependencies
- @backstage/backend-test-utils@1.2.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/types@1.2.0
@backstage/plugin-scaffolder-react@1.14.2
Patch Changes
3c62a50: Experimental support forformDecoratorsto enable secret collection and mutations to the parameters for scaffolder tasksc4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker28e286f: Added test coverage selectors to TemplateCard and its sub-componentsc846d76: Updated dependencyflattedto3.3.2.9951ba4: Updated dependency@rjsf/utilsto5.23.1. Updated dependency@rjsf/coreto5.23.1. Updated dependency@rjsf/material-uito5.23.1. Updated dependency@rjsf/validator-ajv8to5.23.1.97a13ad: Improve performance of typing into scaffolder secret widget184161f: Scaffolder field extensions registered withFormFieldBlueprintare now collected in theuseCustomFieldExtensionshook, enabling them for use in the scaffolder.b21a5ae: Open links in the scaffolder entity and step descriptions in a new tab, to ensure consistency and improve user experience- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/catalog-client@1.9.0
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
- @backstage/plugin-permission-react@0.4.29
@backstage/plugin-search@1.4.21
Patch Changes
d311c84: Use Select from core-components and update Lifecycle filter to use Select instead checkboxes.- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/plugin-search-react@1.8.4
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-search-backend-module-catalog@0.2.6
Patch Changes
ed0aaec: Update README- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-search-backend-module-elasticsearch@1.6.3
Patch Changes
991c9fe: Update the ElasticSearchSearchEngine translator to handle phrase searches.- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-search-backend-module-explore@0.2.6
Patch Changes
ed0aaec: Update README5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/config@1.3.1
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-search-backend-module-pg@0.5.39
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/config@1.3.1
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-search-backend-module-stack-overflow-collator@0.3.4
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/config@1.3.1
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-search-backend-module-techdocs@0.3.4
Patch Changes
ed0aaec: Update README5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-techdocs-node@1.12.15
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-search-backend-node@1.3.6
Patch Changes
5ae8a2c: Removed unnecessary dependency on@backstage/backend-defaults.- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-search-common@1.2.16
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-search-react@1.8.4
Patch Changes
d311c84: Use Select from core-components and update Lifecycle filter to use Select instead checkboxes.- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-signals@0.0.14
Patch Changes
- Updated dependencies
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/plugin-signals-react@0.0.8
@backstage/plugin-signals-backend@0.2.4
Patch Changes
1e624ca: Restrict@types/expressversion range from*to^4.17.6.5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-signals-node@0.1.15
@backstage/plugin-signals-node@0.1.15
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-signals-react@0.0.8
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
@backstage/plugin-techdocs-addons-test-utils@1.0.43
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/plugin-techdocs@1.12.0
- @backstage/core-app-api@1.15.3
- @backstage/plugin-catalog@1.26.0
- @backstage/plugin-search-react@1.8.4
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/test-utils@1.7.3
- @backstage/plugin-techdocs-react@1.2.12
@backstage/plugin-techdocs-backend@1.11.4
Patch Changes
5c9cc05: Use native fetch instead of node-fetch- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-module-techdocs@0.3.4
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-techdocs-node@1.12.15
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-techdocs-common@0.1.0
@backstage/plugin-techdocs-module-addons-contrib@1.1.19
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/plugin-techdocs-react@1.2.12
@backstage/plugin-techdocs-node@1.12.15
Patch Changes
5f04976: Fixed a bug that caused missing code in published packages.- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/plugin-search-common@1.2.16
- @backstage/plugin-techdocs-common@0.1.0
@backstage/plugin-techdocs-react@1.2.12
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/version-bridge@1.0.10
@backstage/plugin-user-settings@0.8.17
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-app-api@1.15.3
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/plugin-signals-react@0.0.8
- @backstage/plugin-user-settings-common@0.0.1
@backstage/plugin-user-settings-backend@0.2.28
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-signals-node@0.1.15
- @backstage/plugin-user-settings-common@0.0.1
example-app@0.2.104
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/cli@0.29.4
- @backstage/plugin-home@0.8.3
- @backstage/plugin-techdocs@1.12.0
- @backstage/core-app-api@1.15.3
- @backstage/plugin-catalog@1.26.0
- @backstage/plugin-scaffolder-react@1.14.2
- @backstage/plugin-scaffolder@1.27.2
- @backstage/plugin-search-react@1.8.4
- @backstage/plugin-search@1.4.21
- @backstage/plugin-notifications@0.5.0
- @backstage/theme@0.6.3
- @backstage/plugin-api-docs@0.12.2
- @backstage/core-components@0.16.2
- @backstage/plugin-catalog-graph@0.4.14
- @backstage/plugin-catalog-import@0.12.8
- @backstage/plugin-kubernetes@0.12.2
- @backstage/plugin-kubernetes-cluster@0.0.20
- @backstage/plugin-org@0.6.34
- @backstage/plugin-user-settings@0.8.17
- @backstage/app-defaults@1.5.15
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/frontend-app-api@0.10.3
- @backstage/integration-react@1.2.2
- @backstage/plugin-auth-react@0.1.10
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-catalog-unprocessed-entities@0.2.12
- @backstage/plugin-devtools@0.1.22
- @backstage/plugin-permission-react@0.4.29
- @backstage/plugin-search-common@1.2.16
- @backstage/plugin-signals@0.0.14
- @backstage/plugin-techdocs-module-addons-contrib@1.1.19
- @backstage/plugin-techdocs-react@1.2.12
example-app-next@0.0.18
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/cli@0.29.4
- @backstage/plugin-home@0.8.3
- @backstage/plugin-techdocs@1.12.0
- @backstage/core-app-api@1.15.3
- @backstage/plugin-app@0.1.4
- @backstage/plugin-catalog@1.26.0
- @backstage/plugin-scaffolder-react@1.14.2
- @backstage/plugin-scaffolder@1.27.2
- @backstage/plugin-search-react@1.8.4
- @backstage/plugin-search@1.4.21
- @backstage/plugin-notifications@0.5.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/plugin-api-docs@0.12.2
- @backstage/core-components@0.16.2
- @backstage/plugin-catalog-graph@0.4.14
- @backstage/plugin-catalog-import@0.12.8
- @backstage/plugin-kubernetes@0.12.2
- @backstage/plugin-kubernetes-cluster@0.0.20
- @backstage/plugin-org@0.6.34
- @backstage/plugin-user-settings@0.8.17
- @backstage/app-defaults@1.5.15
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/frontend-app-api@0.10.3
- @backstage/frontend-defaults@0.1.4
- @backstage/integration-react@1.2.2
- @backstage/plugin-app-visualizer@0.1.14
- @backstage/plugin-auth-react@0.1.10
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-catalog-unprocessed-entities@0.2.12
- @backstage/plugin-permission-react@0.4.29
- @backstage/plugin-search-common@1.2.16
- @backstage/plugin-signals@0.0.14
- @backstage/plugin-techdocs-module-addons-contrib@1.1.19
- @backstage/plugin-techdocs-react@1.2.12
app-next-example-plugin@0.0.18
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
example-backend@0.0.33
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.28.0
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/plugin-scaffolder-backend-module-github@0.5.4
- @backstage/plugin-auth-backend@0.24.1
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-module-techdocs@0.3.4
- @backstage/plugin-search-backend-module-catalog@0.2.6
- @backstage/plugin-search-backend-module-explore@0.2.6
- @backstage/plugin-app-backend@0.4.3
- @backstage/plugin-events-backend@0.4.0
- @backstage/plugin-search-backend@1.8.0
- @backstage/plugin-permission-backend@0.5.52
- @backstage/plugin-devtools-backend@0.5.0
- @backstage/plugin-signals-backend@0.2.4
- @backstage/plugin-notifications-backend@0.5.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/plugin-techdocs-backend@1.11.4
- @backstage/plugin-proxy-backend@0.5.9
- @backstage/plugin-kubernetes-backend@0.19.1
- @backstage/plugin-auth-backend-module-github-provider@0.2.3
- @backstage/plugin-catalog-backend-module-openapi@0.2.5
- @backstage/catalog-model@1.7.2
- @backstage/plugin-auth-backend-module-guest-provider@0.2.3
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.4.3
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.3
- @backstage/plugin-catalog-backend-module-unprocessed@0.5.3
- @backstage/plugin-permission-backend-module-allow-all-policy@0.2.3
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.5
example-backend-legacy@0.2.105
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.28.0
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/integration@1.16.0
- @backstage/plugin-search-backend-module-elasticsearch@1.6.3
- @backstage/plugin-auth-backend@0.24.1
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-module-techdocs@0.3.4
- @backstage/plugin-search-backend-module-catalog@0.2.6
- @backstage/plugin-search-backend-module-explore@0.2.6
- @backstage/plugin-app-backend@0.4.3
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/plugin-scaffolder-backend-module-gitlab@0.7.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-events-backend@0.4.0
- @backstage/plugin-search-backend@1.8.0
- @backstage/plugin-permission-backend@0.5.52
- @backstage/plugin-signals-backend@0.2.4
- @backstage/plugin-permission-node@0.8.6
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/plugin-techdocs-backend@1.11.4
- @backstage/plugin-proxy-backend@0.5.9
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.4
- @backstage/plugin-kubernetes-backend@0.19.1
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.3
- @backstage/plugin-catalog-backend-module-unprocessed@0.5.3
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-scaffolder-backend-module-rails@0.5.4
- @backstage/plugin-search-backend-module-pg@0.5.39
- @backstage/plugin-signals-node@0.1.15
e2e-test@0.2.23
Patch Changes
- Updated dependencies
- @backstage/create-app@0.5.23
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
@internal/frontend@0.0.4
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
@internal/scaffolder@0.0.4
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-react@1.14.2
- @backstage/frontend-plugin-api@0.9.3
techdocs-cli-embedded-app@0.2.103
Patch Changes
- Updated dependencies
- @backstage/cli@0.29.4
- @backstage/plugin-techdocs@1.12.0
- @backstage/core-app-api@1.15.3
- @backstage/plugin-catalog@1.26.0
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/app-defaults@1.5.15
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/test-utils@1.7.3
- @backstage/plugin-techdocs-react@1.2.12
yarn-plugin-backstage@0.0.4
Patch Changes
48cc7c5: Use yarn's built-in http utilities for fetching release manifestsac91864: Switch to usingreduceDependencyhook to replacebackstage:^versions. This makes the same yarn.lock file valid whether or not the plugin is installed.ee49cb4: Fixed path resolution on windows- Updated dependencies
- @backstage/release-manifests@0.0.12
- @backstage/cli-common@0.1.15
@internal/plugin-todo-list@1.0.34
Patch Changes
- Updated dependencies
@internal/plugin-todo-list-backend@1.0.34
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
@internal/plugin-todo-list-common@1.0.23
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.8.3