Release v1.13.0
@backstage/app-defaults@1.3.0
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
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/core-app-api@1.7.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/plugin-permission-react@0.4.12
@backstage/catalog-model@1.3.0
Minor Changes
- be9c4228073: Modified the regex for DNS label validation to support IDN domains
Patch Changes
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/cli-node@0.1.0
Minor Changes
- 3156b0d85dc: Introduced the new
@backstage/cli-nodepackage, which provides utilities for use across Backstage CLIs.
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/config-loader@1.2.0
Minor Changes
-
c791fcd96b9: Configuration validation is now more permissive when it comes to config whose values are
stringbut whose schemas declare them to bebooleanornumber.For example, configuration was previously marked invalid when a string
'true'was set on a property expecting typebooleanor a string'146'was set on a property expecting typenumber(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
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/core-app-api@1.7.0
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
AuthConnectorinterface now supports specifying a set of scopes when refreshing a session. TheDefaultAuthConnectorimplementation passes thescopequery parameter to the auth-backend plugin appropriately. TheRefreshingAuthSessionManagerpasses any scopes in itsGetSessionRequestappropriately.
Patch Changes
- 1e4f5e91b8e: Bump
zodandzod-to-json-schemadependencies. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-plugin-api@1.5.1
- @backstage/version-bridge@1.0.4
- @backstage/config@1.0.7
- @backstage/types@1.0.2
@backstage/core-components@0.13.0
Minor Changes
-
01cd4e25754: BREAKING: Removing
Tabscomponent fromcore-componentsas 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 UITabscomponent like the following:- <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
guestorcustomauth providers. - 67140d9f96f: Upgrade
react-virtualized-auto-sizer´ to version^1.0.11` - 6e0b71493df: Switched internal declaration of
DependencyGraphTypesto usenamespace. - c8779cc1d09: Updated
LogLinecomponent, which is used by theLogViewer, 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
zodandzod-to-json-schemadependencies. - 29ba8267d69: Updated dependency
@material-ui/labto4.0.0-alpha.61. - 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- 303c2c3ce51: Allow
closeButtoncolor inDismissableBannerto be configurable (via.theme.palette.banner.closeButtonColor) - 7e60bee2dea: Split the
BackstageSidebarstyledrawerclass, such that thewidthproperty is in a separatedrawerWidthclass instead. This makes it such that you can style thedrawerclass in your theme again. - 7245e744ab1: Fixed the font color on
BackstageHeaderLabelto respect the active page theme. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/version-bridge@1.0.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/create-app@0.5.0
Minor Changes
- 10744537bf5: Renamed
permissionApitopermissionswhen passed as dependency of the scaffolder-backend plugin
Patch Changes
-
5af2c4f412f: Bumped create-app version.
-
ab75a16da7a: Bumped create-app version.
-
71fd0966d10: Add
permissionApias 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:- "typescript": "~4.6.4",
+ "typescript": "~5.0.0", -
e0c6e8b9c3c: Update peer dependencies
-
Updated dependencies
- @backstage/cli-common@0.1.12
@backstage/repo-tools@0.2.0
Minor Changes
- a876e69b20e: Adding two new commands to support OpenAPI spec writing,
schema:openapi:generateto generate the Typescript file that@backstage/backend-openapi-utilsneeds for typing andschema:openapi:verifyto verify that this file exists and matches yoursrc/schema/openapi.yamlfile.
Patch Changes
- f59041a3c07: Package paths provided to
api-reportsand OpenAPI commands will now match any path within the target package. - f59041a3c07: Added
--include <patterns>and--exclude <patterns>options forapi-reportscommand that work based on package names. - 9129ca8cabb: Log API report instructions when api-report is missing.
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/cli-node@0.1.0
- @backstage/cli-common@0.1.12
- @backstage/errors@1.1.5
@backstage/test-utils@1.3.0
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
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-app-api@1.7.0
- @backstage/plugin-permission-common@0.7.5
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/plugin-permission-react@0.4.12
- @backstage/config@1.0.7
- @backstage/types@1.0.2
@backstage/plugin-adr@0.5.0
Minor Changes
- a2218363301: Use
fetchApiinstead of rawfetchin order to pass auth header if necessary.
Patch Changes
- 77aa3a4d47e: use path attribute to fetch files instead of name and update the UI to navigate over subdirectories
- 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/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-search-react@1.5.2
- @backstage/plugin-adr-common@0.2.8
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-catalog@1.10.0
Minor Changes
- 4dbf3d3e4da: Added a new EntitySwitch isResourceType to allow different views depending on Resource type
- fc6cab4eb48: Added
isEntityWithcondition helper forEntitySwitchcase statements.
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-search-react@1.5.2
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-catalog-backend@1.9.0
Minor Changes
-
329b63f4dab: The catalog now has a new, optional
catalog.orphanStrategyapp-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:
// 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:
// in packages/backend/src/plugins/catalog.ts
const builder = await CatalogBuilder.create({
// ... other dependencies
+ scheduler: env.scheduler,
});Finally adjust your app-config:
catalog:
orphanStrategy: delete -
92a4590fc3a: Add monorepo support to CodeOwnersProccesor.
Patch Changes
- 62a725e3a94: Use the
LocationSpectype from thecatalog-commonpackage in place of the deprecatedLocationSpecfrom thecatalog-nodepackage. - be5aca50114: Updates and moves OpenAPI spec to
src/schema/openapi.yamland usesApiRoutertype from@backstage/backend-openapi-utilsto handle automatic types from the OpenAPI spec file. - c9a0fdcd2c8: Fix deprecated types.
- 899ebfd8e02: Add full text search support to the
by-queryendpoint. - 1e4f5e91b8e: Bump
zodandzod-to-json-schemadependencies. - c4b846359c0: Allow replacement of the BuiltinKindsEntityProcessor which enables customization of schema validation and connections emitted.
- c36b89f2af3: Fixed bug in the
DefaultCatalogProcessingEnginewhere 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/backend-common@0.18.4
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-backend-module-catalog@0.1.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-catalog-backend-module-gitlab@0.2.0
Minor Changes
-
f64345108a0: BREAKING: The configuration of the
GitlabDiscoveryEntityProviderhas changed as follows:- The configuration key
branchis now used to define the branch from which the catalog-info should be discovered. - The old configuration key
branchis now calledfallbackBranch. 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
branchtofallbackBranch - The configuration key
Patch Changes
- 7b1b7bfdb7b: The gitlab org data integration now makes use of the GraphQL API to determine the relationships between imported User and Group entities, effectively making this integration usable without an administrator account's Personal Access Token.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-catalog-react@1.5.0
Minor Changes
-
a49fb39df5a: Attempt to load entity owner names in the EntityOwnerPicker through the
by-refsendpoint. Ifspec.profile.displayNameormetadata.titleare populated, we now attempt to show those before showing thehumanizeEntityRef'd version.BREAKING:
EntityOwnerFilternow uses the full entity ref instead of thehumanizeEntityRef. If you rely onEntityOwnerFilter.valuesor thequeryParameters.ownersofuseEntityList, you will need to adjust your code like the following.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
- 81bee24c5de: Fixed bug in catalog filters where you could not click on the text to select a value.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- d1f5324dff7: Reverted the check if the selected options list is different than the query parameters list before invoking
setSelectedOptionsmethod. This was preventing updating list items when a query string was already present in the URL when loading the page. - 2898b6c8d52: Minor type tweaks for TypeScript 5.0
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-common@0.7.5
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-permission-react@0.4.12
- @backstage/version-bridge@1.0.4
- @backstage/integration@1.4.4
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-entity-feedback@0.2.0
Minor Changes
- 7eba760e6f6: Added an endpoint to fetch anonymous aggregated results from an entity
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-entity-feedback-common@0.1.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-home@0.5.0
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.mdfor more information how to configure the customizable homepage.
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
@backstage/plugin-kubernetes@0.8.0
Minor Changes
-
754be7c5106: refactor kubernetes error detection to make way for proposed solutions
BREAKING:
DetectedErrornow appears once per Kubernetes resource per error instead of for all resources which have that error,namespaceandnamefields are now insourceRefobjectmessageis now astringinstead of astring[].ErrorDetectableKindhas been removed.
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e7fb0117485: fixes a bug where an empty authorization header was provided to the proxy endpoint when a cluster had a server-side auth provider
- c159ab64a60:
KubernetesBackendClientnow requires akubernetesAuthProvidersApivalue to be provided.KubernetesApiinterface now has a proxy method requirement. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-kubernetes-common@0.6.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-kubernetes-backend@0.10.0
Minor Changes
- e6c7c850129: Plugins that instantiate the
KubernetesProxymust now provide a parameter of the typeKubernetesProxyOptionswhich includes providing aKubernetesAuthTranslator. TheKubernetesBuildernow builds its ownKubernetesAuthTranslatorMapthat it provides to theKubernetesProxy. TheDispatchingKubernetesAuthTranslatorexpects aKubernetesTranslatorMapto be provided as a parameter. TheKubernetesBuildernow has a method calledsetAuthTranslatorMapwhich allows integrators to bring their ownKubernetesAuthTranslator'sto theKubernetesPlugin. - 804f6d16b0c: BREAKING:
KubernetesBuilder.createnow requires apermissionsfield of typePermissionEvaluator. The kubernetes/proxyendpoint now requires two tokens: theBackstage-Kubernetes-Authorizationheader should contain a bearer token for the target cluster, and theAuthorizationheader should contain a backstage identity token. The kubernetes/proxyendpoint now requires aBackstage-Kubernetes-Clusterheader replacing the previously requiredX-Kubernetes-Clusterheader. - 88fbb3d075a: Add support for the new plugin system to the Kubernetes plugin
Patch Changes
- 56a28b559e5: Updated kubernetes config schema to match available options
- 75d4985f5e8: Fixes bug whereby backstage crashes when bad credentials are provided to the kubernetes plugin.
- 83d250badc6: Fix parsing error when kubernetes api is returning badly structured data.
- 76e8f08fa24: fix localKubectlProxy auth provider fetching
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
- @backstage/plugin-kubernetes-common@0.6.2
- @backstage/plugin-auth-node@0.2.13
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-lighthouse-backend@0.2.0
Minor Changes
-
7a89555e73d: Lighthouse backend plugin can now use an authenticated catalog backend API.
- Breaking * You must now pass the
tokenManagerto the lighthousecreateScheduler.
- Breaking * You must now pass the
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-lighthouse-common@0.1.1
@backstage/plugin-playlist-backend@0.3.0
Minor Changes
- 9a98a96f9e8: Exposes the announcements plugin's permissions in a metadata endpoint.
Patch Changes
- 1e4f5e91b8e: Bump
zodandzod-to-json-schemadependencies. - Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-playlist-common@0.1.6
@backstage/plugin-puppetdb@0.1.0
Minor Changes
- 70a036e940e: Initial version of PuppetDB plugin.
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-scaffolder@1.13.0
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
routeRefsand exporting the originals onscaffolderPlugin.routes.xinstead - e5ad1bd61ec: Allow
TemplateListPageandTemplateWizardPageto be passed in as props - 92cf86a4b5d: Added a
templateFilterprop 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
CategoryPickerfromscaffolderintoscaffolder-reactMoveContextMenuintoscaffolder-reactand rename it toScaffolderPageContextMenu
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
someAnnotationset to any value.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
templateFilterpredicate to align withArray.filter -
1e4f5e91b8e: Bump
zodandzod-to-json-schemadependencies. -
f84fc7fd040: Updated dependency
@rjsf/validator-ajv8to5.3.0. -
8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
-
34dab7ee7f8:
scaffolder/next: bumprjsfdependencies to5.5.0 -
e0c6e8b9c3c: Update peer dependencies
-
cf71c3744a5: scaffolder/next: Bump
@rjsf/*dependencies to 5.6.0 -
Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/plugin-scaffolder-react@1.3.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-permission-react@0.4.12
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-scaffolder-backend@1.13.0
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:fileaction 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 abackstage:permissionsproperty under each parameter or action. Each parameter or action can then be permissioned by using a conditional decision containing thescaffolderTemplateRules.hasTagrule. -
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:
createScaffolderConditionalDecisionhas been renamed tocreateScaffolderActionConditionalDecisionscaffolderConditionshas been renamed toscaffolderTemplateConditions
-
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.parseEntityRefwill take an string entity triplet and return a parsed object.pickwill 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
- e23abb37ec1: Rename output parameter
mergeRequestURLofpublish:gitlab:merge-requestaction tomergeRequestUrl. - e27ddc36dad: Added a possibility to cancel the running task (executing of a scaffolder template)
- a7eb36c6e38: Improve type-check for scaffolder output parameters
- c9a0fdcd2c8: Fix deprecated types.
- 1e4f5e91b8e: Bump
zodandzod-to-json-schemadependencies. - 9c26e6d8ed3: Updated the alpha
scaffolderPluginto not require options. - f37a95adcd8: Stripped entity types and namespace before passing to GitHub API
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-catalog-backend@1.9.0
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-auth-node@0.2.13
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.1.0
Minor Changes
- 1b49a18bf8d: Created
confluence:transform:markdownaction for converting confluence docs to Markdown.
Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-scaffolder-backend@1.13.0
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-scaffolder-backend-module-gitlab@0.1.0
Minor Changes
- 1ad400bb2de: Add Gitlab Scaffolder Plugin
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-scaffolder-react@1.3.0
Minor Changes
- 259d3407b9b: Move
CategoryPickerfromscaffolderintoscaffolder-reactMoveContextMenuintoscaffolder-reactand rename it toScaffolderPageContextMenu - 2cfd03d7376: To offer better customization options,
ScaffolderPageContextMenutakes callbacks as props instead of booleans - 48da4c46e45:
scaffolder/next: Export theTemplateGroupFilterandTemplateGroupsand 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
templateFilterpredicate to align withArray.filter - d2488f5e54c: Add an indication that the validators are running when clicking
nexton each step of the form. - 1e4f5e91b8e: Bump
zodandzod-to-json-schemadependencies. - 8c40997df44: Updated dependency
@rjsf/core-v5tonpm:@rjsf/core@5.5.2. - f84fc7fd040: Updated dependency
@rjsf/validator-ajv8to5.3.0. - 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- 34dab7ee7f8:
scaffolder/next: bumprjsfdependencies to5.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/core-components@0.13.0
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/version-bridge@1.0.4
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-search@1.2.0
Minor Changes
- d6b73b0380d: Search modal auto closes on location change
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-search-react@1.5.2
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/version-bridge@1.0.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-search-backend@1.3.0
Minor Changes
- 1469daa409e: Exports search plugin that can be used with the new backend system. For documentation on how to migrate, check out the how to migrate to the new backend system guide.
Patch Changes
- 1e4f5e91b8e: Bump
zodandzod-to-json-schemadependencies. - Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-search-backend-module-catalog@0.1.0
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
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-search-backend-module-elasticsearch@1.2.0
Minor Changes
- 1469daa409e: Search backend modules migrated to the new backend system. For documentation on how to migrate, check out the how to migrate to the new backend system guide.
Patch Changes
- 104b6b19487: fix ElasticSearch throwing error when index is missing
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-search-backend-module-explore@0.1.0
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
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-search-backend-module-techdocs@0.1.0
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
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-techdocs-node@1.7.0
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-search-backend-node@1.2.0
Minor Changes
- 1469daa409e: Exports services and extension points that can be used with the new backend system. For documentation on how to migrate, check out the how to migrate to the new backend system guide.
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-stack-overflow-backend@0.2.0
Minor Changes
- 51ff6f9edff: Adding support for v2.3 API and PAT authentication
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-techdocs-node@1.7.0
Minor Changes
- a8b9357eb71: Use the latest version
v.1.2.0of the spotify/techdocs docker image as default
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration-aws-node@0.1.2
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-vault-backend@0.3.0
Minor Changes
- 5e959c9eb62: Allow generic Vault clients to be passed into the builder
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/backend-app-api@0.4.2
Patch Changes
- 5c7ce585824: Allow an additionalConfig to be provided to loadBackendConfig that fetches config values during runtime.
- 8cce2205a39: Register unhandled rejection and uncaught exception handlers to avoid backend crashes.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config-loader@1.2.0
- @backstage/plugin-permission-node@0.7.7
- @backstage/backend-tasks@0.5.1
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/backend-common@0.18.4
Patch Changes
-
a1002df2dc2: Support commit hashes at
GithubUrlReader.readTree/searchadditionally 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
loadBackendConfigoptionadditionalConfigtoadditionalConfigsas 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
patchchange. -
420164593cf: Improve GitlabUrlReader to only load requested sub-path
-
Updated dependencies
- @backstage/config-loader@1.2.0
- @backstage/backend-app-api@0.4.2
- @backstage/integration@1.4.4
- @backstage/backend-dev-utils@0.1.1
- @backstage/backend-plugin-api@0.5.1
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/integration-aws-node@0.1.2
- @backstage/types@1.0.2
@backstage/backend-defaults@0.1.9
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-app-api@0.4.2
- @backstage/backend-plugin-api@0.5.1
@backstage/backend-openapi-utils@0.0.1
Patch Changes
- 62fe726fdc5: New plugin! Primary focus is to support types on
Routers in backend packages. Developers can use theApiRouterfrom this package in their packages to support a typed experience based on their OpenAPI specs. TheApiRoutersupports 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 likereq.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/backend-plugin-api@0.5.1
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/plugin-auth-node@0.2.13
- @backstage/config@1.0.7
- @backstage/types@1.0.2
@backstage/backend-tasks@0.5.1
Patch Changes
- 1e4f5e91b8e: Bump
zodandzod-to-json-schemadependencies. - Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/backend-test-utils@0.1.36
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-app-api@0.4.2
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/types@1.0.2
@backstage/catalog-client@1.4.1
Patch Changes
- c1c4e080b79: Fixed bug in
queryEntitiesofCatalogClientwhere thesortFieldis supposed to be changed toorderField. - Updated dependencies
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/cli@0.22.6
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--configoption. - 79e91d4c30a: Support importing
.mdfiles in build loader - 3156b0d85dc: Internal refactor to move many internal utilities to the new
@backstage/cli-nodepackage. - b9839d7135c: Fixed backend start command on Windows by removing the use of platform dependent path joins.
- 1e4f5e91b8e: Bump
zodandzod-to-json-schemadependencies. - 29ba8267d69: Updated dependency
@material-ui/labto4.0.0-alpha.61. - 9bbb00d5b49: Updated dependency
@swc/helpersto^0.5.0. - b588ab73972: Ensure that the
package prepackcommand and backend bundling uses posix paths inpackage.jsonon all OSes. - c07c3b7364b: Add
onboardcommand. While still in development, this command aims to guide users in setting up their Backstage App. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/cli-node@0.1.0
- @backstage/config-loader@1.2.0
- @backstage/eslint-plugin@0.1.3
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/release-manifests@0.0.9
- @backstage/types@1.0.2
@backstage/core-plugin-api@1.5.1
Patch Changes
- 760f521b979: Add component name as data attribute for all components
- 2898b6c8d52: Minor type tweaks for TypeScript 5.0
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/version-bridge@1.0.4
- @backstage/config@1.0.7
- @backstage/types@1.0.2
@backstage/dev-utils@1.0.14
Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/app-defaults@1.3.0
- @backstage/core-app-api@1.7.0
- @backstage/test-utils@1.3.0
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/eslint-plugin@0.1.3
Patch Changes
- 911c25de59c: Add support for auto-fixing missing imports detected by the
no-undeclared-importsrule.
@backstage/integration@1.4.4
Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/integration-react@1.1.12
Patch Changes
- 29ba8267d69: Updated dependency
@material-ui/labto4.0.0-alpha.61. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
@techdocs/cli@1.4.1
Patch Changes
- b348420a804: Adding global-agent to enable the ability to publish through a proxy
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-techdocs-node@1.7.0
- @backstage/catalog-model@1.3.0
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
@backstage/theme@0.2.19
Patch Changes
- 303c2c3ce51: Allow
closeButtoncolor inDismissableBannerto be configurable (via.theme.palette.banner.closeButtonColor) - e0c6e8b9c3c: Update peer dependencies
@backstage/version-bridge@1.0.4
Patch Changes
- e0c6e8b9c3c: Update peer dependencies
@backstage/plugin-adr-backend@0.3.2
Patch Changes
- 7d75f6d9b8f: chore: Improve API Reference documentation
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-adr-common@0.2.8
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-adr-common@0.2.8
Patch Changes
- 77aa3a4d47e: use path attribute to fetch files instead of name and update the UI to navigate over subdirectories
- Updated dependencies
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-airbrake@0.3.17
Patch Changes
- 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/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/test-utils@1.3.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/dev-utils@1.0.14
@backstage/plugin-airbrake-backend@0.2.17
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
@backstage/plugin-allure@0.1.33
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-analytics-module-ga@0.1.28
Patch Changes
- 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/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
@backstage/plugin-apache-airflow@0.2.10
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
@backstage/plugin-api-docs@0.9.2
Patch Changes
- ca50c3bbea1: Corrected styling of nested objects in AsyncAPI to avoid inappropriate uppercase text transformation of nested objects.
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-catalog@1.10.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-api-docs-module-protoc-gen-doc@0.1.2
Patch Changes
- e0c6e8b9c3c: Update peer dependencies
@backstage/plugin-apollo-explorer@0.1.10
Patch Changes
- 7d75f6d9b8f: chore: Improve API Reference documentation
- 29ba8267d69: Updated dependency
@material-ui/labto4.0.0-alpha.61. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
@backstage/plugin-app-backend@0.3.44
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config-loader@1.2.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/types@1.0.2
@backstage/plugin-auth-backend@0.18.2
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/handlerendpoint 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/refreshendpoint is called with thescopequery parameter strictly containing scopes for resources besides Microsoft Graph.Furthermore, the
offline_accessscope will be requested by default, even when it is not mentioned in the argument togetAccessToken. 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
oidcauth provider. -
a0ef1ec7349: Export Azure Easy Auth provider so it can actually be used.
-
e0c6e8b9c3c: Update peer dependencies
-
Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-auth-node@0.2.13
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-azure-devops@0.2.8
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/plugin-azure-devops-common@0.3.0
@backstage/plugin-azure-devops-backend@0.3.23
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
- @backstage/plugin-azure-devops-common@0.3.0
@backstage/plugin-azure-sites@0.1.6
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-azure-sites-common@0.1.0
@backstage/plugin-azure-sites-backend@0.1.6
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
- @backstage/plugin-azure-sites-common@0.1.0
@backstage/plugin-badges@0.2.41
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-badges-backend@0.1.38
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-bazaar@0.2.7
Patch Changes
- fbd6f36611a: Added the
docsparameter (optional) to link the project documentation - 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- 656914bb0ad: Added the
fullWidthandfullHeightoptional properties to theBazaarPage, to replicate the styling options available on theBazaarOverviewCard. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/cli@0.22.6
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-catalog@1.10.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-bazaar-backend@0.2.7
Patch Changes
- fbd6f36611a: Added the
docsparameter (optional) to link the project documentation - Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-bitbucket-cloud-common@0.2.5
Patch Changes
- Updated dependencies
- @backstage/integration@1.4.4
@backstage/plugin-bitrise@0.1.44
Patch Changes
- 55a969fe574: Bumped
rechartsdependency 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/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-catalog-backend-module-aws@0.1.18
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-kubernetes-common@0.6.2
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-catalog-backend-module-azure@0.1.15
Patch Changes
- 62a725e3a94: Use the
LocationSpectype from thecatalog-commonpackage in place of the deprecatedLocationSpecfrom thecatalog-nodepackage. - Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-catalog-backend-module-bitbucket@0.2.11
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-bitbucket-cloud-common@0.2.5
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.1.11
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-bitbucket-cloud-common@0.2.5
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-events-node@0.2.5
@backstage/plugin-catalog-backend-module-bitbucket-server@0.1.9
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-catalog-backend-module-gerrit@0.1.12
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-catalog-backend-module-github@0.2.7
Patch Changes
-
3756dd98feb:
GitHubEntityProvider: Add option to configure visibility filter viaapp-config.yaml.Please find how to configure visibility filter config at https://backstage.io/docs/integrations/github/discovery
-
3160138d8d4: Implement
GithubMultiOrgEntityProviderfor sourcing group and user entities from multiple GitHub organizations -
Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-catalog-backend@1.9.0
- @backstage/catalog-client@1.4.1
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-events-node@0.2.5
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.3.1
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-catalog-backend@1.9.0
- @backstage/plugin-permission-common@0.7.5
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-events-node@0.2.5
@backstage/plugin-catalog-backend-module-ldap@0.5.11
Patch Changes
- c9a0fdcd2c8: Fix deprecated types.
- Updated dependencies
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-catalog-node@1.3.5
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-catalog-backend-module-msgraph@0.5.3
Patch Changes
- c9a0fdcd2c8: Fix deprecated types.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-catalog-backend-module-openapi@0.1.10
Patch Changes
- c9a0fdcd2c8: Fix deprecated types.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-catalog-backend@1.9.0
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-catalog-backend-module-puppetdb@0.1.1
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-catalog-common@1.0.13
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-catalog-graph@0.2.29
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-catalog-graphql@0.3.20
Patch Changes
- e47e69eadf0: Updated dependency
@apollo/serverto^4.0.0. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/types@1.0.2
@backstage/plugin-catalog-import@0.9.7
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/integration-react@1.1.12
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-catalog-node@1.3.5
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-cicd-statistics@0.1.19
Patch Changes
- 55a969fe574: Bumped
rechartsdependency 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/plugin-catalog-react@1.5.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-cicd-statistics-module-gitlab@0.1.13
Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/plugin-cicd-statistics@0.1.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-circleci@0.3.17
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/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-cloudbuild@0.3.17
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-code-climate@0.1.17
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-code-coverage@0.2.10
Patch Changes
- 55a969fe574: Bumped
rechartsdependency 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/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-code-coverage-backend@0.2.10
Patch Changes
- d3645a62b74: Bump
xml2jsfrom 0.4.23 to 0.5.0 - Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-codescene@0.1.12
Patch Changes
- 29ba8267d69: Updated dependency
@material-ui/labto4.0.0-alpha.61. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-config-schema@0.1.40
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-cost-insights@0.12.6
Patch Changes
- 55a969fe574: Bumped
rechartsdependency 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/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/plugin-cost-insights-common@0.1.1
@backstage/plugin-dynatrace@4.0.0
Patch Changes
- 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/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-entity-feedback-backend@0.1.2
Patch Changes
- 7eba760e6f6: Added an endpoint to fetch anonymous aggregated results from an entity
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-entity-feedback-common@0.1.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/config@1.0.7
@backstage/plugin-entity-feedback-common@0.1.1
Patch Changes
- 7eba760e6f6: Added an endpoint to fetch anonymous aggregated results from an entity
@backstage/plugin-entity-validation@0.1.2
Patch Changes
- 29ba8267d69: Updated dependency
@material-ui/labto4.0.0-alpha.61. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-events-backend@0.2.5
Patch Changes
-
3538d9ad2c4: Export
DefaultEventBrokerto allow decoupling of the catalog and events backends in theexample-backend.Please look at
plugins/events-backend/README.mdfor the currently advised way to set up the event backend and catalog providers. -
Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-events-node@0.2.5
@backstage/plugin-events-backend-module-aws-sqs@0.1.6
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-events-node@0.2.5
@backstage/plugin-events-backend-module-azure@0.1.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.1
- @backstage/plugin-events-node@0.2.5
@backstage/plugin-events-backend-module-bitbucket-cloud@0.1.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.1
- @backstage/plugin-events-node@0.2.5
@backstage/plugin-events-backend-module-gerrit@0.1.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.1
- @backstage/plugin-events-node@0.2.5
@backstage/plugin-events-backend-module-github@0.1.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-events-node@0.2.5
@backstage/plugin-events-backend-module-gitlab@0.1.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-events-node@0.2.5
@backstage/plugin-events-backend-test-utils@0.1.6
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.2.5
@backstage/plugin-events-node@0.2.5
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.1
@backstage/plugin-explore@0.4.2
Patch Changes
- f9ea944422e: Extracted generic
CatalogKindExploreContentcomponent so that it is easy to show any component kinds in their own tab in the explore page. - 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-search-react@1.5.2
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-explore-react@0.0.28
- @backstage/errors@1.1.5
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-explore-backend@0.0.6
Patch Changes
- 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/backend-common@0.18.4
- @backstage/plugin-search-backend-module-explore@0.1.0
- @backstage/config@1.0.7
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-explore-react@0.0.28
Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-plugin-api@1.5.1
- @backstage/plugin-explore-common@0.0.1
@backstage/plugin-firehydrant@0.2.1
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-fossa@0.2.49
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-gcalendar@0.3.13
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/errors@1.1.5
@backstage/plugin-gcp-projects@0.3.36
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
@backstage/plugin-git-release-manager@0.3.30
Patch Changes
- 55a969fe574: Bumped
rechartsdependency 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/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/integration@1.4.4
@backstage/plugin-github-actions@0.5.17
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
@backstage/plugin-github-deployments@0.1.48
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/errors@1.1.5
@backstage/plugin-github-issues@0.2.6
Patch Changes
- 29ba8267d69: Updated dependency
@material-ui/labto4.0.0-alpha.61. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/errors@1.1.5
@backstage/plugin-github-pull-requests-board@0.1.11
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/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
@backstage/plugin-gitops-profiles@0.3.35
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
@backstage/plugin-gocd@0.1.23
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-graphiql@0.2.49
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/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
@backstage/plugin-graphql-backend@0.1.34
Patch Changes
- e47e69eadf0: Updated dependency
@apollo/serverto^4.0.0. - Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-catalog-graphql@0.3.20
- @backstage/config@1.0.7
@backstage/plugin-graphql-voyager@0.1.2
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
@backstage/plugin-ilert@0.2.6
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-jenkins@0.7.16
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/plugin-jenkins-common@0.1.15
@backstage/plugin-jenkins-backend@0.1.34
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-jenkins-common@0.1.15
@backstage/plugin-jenkins-common@0.1.15
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-kafka@0.3.17
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
@backstage/plugin-kafka-backend@0.2.37
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-model@1.3.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-kubernetes-common@0.6.2
Patch Changes
- 804f6d16b0c: Introduced proxy permission types to be used with the kubernetes proxy endpoint's permission framework integration.
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
@backstage/plugin-lighthouse@0.4.2
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/plugin-lighthouse-common@0.1.1
@backstage/plugin-linguist@0.1.2
Patch Changes
- 29ba8267d69: Updated dependency
@material-ui/labto4.0.0-alpha.61. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/plugin-linguist-common@0.1.0
@backstage/plugin-linguist-backend@0.2.1
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-linguist-common@0.1.0
@backstage/plugin-microsoft-calendar@0.1.2
Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/errors@1.1.5
@backstage/plugin-newrelic@0.3.35
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
@backstage/plugin-newrelic-dashboard@0.2.10
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-octopus-deploy@0.1.1
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-org@0.6.7
Patch Changes
-
d7c8d8c52dd: Allow the title of the group profile card to use the title of the entity, if it is set.
-
8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
-
228ab677d31: Added
entityLimitto change the limit of entities displayed in the ownership boxes. -
e0c6e8b9c3c: Update peer dependencies
-
Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-org-react@0.1.6
Patch Changes
- 29ba8267d69: Updated dependency
@material-ui/labto4.0.0-alpha.61. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/catalog-client@1.4.1
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-pagerduty@0.5.10
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-periskop@0.1.15
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-periskop-backend@0.1.15
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
@backstage/plugin-permission-backend@0.5.19
Patch Changes
- 84946a580c4: Introduced alpha export of the
permissionPluginfor use in the new backend system, along with apermissionModuleAllowAllPolicythat can be used to allow all requests. - 1e4f5e91b8e: Bump
zodandzod-to-json-schemadependencies. - Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-permission-common@0.7.5
Patch Changes
- 1e4f5e91b8e: Bump
zodandzod-to-json-schemadependencies. - Updated dependencies
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-permission-node@0.7.7
Patch Changes
- 788f0f5a152: Introduced alpha export of the
policyExtensionPointfor 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
zodandzod-to-json-schemadependencies. - Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-permission-react@0.4.12
Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
@backstage/plugin-playlist@0.1.8
Patch Changes
- 1b3c0546047: Added config properties to change dynamically the group noun for all the components in the UI
- 29ba8267d69: Updated dependency
@material-ui/labto4.0.0-alpha.61. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-search-react@1.5.2
- @backstage/plugin-permission-common@0.7.5
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-permission-react@0.4.12
- @backstage/errors@1.1.5
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-playlist-common@0.1.6
@backstage/plugin-playlist-common@0.1.6
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
@backstage/plugin-proxy-backend@0.2.38
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
@backstage/plugin-rollbar@0.4.17
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-rollbar-backend@0.1.41
Patch Changes
- 66b6cfc5716: Replace
camelcase-keysdependency with one with better compatibility. - Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.19
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-scaffolder-backend@1.13.0
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-scaffolder-backend-module-rails@0.4.12
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-scaffolder-backend@1.13.0
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-scaffolder-backend-module-sentry@0.1.4
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-scaffolder-backend-module-yeoman@0.2.17
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.1.2
- @backstage/config@1.0.7
- @backstage/types@1.0.2
@backstage/plugin-scaffolder-common@1.2.7
Patch Changes
- 65e989f4018: Added permissions for authorizing parameters and steps
- 48da4c46e45: Export
typeguardforisTemplateEntityV1beta3 - bcae5aaf25c: Added permissions for authorizing actions
- 65e989f4018: Define optional
backstage:permissionsproperty to parameters and steps used to authorize part of the template using the permission framework - Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
- @backstage/types@1.0.2
@backstage/plugin-scaffolder-node@0.1.2
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
zodandzod-to-json-schemadependencies. - 2898b6c8d52: Minor type tweaks for TypeScript 5.0
- Updated dependencies
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/catalog-model@1.3.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/types@1.0.2
@backstage/plugin-search-backend-module-pg@0.5.5
Patch Changes
- 1469daa409e: Search backend modules migrated to the new backend system. For documentation on how to migrate, check out the how to migrate to the new backend system guide.
- 87ca22ce9c9: Fixed a bug that could cause orphaned PG connections to accumulate (eventually exhausting available connections) when errors were encountered earlier in the search indexing process.
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-search-common@1.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5
- @backstage/types@1.0.2
@backstage/plugin-search-react@1.5.2
Patch Changes
- b2e182cdfa4: Fixes a UI bug in search result item which rendered the item text with incorrect font size and color
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/version-bridge@1.0.4
- @backstage/types@1.0.2
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-sentry@0.5.2
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-shortcuts@0.3.9
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/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/types@1.0.2
@backstage/plugin-sonarqube@0.6.6
Patch Changes
- 5a368d12bc9: amend getSecurityHotspotsUrl to conditionally remove project path if sonarqube is self hosted
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-sonarqube-react@0.1.5
@backstage/plugin-sonarqube-backend@0.1.9
Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-sonarqube-react@0.1.5
Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-splunk-on-call@0.4.6
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-stack-overflow@0.1.13
Patch Changes
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-search-react@1.5.2
- @backstage/plugin-home@0.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-stackstorm@0.1.1
Patch Changes
- 29ba8267d69: Updated dependency
@material-ui/labto4.0.0-alpha.61. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/errors@1.1.5
@backstage/plugin-tech-insights@0.3.9
Patch Changes
- f538b9c5b83: The
Checktype now optionally includes thefailureMetadataandsuccessMetadataas returned by therunCheckscall. - 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-tech-insights-common@0.2.10
@backstage/plugin-tech-insights-backend@0.5.10
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/backend-tasks@0.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-tech-insights-node@0.4.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-tech-insights-common@0.2.10
@backstage/plugin-tech-insights-backend-module-jsonfc@0.1.28
Patch Changes
- 9cb1db6546a: When multiple fact retrievers are used for a check, allow for cases where only one returns a given fact
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-tech-insights-node@0.4.2
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-tech-insights-common@0.2.10
@backstage/plugin-tech-insights-node@0.4.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/backend-tasks@0.5.1
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-tech-insights-common@0.2.10
@backstage/plugin-tech-radar@0.6.3
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
@backstage/plugin-techdocs@1.6.1
Patch Changes
-
6c809d1a41c: Minor visual tweaks to adapt to changes in mkdocs-material v9
-
b2e182cdfa4: Fixes a UI bug in search result item which rendered the item text with incorrect font size and color
-
847a1eee3da: Change anchor links color in Techdocs content
With the color (mkdocs supplied) used for anchor links the background and foreground colors do not have a sufficient contrast ratio. Using the link color from theme palette.
-
8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
-
2e493480626: Fix a bug in sub-path navigation due to double addition of a sub-path if one was set up in
app.baseUrl. -
e0c6e8b9c3c: Update peer dependencies
-
Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-search-react@1.5.2
- @backstage/plugin-techdocs-react@1.1.5
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-techdocs-addons-test-utils@1.0.12
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-techdocs@1.6.1
- @backstage/plugin-catalog@1.10.0
- @backstage/core-app-api@1.7.0
- @backstage/test-utils@1.3.0
- @backstage/plugin-search-react@1.5.2
- @backstage/plugin-techdocs-react@1.1.5
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
@backstage/plugin-techdocs-backend@1.6.1
Patch Changes
- 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/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/plugin-techdocs-node@1.7.0
- @backstage/plugin-permission-common@0.7.5
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-backend-module-techdocs@0.1.0
- @backstage/integration@1.4.4
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-techdocs-module-addons-contrib@1.0.12
Patch Changes
- c657d0a610e: Bump
photoswipedependency to^5.3.7. - 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-techdocs-react@1.1.5
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/integration@1.4.4
@backstage/plugin-techdocs-react@1.1.5
Patch Changes
- 7e0c7b09a47: Fix a bug that caused the header to not render when generating a document for the first time
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/version-bridge@1.0.4
- @backstage/config@1.0.7
@backstage/plugin-todo@0.2.19
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-todo-backend@0.1.41
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/integration@1.4.4
- @backstage/plugin-catalog-node@1.3.5
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-user-settings@0.7.2
Patch Changes
- 8e00acb28db: Small tweaks to remove warnings in the console during development (mainly focusing on techdocs)
- e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/core-app-api@1.7.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-user-settings-backend@0.1.8
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/catalog-model@1.3.0
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-vault@0.1.11
Patch Changes
- 7c7f8d38a51: Use
fetchApiinstead of rawfetchin order to pass auth header if necessary. - 29ba8267d69: Updated dependency
@material-ui/labto4.0.0-alpha.61. - e0c6e8b9c3c: Update peer dependencies
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-xcmetrics@0.2.37
Patch Changes
- 55a969fe574: Bumped
rechartsdependency 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/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/errors@1.1.5
example-app@0.2.82
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/plugin-kubernetes@0.8.0
- @backstage/cli@0.22.6
- @backstage/plugin-circleci@0.3.17
- @backstage/plugin-techdocs-module-addons-contrib@1.0.12
- @backstage/plugin-scaffolder-react@1.3.0
- @backstage/plugin-scaffolder@1.13.0
- @backstage/plugin-api-docs@0.9.2
- @backstage/plugin-org@0.6.7
- @backstage/plugin-entity-feedback@0.2.0
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-techdocs@1.6.1
- @backstage/plugin-puppetdb@0.1.0
- @backstage/plugin-explore@0.4.2
- @backstage/plugin-tech-insights@0.3.9
- @backstage/app-defaults@1.3.0
- @backstage/core-app-api@1.7.0
- @backstage/plugin-search-react@1.5.2
- @backstage/plugin-code-coverage@0.2.10
- @backstage/plugin-cost-insights@0.12.6
- @backstage/plugin-playlist@0.1.8
- @backstage/plugin-home@0.5.0
- @backstage/plugin-dynatrace@4.0.0
- @backstage/plugin-airbrake@0.3.17
- @backstage/plugin-techdocs-react@1.1.5
- @backstage/integration-react@1.1.12
- @backstage/plugin-stackstorm@0.1.1
- @backstage/plugin-linguist@0.1.2
- @backstage/plugin-newrelic-dashboard@0.2.10
- @backstage/plugin-apache-airflow@0.2.10
- @backstage/plugin-catalog-import@0.9.7
- @backstage/plugin-github-actions@0.5.17
- @backstage/plugin-catalog-graph@0.2.29
- @backstage/plugin-user-settings@0.7.2
- @backstage/plugin-azure-devops@0.2.8
- @backstage/plugin-gcp-projects@0.3.36
- @backstage/plugin-azure-sites@0.1.6
- @backstage/plugin-cloudbuild@0.3.17
- @backstage/plugin-lighthouse@0.4.2
- @backstage/plugin-tech-radar@0.6.3
- @backstage/plugin-gcalendar@0.3.13
- @backstage/plugin-pagerduty@0.5.10
- @backstage/plugin-shortcuts@0.3.9
- @backstage/plugin-graphiql@0.2.49
- @backstage/plugin-newrelic@0.3.35
- @backstage/plugin-jenkins@0.7.16
- @backstage/plugin-rollbar@0.4.17
- @backstage/plugin-badges@0.2.41
- @backstage/plugin-search@1.2.0
- @backstage/plugin-sentry@0.5.2
- @backstage/plugin-kafka@0.3.17
- @backstage/plugin-gocd@0.1.23
- @backstage/plugin-todo@0.2.19
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/plugin-microsoft-calendar@0.1.2
- @backstage/plugin-permission-react@0.4.12
- @backstage/plugin-stack-overflow@0.1.13
- @backstage/config@1.0.7
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-linguist-common@0.1.0
- @backstage/plugin-search-common@1.2.3
- @internal/plugin-catalog-customized@0.0.9
example-backend@0.2.82
Patch Changes
- Updated dependencies
- @backstage/plugin-kubernetes-backend@0.10.0
- @backstage/backend-common@0.18.4
- @backstage/plugin-scaffolder-backend@1.13.0
- @backstage/plugin-catalog-backend@1.9.0
- @backstage/plugin-code-coverage-backend@0.2.10
- @backstage/catalog-client@1.4.1
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-backend@0.5.19
- @backstage/plugin-entity-feedback-backend@0.1.2
- @backstage/plugin-rollbar-backend@0.1.41
- @backstage/plugin-search-backend@1.3.0
- @backstage/plugin-search-backend-module-elasticsearch@1.2.0
- @backstage/plugin-search-backend-module-pg@0.5.5
- @backstage/plugin-auth-backend@0.18.2
- @backstage/plugin-lighthouse-backend@0.2.0
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-playlist-backend@0.3.0
- @backstage/backend-tasks@0.5.1
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.28
- @backstage/plugin-adr-backend@0.3.2
- @backstage/plugin-graphql-backend@0.1.34
- @backstage/catalog-model@1.3.0
- @backstage/plugin-techdocs-backend@1.6.1
- @backstage/plugin-explore-backend@0.0.6
- @backstage/plugin-events-backend@0.2.5
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/integration@1.4.4
- example-app@0.2.82
- @backstage/plugin-app-backend@0.3.44
- @backstage/plugin-auth-node@0.2.13
- @backstage/plugin-azure-devops-backend@0.3.23
- @backstage/plugin-azure-sites-backend@0.1.6
- @backstage/plugin-badges-backend@0.1.38
- @backstage/plugin-catalog-node@1.3.5
- @backstage/plugin-jenkins-backend@0.1.34
- @backstage/plugin-kafka-backend@0.2.37
- @backstage/plugin-linguist-backend@0.2.1
- @backstage/plugin-proxy-backend@0.2.38
- @backstage/plugin-scaffolder-backend-module-rails@0.4.12
- @backstage/plugin-tech-insights-backend@0.5.10
- @backstage/plugin-tech-insights-node@0.4.2
- @backstage/plugin-todo-backend@0.1.41
- @backstage/config@1.0.7
- @backstage/plugin-events-node@0.2.5
- @backstage/plugin-search-common@1.2.3
example-backend-next@0.0.10
Patch Changes
- Updated dependencies
- @backstage/plugin-kubernetes-backend@0.10.0
- @backstage/plugin-scaffolder-backend@1.13.0
- @backstage/plugin-catalog-backend@1.9.0
- @backstage/plugin-permission-node@0.7.7
- @backstage/plugin-permission-backend@0.5.19
- @backstage/plugin-search-backend@1.3.0
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-techdocs-backend@1.6.1
- @backstage/plugin-search-backend-node@1.2.0
- @backstage/plugin-search-backend-module-techdocs@0.1.0
- @backstage/plugin-search-backend-module-catalog@0.1.0
- @backstage/plugin-search-backend-module-explore@0.1.0
- @backstage/backend-defaults@0.1.9
- @backstage/plugin-app-backend@0.3.44
- @backstage/plugin-auth-node@0.2.13
- @backstage/plugin-todo-backend@0.1.41
e2e-test@0.2.2
Patch Changes
- Updated dependencies
- @backstage/create-app@0.5.0
- @backstage/cli-common@0.1.12
- @backstage/errors@1.1.5
techdocs-cli-embedded-app@0.2.81
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/cli@0.22.6
- @backstage/plugin-techdocs@1.6.1
- @backstage/plugin-catalog@1.10.0
- @backstage/app-defaults@1.3.0
- @backstage/core-app-api@1.7.0
- @backstage/test-utils@1.3.0
- @backstage/plugin-techdocs-react@1.1.5
- @backstage/integration-react@1.1.12
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
@internal/plugin-catalog-customized@0.0.9
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.5.0
- @backstage/plugin-catalog@1.10.0
@internal/plugin-todo-list@1.0.12
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/theme@0.2.19
- @backstage/core-plugin-api@1.5.1
@internal/plugin-todo-list-backend@1.0.12
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.4
- @backstage/plugin-auth-node@0.2.13
- @backstage/backend-plugin-api@0.5.1
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@internal/plugin-todo-list-common@1.0.10
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.5