Back to Backstage

Release v1.13.0

docs/releases/v1.13.0-changelog.md

1.51.0-next.2107.0 KB
Original Source

Release v1.13.0

@backstage/[email protected]

Minor Changes

  • 7908d72e033: Introduce a new global config parameter, enableExperimentalRedirectFlow. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.

Patch Changes

@backstage/[email protected]

Minor Changes

  • be9c4228073: Modified the regex for DNS label validation to support IDN domains

Patch Changes

@backstage/[email protected]

Minor Changes

  • 3156b0d85dc: Introduced the new @backstage/cli-node package, which provides utilities for use across Backstage CLIs.

Patch Changes

@backstage/[email protected]

Minor Changes

  • c791fcd96b9: Configuration validation is now more permissive when it comes to config whose values are string but whose schemas declare them to be boolean or number.

    For example, configuration was previously marked invalid when a string 'true' was set on a property expecting type boolean or a string '146' was set on a property expecting type number (as when providing configuration via variable substitution sourced from environment variables). Now, such configurations will be considered valid and their values will be coerced to the right type at read-time.

Patch Changes

@backstage/[email protected]

Minor Changes

  • 7908d72e033: Introduce a new global config parameter, enableExperimentalRedirectFlow. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
  • c15e0cedbe1: The AuthConnector interface now supports specifying a set of scopes when refreshing a session. The DefaultAuthConnector implementation passes the scope query parameter to the auth-backend plugin appropriately. The RefreshingAuthSessionManager passes any scopes in its GetSessionRequest appropriately.

Patch Changes

@backstage/[email protected]

Minor Changes

  • 01cd4e25754: BREAKING: Removing Tabs component from core-components as it is neither used in the core Backstage app nor in the monorepo plugins. If you are using this component in your instance please consider replacing it with the Material UI Tabs component like the following:

    diff
    - <Tabs
    -    tabs={[{
    -       icon: <AccessAlarmIcon />,
    -       content: <div>Label</div>,
    -    }]}
    - />
    
    + <Tabs>
    +    <Tab
    +       label = "Label"
    +       icon = { <AccessAlarmIcon /> }
    +    />
    + </Tabs>
    

