This changelog is no longer being updated and will be removed in the future, as each package now has its own changelog instead. It was a best-effort changelog where we manually collected breaking changes during the v0.1.1-alpha.<n>
releases.
If you encounter issues while upgrading to a newer version, don't hesitate to reach out on Discord or open an issue!
- Configuration files are no longer selected through
APP_ENV
orNODE_ENV
. The default configuration files areapp-config.yaml
and, fix it exists,app-config.local.yaml
in the repo root. To load a different set of files, use--config <path>
arguments.
- Configuration files are no longer selected through
APP_ENV
orNODE_ENV
. The default configuration files areapp-config.yaml
and, fix it exists,app-config.local.yaml
in the repo root. To load a different set of files, use--config <path>
arguments.
- The recommended way to set the configuration environment is now to use
APP_ENV
instead ofNODE_ENV
.
- A plugin database manager has been created, and plugins can now accept that interface as an argument during initialisation. Notably, the
auth
plugin has acreateRouter
signature change. See packages/backend/src/index.ts on how to set it up. #2697
- The default mount point for backend plugins have been changed to
/api
. These changes are done in the backend package itself, so it is recommended that you sync up existing backend packages with this new pattern. #2562 - A service discovery mechanism for backend plugins has been added, and is now a requirement for several backend plugins. See packages/backend/src/index.ts for how to set it up using
SingleHostDiscovery
from@backstage/backend-common
. Note that the default base path for plugins is set to/api
to that change, but it can be set to use the old behavior via thebasePath
option. #2600
- The default mount path of backend plugins was changed to
/api/:pluginId
, and as part of that it was needed to enable configuration of the base path of the auth backend, so that it can construct redirect URLs correctly. Note that you will also need to reconfigure any allowed redirect URLs to include/api
if you switch to the new recommended pattern. #2562 - The auth backend now requires an implementation of
PluginEndpointDiscovery
from@backstage/backend-common
to be passed in asdiscovery
. See the changes to@backstage/backend
.
- The proxy backend now requires an implementation of
PluginEndpointDiscovery
from@backstage/backend-common
to be passed in asdiscovery
. See the changes to@backstage/backend
.
- The TechDocs backend now requires an implementation of
PluginEndpointDiscovery
from@backstage/backend-common
to be passed in asdiscovery
. See the changes to@backstage/backend
.
- This plugin was removed, remove it from your backend if it's there. #2616
- Renamed
SessionStateApi
toSessionApi
andlogout
tosignOut
. Custom implementations of theSingInPage
app-component will need to rename theirlogout
function. The different auth provider items for theUserSettingsMenu
have been consolidated into a singleProviderSettingsItem
, meaning you need to replace existing usages ofOAuthProviderSettings
andOIDCProviderSettings
. #2555.
- Introduced initial version of an inverted app/plugin relationship, where plugins export components for apps to use, instead registering themselves directly into the app. This enables more fine-grained control of plugin features, and also composition of plugins such as catalog pages with additional cards and tabs. This breaks the use of
RouteRef
s, and there will be more changes related to this in the future, but this change lays the initial foundation. Seepackages/app
and followup PRs for how to update plugins for this change. #2076 - Switch to an automatic dependency injection mechanism for all Utility APIs, allowing plugins to ship default implementations of their APIs. See https://backstage.io/docs/api/utility-apis. #2285
- Change
backstage-cli backend:build-image
to forward all args todocker image build
, instead of just tag. Also add--build
flag for building all dependent packages before packaging the workspace for the docker build. #2299
- Change root
tsc
output dir todist-types
, in order to allow for standalone plugin repos. #2278
- We have simplified the way that GitHub ingestion works. The
catalog.processors.githubApi
key is deprecated, in favor ofcatalog.processors.github
. At the same time, the location typegithub/api
is likewise deprecated, in favor ofgithub
. This location type now serves both raw HTTP reads and APIv3 reads, depending on how you configure it. It also supports having several providers at once - for example, both public GitHub and an internal GitHub Enterprise, with different keys. If you still use thecatalog.processors.githubApi
config key, things will work but you will get a deprecation warning at startup. In a later release, support for the old key will go away entirely. See the configuration section in the docs for more details.
- Material-UI: Bumped to 4.11.0, which is the version that create-app will resolve to, because we wanted to get the renaming of ExpansionPanel to Accordion into place. This gets rid of a lot of console deprecation warnings in newly scaffolded apps.
-
Set
NODE_ENV
totest
when running test. #2214 -
Fix for backend plugins names requiring to be prefixed with
@backstage
to build. #2224
- The backend plugin
service builder
no longer adds
express.json()
automatically to all routes. While convenient in a lot of cases, it also led to problems where for example the proxy middleware could hang because the body had already been altered and could not be streamed. Also, plugins that rather wanted to handle e.g. form encoded data still had to cater to that manually. We therefore decided to let plugins addexpress.json()
themselves if they happen to deal with JSON data.
- Add rules configuration for catalog location and entity kinds. The default rules should cover most use-cases, but you may need to allow specific entity kinds when using things like Template or Group entities. #2118
-
Use config files according to
NODE_ENV
when serving and building frontend packages. #2077 -
Pin
rollup-plugin-dts
to avoid a later broken version. #2097
- Allow listen host and port to be configured separately, in order to support PORT environment variables. #1950
- Added new
DiscoveryApi
for discovering backend endpoint in the frontend, and use in most plugins. See packages/app/src/apis.ts for how to register in your app. #2074
- Added catalog and scaffolder frontend plugins to the template along with the sidebar. #1942, #2084
- Many plugins have been added to the catalog and will for now be required to be added to separate apps as well. This will be solved as #1536 gets sorted out, but for now you may need to install some plugins just to get pages to work.
- Added the possibility to add static locations via
app-config.yaml
. This changed the signature ofnew LocationReaders(logger)
insidepackages/backend/src/plugins/catalog.ts
tonew LocationReaders({config, logger})
. #1890
- Changed the type signature of the palette, removing
sidebar: string
and addingnavigation: { background: string; indicator: string}
. #1880
- Fixed an issue with duplicated location logs. Applying the database migrations from this fix will clear the existing migration logs. #1836
This version fixes a breakage in CSP policies set by the auth backend. If you're facing trouble with auth in alpha.17, upgrade to alpha.18.
- OAuth redirect URLs no longer receive the
env
parameter, as it is now passed through state instead. This will likely require a reconfiguration of the OAuth app, where a redirect URL likehttp://localhost:7000/auth/google/handler/frame?env=development
should now be configured ashttp://localhost:7000/auth/google/handler/frame
. #1812
SignInPage
props have been changed to receive a list of provider objects instead of simple string identifiers for all but the'guest'
and'custom'
providers. This opens up for configuration of custom providers, but may break existing configurations. See packages/app/src/App.tsx and packages/app/src/identityProviders.ts for how to bring back the existing providers. #1816
- The techdocs backend now requires more configuration to be supplied when creating the router. See packages/backend/src/plugins/techdocs.ts for an example. #1736
- The
create-app
command was moved out from the CLI to a standalone package. It's now invoked withnpx @backstage/create-app
instead. #1745