Skip to content

Releases: backstage/backstage

v0.3.1

29 Dec 11:33
8803fec
Compare
Choose a tag to compare

@backstage/backend-common@0.3.0

Minor Changes

  • 1722cb5: Added support for loading and validating configuration schemas, as well as declaring config visibility through schemas.

    The new loadConfigSchema function exported by @backstage/config-loader allows for the collection and merging of configuration schemas from all nearby dependencies of the project.

    A configuration schema is declared using the https://backstage.io/schema/config-v1 JSON Schema meta schema, which is based on draft07. The only difference to the draft07 schema is the custom visibility keyword, which is used to indicate whether the given config value should be visible in the frontend or not. The possible values are frontend, backend, and secret, where backend is the default. A visibility of secret has the same scope at runtime, but it will be treated with more care in certain contexts, and defining both frontend and secret for the same value in two different schemas will result in an error during schema merging.

    Packages that wish to contribute configuration schema should declare it in a root "configSchema" field in package.json. The field can either contain an inlined JSON schema, or a relative path to a schema file. Schema files can be in either .json or .d.ts format.

    TypeScript configuration schema files should export a single Config type, for example:

    export interface Config {
      app: {
        /**
         * Frontend root URL
         * @visibility frontend
         */
        baseUrl: string;
      };
    }
  • 8e2effb: Refactored UrlReader.readTree to be required and accept (url, options)

Patch Changes

  • 1722cb5: Added configuration schema
  • 7b37e68: Added the integration package
  • Updated dependencies [1722cb5]
  • Updated dependencies [7b37e68]
    • @backstage/config-loader@0.3.0
    • @backstage/integration@0.1.1
    • @backstage/test-utils@0.1.3

@backstage/catalog-client@0.3.0

Minor Changes

  • 717e43d: Changed the getEntities interface to (1) nest parameters in an object, (2) support field selection, and (3) return an object with an items field for future extension

@backstage/cli@0.3.0

Minor Changes

  • 1722cb5: Added support for loading and validating configuration schemas, as well as declaring config visibility through schemas.

    The new loadConfigSchema function exported by @backstage/config-loader allows for the collection and merging of configuration schemas from all nearby dependencies of the project.

    A configuration schema is declared using the https://backstage.io/schema/config-v1 JSON Schema meta schema, which is based on draft07. The only difference to the draft07 schema is the custom visibility keyword, which is used to indicate whether the given config value should be visible in the frontend or not. The possible values are frontend, backend, and secret, where backend is the default. A visibility of secret has the same scope at runtime, but it will be treated with more care in certain contexts, and defining both frontend and secret for the same value in two different schemas will result in an error during schema merging.

    Packages that wish to contribute configuration schema should declare it in a root "configSchema" field in package.json. The field can either contain an inlined JSON schema, or a relative path to a schema file. Schema files can be in either .json or .d.ts format.

    TypeScript configuration schema files should export a single Config type, for example:

    export interface Config {
      app: {
        /**
         * Frontend root URL
         * @visibility frontend
         */
        baseUrl: string;
      };
    }

Patch Changes

  • 1722cb5: Added configuration schema
  • 9023404: Support specifying listen host/port for frontend
  • Updated dependencies [1722cb5]
    • @backstage/config-loader@0.3.0

@backstage/config-loader@0.3.0

Minor Changes

  • 1722cb5: Added support for loading and validating configuration schemas, as well as declaring config visibility through schemas.

    The new loadConfigSchema function exported by @backstage/config-loader allows for the collection and merging of configuration schemas from all nearby dependencies of the project.

    A configuration schema is declared using the https://backstage.io/schema/config-v1 JSON Schema meta schema, which is based on draft07. The only difference to the draft07 schema is the custom visibility keyword, which is used to indicate whether the given config value should be visible in the frontend or not. The possible values are frontend, backend, and secret, where backend is the default. A visibility of secret has the same scope at runtime, but it will be treated with more care in certain contexts, and defining both frontend and secret for the same value in two different schemas will result in an error during schema merging.

    Packages that wish to contribute configuration schema should declare it in a root "configSchema" field in package.json. The field can either contain an inlined JSON schema, or a relative path to a schema file. Schema files can be in either .json or .d.ts format.

    TypeScript configuration schema files should export a single Config type, for example:

    export interface Config {
      app: {
        /**
         * Frontend root URL
         * @visibility frontend
         */
        baseUrl: string;
      };
    }

