@backstage/[email protected]
- 3256f14: BREAKING: Modules are no longer loaded unless the plugin that they extend is present.
-
10327fb: Deprecate the
getPath
option for thehttpRouterServiceFactory
and more generally the ability to configure plugin API paths to be anything else than/api/:pluginId/
. Requests towards/api/*
that do not match an installed plugin will also no longer be handled by the index router, typically instead returning a 404. -
2c50516: Fix auth cookie issuance for split backend deployments by preferring to set it against the request target host instead of origin
-
7e584d6: Fixed a bug where expired cookies would not be refreshed.
-
1a20b12: Make the auth service create and validate dedicated OBO tokens, containing the user identity proof.
-
00fca28: Implemented support for external access using both the legacy token form and static tokens.
-
d5a1fe1: Replaced winston logger with
LoggerService
-
bce0879: Service-to-service authentication has been improved.
Each plugin now has the capability to generate its own signing keys for token issuance. The generated public keys are stored in a database, and they are made accessible through a newly created endpoint:
/.backstage/auth/v1/jwks.json
.AuthService
can now issue tokens with a reduced scope using thegetPluginRequestToken
method. This improvement enables plugins to identify the plugin originating the request. -
54f2ac8: Added
initialization
option tocreateServiceFactory
which defines the initialization strategy for the service. The default strategy mimics the current behavior where plugin scoped services are initialized lazily by default and root scoped services are initialized eagerly. -
56f81b5: Improved error message thrown by
AuthService
when requesting a token for plugins that don't support the new authentication tokens. -
25ea3d2: Minor internal restructuring
-
d62bc51: Add support for limited user tokens by using user identity proof provided by the auth backend.
-
c884b9a: Automatically creates a get and delete cookie endpoint when a
user-cookie
policy is added. -
Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
-
2ce31b3: The default environment variable substitution function will now trim whitespace characters from the substituted value. This alleviates bugs where whitespace characters are mistakenly included in environment variables.
If you depend on the old behavior, you can override the default substitution function with your own, for example:
ConfigSources.default({ substitutionFunc: async name => process.env[name], });
-
99bab65: Support parameter substitution for environment variables
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 7b11422: Add AWS CodeCommit URL Reader/Integration
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
-
2bd291e: Adds a lint rule to
repo schema openapi lint
to enforceallowReserved
for all parameters. To fix this, simply addallowReserved: true
to your parameters, like so/v1/todos: get: operationId: ListTodos # ... parameters: - name: entity in: query + allowReserved: true schema: type: string
-
cfdc5e7: Adds two new commands,
repo schema openapi fuzz
andpackage schema openapi fuzz
for fuzzing your plugins documented with OpenAPI. This can help find bugs in your application code through the use of auto-generated schema-compliant inputs. For more information on the underlying library this leverages, take a look at the docs.
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- c664b15: feat(apollo-explorer): allow callbacks using apiholder
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 06a6725: New auth backend module to add
azure-easyauth
provider. Note that as part of this change the default provider ID has been changed fromeasyAuth
toazureEasyAuth
, which means that if you switch to this new module you need to update your app config as well as theprovider
prop of theProxiedSignInPage
in the frontend.
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- ba763b6: Migrate the Bitbucket auth provider to the new
@backstage/plugin-auth-backend-module-bitbucket-provider
module package.
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- c26218d: Created a separate module for the Cloudflare Access auth provider
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
-
c884b9a: BREAKING: Removed the path option from
CookieAuthRefreshProvider
anduseCookieAuthRefresh
.A new
CookieAuthRedirect
component has been added to redirect a public app bundle to the protected one when using theapp-backend
with a separate public entry point.
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 88d4769: Fix unauthorized requests by allowing unauthenticated requests.
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 18c7f12: Add
isApiType()
to EntitySwitch routing functions.
- bcb2674: Added a "create something similar" button to the
<AboutCard>
that is visible and links to the scaffolder template corresponding to the entity'sbackstage.io/source-template
annotation, if present. - 4ef0dcf: Fixed a bug that prevented the default
entityPresentationApi
from being set in apps using the new frontend system. - abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - 7495b36: Fixed sorting of columns created with
CatalogTable.columns.createLabelColumn
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 2e2167a: The name and title of the returned openapi doc entity are now configurable
- 58763e8: Use direct access of openapi.json files and not external route
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
-
29c3898: Remove use of
EventBroker
andEventSubscriber
for the GitHub org data providers.BREAKING CHANGE:
GithubOrgEntityProvider.onEvent
made privateGithubOrgEntityProvider.supportsEventTopics
removedeventBroker
option was removed fromGithubMultiOrgEntityProvider.fromConfig
GithubMultiOrgEntityProvider.supportsEventTopics
removed
This change only impacts users who still use the legacy backend system and who still use
eventBroker
as option when creating these entity providers.Please pass the
EventsService
instance as optionevents
instead. You can find more information at the installation documentation.
- d5a1fe1: Replaced winston logger with
LoggerService
- 469e87f: Properly instantiate
GithubMultiOrgEntityProvider
andGithubOrgEntityProvider
withEventsService
if defined - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- c6cafe6: Fixed bug in CardHeader not expecting commit status as an array as returned by GraphQL
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - 617faf0: Handle null values returned from GitHub for the statusCheckRollup value on the commit object
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 6c19c14: BREAKING:
KubernetesProxy
now requires theDiscoveryService
to be passed to the constuctor - 5dd8177: BREAKING Winston logger has been replaced with
LoggerService
- f5cec55: Fixing issue where
BackstageCredentials
were not properly forwarded for all calls - dd269e9: Fixed a bug where the proxy handler did not properly handle a missing header
- 9d89aed: Fixed a crash reading
credentials
fromundefined
. - e5a2ccc: Updated dependency
@types/http-proxy-middleware
to^1.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 939b4ec: Notifications-backend URL query parameter changed from
minimal_severity
tominimumSeverity
. - ec40998: On the Notifications page, the user can trigger "Save" or "Mark as read" actions once for multiple selected notifications.
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - 9a41a7b: Migrate signals and notifications to the new backend in local development
- 939b4ec: The severity icons now get their colors from the theme.
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 939b4ec: Notifications-backend URL query parameter changed from
minimal_severity
tominimumSeverity
. - ec40998: On the Notifications page, the user can trigger "Save" or "Mark as read" actions once for multiple selected notifications.
- 0d99528: Notification processor functions are now renamed to
preProcess
andpostProcess
. Additionally, processor name is now required to be returned bygetName
. A new processor functionalityprocessOptions
was added to process options before sending the notification. - e003e0e: The ordered list of notifications' severities is exported by notifications-common for reusability.
- 9a41a7b: Migrate signals and notifications to the new backend in local development
- 9987066: fix: retrieve relations and children when mapping group entities for notifications
- 6206039: Fix entity owner resolution in notifications
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- fae9638: Add examples for
run:yeoman
scaffolder action.
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 4d754e3: When using the New Backend System, the Elasticsearch provider will only be added if the
search.elasticsearch
config section exists.
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 5dd8177: BREAKING Winston logger has been replaced with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 007e7ea: Added placeholder for
listPublicServiceKeys()
in theAuthService
returned bycreateLegacyAuthAdapters
. - 00fca28: Ensure that
ServerTokenManager
also reads the newbackend.auth.externalAccess
settings - 25ea3d2: Minor internal restructuring
- e31bacc: Added
pullOptions
toDockerContainerRunner#runContainer
method to pass down options when pulling an image. - 7b11422: Add AWS CodeCommit URL Reader/Integration
- 75a53b8: KubernetesContainerRunner.runContainer no longer closes the
logStream
it receives as input. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 82ff03e: Use
PackageRole
type explicitly - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 007e7ea: Added a new required
listPublicServiceKeys
toAuthService
. - 54f2ac8: Added
initialization
option tocreateServiceFactory
which defines the initialization strategy for the service. The default strategy mimics the current behavior where plugin scoped services are initialized lazily by default and root scoped services are initialized eagerly. - 4fecffc: The credentials passed to the
issueUserCookie
method of theHttpAuthService
are no longer required to represent a user principal. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 3256f14:
startTestBackend
will now add placeholder plugins when a modules are provided without their parent plugin. - 007e7ea: Added mock of the new
listPublicServiceKeys
method forAuthService
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- dad7505: Fix the
CatalogClient::getEntities
method to only sort the resulting entities in case noorder
-parameter is provided. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
-
c884b9a: Fix the bundle public subpath configuration.
-
e3c213e: Add the deprecation plugin to the default linter setup, switched off.
This allows to disable deprecation warnings for
backstage-cli repo list-deprecations
with inline comments. -
4946f03: Updated dependency
webpack-dev-server
to^5.0.0
. -
6b5ddbe: Fix the backend plugin to use correct plugin id
-
4fecffc: When building the frontend app public assets are now also copied to the public dist directory when in use.
-
ed9260f: Added
versions:migrate
command to help move packages to the new@backstage-community
namespace -
Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- ed9260f: Added
versions:migrate
command to help move packages to the new@backstage-community
namespace - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- c884b9a: The app is now aware of if it is being served from the
app-backend
with a separate public and protected bundles. When in protected mode the app will now continuously refresh the session cookie, as well as clear the cookie if the user signs out. - abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d05d4bd: Moved
@backstage/core-app-api
to dev dependencies. - abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- ed5c901: No
undefined
class name used atMarkdownContent
if no custom class name was provided. - abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - f546e38: Added Link component in
TabUI
providing functionality like copy link or open in new tab. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 366cf07: Bumped create-app version.
- 036b9b3: Bumped create-app version.
- 2e1218c: Fix docs reference
- Updated dependencies
- @backstage/[email protected]
@backstage/[email protected]
- 9a41a7b: Allow defining custom sidebar item for page and login for the development app
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - 995f66b: add @backstage/no-top-level-material-ui-4-imports lint rule
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 9ef572d: fix lint rule fixer for more than one
Component + Prop
- 3a7eee7: eslint autofix for mui ThemeProvider
- d55828d: add fixer logic for import aliases
@backstage/[email protected]
- 83f24f6: add
@backstage/no-top-level-material-ui-4-imports
lint rule - c884b9a: The app is now aware of if it is being served from the
app-backend
with a separate public and protected bundles. When in protected mode the app will now continuously refresh the session cookie, as well as clear the cookie if the user signs out. - 7ef7cc8: Fix duplicated subpath on routes resolved by the
useRouteRef
hook. - abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - 35452b3: Fixed the type for
useRouteRef
, which wasn't handling optional external route refs correctly. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@techdocs/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
.
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
.
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- e5a2ccc: Updated dependency
@types/http-proxy-middleware
to^1.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- c884b9a: Track assets namespace in the cache store, implement a cookie authentication for when the public entry is enabled and used with the new auth services.
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- f02fe79: Refactored the
azure-easyauth
provider to use the implementation from@backstage/plugin-auth-backend-module-azure-easyauth-provider
. - d62bc51: Added token type header parameter and user identity proof to issued user tokens.
- ba763b6: Migrate the Bitbucket auth provider to the new
@backstage/plugin-auth-backend-module-bitbucket-provider
module package. - bf4d71a: Initial implementation of the
/v1/userinfo
endpoint, which is now able to parse and return thesub
andent
claims from a Backstage user token. - c26218d: Deprecated some of the Cloudflare Access types and used the implementation from
@backstage/plugin-auth-backend-module-cloudflare-access-provider
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 269b4c1: Read scopes from config and pass to AtlassianProvider as they are required
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
-
f286d59: Added support for AWS GovCloud (US) regions
-
30f5a51: Added
authModuleAwsAlbProvider
as a default export.It can now be used like this in your backend:
backend.add(import('@backstage/plugin-auth-backend-module-aws-alb-provider'));
-
Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- e0ed31c: Add user id annotation sign-in resolver
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 28eb473: Support revoke refresh token to oidc logout function
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d62bc51: Add
tokenTypes
export with constants for various Backstage token types. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
-
95b0573:
getAllTeams
now accepts an optionallimit
parameter which can be used to return more than the default limit of 100 teams from the Azure DevOps APIpullRequestOptions
have been equipped withteamsLimit
so that the property can be used withgetAllTeams
-
4d895b3: Fixed bug in EntityPageAzurePipeline component where build definition annotation used for viewing pipelines
-
abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. -
cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. -
Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
-
95b0573:
getAllTeams
now accepts an optionallimit
parameter which can be used to return more than the default limit of 100 teams from the Azure DevOps APIpullRequestOptions
have been equipped withteamsLimit
so that the property can be used withgetAllTeams
-
d5a1fe1: Replaced winston logger with
LoggerService
-
c7c4053: Fixed a bug where the
azureDevOps.token
was not truly optional -
Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
-
95b0573:
getAllTeams
now accepts an optionallimit
parameter which can be used to return more than the default limit of 100 teams from the Azure DevOps APIpullRequestOptions
have been equipped withteamsLimit
so that the property can be used withgetAllTeams
-
Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - cdb5ffa: Added the
no-top-level-material-ui-4-imports
ESLint rule to aid with the migration to Material UI v5 - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 93c1d9c: Update README to fix invalid import command
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
-
cfdc5e7: Fixes an issue where
/analyze-location
would incorrectly throw a 500 error on an invalid url. -
d5a1fe1: Replaced winston logger with
LoggerService
-
c52f7ac: Make entity collection errors a little quieter in the logs.
Instead of logging a warning line when an entity has an error during processing, it will now instead emit an event on the event broker.
This only removes a single log line, however it is possible to add the log line back if it is required by subscribing to the
CATALOG_ERRORS_TOPIC
as shown below.env.eventBroker.subscribe({ supportsEventTopics(): string[] { return [CATALOG_ERRORS_TOPIC]; }, async onEvent( params: EventParams<{ entity: string; location?: string; errors: Array<Error>; }>, ): Promise<void> { const { entity, location, errors } = params.eventPayload; for (const error of errors) { env.logger.warn(error.message, { entity, location, }); } }, });
-
Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 9b6320f: Retry msgraph API calls, due to frequent ETIMEDOUT errors. Also allow disabling fetching user photos.
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 47dec6f: Added the
no-top-level-material-ui-4-imports
ESLint rule to aid with the migration to Material UI v5 - b863830: Change behavior in EntityAutoCompletePicker to only hide filter if there are no available options. Previously the filter was hidden if there were <= 1 available options.
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 72f0622: Added the
no-top-level-material-ui-4-imports
ESLint rule to aid with the migration to Material UI v5 - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 4be6335: Changed the column that serves as a hyperlink from SOURCE to BUILD.
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - c43315a: Added the
no-top-level-material-ui-4-imports
ESLint rule to aid with the migration to Material UI v5 - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - 43ca784: Updated dependency
@types/yup
to^0.32.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 7899e55: Allow unauthenticated requests for HTTP ingress.
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 76320a7: Added the
no-top-level-material-ui-4-imports
ESLint rule to aid with the migration to Material UI v5 - abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- b9d7c57: Updated README
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d137034: Added the
no-top-level-material-ui-4-imports
ESLint rule to aid with the migration to Material UI v5 - abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 293347f: Added ESLint rule
no-top-level-material-ui-4-imports
in thehome-react
plugin to migrate the Material UI imports. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - 7a3789a: Added the
no-top-level-material-ui-4-imports
ESLint rule to aid with the migration to Material UI v5 - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - 20f01d6: Updated dependency
@types/testing-library__jest-dom
to^6.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- f5cec55: Fixing issue where
BackstageCredentials
were not properly forwarded for all calls - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- e6d474f: Fixed ResourceUtilization component for POD Memory Limits
- 58800ba: Added the
no-top-level-material-ui-4-imports
ESLint rule to aid with the migration to Material UI v5 - abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 0d99528: Notification processor functions are now renamed to
preProcess
andpostProcess
. Additionally, processor name is now required to be returned bygetName
. A new processor functionalityprocessOptions
was added to process options before sending the notification. - e003e0e: The ordered list of notifications' severities is exported by notifications-common for reusability.
@backstage/[email protected]
- 0d99528: Notification processor functions are now renamed to
preProcess
andpostProcess
. Additionally, processor name is now required to be returned bygetName
. A new processor functionalityprocessOptions
was added to process options before sending the notification. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - cfb2b78: Added the
no-top-level-material-ui-4-imports
ESLint rule to aid with the migration to Material UI v5 - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 29fa05b: Fixed an issue causing
ServerPermissionClient
to generate an invalid token for authorizing permissions against the permission backend. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- e5a2ccc: Updated dependency
@types/http-proxy-middleware
to^1.0.0
. - 43ca784: Updated dependency
@types/yup
to^0.32.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 4f1f6ca: Use default value for
MyGroupsPicker
if provided - 605c971: Allow the task list search to work on the Scaffolder template title.
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - 87d2eb8: Updated dependency
json-schema-library
to^9.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - 419e948: Don't show login prompt if token is set in the state
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- f34a9b1: The
catalog:write
action now automatically adds abackstage.io/template-source
annotation, indicating which Scaffolder template was used to create the entity. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 33f958a: Improve examples to ensure consistency across all publish actions
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 33f958a: Improve examples to ensure consistency across all publish actions
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 8dd33a1: Added examples for publish:bitbucketCloud actions
- 33f958a: Improve examples to ensure consistency across all publish actions
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 4a15c86: Add examples for
publish:bitbucketServer
scaffolder action & improve related tests - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 0fb178e: Add examples for
publish:gerrit:review
scaffolder action & improve related tests - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 33f958a: Improve examples to ensure consistency across all publish actions
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- 33f958a: Improve examples to ensure consistency across all publish actions
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- aa514d1: Add examples for
publish:gitlab:merge-request
scaffolder action & improve related tests - 52f40ea: Add examples for
gitlab:group:ensureExists
scaffolder action & improve related tests - 33f958a: Improve examples to ensure consistency across all publish actions
- d112225: Add examples for
gitlab:projectDeployToken:create
scaffolder action & improve related tests - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
-
abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. -
87d2eb8: Updated dependency
json-schema-library
to^9.0.0
. -
cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. -
0e692cf: Added ESLint rule
no-top-level-material-ui-4-imports
to migrate the Material UI imports. -
df99f62: The
value
sent on thecreate
analytics event (fired when a Scaffolder template is executed) is now set to the number of minutes saved by executing the template. This value is derived from thebackstage.io/time-saved
annotation on the template entity, if available.Note: the
create
event is now captured in the<Workflow>
component. If you are directly making use of the alpha-exported<Stepper>
component, an analyticscreate
event will no longer be captured on your behalf. -
Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 2bd291e: Allow reserved characters in requests.
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
-
cf163a5: Enable module only on supported databases
Also pass logger to the service
-
Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 8d50bd3: add mui imports eslint rule
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - 9a41a7b: Migrate signals and notifications to the new backend in local development
- f06458c: fixed typo in docs
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 5f9877b: Fix unauthorized signals connection by allowing unauthenticated requests
- 9a41a7b: Migrate signals and notifications to the new backend in local development
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - f06458c: fixed typo in docs
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 8e28c88: Allow overriding default techdocs preparers with new
TechdocsPreparerExtensionPoint
- c884b9a: Use the default cookie endpoints added automatically when a cookie policy is set.
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 8e28c88: Allow overriding default techdocs preparers with new
TechdocsPreparerExtensionPoint
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- b450af3: Added ESLint rule
no-top-level-material-ui-4-imports
in the Techdocs-react plugin to migrate the Material UI imports. - abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- 2bd291e: Allow reserved characters in requests.
- d5a1fe1: Replaced winston logger with
LoggerService
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
@backstage/[email protected]
- abfbcfc: Updated dependency
@testing-library/react
to^15.0.0
. - cb1e3b0: Updated dependency
@testing-library/dom
to^10.0.0
. - Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- [email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- [email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
@internal/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
@internal/[email protected]
- Updated dependencies
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]
- @backstage/[email protected]