Patch Changes

  • d0befd3fb23: Fixed a bug that could prevent auth from working when using the guest or custom auth providers.
  • 67140d9f96f: Upgrade react-virtualized-auto-sizer´ to version ^1.0.11`
  • 6e0b71493df: Switched internal declaration of DependencyGraphTypes to use namespace.
  • c8779cc1d09: Updated LogLine component, which is used by the LogViewer, to turn URLs into clickable links. This feature is on by default
  • 7908d72e033: Introduce a new global config parameter, enableExperimentalRedirectFlow. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
  • 1e4f5e91b8e: Bump zod and zod-to-json-schema dependencies.
  • 29ba8267d69: Updated dependency @material-ui/lab to 4.0.0-alpha.61.
  • 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
  • 303c2c3ce51: Allow closeButton color in DismissableBanner to be configurable (via. theme.palette.banner.closeButtonColor)
  • 7e60bee2dea: Split the BackstageSidebar style drawer class, such that the width property is in a separate drawerWidth class instead. This makes it such that you can style the drawer class in your theme again.
  • 7245e744ab1: Fixed the font color on BackstageHeaderLabel to respect the active page theme.
  • e0c6e8b9c3c: Update peer dependencies
  • Updated dependencies

@backstage/[email protected]

Minor Changes

  • 10744537bf5: Renamed permissionApi to permissions when passed as dependency of the scaffolder-backend plugin

Patch Changes

  • 5af2c4f412f: Bumped create-app version.

  • ab75a16da7a: Bumped create-app version.

  • 71fd0966d10: Add permissionApi as dependency of the scaffolder-backend plugin

  • 2945923b133: Upgraded the TypeScript version to 5.0

    To apply this change in your own project, switch the TypeScript version in your root package.json:

    diff
    -    "typescript": "~4.6.4",
    +    "typescript": "~5.0.0",
    
  • e0c6e8b9c3c: Update peer dependencies

  • Updated dependencies

@backstage/[email protected]

Minor Changes

  • a876e69b20e: Adding two new commands to support OpenAPI spec writing, schema:openapi:generate to generate the Typescript file that @backstage/backend-openapi-utils needs for typing and schema:openapi:verify to verify that this file exists and matches your src/schema/openapi.yaml file.

Patch Changes

  • f59041a3c07: Package paths provided to api-reports and OpenAPI commands will now match any path within the target package.
  • f59041a3c07: Added --include <patterns> and --exclude <patterns> options for api-reports command that work based on package names.
  • 9129ca8cabb: Log API report instructions when api-report is missing.
  • e0c6e8b9c3c: Update peer dependencies
  • Updated dependencies

@backstage/[email protected]

Minor Changes

  • 7908d72e033: Introduce a new global config parameter, enableExperimentalRedirectFlow. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.

Patch Changes

@backstage/[email protected]

Minor Changes

  • a2218363301: Use fetchApi instead of raw fetch in order to pass auth header if necessary.

Patch Changes

@backstage/[email protected]

Minor Changes

  • 4dbf3d3e4da: Added a new EntitySwitch isResourceType to allow different views depending on Resource type
  • fc6cab4eb48: Added isEntityWith condition helper for EntitySwitch case statements.

Patch Changes

@backstage/[email protected]

Minor Changes

  • 329b63f4dab: The catalog now has a new, optional catalog.orphanStrategy app-config parameter, which can have the string values 'keep' (default) or 'delete'.

    If set to 'keep' or left unset, the old behavior is maintained of keeping orphaned entities around until manually deleted.

    If set to 'delete', the catalog will attempt to automatically clean out orphaned entities without manual intervention. Note that there are no guarantees that this process is instantaneous, so there may be some delay before orphaned items disappear.

    For context, the Life of an Entity article goes into some more details on how the nature of orphaning works.

    To enable the new behavior, you will need to pass the plugin task scheduler to your catalog backend builder. If your code already looks like this, you don't need to change it:

    ts
    // in packages/backend/src/plugins/catalog.ts
    export default async function createPlugin(
      env: PluginEnvironment,
    ): Promise<Router> {
      const builder = await CatalogBuilder.create(env);
    

    But if you pass things into the catalog builder one by one, you'll need to add the new field:

    diff
     // in packages/backend/src/plugins/catalog.ts
       const builder = await CatalogBuilder.create({
         // ... other dependencies
    +    scheduler: env.scheduler,
       });
    

    Finally adjust your app-config:

    yaml
    catalog:
      orphanStrategy: delete
    
  • 92a4590fc3a: Add monorepo support to CodeOwnersProccesor.

Patch Changes

  • 62a725e3a94: Use the LocationSpec type from the catalog-common package in place of the deprecated LocationSpec from the catalog-node package.
  • be5aca50114: Updates and moves OpenAPI spec to src/schema/openapi.yaml and uses ApiRouter type from @backstage/backend-openapi-utils to handle automatic types from the OpenAPI spec file.
  • c9a0fdcd2c8: Fix deprecated types.
  • 899ebfd8e02: Add full text search support to the by-query endpoint.
  • 1e4f5e91b8e: Bump zod and zod-to-json-schema dependencies.
  • c4b846359c0: Allow replacement of the BuiltinKindsEntityProcessor which enables customization of schema validation and connections emitted.
  • c36b89f2af3: Fixed bug in the DefaultCatalogProcessingEngine where entities that contained multiple different types of relations for the same source entity would not properly trigger stitching for that source entity.
  • 01ae205352e: Collator factories instantiated in new backend system modules and now marked as deprecated. Will be continued to be exported publicly until the new backend system is fully rolled out.
  • Updated dependencies

@backstage/[email protected]

Minor Changes

  • f64345108a0: BREAKING: The configuration of the GitlabDiscoveryEntityProvider has changed as follows:

    • The configuration key branch is now used to define the branch from which the catalog-info should be discovered.
    • The old configuration key branch is now called fallbackBranch. This value specifies which branch should be used if no default branch is defined on the project itself.

    To migrate to the new configuration value, rename branch to fallbackBranch

Patch Changes

@backstage/[email protected]

Minor Changes

  • a49fb39df5a: Attempt to load entity owner names in the EntityOwnerPicker through the by-refs endpoint. If spec.profile.displayName or metadata.title are populated, we now attempt to show those before showing the humanizeEntityRef'd version.

    BREAKING: EntityOwnerFilter now uses the full entity ref instead of the humanizeEntityRef. If you rely on EntityOwnerFilter.values or the queryParameters.owners of useEntityList, you will need to adjust your code like the following.

    tsx
    const { queryParameters: { owners } } = useEntityList();
    // or
    const { filter: { owners } } = useEntityList();
    
    // Instead of,
    if (owners.some(ref => ref === humanizeEntityRef(myEntity))) ...
    
    // You'll need to use,
    if (owners.some(ref => ref === stringifyEntityRef(myEntity))) ...
    

Patch Changes

@backstage/[email protected]

Minor Changes

  • 7eba760e6f6: Added an endpoint to fetch anonymous aggregated results from an entity

Patch Changes

@backstage/[email protected]

Minor Changes

  • 760f521b979: Add support for customizable homepage.

    Allows customizing homepage components, their placement, size and individual settings. For maximum size and settings, the existing home components should add necessary data attributes to their components.

    See plugins/home/README.md for more information how to configure the customizable homepage.

Patch Changes

@backstage/[email protected]

Minor Changes

  • 754be7c5106: refactor kubernetes error detection to make way for proposed solutions

    BREAKING: DetectedError now appears once per Kubernetes resource per error instead of for all resources which have that error, namespace and name fields are now in sourceRef object message is now a string instead of a string[]. ErrorDetectableKind has been removed.

Patch Changes

@backstage/[email protected]

Minor Changes

  • e6c7c850129: Plugins that instantiate the KubernetesProxy must now provide a parameter of the type KubernetesProxyOptions which includes providing a KubernetesAuthTranslator. The KubernetesBuilder now builds its own KubernetesAuthTranslatorMap that it provides to the KubernetesProxy. The DispatchingKubernetesAuthTranslator expects a KubernetesTranslatorMap to be provided as a parameter. The KubernetesBuilder now has a method called setAuthTranslatorMap which allows integrators to bring their own KubernetesAuthTranslator's to the KubernetesPlugin.
  • 804f6d16b0c: BREAKING: KubernetesBuilder.create now requires a permissions field of type PermissionEvaluator. The kubernetes /proxy endpoint now requires two tokens: the Backstage-Kubernetes-Authorization header should contain a bearer token for the target cluster, and the Authorization header should contain a backstage identity token. The kubernetes /proxy endpoint now requires a Backstage-Kubernetes-Cluster header replacing the previously required X-Kubernetes-Cluster header.
  • 88fbb3d075a: Add support for the new plugin system to the Kubernetes plugin

Patch Changes

@backstage/[email protected]

Minor Changes

  • 7a89555e73d: Lighthouse backend plugin can now use an authenticated catalog backend API.

    • Breaking * You must now pass the tokenManager to the lighthouse createScheduler.

Patch Changes

@backstage/[email protected]

Minor Changes

  • 9a98a96f9e8: Exposes the announcements plugin's permissions in a metadata endpoint.

Patch Changes

@backstage/[email protected]

Minor Changes

Patch Changes

@backstage/[email protected]

Minor Changes

  • b71f58d7d8f: Fixed bug in EntityPicker component that allowed for empty values when field is required. This bug occurs only after a user fills the EntityPicker field, clears it, and then continues to the next form step.
  • cdab34fd9a2: scaffolder/next: removing the routeRefs and exporting the originals on scaffolderPlugin.routes.x instead
  • e5ad1bd61ec: Allow TemplateListPage and TemplateWizardPage to be passed in as props
  • 92cf86a4b5d: Added a templateFilter prop to the <Router/> component to allow for filtering of templates through a function.
  • cf18c32934a: The Installed Actions page now shows details for nested objects and arrays
  • 259d3407b9b: Move CategoryPicker from scaffolder into scaffolder-react Move ContextMenu into scaffolder-react and rename it to ScaffolderPageContextMenu

Patch Changes

  • 7e1d900413a: scaffolder/next: Bump @rjsf/* dependencies to 5.5.2

  • e27ddc36dad: Added a possibility to cancel the running task (executing of a scaffolder template)

  • 57c1b4752fa: Allow use of { exists: true } value inside filters to filter entities that has that key.

    this example will filter all entities that has the annotation someAnnotation set to any value.

    yaml
    ui:options:
      catalogFilter:
        kind: Group
        metadata.annotations.someAnnotation: { exists: true }
    
  • 7917cfccfc7: Fix some hard-coded white font colors in scaffolder

  • 0435174b06f: Accessibility issues identified using lighthouse fixed.

  • 7a6b16cc506: scaffolder/next: Bump @rjsf/* deps to 5.3.1

  • 90dda42cfd2: bug: Invert templateFilter predicate to align with Array.filter

  • 1e4f5e91b8e: Bump zod and zod-to-json-schema dependencies.

  • f84fc7fd040: Updated dependency @rjsf/validator-ajv8 to 5.3.0.

  • 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)

  • 34dab7ee7f8: scaffolder/next: bump rjsf dependencies to 5.5.0

  • e0c6e8b9c3c: Update peer dependencies

  • cf71c3744a5: scaffolder/next: Bump @rjsf/* dependencies to 5.6.0

  • Updated dependencies

@backstage/[email protected]

Minor Changes

  • 2b15cb4aa0a: The non-PR/MR Git Actions now return the commit hash of the commit pushed as a new output called commitHash, isomorphic-git is now on version 1.23.0

  • 30ffdae70f9: Added fetch:plain:file action to fetch a single file, this action is also added to the list of built-in actions.

  • 65e989f4018: Added the possibility to authorize parameters and steps of a template

    The scaffolder plugin is now integrated with the permission framework. It is possible to toggle parameters or actions within templates by marking each section with specific tags, inside a backstage:permissions property under each parameter or action. Each parameter or action can then be permissioned by using a conditional decision containing the scaffolderTemplateRules.hasTag rule.

  • 3b68b09fc2d: Renamed permissionApi router option to permissions

  • bcae5aaf25c: Added the possibility to authorize actions

    It is now possible to decide who should be able to execute certain actions or who should be able to pass specific input to specified actions.

    Some of the existing utility functions for creating conditional decisions have been renamed:

    • createScaffolderConditionalDecision has been renamed to createScaffolderActionConditionalDecision
    • scaffolderConditions has been renamed to scaffolderTemplateConditions
  • d7c8c222e25: Allow for a commit message to differ from the PR title when publishing a GitHub pull request.

  • 95ea9f69b6f: Provide some more default filters out of the box and refactoring how the filters are applied to the SecureTemplater.

    • parseEntityRef will take an string entity triplet and return a parsed object.
    • pick will allow you to reference a specific property in the piped object.

    So you can now combine things like this: ${{ parameters.entity | parseEntityRef | pick('name') }} to get the name of a specific entity, or ${{ parameters.repoUrl | parseRepoUrl | pick('owner') }} to get the owner of a repo.

Patch Changes

@backstage/[email protected]

Minor Changes

  • 1b49a18bf8d: Created confluence:transform:markdown action for converting confluence docs to Markdown.

Patch Changes

@backstage/[email protected]

Minor Changes

  • 1ad400bb2de: Add Gitlab Scaffolder Plugin

Patch Changes

@backstage/[email protected]

Minor Changes

  • 259d3407b9b: Move CategoryPicker from scaffolder into scaffolder-react Move ContextMenu into scaffolder-react and rename it to ScaffolderPageContextMenu
  • 2cfd03d7376: To offer better customization options, ScaffolderPageContextMenu takes callbacks as props instead of booleans
  • 48da4c46e45: scaffolder/next: Export the TemplateGroupFilter and TemplateGroups and make an extensible component

Patch Changes

  • 7e1d900413a: scaffolder/next: Bump @rjsf/* dependencies to 5.5.2
  • e27ddc36dad: Added a possibility to cancel the running task (executing of a scaffolder template)
  • 0435174b06f: Accessibility issues identified using lighthouse fixed.
  • 7a6b16cc506: scaffolder/next: Bump @rjsf/* deps to 5.3.1
  • 90dda42cfd2: bug: Invert templateFilter predicate to align with Array.filter
  • d2488f5e54c: Add an indication that the validators are running when clicking next on each step of the form.
  • 1e4f5e91b8e: Bump zod and zod-to-json-schema dependencies.
  • 8c40997df44: Updated dependency @rjsf/core-v5 to npm:@rjsf/[email protected].
  • f84fc7fd040: Updated dependency @rjsf/validator-ajv8 to 5.3.0.
  • 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
  • 34dab7ee7f8: scaffolder/next: bump rjsf dependencies to 5.5.0
  • 2898b6c8d52: Minor type tweaks for TypeScript 5.0
  • e0c6e8b9c3c: Update peer dependencies
  • cf71c3744a5: scaffolder/next: Bump @rjsf/* dependencies to 5.6.0
  • Updated dependencies

@backstage/[email protected]

Minor Changes

  • d6b73b0380d: Search modal auto closes on location change

Patch Changes

@backstage/[email protected]

Minor Changes

Patch Changes

@backstage/[email protected]

Minor Changes

  • 01ae205352e: Package introduced to export search backend modules that can be used with the new backend system to extend search with plugin specific functionality, such as collators. For documentation on how to migrate, check out the how to migrate to the new backend system guide.

Patch Changes

@backstage/[email protected]

Minor Changes

Patch Changes

@backstage/[email protected]

Minor Changes

  • 01ae205352e: Package introduced to export search backend modules that can be used with the new backend system to extend search with plugin specific functionality, such as collators. For documentation on how to migrate, check out the how to migrate to the new backend system guide.

Patch Changes

@backstage/[email protected]

Minor Changes

  • 01ae205352e: Package introduced to export search backend modules that can be used with the new backend system to extend search with plugin specific functionality, such as collators. For documentation on how to migrate, check out the how to migrate to the new backend system guide.

Patch Changes

@backstage/[email protected]

Minor Changes

Patch Changes

@backstage/[email protected]

Minor Changes

  • 51ff6f9edff: Adding support for v2.3 API and PAT authentication

Patch Changes

@backstage/[email protected]

Minor Changes

  • a8b9357eb71: Use the latest version v.1.2.0 of the spotify/techdocs docker image as default

Patch Changes

@backstage/[email protected]

Minor Changes

  • 5e959c9eb62: Allow generic Vault clients to be passed into the builder

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • a1002df2dc2: Support commit hashes at GithubUrlReader.readTree/search additionally to branch names.

    Additionally, this will reduce the number of API calls from 2 to 1 for retrieving the "repo details" for all cases besides when the default branch has to be resolved and used (e.g., repo URL without any branch or commit hash).

  • 5c7ce585824: Allow an additionalConfig to be provided to loadBackendConfig that fetches config values during runtime.

  • 2b15cb4aa0a: The dependency isomorphic-git is now on version 1.23.0

  • 34167270b31: Renamed the loadBackendConfig option additionalConfig to additionalConfigs as an array, and ensured that they get passed on properly.

    This is technically breaking, but the original addition hasn't been released in mainline yet so we are taking this step now as a patch change.

  • 420164593cf: Improve GitlabUrlReader to only load requested sub-path

  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 62fe726fdc5: New plugin! Primary focus is to support types on Routers in backend packages. Developers can use the ApiRouter from this package in their packages to support a typed experience based on their OpenAPI specs. The ApiRouter supports request bodies, response bodies, query parameters and path parameters, as well as full path-based context of the above. This means no more guessing on an endpoint like req.post('/not-my-route', (req, res)=>{res.send(req.body.badparam)}). Typescript would catch /not-my-route, req.body.badparam, res.send(req.body.badparam).

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • c1c4e080b79: Fixed bug in queryEntities of CatalogClient where the sortField is supposed to be changed to orderField.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

  • 24432ae52fb: Fix the build for packages with multiple entry points to avoid duplicated modules.
  • 8075b67e64c: When building a backend package with dependencies any --config <path> options will now be forwarded to any dependent app package builds, unless the build script in the app package already contains a --config option.
  • 79e91d4c30a: Support importing .md files in build loader
  • 3156b0d85dc: Internal refactor to move many internal utilities to the new @backstage/cli-node package.
  • b9839d7135c: Fixed backend start command on Windows by removing the use of platform dependent path joins.
  • 1e4f5e91b8e: Bump zod and zod-to-json-schema dependencies.
  • 29ba8267d69: Updated dependency @material-ui/lab to 4.0.0-alpha.61.
  • 9bbb00d5b49: Updated dependency @swc/helpers to ^0.5.0.
  • b588ab73972: Ensure that the package prepack command and backend bundling uses posix paths in package.json on all OSes.
  • c07c3b7364b: Add onboard command. While still in development, this command aims to guide users in setting up their Backstage App.
  • e0c6e8b9c3c: Update peer dependencies
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 911c25de59c: Add support for auto-fixing missing imports detected by the no-undeclared-imports rule.

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@techdocs/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 303c2c3ce51: Allow closeButton color in DismissableBanner to be configurable (via. theme.palette.banner.closeButtonColor)
  • e0c6e8b9c3c: Update peer dependencies

@backstage/[email protected]

Patch Changes

  • e0c6e8b9c3c: Update peer dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
  • e0c6e8b9c3c: Update peer dependencies
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • e0c6e8b9c3c: Update peer dependencies

@backstage/[email protected]

Patch Changes

  • 7d75f6d9b8f: chore: Improve API Reference documentation
  • 29ba8267d69: Updated dependency @material-ui/lab to 4.0.0-alpha.61.
  • e0c6e8b9c3c: Update peer dependencies
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • d8f774c30df: Enforce the secret visibility of certificates and client secrets in the auth backend. Also, document all known options for each auth plugin.

  • 7908d72e033: Introduce a new global config parameter, enableExperimentalRedirectFlow. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.

  • 475abd1dc3f: The microsoft (i.e. Azure) auth provider now supports negotiating tokens for Azure resources besides Microsoft Graph (e.g. AKS, Virtual Machines, Machine Learning Services, etc.). When the /frame/handler endpoint is called with an authorization code for a non-Microsoft Graph scope, the user profile will not be fetched. Similarly no user profile or photo data will be fetched by the backend if the /refresh endpoint is called with the scope query parameter strictly containing scopes for resources besides Microsoft Graph.

    Furthermore, the offline_access scope will be requested by default, even when it is not mentioned in the argument to getAccessToken. This means that any Azure access token can be automatically refreshed, even if the user has not signed in via Azure.

  • 6a900951336: Add common identify resolvers for oidc auth provider.

  • a0ef1ec7349: Export Azure Easy Auth provider so it can actually be used.

  • e0c6e8b9c3c: Update peer dependencies

  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 55a969fe574: Bumped recharts dependency to ^2.5.0.
  • 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
  • e0c6e8b9c3c: Update peer dependencies
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • d14ac997c36: Add hover over CircleCI avatar icon to show user name in builds table
  • 7d75f6d9b8f: chore: Improve API Reference documentation
  • 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
  • e0c6e8b9c3c: Update peer dependencies
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 7eba760e6f6: Added an endpoint to fetch anonymous aggregated results from an entity

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 3538d9ad2c4: Export DefaultEventBroker to allow decoupling of the catalog and events backends in the example-backend.

    Please look at plugins/events-backend/README.md for the currently advised way to set up the event backend and catalog providers.

  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 2ef8aee1d0c: Add a new "Archived" Filter Options to the Github Pull Requests Dashboard.

    When toggling this option on, the dashboard will display PRs from archived repositories. These PRs will not be displayed in the default filter.

  • 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)

  • e0c6e8b9c3c: Update peer dependencies

  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
  • 8b9e8ece403: Allow to pass lazy GraphQL endpoint URL
  • e0c6e8b9c3c: Update peer dependencies
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 804f6d16b0c: Introduced proxy permission types to be used with the kubernetes proxy endpoint's permission framework integration.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 788f0f5a152: Introduced alpha export of the policyExtensionPoint for use in the new backend system.
  • 71fd0966d10: Added createConditionAuthorizer utility function, which takes some permission conditions and returns a function that returns a definitive authorization result given a decision and a resource.
  • 1e4f5e91b8e: Bump zod and zod-to-json-schema dependencies.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 65e989f4018: Added permissions for authorizing parameters and steps
  • 48da4c46e45: Export typeguard for isTemplateEntityV1beta3
  • bcae5aaf25c: Added permissions for authorizing actions
  • 65e989f4018: Define optional backstage:permissions property to parameters and steps used to authorize part of the template using the permission framework
  • Updated dependencies

@backstage/[email protected]

Patch Changes

  • e27ddc36dad: Added a possibility to cancel the running task (executing of a scaffolder template)
  • a7eb36c6e38: Improve type-check for scaffolder output parameters
  • 1e4f5e91b8e: Bump zod and zod-to-json-schema dependencies.
  • 2898b6c8d52: Minor type tweaks for TypeScript 5.0
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
  • 328ec5f96c6: Added the Analytics event in the save handler of AddShortcut and EditShortcut
  • 99df676e324: Allow external links to be added as shortcuts
  • e0c6e8b9c3c: Update peer dependencies
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

@internal/[email protected]

Patch Changes

@internal/[email protected]

Patch Changes

@internal/[email protected]

Patch Changes

@internal/[email protected]

Patch Changes