@backstage/plugin-app-backend@0.3.0

Minor Changes

  • 1722cb5: Use new config schema support to automatically inject config with frontend visibility, in addition to the existing env schema injection.

    This removes the confusing behavior where configuration was only injected into the app at build time. Any runtime configuration (except for environment config) in the backend used to only apply to the backend itself, and not be injected into the frontend.

Patch Changes

  • Updated dependencies [1722cb5]
  • Updated dependencies [1722cb5]
  • Updated dependencies [7b37e68]
  • Updated dependencies [8e2effb]
    • @backstage/backend-common@0.3.0
    • @backstage/config-loader@0.3.0

@backstage/plugin-cost-insights@0.4.0

Minor Changes

  • 4040d4f: remove cost insights currency feature flag

Patch Changes

  • 1722cb5: Added configuration schema
  • 17a9f48: remove excessive margin from cost overview banner
  • f360395: UI improvements: Increase width of first column in product entity dialog table
    UI improvement: Display full cost amount in product entity dialog table
  • 259d848: Fix savings/excess display calculation
  • Updated dependencies [1722cb5]
    • @backstage/core@0.3.1
    • @backstage/test-utils@0.1.3

@backstage/core@0.3.1

Patch Changes

  • 1722cb5: Added configuration schema

@backstage/create-app@0.2.2

Patch Changes

  • 7d7abd5: Add app-backend as a backend plugin, and make a single docker build of the backend the default way to deploy backstage.

    Note that the app-backend currently only is a solution for deployments of the app, it's not a dev server and is not intended for local development.

    Template changes

    As a part of installing the app-backend plugin, the below changes where made. The changes are grouped into two steps, installing the plugin, and updating the Docker build and configuration.

    Installing the app-backend plugin in the backend

    First, install the @backstage/plugin-app-backend plugin package in your backend. These changes where made for v0.3.0 of the plugin, and the installation process might change in the future. Run the following from the root of the repo:

    cd packages/backend
    yarn add @backstage/plugin-app-backend

    For the app-backend to get access to the static content in the frontend we also need to add the local app package as a dependency. Add the following to your "dependencies" in packages/backend/package.json, assuming your app package is still named app and on version 0.0.0:

    "app": "0.0.0",

    Don't worry, this will not cause your entire frontend dependency tree to be added to the app, just double check that packages/app/package.json has a "bundled": true field at top-level. This signals to the backend build process that the package is bundled and that no transitive dependencies should be included.

    Next, create packages/backend/src/plugins/app.ts with the following:

    import { createRouter } from '@backstage/plugin-app-backend';
    import { PluginEnvironment } from '../types';
    
    export default async function createPlugin({
      logger,
      config,
    }: PluginEnvironment) {
      return await createRouter({
        logger,
        config,
        appPackageName: 'app',
      });
    }

    In packages/backend/src/index.ts, make the following changes:

    Add an import for the newly created plugin setup file:

    import app from './plugins/app';

    Setup the following plugin env.

    const appEnv = useHotMemoize(module, () => createEnv('app'));

    Change service builder setup to include the app plugin as follows. Note that the app plugin is not installed on the /api route with most other plugins.

    const service = createServiceBuilder(module)
      .loadConfig(config)
      .addRouter('/api', apiRouter)
      .addRouter('', await app(appEnv));

    You should now have the app-backend plugin installed in your backend, ready to serve the frontend bundle!

    Docker build setup

    Since the backend image is now the only one needed for a simple Backstage deployment, the image tag name in the build-image script inside packages/backend/package.json was changed to th...

Read more

v0.3.0

29 Dec 11:33
c857148
Compare
Choose a tag to compare

@backstage/core@0.3.0

Minor Changes

  • 199237d: New DependencyGraph component added to core package.

Patch Changes

  • 7b37d65: Adds the MarkdownContent component to render and display Markdown content with the default
    GFM (Github flavored Markdown) dialect.

    <MarkdownContent content={markdownGithubFlavored} />
    

    To render the Markdown content with plain CommonMark, set the dialect to common-mark

    <MarkdownContent content={markdown} dialect='common-mark />
    
  • 4aca74e: Extend default config loader to read config from the window object.

    Config will be read from window.__APP_CONFIG__ which should be an object.

  • e8f69ba: - The BottomLink is now able to handle with internal routes.

    • @backstage/core Link component detect whether it's an external link or not, and render accordingly
  • 0c0798f: Extend the table to share its current filter state. The filter state can be used together with the new useQueryParamState hook to store the current filter state to the browser history and restore it after navigating to other routes.

  • 0c0798f: Make the selected state of Select and CheckboxTree controllable from outside.

  • 6627b62: Fix divider prop not respected on InfoCard

  • Updated dependencies [c5bab94]

  • Updated dependencies [4577e37]

    • @backstage/core-api@0.2.1
    • @backstage/theme@0.2.1

@backstage/plugin-cost-insights@0.3.0

Minor Changes

  • 0703ede: rename: Tooltip -> BarChartTooltip
    rename: TooltipItem -> BarChartTooltipItem
    Deprecate BarChartData in favor of BarChartOptions
    Export BarChartLegend component
    Update BarChart props to accept options prop
    Deprecate ProductCost type in favor of Entity. Update CostInsightsApi

Patch Changes

  • 9a29457: Fix styling issue on Cost Insights product panels with no cost
  • Updated dependencies [7b37d65]
  • Updated dependencies [4aca74e]
  • Updated dependencies [e8f69ba]
  • Updated dependencies [0c0798f]
  • Updated dependencies [0c0798f]
  • Updated dependencies [199237d]
  • Updated dependencies [6627b62]
  • Updated dependencies [4577e37]
    • @backstage/core@0.3.0
    • @backstage/theme@0.2.1

@backstage/plugin-jenkins@0.3.0

Minor Changes

  • a41730c: Add tooltip for Jenkins rerun button

Patch Changes

  • Updated dependencies [7b37d65]
  • Updated dependencies [4aca74e]
  • Updated dependencies [e8f69ba]
  • Updated dependencies [0c0798f]
  • Updated dependencies [0c0798f]
  • Updated dependencies [199237d]
  • Updated dependencies [6627b62]
  • Updated dependencies [4577e37]
  • Updated dependencies [2d0bd1b]
    • @backstage/core@0.3.0
    • @backstage/theme@0.2.1
    • @backstage/plugin-catalog@0.2.1

@backstage/plugin-scaffolder@0.3.0

Minor Changes

  • 59166e5: createRouter of scaffolder backend will now require additional option as entityClient which could be generated by CatalogEntityClient in plugin-scaffolder-backend package. Here is example to generate entityClient.

    import { CatalogEntityClient } from '@backstage/plugin-scaffolder-backend';
    import { SingleHostDiscovery } from '@backstage/backend-common';
    
    const discovery = SingleHostDiscovery.fromConfig(config);
    const entityClient = new CatalogEntityClient({ discovery });
    • Scaffolder's API /v1/jobs will accept templateName instead of template Entity.

Patch Changes

  • Updated dependencies [7b37d65]
  • Updated dependencies [4aca74e]
  • Updated dependencies [e8f69ba]
  • Updated dependencies [0c0798f]
  • Updated dependencies [0c0798f]
  • Updated dependencies [199237d]
  • Updated dependencies [6627b62]
  • Updated dependencies [4577e37]
  • Updated dependencies [2d0bd1b]
    • @backstage/core@0.3.0
    • @backstage/theme@0.2.1
    • @backstage/plugin-catalog@0.2.1

@backstage/plugin-scaffolder-backend@0.3.0

Minor Changes

  • 59166e5: createRouter of scaffolder backend will now require additional option as entityClient which could be generated by CatalogEntityClient in plugin-scaffolder-backend package. Here is example to generate entityClient.

    import { CatalogEntityClient } from '@backstage/plugin-scaffolder-backend';
    import { SingleHostDiscovery } from '@backstage/backend-common';
    
    const discovery = SingleHostDiscovery.fromConfig(config);
    const entityClient = new CatalogEntityClient({ discovery });
    • Scaffolder's API /v1/jobs will accept templateName instead of template Entity.

Patch Changes

  • Updated dependencies [33b7300]
    • @backstage/backend-common@0.2.1

@backstage/plugin-tech-radar@0.3.0

Minor Changes

  • a906f20: Added tech radar blip history backend support and normalized the data structure

Patch Changes

  • 3f05616: Make the footer color of the tech-radar work in both light and dark theme.
  • Updated dependencies [7b37d65]
  • Updated dependencies [4aca74e]
  • Updated dependencies [e8f69ba]
  • Updated dependencies [0c0798f]
  • Updated dependencies [0c0798f]
  • Updated dependencies [199237d]
  • Updated dependencies [6627b62]
  • Updated dependencies [4577e37]
    • @backstage/core@0.3.0
    • @backstage/theme@0.2.1

@backstage/backend-common@0.2.1

Patch Changes

  • 33b7300: Capture plugin name under the /api/ prefix for http metrics

@backstage/core-api@0.2.1

Patch Changes

  • c5bab94: Updated the AuthApi .create methods to configure the default scope of the corresponding Auth Api. As a result the
    default scope is configurable when overwriting the Core Api in the app.

    GithubAuth.create({
      discoveryApi,
      oauthRequestApi,
      defaultScopes: ['read:user', 'repo'],
    }),
    

    Replaced redundant CreateOptions of each Auth Api with the OAuthApiCreateOptions type.

    export type OAuthApiCreateOptions = AuthApiCreateOptions & {
      oauthRequestApi: OAuthRequestApi;
      defaultScopes?: string[];
    };
    
    export type AuthApiCreateOptions = {
      discoveryApi: DiscoveryApi;
      environment?: string;
      provider?: AuthProvider & { id: string };
    };
    
  • Updated dependencies [4577e37]

    • @backstage/theme@0.2.1

@backstage/create-app@0.2.1

Patch Changes

  • c56e283: Fix missing api-docs plugin registration in app template

@backstage/dev-utils@0.1.3

Patch Changes

  • Updated dependencies [7b37d65]
  • Updated dependencies [4aca74e]
  • Updated dependencies [e8f69ba]
  • Updated dependencies [0c0798f]
  • Updated dependencies [0c0798f]
  • Updated dependencies [199237d]
  • Updated dependencies [6627b62]
  • Updated dependencies [4577e37]
    • @backstage/core@0.3.0
    • @backstage/theme@0.2.1

@backstage/theme@0.2.1

Patch Changes

  • 4577e37: Improve styling of outlined chips in dark mode.

@backstage/plugin-api-docs@0.2.1

Patch Changes

  • 0c0798f: Persist table state of the API Explorer to the browser history. This allows to navigate between pages and come back to the previous filter state.
  • 84b654d: Use dense table style and outlined chips in the API Explorer.
  • 803527b: Upgrade @kyma-project/asyncapi-react to 0.14.2
  • Updated dependencies [7b37d65]
  • Updated dependencies [4aca74e]
  • Updated dependencies [e8f69ba]
  • Updated dependencies [0c0798f]
  • Updated dependencies [0c0798f]
  • Updated dependencies [199237d]
  • Updated dependencies [6627b62]
  • Updated dependencies [4577e37]
  • Updated dependencies [2d0bd1b]
    • @backstage/core@0.3.0
    • @backstage/theme@0.2.1
    • @backstage/plugin-catalog@0.2.1

@backstage/plugin-auth-backend@0.2.1

Patch Changes

  • 7528080: Handle non-7-bit safe characters in the posted message data
  • 4628763: Encode the OAuth state parameter using URL safe chars only, so that providers have an easier time forming the callback URL.
  • Updated dependencies [33b7300]
    • @backstage/backend-common@0.2.1

@backstage/plugin-catalog@0.2.1

Patch Changes

  • 2d0bd1b: Improved the edit link to open the component yaml in edit mode in corresponding SCM. Broke out logic for createEditLink to be reused.
  • Updated dependencies [7b37d65]
  • Updated dependencies [4aca74e]
  • Updated dependencies [e8f69ba]
  • Updated dependencies [0c0798f]
  • Updated dependencies [0c0798f]
  • Updated dependencies [199237d]
  • Updated dependencies [6627b62]
  • Updated dependencies [4577e37]
  • Updated dependencies [59166e5]
    • @backstage/core@0.3.0
    • @backstage/theme@0.2.1
    • @backstage/plugin-scaffolder@0.3.0
    • @backstage/plugin-techdocs@0.2.1

@backstage/plugin-circleci@0.2.1

Patch Changes

  • Updated dependencies [7b37d65]
  • Updated dependencies [4aca74e]
  • Updated dependencies [e8f69ba]
  • Updated dependencies [0c0798f]
  • Updated dependencies [0c0798f]
  • Updated dependencies [199237d]
  • Updated dependencies [6627b62]
  • Updated dependencies [4577e37]
  • Updated dependencies [2d0bd1b]
    • @backstage/core@0.3.0
    • @backstage/theme@0.2.1
    • @backstage/plugin-catalog@0.2.1

@backstage/plugin-cloudbuild@0.2.1

Patch Changes

  • Updated dependencies [7b37d65]
  • Updated dependencies [4aca74e]
  • Updated dependencies [e8f69ba]
  • Updated dependencies [0c0798f]
  • Updated dependencies [0c0798f]
  • Updated dependencies [199237d]
  • Updated dependencies [6627b62]
  • Updated dependencies [4577e37]
  • Updated dependencies [2d0bd1b]
    • @backstage/core@0.3.0
    • @backstage/theme@0.2.1
    • @backstage/plugin-catalog@0.2.1

@backstage/plugin-explore@0.2.1

Patch Changes

  • Updated dependencies [7b37d65]
    ...
Read more

v0.2.0

29 Dec 11:32
1832947
Compare
Choose a tag to compare

@backstage/backend-common@0.2.0

Minor Changes

  • 5249594: Add service discovery interface and implement for single host deployments

    Fixes #1847, #2596

    Went with an interface similar to the frontend DiscoveryApi, since it's dead simple but still provides a lot of flexibility in the implementation.

    Also ended up with two different methods, one for internal endpoint discovery and one for external. The two use-cases are explained a bit more in the docs, but basically it's service-to-service vs callback URLs.

    This did get me thinking about uniqueness and that we're heading towards a global namespace for backend plugin IDs. That's probably fine, but if we're happy with that we should leverage it a bit more to simplify the backend setup. For example we'd have each plugin provide its own ID and not manually mount on paths in the backend.

    Draft until we're happy with the implementation, then I can add more docs and changelog entry. Also didn't go on a thorough hunt for places where discovery can be used, but I don't think there are many since it's been pretty awkward to do service-to-service communication.

  • 56e4eb5: Make CSP configurable to fix app-backend served app not being able to fetch

    See discussion here on discord

  • e37c0a0: Use localhost to fall back to IPv4 if IPv6 isn't available

  • f00ca3c: Auto-create plugin databases

    Relates to #1598.

    This creates databases for plugins before handing off control to plugins.

    The list of plugins currently need to be hard-coded depending on the installed plugins. A later PR will properly refactor the code to provide a factory pattern where plugins specify what they need, and Knex instances will be provided based on the input.

  • 6579769: Add the ability to import components from Bitbucket Server to the service catalog

  • 8c2b76e: BREAKING CHANGE

    The existing loading of additional config files like app-config.development.yaml using APP_ENV or NODE_ENV has been removed.
    Instead, the CLI and backend process now accept one or more --config flags to load config files.

    Without passing any flags, app-config.yaml and, if it exists, app-config.local.yaml will be loaded.
    If passing any --config <path> flags, only those files will be loaded, NOT the default app-config.yaml one.

    The old behaviour of for example APP_ENV=development can be replicated using the following flags:

    --config ../../app-config.yaml --config ../../app-config.development.yaml
  • 8afce08: Use APP_ENV before NODE_ENV for determining what config to load

  • 7bbeb04: Change loadBackendConfig to return the config directly

Patch Changes

  • 440a17b: Added new UrlReader interface for reading opaque data from URLs with different providers.

    This new URL reading system is intended as a replacement for the various integrations towards
    external systems in the catalog, scaffolder, and techdocs. It is configured via a new top-level
    config section called 'integrations'.

    Along with the UrlReader interface is a new UrlReaders class, which exposes static factory
    methods for instantiating readers that can read from many different integrations simultaneously.

  • Updated dependencies [8c2b76e]

  • Updated dependencies [ce5512b]

    • @backstage/config-loader@0.2.0
    • @backstage/test-utils@0.1.2

@backstage/catalog-model@0.2.0

Minor Changes

  • 3a42365: Add handling and docs for entity references

  • e0be86b: Entirely case insensitive read path of entities

  • f70a528: Add the User & Group entities

    A user describes a person, such as an employee, a contractor, or similar. Users belong to Group entities in the catalog.

    A group describes an organizational entity, such as for example a team, a business unit, or a loose collection of people in an interest group. Members of these groups are modeled in the catalog as kind User.

  • 12b5fe9: Add ApiDefinitionAtLocationProcessor that allows to load a API definition from another location

  • a768a07: Add the ability to import users from GitHub Organization into the catalog.

  • 5adfc00: Changes the various kind policies into a new type KindValidator.

    Adds CatalogProcessor#validateEntityKind that makes use of the above
    validators. This moves entity schema validity checking away from entity
    policies and into processors, centralizing the extension points into the
    processor chain.

  • b3d5796: Enable adding locations for config files that does not yet exist by adding a flag to api request

Patch Changes

  • fa56f46: Fix documentation and validation message for tags

@backstage/cli@0.2.0

Minor Changes

  • 28edd7d: Create backend plugin through CLI

  • 1d0aec7: Upgrade dependency esbuild@0.7.7

  • 72f6cda: Adds a new BACKSTAGE_CLI_BUILD_PARELLEL environment variable to control
    parallelism for some build steps.

    This is useful in CI to help avoid out of memory issues when using terser. The
    BACKSTAGE_CLI_BUILD_PARELLEL environment variable can be set to
    true | false | [integer] to override the default behaviour. See
    terser-webpack-plugin
    for more details.

  • 8c2b76e: BREAKING CHANGE

    The existing loading of additional config files like app-config.development.yaml using APP_ENV or NODE_ENV has been removed.
    Instead, the CLI and backend process now accept one or more --config flags to load config files.

    Without passing any flags, app-config.yaml and, if it exists, app-config.local.yaml will be loaded.
    If passing any --config <path> flags, only those files will be loaded, NOT the default app-config.yaml one.

    The old behaviour of for example APP_ENV=development can be replicated using the following flags:

    --config ../../app-config.yaml --config ../../app-config.development.yaml
  • 8afce08: Use APP_ENV before NODE_ENV for determining what config to load

Patch Changes

  • 3472c8b: Add codeowners processor

    • Include ESNext.Promise in TypeScript compilation
  • a3840be: Upgrade dependency rollup-plugin-typescript2 to ^0.27.3

  • cba4e4d: Including source maps with all packages

  • 9a3b3db: Fixed duplicate help output, and print help on invalid command

  • 7bbeb04: Change loadBackendConfig to return the config directly

  • Updated dependencies [8c2b76e]

  • Updated dependencies [ce5512b]

    • @backstage/config-loader@0.2.0

@backstage/config-loader@0.2.0

Minor Changes

  • 8c2b76e: BREAKING CHANGE

    The existing loading of additional config files like app-config.development.yaml using APP_ENV or NODE_ENV has been removed.
    Instead, the CLI and backend process now accept one or more --config flags to load config files.

    Without passing any flags, app-config.yaml and, if it exists, app-config.local.yaml will be loaded.
    If passing any --config <path> flags, only those files will be loaded, NOT the default app-config.yaml one.

    The old behaviour of for example APP_ENV=development can be replicated using the following flags:

    --config ../../app-config.yaml --config ../../app-config.development.yaml
  • ce5512b: Added support for new shorthand when defining secrets, where $env: ENV can be used instead of $secret: { env: ENV } etc.

@backstage/core@0.2.0

Minor Changes

  • 819a702: Add SAML login to backstage

  • 482b631: Fix dense in Structured Metadata Table

  • 1c60f71: Added EmptyState component

  • b79017f: Updated the GithubAuth.create method to configure the default scope of the Github Auth Api. As a result the
    default scope is configurable when overwriting the Core Api in the app.

    GithubAuth.create({
      discoveryApi,
      oauthRequestApi,
      defaultScopes: ['read:user', 'repo'],
    }),
    
  • 6d97d2d: The InfoCard variant 'height100' is deprecated. Use variant 'gridItem' instead.

    When the InfoCard is displayed as a grid item within a grid, you may want items to have the same height for all items.
    Set to the 'gridItem' variant to display the InfoCard with full height suitable for Grid:
    <InfoCard variant="gridItem">...</InfoCard>

    Changed the InfoCards in '@backstage/plugin-github-actions', '@backstage/plugin-jenkins', '@backstage/plugin-lighthouse'
    to pass an optional variant to the corresponding card of the plugin.

    As a result the overview content of the EntityPage shows cards with full height suitable for Grid.

Patch Changes

  • ae59833: Fix banner position and color

    This PR closes: #2245

    The "fixed" props added to control the position of the banner. When it is set to true the banner will be shown in bottom of that page and the width will be based on the content of the message.

  • 144c66d: Fixed banner component position in DismissableBanner component

  • 93a3fa3: Add forwardRef to the SidebarItem

  • 782f3b3: add test case for Progress component

  • 2713f28: fix the warnin...

Read more

Transition to using Changesets

29 Dec 11:40
8360d9f
Compare
Choose a tag to compare

This release marks the transition from lerna versioning to changesets, as well as from fixed alpha prereleases to decoupled version 0.x semver versioning. From this release until version 1.0, minor version bumps indicate a breaking change to a package.

This release does not contain any changes on top of the last prerelease.

v0.1.1-alpha.24

05 Oct 15:06
5415563
Compare
Choose a tag to compare
v0.1.1-alpha.24 Pre-release
Pre-release

Backend (example-backend, or backends created with @backstage/create-app)

  • 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 the basePath option. #2600

@backstage/auth-backend

  • 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 as discovery. See the changes to @backstage/backend.

@backstage/proxy-backend

  • The proxy backend now requires an implementation of PluginEndpointDiscovery from @backstage/backend-common to be passed in as discovery. See the changes to @backstage/backend.

@backstage/techdocs-backend

  • The TechDocs backend now requires an implementation of PluginEndpointDiscovery from @backstage/backend-common to be passed in as discovery. See the changes to @backstage/backend.

@backstage/plugin-identity-backend

  • This plugin was removed, remove it from your backend if it's there. #2616

v0.1.1-alpha.23

28 Sep 14:57
b5e6051
Compare
Choose a tag to compare
v0.1.1-alpha.23 Pre-release
Pre-release

@backstage/core

  • Renamed SessionStateApi to SessionApi and logout to signOut. Custom implementations of the SingInPage app-component will need to rename their logout function. The different auth provider items for the UserSettingsMenu have been consolidated into a single ProviderSettingsItem, meaning you need to replace existing usages of OAuthProviderSettings and OIDCProviderSettings. #2555.

v0.1.1-alpha.22

28 Sep 14:57
777cda3
Compare
Choose a tag to compare
v0.1.1-alpha.22 Pre-release
Pre-release

@backstage/core

  • 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 RouteRefs, and there will be more changes related to this in the future, but this change lays the initial foundation. See packages/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

@backstage/cli

  • Change backstage-cli backend:build-image to forward all args to docker image build, instead of just tag. Also add --build flag for building all dependent packages before packaging the workspace for the docker build. #2299

@backstage/create-app

  • Change root tsc output dir to dist-types, in order to allow for standalone plugin repos. #2278

@backstage/catalog-backend

  • We have simplified the way that GitHub ingestion works. The catalog.processors.githubApi key is deprecated, in favor of catalog.processors.github. At the same time, the location type github/api is likewise deprecated, in favor of github. 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 the catalog.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.

v0.1.1-alpha.21

28 Sep 14:57
c5a4834
Compare
Choose a tag to compare
v0.1.1-alpha.21 Pre-release
Pre-release
  • Added many more frontend plugins to the template along with the sidebar. #1942, #2084

@backstage/core

  • 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.

@backstage/cli

  • Set NODE_ENV to test when running test. #2214

  • Fix for backend plugins names requiring to be prefixed with @backstage to build. #2224

@backstage/backend-common

  • 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 add
    express.json() themselves if they happen to deal with JSON data.

@backstage/catalog-backend

  • 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

v0.1.1-alpha.20

28 Sep 14:57
d1d8c90
Compare
Choose a tag to compare
v0.1.1-alpha.20 Pre-release
Pre-release

@backstage/cli

  • 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

v0.1.1-alpha.19

28 Sep 14:56
7fd6ab6
Compare
Choose a tag to compare
v0.1.1-alpha.19 Pre-release
Pre-release

@backstage/backend-common

  • Allow listen host and port to be configured separately, in order to support PORT environment variables. #1950

@backstage/core

  • 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

@backstage/create-app

  • 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.

@backstage/catalog-backend

  • Added the possibility to add static locations via app-config.yaml. This changed the signature of new LocationReaders(logger) inside packages/backend/src/plugins/catalog.ts to new LocationReaders({config, logger}). #1890

@backstage/theme

  • Changed the type signature of the palette, removing sidebar: string and adding navigation: { background: string; indicator: string}. #1880