Merge pull request #10094 from backstage/changeset-release/master
Version Packages
This commit is contained in:
@@ -1,12 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-common': patch
|
||||
'@backstage/backend-tasks': patch
|
||||
'@backstage/backend-test-utils': patch
|
||||
'@backstage/plugin-app-backend': patch
|
||||
'@backstage/plugin-auth-backend': patch
|
||||
'@backstage/plugin-bazaar-backend': patch
|
||||
'@backstage/plugin-catalog-backend': patch
|
||||
'@backstage/plugin-scaffolder-backend': patch
|
||||
---
|
||||
|
||||
Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912)
|
||||
@@ -1,8 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-backend': patch
|
||||
'@backstage/plugin-scaffolder-backend-module-cookiecutter': patch
|
||||
'@backstage/plugin-scaffolder-backend-module-rails': patch
|
||||
'@backstage/plugin-scaffolder-backend-module-yeoman': patch
|
||||
---
|
||||
|
||||
Updating documentation for supporting `apiVersion: scaffolder.backstage.io/v1beta3`
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
Added `--since <ref>` flag for `repo build` command.`
|
||||
@@ -1,33 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Builtin support for cookiecutter based templates has been removed from `@backstage/plugin-scaffolder-backend`. Due to this, the `containerRunner` argument to its `createRouter` has also been removed.
|
||||
|
||||
If you do not use cookiecutter templates and are fine with removing support from it in your own installation, update your `packages/backend/src/plugins/scaffolder.ts` file as follows:
|
||||
|
||||
```diff
|
||||
-import { DockerContainerRunner } from '@backstage/backend-common';
|
||||
import { CatalogClient } from '@backstage/catalog-client';
|
||||
import { createRouter } from '@backstage/plugin-scaffolder-backend';
|
||||
-import Docker from 'dockerode';
|
||||
import { Router } from 'express';
|
||||
import type { PluginEnvironment } from '../types';
|
||||
|
||||
export default async function createPlugin({
|
||||
reader,
|
||||
discovery,
|
||||
}: PluginEnvironment): Promise<Router> {
|
||||
- const dockerClient = new Docker();
|
||||
- const containerRunner = new DockerContainerRunner({ dockerClient });
|
||||
-
|
||||
const catalogClient = new CatalogClient({ discoveryApi: discovery });
|
||||
-
|
||||
return await createRouter({
|
||||
- containerRunner,
|
||||
logger,
|
||||
config,
|
||||
// ...
|
||||
```
|
||||
|
||||
If you want to retain cookiecutter support, please use the `@backstage/plugin-scaffolder-backend-module-cookiecutter` package explicitly (see [its README](https://github.com/backstage/backstage/tree/master/plugins/scaffolder-backend-module-cookiecutter) for installation instructions).
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed the `AboutCard` component which has been replaced by `EntityAboutCard`.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-react': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed `reduceCatalogFilters` and `reduceEntityFilters` due to low external utility value.
|
||||
@@ -1,69 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed `GithubDiscoveryProcessor`, `GithubMultiOrgReaderProcessor`, `GitHubOrgEntityProvider`, `GithubOrgReaderProcessor`, and `GithubMultiOrgConfig` which now instead should be imported from `@backstage/plugin-catalog-backend-module-github`. NOTE THAT the `GithubDiscoveryProcessor` and `GithubOrgReaderProcessor` were part of the default set of processors in the catalog backend, and if you are a user of discovery or location based org ingestion on GitLab, you MUST now add them manually in the catalog initialization code of your backend.
|
||||
|
||||
```diff
|
||||
// In packages/backend/src/plugins/catalog.ts
|
||||
+import {
|
||||
+ GithubDiscoveryProcessor,
|
||||
+ GithubOrgReaderProcessor,
|
||||
+} from '@backstage/plugin-catalog-backend-module-github';
|
||||
+import {
|
||||
+ ScmIntegrations,
|
||||
+ DefaultGithubCredentialsProvider
|
||||
+} from '@backstage/integration';
|
||||
|
||||
export default async function createPlugin(
|
||||
env: PluginEnvironment,
|
||||
): Promise<Router> {
|
||||
const builder = await CatalogBuilder.create(env);
|
||||
+ const integrations = ScmIntegrations.fromConfig(config);
|
||||
+ const githubCredentialsProvider =
|
||||
+ DefaultGithubCredentialsProvider.fromIntegrations(integrations);
|
||||
+ builder.addProcessor(
|
||||
+ GithubDiscoveryProcessor.fromConfig(config, {
|
||||
+ logger,
|
||||
+ githubCredentialsProvider,
|
||||
+ }),
|
||||
+ GithubOrgReaderProcessor.fromConfig(config, {
|
||||
+ logger,
|
||||
+ githubCredentialsProvider,
|
||||
+ }),
|
||||
+ );
|
||||
```
|
||||
|
||||
**BREAKING**: Removed `GitLabDiscoveryProcessor`, which now instead should be imported from `@backstage/plugin-catalog-backend-module-gitlab`. NOTE THAT this processor was part of the default set of processors in the catalog backend, and if you are a user of discovery on GitLab, you MUST now add it manually in the catalog initialization code of your backend.
|
||||
|
||||
```diff
|
||||
// In packages/backend/src/plugins/catalog.ts
|
||||
+import { GitLabDiscoveryProcessor } from '@backstage/plugin-catalog-backend-module-gitlab';
|
||||
|
||||
export default async function createPlugin(
|
||||
env: PluginEnvironment,
|
||||
): Promise<Router> {
|
||||
const builder = await CatalogBuilder.create(env);
|
||||
+ builder.addProcessor(
|
||||
+ GitLabDiscoveryProcessor.fromConfig(env.config, { logger: env.logger })
|
||||
+ );
|
||||
```
|
||||
|
||||
**BREAKING**: Removed `BitbucketDiscoveryProcessor`, which now instead should be imported from `@backstage/plugin-catalog-backend-module-bitbucket`. NOTE THAT this processor was part of the default set of processors in the catalog backend, and if you are a user of discovery on Bitbucket, you MUST now add it manually in the catalog initialization code of your backend.
|
||||
|
||||
```diff
|
||||
// In packages/backend/src/plugins/catalog.ts
|
||||
+import { BitbucketDiscoveryProcessor } from '@backstage/plugin-catalog-backend-module-bitbucket';
|
||||
|
||||
export default async function createPlugin(
|
||||
env: PluginEnvironment,
|
||||
): Promise<Router> {
|
||||
const builder = await CatalogBuilder.create(env);
|
||||
+ builder.addProcessor(
|
||||
+ BitbucketDiscoveryProcessor.fromConfig(env.config, { logger: env.logger })
|
||||
+ );
|
||||
```
|
||||
|
||||
**BREAKING**: Removed `AzureDevOpsDiscoveryProcessor`, which now instead should be imported from `@backstage/plugin-catalog-backend-module-azure`. This processor was not part of the set of default processors. If you were using it, you should already have a reference to it in your backend code and only need to update the import.
|
||||
|
||||
**BREAKING**: Removed the formerly deprecated type `BitbucketRepositoryParser`, which is instead reintroduced in `@backstage/plugin-catalog-backend-module-bitbucket`.
|
||||
@@ -1,14 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Removed the `cookiecutter-golang` template from the default `create-app` install as we no longer provide `cookiecutter` action out of the box.
|
||||
|
||||
You can remove the template by removing the following lines from your `app-config.yaml` under `catalog.locations`:
|
||||
|
||||
```diff
|
||||
- - type: url
|
||||
- target: https://github.com/spotify/cookiecutter-golang/blob/master/template.yaml
|
||||
- rules:
|
||||
- - allow: [Template]
|
||||
```
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
build(deps-dev): bump `@types/npm-packlist` from 1.1.2 to 3.0.0
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
chore(deps): bump `minimatch` from 5.0.0 to 5.0.1
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/core-components': patch
|
||||
'@backstage/plugin-gcp-projects': patch
|
||||
---
|
||||
|
||||
chore(deps): bump `@react-hookz/web` from 12.3.0 to 13.0.0
|
||||
@@ -1,19 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-common': patch
|
||||
'@backstage/cli': patch
|
||||
'@backstage/config-loader': patch
|
||||
'@backstage/create-app': patch
|
||||
'@techdocs/cli': patch
|
||||
'@backstage/plugin-app-backend': patch
|
||||
'@backstage/plugin-auth-backend': patch
|
||||
'@backstage/plugin-catalog-backend': patch
|
||||
'@backstage/plugin-kubernetes-backend': patch
|
||||
'@backstage/plugin-rollbar-backend': patch
|
||||
'@backstage/plugin-scaffolder-backend-module-cookiecutter': patch
|
||||
'@backstage/plugin-scaffolder-backend-module-rails': patch
|
||||
'@backstage/plugin-scaffolder-backend': patch
|
||||
'@backstage/plugin-techdocs-backend': patch
|
||||
'@backstage/plugin-techdocs-node': patch
|
||||
---
|
||||
|
||||
build(deps): bump `fs-extra` from 9.1.0 to 10.0.1
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed `AwsS3DiscoveryProcessor`, which now instead should be imported from `@backstage/plugin-catalog-backend-module-aws`.
|
||||
@@ -1,21 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder': minor
|
||||
'@backstage/plugin-scaffolder-backend': minor
|
||||
'@backstage/plugin-scaffolder-common': minor
|
||||
---
|
||||
|
||||
The following deprecations are now breaking and have been removed:
|
||||
|
||||
- **BREAKING**: Support for `backstage.io/v1beta2` Software Templates has been removed. Please migrate your legacy templates to the new `scaffolder.backstage.io/v1beta3` `apiVersion` by following the [migration guide](https://backstage.io/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3)
|
||||
|
||||
- **BREAKING**: Removed the deprecated `TemplateMetadata`. Please use `TemplateInfo` instead.
|
||||
|
||||
- **BREAKING**: Removed the deprecated `context.baseUrl`. It's now available on `context.templateInfo.baseUrl`.
|
||||
|
||||
- **BREAKING**: Removed the deprecated `DispatchResult`, use `TaskBrokerDispatchResult` instead.
|
||||
|
||||
- **BREAKING**: Removed the deprecated `runCommand`, use `executeShellCommond` instead.
|
||||
|
||||
- **BREAKING**: Removed the deprecated `Status` in favour of `TaskStatus` instead.
|
||||
|
||||
- **BREAKING**: Removed the deprecated `TaskState` in favour of `CurrentClaimedTask` instead.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend': patch
|
||||
---
|
||||
|
||||
support Bitbucket Cloud's code search to discover catalog files (multiple per repo, Location entities for existing files only)
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed `CatalogResultListItemProps` and `CatalogResultListItem`, replaced by `CatalogSearchResultListItemProps` and `CatalogSearchResultListItem`.
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/catalog-model': patch
|
||||
---
|
||||
|
||||
Updated `parseEntityRef` to allow `:` and `/` in the entity name. For example, parsing `'component:default/foo:bar'` will result in the name `'foo:bar'`.
|
||||
|
||||
Note that only parsing `'foo:bar'` itself will result in the name `'bar'` and the entity kind `'foo'`, meaning this is a particularly nasty trap for user defined entity references. For this reason it is strongly discouraged to use names that contain these characters, and the catalog model does not allow it by default. However, this change now makes is possible to use these names if the default catalog validation is replaced, and in particular a high level of automation of the catalog population can limit issues that it might otherwise cause.
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
Added a new ESLint configuration setup for packages, which utilizes package roles to generate the correct configuration. The new configuration is available at `@backstage/cli/config/eslint-factory`.
|
||||
|
||||
Introduced a new `backstage-cli migrate package-lint-configs` command, which migrates old lint configurations to use `@backstage/cli/config/eslint-factory`.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-airbrake': patch
|
||||
---
|
||||
|
||||
Fix a bug where API calls were being made and errors were being added to the snack bar when no project ID was present. This is a common use case for components that haven't added the Airbrake plugin annotation to their `catalog-info.yaml`.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog': patch
|
||||
---
|
||||
|
||||
Added an `allowedKinds` option to `CatalogKindHeader` to limit entity kinds available in the dropdown.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog': patch
|
||||
---
|
||||
|
||||
Updated `CatalogKindHeader` to respond to external changes to query parameters in the URL, such as two sidebar links that apply different catalog filters.
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-react': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed the deprecated `loadCatalogOwnerRefs` function. Usages of this function can be directly replaced with `ownershipEntityRefs` from `identityApi.getBackstageIdentity()`.
|
||||
|
||||
This also affects the `useEntityOwnership` hook in that it no longer uses `loadCatalogOwnerRefs`, meaning it will no longer load in additional relations and instead only rely on the `ownershipEntityRefs` from the `IdentityApi`.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-react': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed `useEntityFromUrl`.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed `ScaffolderTaskOutput.entityRef` and `ScaffolderTaskOutput.remoteUrl`, which both have been deprecated for over a year. Please use the `links` output instead.
|
||||
@@ -1,8 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-backend': minor
|
||||
---
|
||||
|
||||
**BREAKING**:
|
||||
|
||||
- Removed the `createFetchCookiecutterAction` export, please use the `@backstage/plugin-scaffolder-backend-module-cookiecutter` package explicitly (see [its README](https://github.com/backstage/backstage/tree/master/plugins/scaffolder-backend-module-cookiecutter) for installation instructions).
|
||||
- Removed the `containerRunner` argument from the types `RouterOptions` (as used by `createRouter`) and `CreateBuiltInActionsOptions` (as used by `createBuiltinActions`).
|
||||
@@ -1,10 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend': patch
|
||||
---
|
||||
|
||||
**BREAKING**:
|
||||
|
||||
- Removed the previously deprecated `runPeriodically` export. Please use the `@backstage/backend-tasks` package instead, or copy [the actual implementation](https://github.com/backstage/backstage/blob/02875d4d56708c60f86f6b0a5b3da82e24988354/plugins/catalog-backend/src/util/runPeriodically.ts#L29) into your own code if you explicitly do not want coordination of task runs across your worker nodes.
|
||||
- Removed the previously deprecated `CatalogProcessorLocationResult.optional` field. Please set the corresponding `LocationSpec.presence` field to `'optional'` instead.
|
||||
- Related to the previous point, the `processingResult.location` function no longer has a second boolean `optional` argument. Please set the corresponding `LocationSpec.presence` field to `'optional'` instead.
|
||||
- Removed the previously deprecated `StaticLocationProcessor`. It has not been in use for some time; its functionality is covered by `ConfigLocationEntityProvider` instead.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-tasks': patch
|
||||
---
|
||||
|
||||
Relaxed the task ID requirement to now support any non-empty string
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder': patch
|
||||
---
|
||||
|
||||
Render markdown for description in software templates
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-common': patch
|
||||
---
|
||||
|
||||
add support for ETag at `BitbucketUrlReader.readUrl`
|
||||
@@ -1,9 +0,0 @@
|
||||
---
|
||||
'@backstage/catalog-model': minor
|
||||
---
|
||||
|
||||
**BREAKING**:
|
||||
|
||||
- Removed the previously deprecated type `EntityRef`. Please use `string` for stringified entity refs, `CompoundEntityRef` for compound kind-namespace-name triplet objects, or custom objects like `{ kind?: string; namespace?: string; name: string }` and similar if you have need for partial types.
|
||||
- Removed the previously deprecated type `LocationSpec` type, which has been moved to `@backstage/plugin-catalog-backend`.
|
||||
- Removed the previously deprecated function `parseEntityName`. Please use `parseEntityRef` instead.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog': patch
|
||||
'@backstage/plugin-rollbar': patch
|
||||
---
|
||||
|
||||
Removed usage of removed hook.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-test-utils': patch
|
||||
---
|
||||
|
||||
Add `setupRequestMockHandlers` which sets up a good `msw` server foundation, copied from `@backstage/test-utils` which is a frontend-only package and should not be used from backends.
|
||||
@@ -1,30 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-ldap': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Added a `schedule` field to `LdapOrgEntityProvider.fromConfig`, which is required. If you want to retain the old behavior of scheduling the provider manually, you can set it to the string value `'manual'`. But you may want to leverage the ability to instead pass in the recurring task schedule information directly. This will allow you to simplify your backend setup code to not need an intermediate variable and separate scheduling code at the bottom.
|
||||
|
||||
All things said, a typical setup might now look as follows:
|
||||
|
||||
```diff
|
||||
// packages/backend/src/plugins/catalog.ts
|
||||
+import { Duration } from 'luxon';
|
||||
+import { LdapOrgEntityProvider } from '@backstage/plugin-catalog-backend-module-ldap';
|
||||
export default async function createPlugin(
|
||||
env: PluginEnvironment,
|
||||
): Promise<Router> {
|
||||
const builder = await CatalogBuilder.create(env);
|
||||
+ // The target parameter below needs to match the ldap.providers.target
|
||||
+ // value specified in your app-config.
|
||||
+ builder.addEntityProvider(
|
||||
+ LdapOrgEntityProvider.fromConfig(env.config, {
|
||||
+ id: 'our-ldap-master',
|
||||
+ target: 'ldaps://ds.example.net',
|
||||
+ logger: env.logger,
|
||||
+ schedule: env.scheduler.createScheduledTaskRunner({
|
||||
+ frequency: Duration.fromObject({ minutes: 60 }),
|
||||
+ timeout: Duration.fromObject({ minutes: 15 }),
|
||||
+ }),
|
||||
+ }),
|
||||
+ );
|
||||
```
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-react': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed `useEntityCompoundName`, use `useRouteRefParams(entityRouteRef)` instead.
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder': minor
|
||||
---
|
||||
|
||||
Removed the following previously deprecated exports:
|
||||
|
||||
- **BREAKING**: Removed the deprecated `TemplateList` component and the `TemplateListProps` type. Please use the `TemplateCard` to create your own list component instead to render these lists.
|
||||
|
||||
- **BREAKING**: Removed the deprecated `setSecret` method, please use `setSecrets` instead.
|
||||
|
||||
- **BREAKING**: Removed the deprecated `TemplateCardComponent` and `TaskPageComponent` props from the `ScaffolderPage` component. These are now provided using the `components` prop with the shape `{{ TemplateCardComponent: () => JSX.Element, TaskPageComponent: () => JSX.Element }}`
|
||||
|
||||
- **BREAKING**: Removed `JobStatus` as this type was actually a legacy type used in `v1alpha` templates and the workflow engine and should no longer be used or depended on.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder': patch
|
||||
---
|
||||
|
||||
Fixing the border color for the `FavoriteEntity` star button on the `TemplateCard`
|
||||
@@ -1,10 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-auth-backend': patch
|
||||
'@backstage/plugin-badges-backend': patch
|
||||
'@backstage/plugin-catalog-graph': patch
|
||||
'@backstage/plugin-catalog-import': patch
|
||||
'@backstage/plugin-explore': patch
|
||||
'@backstage/plugin-fossa': patch
|
||||
---
|
||||
|
||||
Remove usages of now-removed `CatalogApi.getEntityByName`
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Updated the template to write the Backstage release version to `backstage.json`, rather than the version of `@backstage/create-app`. This change is applied automatically when running `backstage-cli versions:bump` in the latest version of the Backstage CLI.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-tasks': patch
|
||||
---
|
||||
|
||||
Add support for cron syntax to configure task frequency - `TaskScheduleDefinition.frequency` can now be both a `Duration` and an object on the form `{ cron: string }`, where the latter is expected to be on standard crontab format (e.g. `'0 */2 * * *'`).
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-github': minor
|
||||
---
|
||||
|
||||
Added package, moving out GitHub specific functionality from the catalog-backend
|
||||
@@ -1,11 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-common': patch
|
||||
'@backstage/plugin-auth-backend': patch
|
||||
'@backstage/plugin-catalog-backend': patch
|
||||
'@backstage/plugin-catalog-backend-module-msgraph': patch
|
||||
'@backstage/plugin-rollbar-backend': patch
|
||||
'@backstage/plugin-scaffolder-backend': patch
|
||||
'@backstage/plugin-techdocs-backend': patch
|
||||
---
|
||||
|
||||
Use `setupRequestMockHandlers` from `@backstage/backend-test-utils`
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend': patch
|
||||
---
|
||||
|
||||
Fixed display of the location in the log message that is printed when entity envelope validation fails.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
Applied the fix from version `0.15.1` of this package, which was part of the `v0.70.1` release of Backstage.
|
||||
@@ -1,9 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-common': patch
|
||||
'@backstage/catalog-model': patch
|
||||
'@backstage/plugin-catalog-backend': patch
|
||||
'@backstage/plugin-catalog-common': patch
|
||||
'@backstage/plugin-catalog-react': patch
|
||||
---
|
||||
|
||||
Applied the fix for the `/alpha` entry point resolution that was part of the `v0.70.1` release of Backstage.
|
||||
@@ -1,215 +0,0 @@
|
||||
{
|
||||
"mode": "exit",
|
||||
"tag": "next",
|
||||
"initialVersions": {
|
||||
"example-app": "0.2.67",
|
||||
"@backstage/app-defaults": "0.2.0",
|
||||
"example-backend": "0.2.67",
|
||||
"@backstage/backend-common": "0.12.0",
|
||||
"@backstage/backend-tasks": "0.1.10",
|
||||
"@backstage/backend-test-utils": "0.1.20",
|
||||
"@backstage/catalog-client": "0.8.0",
|
||||
"@backstage/catalog-model": "0.12.0",
|
||||
"@backstage/cli": "0.15.0",
|
||||
"@backstage/cli-common": "0.1.8",
|
||||
"@backstage/codemods": "0.1.34",
|
||||
"@backstage/config": "0.1.15",
|
||||
"@backstage/config-loader": "0.9.6",
|
||||
"@backstage/core-app-api": "0.6.0",
|
||||
"@backstage/core-components": "0.9.0",
|
||||
"@backstage/core-plugin-api": "0.8.0",
|
||||
"@backstage/create-app": "0.4.22",
|
||||
"@backstage/dev-utils": "0.2.24",
|
||||
"e2e-test": "0.2.0",
|
||||
"@backstage/errors": "0.2.2",
|
||||
"@backstage/integration": "0.8.0",
|
||||
"@backstage/integration-react": "0.1.24",
|
||||
"@backstage/release-manifests": "0.0.2",
|
||||
"@backstage/search-common": "0.3.0",
|
||||
"@techdocs/cli": "0.8.16",
|
||||
"techdocs-cli-embedded-app": "0.2.66",
|
||||
"@backstage/techdocs-common": "0.11.11",
|
||||
"@backstage/test-utils": "0.3.0",
|
||||
"@backstage/theme": "0.2.15",
|
||||
"@backstage/types": "0.1.3",
|
||||
"@backstage/version-bridge": "0.1.2",
|
||||
"@backstage/plugin-airbrake": "0.3.1",
|
||||
"@backstage/plugin-airbrake-backend": "0.2.1",
|
||||
"@backstage/plugin-allure": "0.1.17",
|
||||
"@backstage/plugin-analytics-module-ga": "0.1.12",
|
||||
"@backstage/plugin-apache-airflow": "0.1.9",
|
||||
"@backstage/plugin-api-docs": "0.8.1",
|
||||
"@backstage/plugin-app-backend": "0.3.28",
|
||||
"@backstage/plugin-auth-backend": "0.12.0",
|
||||
"@backstage/plugin-auth-node": "0.1.4",
|
||||
"@backstage/plugin-azure-devops": "0.1.17",
|
||||
"@backstage/plugin-azure-devops-backend": "0.3.7",
|
||||
"@backstage/plugin-azure-devops-common": "0.2.2",
|
||||
"@backstage/plugin-badges": "0.2.25",
|
||||
"@backstage/plugin-badges-backend": "0.1.22",
|
||||
"@backstage/plugin-bazaar": "0.1.16",
|
||||
"@backstage/plugin-bazaar-backend": "0.1.12",
|
||||
"@backstage/plugin-bitrise": "0.1.28",
|
||||
"@backstage/plugin-catalog": "0.9.1",
|
||||
"@backstage/plugin-catalog-backend": "0.23.0",
|
||||
"@backstage/plugin-catalog-backend-module-aws": "0.1.1",
|
||||
"@backstage/plugin-catalog-backend-module-azure": "0.0.0",
|
||||
"@backstage/plugin-catalog-backend-module-gitlab": "0.0.0",
|
||||
"@backstage/plugin-catalog-backend-module-ldap": "0.3.15",
|
||||
"@backstage/plugin-catalog-backend-module-msgraph": "0.2.18",
|
||||
"@backstage/plugin-catalog-common": "0.2.0",
|
||||
"@backstage/plugin-catalog-graph": "0.2.13",
|
||||
"@backstage/plugin-catalog-graphql": "0.3.5",
|
||||
"@backstage/plugin-catalog-import": "0.8.4",
|
||||
"@backstage/plugin-catalog-react": "0.8.0",
|
||||
"@backstage/plugin-cicd-statistics": "0.1.3",
|
||||
"@backstage/plugin-circleci": "0.3.1",
|
||||
"@backstage/plugin-cloudbuild": "0.3.1",
|
||||
"@backstage/plugin-code-climate": "0.1.1",
|
||||
"@backstage/plugin-code-coverage": "0.1.28",
|
||||
"@backstage/plugin-code-coverage-backend": "0.1.26",
|
||||
"@backstage/plugin-config-schema": "0.1.24",
|
||||
"@backstage/plugin-cost-insights": "0.11.23",
|
||||
"@backstage/plugin-explore": "0.3.32",
|
||||
"@backstage/plugin-explore-react": "0.0.14",
|
||||
"@backstage/plugin-firehydrant": "0.1.18",
|
||||
"@backstage/plugin-fossa": "0.2.33",
|
||||
"@backstage/plugin-gcp-projects": "0.3.20",
|
||||
"@backstage/plugin-git-release-manager": "0.3.14",
|
||||
"@backstage/plugin-github-actions": "0.5.1",
|
||||
"@backstage/plugin-github-deployments": "0.1.32",
|
||||
"@backstage/plugin-gitops-profiles": "0.3.19",
|
||||
"@backstage/plugin-gocd": "0.1.7",
|
||||
"@backstage/plugin-graphiql": "0.2.33",
|
||||
"@backstage/plugin-graphql-backend": "0.1.18",
|
||||
"@backstage/plugin-home": "0.4.17",
|
||||
"@backstage/plugin-ilert": "0.1.27",
|
||||
"@backstage/plugin-jenkins": "0.7.0",
|
||||
"@backstage/plugin-jenkins-backend": "0.1.17",
|
||||
"@backstage/plugin-jenkins-common": "0.1.0",
|
||||
"@backstage/plugin-kafka": "0.3.1",
|
||||
"@backstage/plugin-kafka-backend": "0.2.21",
|
||||
"@backstage/plugin-kubernetes": "0.6.1",
|
||||
"@backstage/plugin-kubernetes-backend": "0.4.11",
|
||||
"@backstage/plugin-kubernetes-common": "0.2.6",
|
||||
"@backstage/plugin-lighthouse": "0.3.1",
|
||||
"@backstage/plugin-newrelic": "0.3.19",
|
||||
"@backstage/plugin-newrelic-dashboard": "0.1.9",
|
||||
"@backstage/plugin-org": "0.5.1",
|
||||
"@backstage/plugin-pagerduty": "0.3.28",
|
||||
"@backstage/plugin-periskop": "0.0.0",
|
||||
"@backstage/plugin-periskop-backend": "0.0.0",
|
||||
"@backstage/plugin-permission-backend": "0.5.3",
|
||||
"@backstage/plugin-permission-common": "0.5.2",
|
||||
"@backstage/plugin-permission-node": "0.5.3",
|
||||
"@backstage/plugin-permission-react": "0.3.3",
|
||||
"@backstage/plugin-proxy-backend": "0.2.22",
|
||||
"@backstage/plugin-rollbar": "0.4.1",
|
||||
"@backstage/plugin-rollbar-backend": "0.1.25",
|
||||
"@backstage/plugin-scaffolder": "0.14.0",
|
||||
"@backstage/plugin-scaffolder-backend": "0.17.3",
|
||||
"@backstage/plugin-scaffolder-backend-module-cookiecutter": "0.2.3",
|
||||
"@backstage/plugin-scaffolder-backend-module-rails": "0.3.3",
|
||||
"@backstage/plugin-scaffolder-backend-module-yeoman": "0.2.1",
|
||||
"@backstage/plugin-scaffolder-common": "0.2.3",
|
||||
"@backstage/plugin-search": "0.7.2",
|
||||
"@backstage/plugin-search-backend": "0.4.6",
|
||||
"@backstage/plugin-search-backend-module-elasticsearch": "0.1.0",
|
||||
"@backstage/plugin-search-backend-module-pg": "0.3.0",
|
||||
"@backstage/plugin-search-backend-node": "0.5.0",
|
||||
"@backstage/plugin-search-common": "0.3.0",
|
||||
"@backstage/plugin-sentry": "0.3.39",
|
||||
"@backstage/plugin-shortcuts": "0.2.2",
|
||||
"@backstage/plugin-sonarqube": "0.3.1",
|
||||
"@backstage/plugin-splunk-on-call": "0.3.25",
|
||||
"@backstage/plugin-tech-insights": "0.1.11",
|
||||
"@backstage/plugin-tech-insights-backend": "0.2.8",
|
||||
"@backstage/plugin-tech-insights-backend-module-jsonfc": "0.1.12",
|
||||
"@backstage/plugin-tech-insights-common": "0.2.3",
|
||||
"@backstage/plugin-tech-insights-node": "0.2.6",
|
||||
"@backstage/plugin-tech-radar": "0.5.8",
|
||||
"@backstage/plugin-techdocs": "0.15.0",
|
||||
"@backstage/plugin-techdocs-backend": "0.14.1",
|
||||
"@backstage/plugin-techdocs-node": "0.11.11",
|
||||
"@backstage/plugin-todo": "0.2.3",
|
||||
"@backstage/plugin-todo-backend": "0.1.25",
|
||||
"@backstage/plugin-user-settings": "0.4.0",
|
||||
"@backstage/plugin-xcmetrics": "0.2.21"
|
||||
},
|
||||
"changesets": [
|
||||
"beige-lies-pay",
|
||||
"big-meals-fly",
|
||||
"big-months-deliver",
|
||||
"brave-brooms-tie",
|
||||
"brown-points-impress",
|
||||
"chilly-comics-jam",
|
||||
"clever-garlics-rescue",
|
||||
"curvy-forks-cross",
|
||||
"dependabot-4014eb7",
|
||||
"dependabot-ae5fb9c",
|
||||
"dependabot-d2397d3",
|
||||
"fair-ants-look",
|
||||
"fair-roses-hide",
|
||||
"fair-turtles-fetch",
|
||||
"fifty-brooms-whisper",
|
||||
"fuzzy-roses-swim",
|
||||
"gentle-dancers-greet",
|
||||
"great-hounds-allow",
|
||||
"kind-experts-lay",
|
||||
"late-pianos-attend",
|
||||
"lazy-points-explain",
|
||||
"many-coins-drive",
|
||||
"many-swans-sort",
|
||||
"many-tools-buy",
|
||||
"mean-panthers-wonder",
|
||||
"metal-glasses-join",
|
||||
"modern-windows-brush",
|
||||
"nasty-seahorses-bathe",
|
||||
"neat-tools-design",
|
||||
"new-books-protect",
|
||||
"nice-windows-push",
|
||||
"nine-frogs-yell",
|
||||
"olive-emus-speak",
|
||||
"olive-roses-sleep",
|
||||
"pink-poets-grin",
|
||||
"polite-apples-relax",
|
||||
"popular-boxes-develop",
|
||||
"popular-rats-return",
|
||||
"pretty-vans-unite",
|
||||
"proud-readers-nail",
|
||||
"quiet-pens-wait",
|
||||
"quiet-seals-fix",
|
||||
"red-kiwis-divide",
|
||||
"rich-ravens-clap",
|
||||
"search-byta-namnet",
|
||||
"search-common-people",
|
||||
"search-talking-in-code",
|
||||
"search-wellington-paranormal",
|
||||
"shaggy-apricots-hug",
|
||||
"shiny-eels-mix",
|
||||
"silent-cats-kneel",
|
||||
"slow-vans-rhyme",
|
||||
"something-else-here",
|
||||
"spotty-seals-press",
|
||||
"spotty-swans-run",
|
||||
"strong-beds-attack",
|
||||
"strong-pandas-roll",
|
||||
"swift-mails-sing",
|
||||
"tasty-carpets-fold",
|
||||
"techdocs-byta-namnet",
|
||||
"techdocs-empty-office",
|
||||
"techdocs-node-one",
|
||||
"ten-queens-dance",
|
||||
"ten-rats-join",
|
||||
"tender-berries-lie",
|
||||
"thick-games-dress",
|
||||
"thick-gifts-cheat",
|
||||
"twenty-birds-think",
|
||||
"twenty-fireants-turn",
|
||||
"twenty-planes-dress",
|
||||
"two-mails-boil",
|
||||
"warm-bananas-behave",
|
||||
"weak-schools-wash",
|
||||
"young-feet-flow"
|
||||
]
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
Package roles are now marked as stable and migration is encouraged. Please check out the [migration guide](https://backstage.io/docs/tutorials/package-role-migration).
|
||||
|
||||
The new `package`, `repo`, and `migrate` command categories are now marked as stable.
|
||||
|
||||
Marked all commands that are being replaced by the new `package` and `repo` commands as deprecated.
|
||||
|
||||
The package templates used by the `create` command have all been updated to use package roles.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-airbrake-backend': patch
|
||||
'@backstage/plugin-code-climate': patch
|
||||
---
|
||||
|
||||
Added `backstage.role` to `package.json`
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-react': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed `useEntityListProvider` use `useEntityList` instead.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-ldap': patch
|
||||
---
|
||||
|
||||
Ignore search referrals instead of throwing an error.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-kubernetes-backend': patch
|
||||
---
|
||||
|
||||
refactor kubernetes fetcher
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-backend': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed the previously deprecated `OctokitProvider` class.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-azure': minor
|
||||
---
|
||||
|
||||
Added package, moving out azure specific functionality from the catalog-backend
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-search-common': patch
|
||||
---
|
||||
|
||||
Renamed `@backstage/search-common` to `@backstage/plugin-search-common`.
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/search-common': patch
|
||||
---
|
||||
|
||||
**DEPRECATION**
|
||||
|
||||
The `@backstage/search-common` package is being renamed `@backstage/plugin-search-common`. We may continue to publish changes to `@backstage/search-common` for a time, but will stop doing so in the near future. If you depend on this package, you should update your dependencies to point at the renamed package.
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Postgres-based search is now installed when PG is chosen as the desired database for Backstage.
|
||||
|
||||
There is no need to make this change in an existing Backstage backend. See [supported search engines](https://backstage.io/docs/features/search/search-engines) for details about production-ready search engines.
|
||||
@@ -1,13 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend': patch
|
||||
'@backstage/plugin-catalog': patch
|
||||
'@backstage/plugin-search-backend-module-elasticsearch': patch
|
||||
'@backstage/plugin-search-backend-module-pg': patch
|
||||
'@backstage/plugin-search-backend-node': patch
|
||||
'@backstage/plugin-search-backend': patch
|
||||
'@backstage/plugin-search': patch
|
||||
'@backstage/plugin-techdocs-backend': patch
|
||||
'@backstage/plugin-techdocs-node': patch
|
||||
---
|
||||
|
||||
Use `@backstage/plugin-search-common` package instead of `@backstage/search-common`.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-tech-radar': patch
|
||||
---
|
||||
|
||||
Tech Radar Ring names are now coloured from theme via theme.palette.text.primary (instead of a hard coded colour)
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/core-components': patch
|
||||
---
|
||||
|
||||
Add names to sidebar sub menu styles for customization
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-gitlab': minor
|
||||
---
|
||||
|
||||
Added package, moving out GitLab specific functionality from the catalog-backend
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-bitbucket': minor
|
||||
---
|
||||
|
||||
Added package, moving out Bitbucket specific functionality from the catalog-backend
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/catalog-model': minor
|
||||
---
|
||||
|
||||
**BREAKING**: The default validator for `metadata.tags` now permits the colon (`:`) character as well.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
'@backstage/plugin-catalog-backend': minor
|
||||
---
|
||||
|
||||
- **BREAKING**: Support for `backstage.io/v1beta2` Software Templates has been removed. Please migrate your legacy templates to the new `scaffolder.backstage.io/v1beta3` `apiVersion` by following the [migration guide](https://backstage.io/docs/features/software-templates/migrating-from-v1beta2-to-v1beta3)
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-react': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed `useOwnedEntities` and moved its usage internally to the scaffolder-backend where it's used.
|
||||
|
||||
**BREAKING**: Removed `EntityTypeReturn` type which is now inlined.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
The backend development setup now ignores the `"browser"` and `"module"` entry points in `package.json`, and instead always uses `"main"`.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-react': patch
|
||||
'@backstage/plugin-org': patch
|
||||
---
|
||||
|
||||
Fixed EntityOwnerPicker and OwnershipCard url filter issue with more than 21 owners
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-periskop': minor
|
||||
'@backstage/plugin-periskop-backend': minor
|
||||
---
|
||||
|
||||
Add periskop and periskop-backend plugin, for usage with exception aggregation tool https://periskop.io/
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-techdocs': patch
|
||||
---
|
||||
|
||||
The panels of `TechDocsCustomHome` now use the `useEntityOwnership` hook to resolve ownership when the `'ownedByUser'` filter predicate is used.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-react': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed the `useEntityKinds` hook, use `catalogApi.getEntityFacets({ facets: ['kind'] })` instead.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-techdocs-node': patch
|
||||
---
|
||||
|
||||
Renamed `@backstage/techdocs-common` to `@backstage/plugin-techdocs-node`.
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/techdocs-common': patch
|
||||
---
|
||||
|
||||
**DEPRECATION**
|
||||
|
||||
The `@backstage/techdocs-common` package is being renamed `@backstage/plugin-techdocs-node`. We may continue to publish changes to `@backstage/techdocs-common` for a time, but will stop doing so in the near future. If you depend on this package, you should update your dependencies to point at the renamed package.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-techdocs-backend': patch
|
||||
'@techdocs/cli': patch
|
||||
---
|
||||
|
||||
Use `@backstage/plugin-techdocs-node` package instead of `@backstage/techdocs-common`.
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-tasks': minor
|
||||
---
|
||||
|
||||
**BREAKING**: The `TaskDefinition` type has been removed, and replaced by the equal pair `TaskScheduleDefinition` and `TaskInvocationDefinition`. The interface for `PluginTaskScheduler.scheduleTask` stays effectively unchanged, so this only affects you if you use the actual types directly.
|
||||
|
||||
Added the method `PluginTaskScheduler.createTaskSchedule`, which returns a `TaskSchedule` wrapper that is convenient to pass down into classes that want to control their task invocations while the caller wants to retain control of the actual schedule chosen.
|
||||
@@ -1,8 +0,0 @@
|
||||
---
|
||||
'@backstage/catalog-model': patch
|
||||
---
|
||||
|
||||
**DEPRECATION**:
|
||||
|
||||
- Deprecated `CommonValidatorFunctions.isValidString`, please use `isNonEmptyString` instead which is equivalent but better named.
|
||||
- Deprecated `CommonValidatorFunctions.isValidTag`, with no replacement. Its purpose was too specific and not reusable, so it will be removed.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
Changed the logic for how modules are marked as external in the Rollup build of packages. Rather than only marking dependencies and build-in Node.js modules as external, all non-relative imports are now considered external.
|
||||
@@ -1,8 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-common': minor
|
||||
---
|
||||
|
||||
**BREAKING**:
|
||||
|
||||
- Removed the (since way back) deprecated `createDatabase` export, please use `createDatabaseClient` instead.
|
||||
- Removed the (since way back) deprecated `SingleConnectionDatabaseManager` export, please use `DatabaseManager` instead.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/catalog-client': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed previously deprecated `CatalogApi.getEntityByName`, please use `getEntityByRef` instead.
|
||||
@@ -1,19 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Updated template to use package roles. To apply this change to an existing app, check out the [migration guide](https://backstage.io/docs/tutorials/package-role-migration).
|
||||
|
||||
Specifically the following scripts in the root `package.json` have also been updated:
|
||||
|
||||
```diff
|
||||
- "build": "lerna run build",
|
||||
+ "build": "backstage-cli repo build --all",
|
||||
|
||||
...
|
||||
|
||||
- "lint": "lerna run lint --since origin/master --",
|
||||
- "lint:all": "lerna run lint --",
|
||||
+ "lint": "backstage-cli repo lint --since origin/master",
|
||||
+ "lint:all": "backstage-cli repo lint",
|
||||
```
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-backend': patch
|
||||
---
|
||||
|
||||
Allow passing more repo configuration for `publish:github` action
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-aws': patch
|
||||
---
|
||||
|
||||
Added `AwsS3DiscoveryProcessor`, which was moved here from `@backstage/plugin-catalog-backend` where it previously resided.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/catalog-client': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed `CatalogClient.getLocationByEntity` and `CatalogClient.getOriginLocationByEntity` which had previously been deprecated. Please use `CatalogApi.getLocationByRef` instead. Note that this only affects you if you were using `CatalogClient` (the class) directly, rather than `CatalogApi` (the interface), since it has been removed from the interface in an earlier release.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
The `--since` flag of repo commands now silently falls back to using the provided `ref` directly if no merge base is available.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-react': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed the deprecated `useOwnUser` hook. Existing usage can be replaced with `identityApi.getBackstageIdentity()`, followed by a call to `catalogClient.getEntityByRef(identity.userEntityRef)`.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-react': patch
|
||||
---
|
||||
|
||||
Internalized usage of `useOwnedEntities` hook.
|
||||
+1
-1
@@ -47,7 +47,7 @@
|
||||
"resolutions": {
|
||||
"**/@graphql-codegen/cli/**/ws": "^7.4.6"
|
||||
},
|
||||
"version": "0.71.0-next.0",
|
||||
"version": "0.71.0",
|
||||
"dependencies": {
|
||||
"@manypkg/get-packages": "^1.1.3",
|
||||
"@microsoft/api-documenter": "^7.15.0",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/app-defaults
|
||||
|
||||
## 0.2.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/core-components@0.9.1
|
||||
|
||||
## 0.2.1-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/app-defaults",
|
||||
"description": "Provides the default wiring of a Backstage App",
|
||||
"version": "0.2.1-next.0",
|
||||
"version": "0.2.1",
|
||||
"private": false,
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
@@ -33,7 +33,7 @@
|
||||
"start": "backstage-cli package start"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/core-components": "^0.9.1-next.0",
|
||||
"@backstage/core-components": "^0.9.1",
|
||||
"@backstage/core-app-api": "^0.6.0",
|
||||
"@backstage/core-plugin-api": "^0.8.0",
|
||||
"@backstage/plugin-permission-react": "^0.3.3",
|
||||
@@ -46,7 +46,7 @@
|
||||
"react": "^16.13.1 || ^17.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.15.2-next.0",
|
||||
"@backstage/cli": "^0.15.2",
|
||||
"@backstage/test-utils": "^0.3.0",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^11.2.5",
|
||||
|
||||
@@ -1,5 +1,55 @@
|
||||
# example-app
|
||||
|
||||
## 0.2.68
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/cli@0.15.2
|
||||
- @backstage/plugin-catalog@0.10.0
|
||||
- @backstage/plugin-catalog-react@0.9.0
|
||||
- @backstage/core-components@0.9.1
|
||||
- @backstage/plugin-gcp-projects@0.3.21
|
||||
- @backstage/plugin-scaffolder@0.15.0
|
||||
- @backstage/catalog-model@0.13.0
|
||||
- @backstage/plugin-airbrake@0.3.2
|
||||
- @backstage/plugin-rollbar@0.4.2
|
||||
- @backstage/plugin-catalog-graph@0.2.14
|
||||
- @backstage/plugin-catalog-import@0.8.5
|
||||
- @backstage/plugin-explore@0.3.33
|
||||
- @backstage/plugin-catalog-common@0.2.2
|
||||
- @backstage/plugin-search-common@0.3.1
|
||||
- @backstage/plugin-search@0.7.3
|
||||
- @backstage/plugin-tech-radar@0.5.9
|
||||
- @backstage/plugin-org@0.5.2
|
||||
- @backstage/plugin-techdocs@0.15.1
|
||||
- @backstage/app-defaults@0.2.1
|
||||
- @backstage/integration-react@0.1.25
|
||||
- @backstage/plugin-apache-airflow@0.1.10
|
||||
- @backstage/plugin-api-docs@0.8.2
|
||||
- @backstage/plugin-azure-devops@0.1.18
|
||||
- @backstage/plugin-badges@0.2.26
|
||||
- @backstage/plugin-circleci@0.3.2
|
||||
- @backstage/plugin-cloudbuild@0.3.2
|
||||
- @backstage/plugin-code-coverage@0.1.29
|
||||
- @backstage/plugin-cost-insights@0.11.24
|
||||
- @backstage/plugin-github-actions@0.5.2
|
||||
- @backstage/plugin-gocd@0.1.8
|
||||
- @backstage/plugin-graphiql@0.2.34
|
||||
- @backstage/plugin-home@0.4.18
|
||||
- @backstage/plugin-jenkins@0.7.1
|
||||
- @backstage/plugin-kafka@0.3.2
|
||||
- @backstage/plugin-kubernetes@0.6.2
|
||||
- @backstage/plugin-lighthouse@0.3.2
|
||||
- @backstage/plugin-newrelic@0.3.20
|
||||
- @backstage/plugin-newrelic-dashboard@0.1.10
|
||||
- @backstage/plugin-pagerduty@0.3.29
|
||||
- @backstage/plugin-sentry@0.3.40
|
||||
- @backstage/plugin-shortcuts@0.2.3
|
||||
- @backstage/plugin-tech-insights@0.1.12
|
||||
- @backstage/plugin-todo@0.2.4
|
||||
- @backstage/plugin-user-settings@0.4.1
|
||||
|
||||
## 0.2.68-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
+45
-45
@@ -1,59 +1,59 @@
|
||||
{
|
||||
"name": "example-app",
|
||||
"version": "0.2.68-next.0",
|
||||
"version": "0.2.68",
|
||||
"private": true,
|
||||
"backstage": {
|
||||
"role": "frontend"
|
||||
},
|
||||
"bundled": true,
|
||||
"dependencies": {
|
||||
"@backstage/app-defaults": "^0.2.1-next.0",
|
||||
"@backstage/catalog-model": "^0.13.0-next.0",
|
||||
"@backstage/cli": "^0.15.2-next.0",
|
||||
"@backstage/app-defaults": "^0.2.1",
|
||||
"@backstage/catalog-model": "^0.13.0",
|
||||
"@backstage/cli": "^0.15.2",
|
||||
"@backstage/core-app-api": "^0.6.0",
|
||||
"@backstage/core-components": "^0.9.1-next.0",
|
||||
"@backstage/core-components": "^0.9.1",
|
||||
"@backstage/core-plugin-api": "^0.8.0",
|
||||
"@backstage/integration-react": "^0.1.25-next.0",
|
||||
"@backstage/plugin-airbrake": "^0.3.2-next.0",
|
||||
"@backstage/plugin-api-docs": "^0.8.2-next.0",
|
||||
"@backstage/plugin-azure-devops": "^0.1.18-next.0",
|
||||
"@backstage/plugin-apache-airflow": "^0.1.10-next.0",
|
||||
"@backstage/plugin-badges": "^0.2.26-next.0",
|
||||
"@backstage/plugin-catalog": "^0.10.0-next.0",
|
||||
"@backstage/plugin-catalog-common": "^0.2.2-next.0",
|
||||
"@backstage/plugin-catalog-graph": "^0.2.14-next.0",
|
||||
"@backstage/plugin-catalog-import": "^0.8.5-next.0",
|
||||
"@backstage/plugin-catalog-react": "^0.9.0-next.0",
|
||||
"@backstage/plugin-circleci": "^0.3.2-next.0",
|
||||
"@backstage/plugin-cloudbuild": "^0.3.2-next.0",
|
||||
"@backstage/plugin-code-coverage": "^0.1.29-next.0",
|
||||
"@backstage/plugin-cost-insights": "^0.11.24-next.0",
|
||||
"@backstage/plugin-explore": "^0.3.33-next.0",
|
||||
"@backstage/plugin-gcp-projects": "^0.3.21-next.0",
|
||||
"@backstage/plugin-github-actions": "^0.5.2-next.0",
|
||||
"@backstage/plugin-gocd": "^0.1.8-next.0",
|
||||
"@backstage/plugin-graphiql": "^0.2.34-next.0",
|
||||
"@backstage/plugin-home": "^0.4.18-next.0",
|
||||
"@backstage/plugin-jenkins": "^0.7.1-next.0",
|
||||
"@backstage/plugin-kafka": "^0.3.2-next.0",
|
||||
"@backstage/plugin-kubernetes": "^0.6.2-next.0",
|
||||
"@backstage/plugin-lighthouse": "^0.3.2-next.0",
|
||||
"@backstage/plugin-newrelic": "^0.3.20-next.0",
|
||||
"@backstage/plugin-newrelic-dashboard": "^0.1.10-next.0",
|
||||
"@backstage/plugin-org": "^0.5.2-next.0",
|
||||
"@backstage/plugin-pagerduty": "0.3.29-next.0",
|
||||
"@backstage/integration-react": "^0.1.25",
|
||||
"@backstage/plugin-airbrake": "^0.3.2",
|
||||
"@backstage/plugin-api-docs": "^0.8.2",
|
||||
"@backstage/plugin-azure-devops": "^0.1.18",
|
||||
"@backstage/plugin-apache-airflow": "^0.1.10",
|
||||
"@backstage/plugin-badges": "^0.2.26",
|
||||
"@backstage/plugin-catalog": "^0.10.0",
|
||||
"@backstage/plugin-catalog-common": "^0.2.2",
|
||||
"@backstage/plugin-catalog-graph": "^0.2.14",
|
||||
"@backstage/plugin-catalog-import": "^0.8.5",
|
||||
"@backstage/plugin-catalog-react": "^0.9.0",
|
||||
"@backstage/plugin-circleci": "^0.3.2",
|
||||
"@backstage/plugin-cloudbuild": "^0.3.2",
|
||||
"@backstage/plugin-code-coverage": "^0.1.29",
|
||||
"@backstage/plugin-cost-insights": "^0.11.24",
|
||||
"@backstage/plugin-explore": "^0.3.33",
|
||||
"@backstage/plugin-gcp-projects": "^0.3.21",
|
||||
"@backstage/plugin-github-actions": "^0.5.2",
|
||||
"@backstage/plugin-gocd": "^0.1.8",
|
||||
"@backstage/plugin-graphiql": "^0.2.34",
|
||||
"@backstage/plugin-home": "^0.4.18",
|
||||
"@backstage/plugin-jenkins": "^0.7.1",
|
||||
"@backstage/plugin-kafka": "^0.3.2",
|
||||
"@backstage/plugin-kubernetes": "^0.6.2",
|
||||
"@backstage/plugin-lighthouse": "^0.3.2",
|
||||
"@backstage/plugin-newrelic": "^0.3.20",
|
||||
"@backstage/plugin-newrelic-dashboard": "^0.1.10",
|
||||
"@backstage/plugin-org": "^0.5.2",
|
||||
"@backstage/plugin-pagerduty": "0.3.29",
|
||||
"@backstage/plugin-permission-react": "^0.3.3",
|
||||
"@backstage/plugin-rollbar": "^0.4.2-next.0",
|
||||
"@backstage/plugin-scaffolder": "^0.15.0-next.0",
|
||||
"@backstage/plugin-search": "^0.7.3-next.0",
|
||||
"@backstage/plugin-search-common": "^0.3.1-next.0",
|
||||
"@backstage/plugin-sentry": "^0.3.40-next.0",
|
||||
"@backstage/plugin-shortcuts": "^0.2.3-next.0",
|
||||
"@backstage/plugin-tech-radar": "^0.5.9-next.0",
|
||||
"@backstage/plugin-techdocs": "^0.15.1-next.0",
|
||||
"@backstage/plugin-todo": "^0.2.4-next.0",
|
||||
"@backstage/plugin-user-settings": "^0.4.1-next.0",
|
||||
"@backstage/plugin-tech-insights": "^0.1.12-next.0",
|
||||
"@backstage/plugin-rollbar": "^0.4.2",
|
||||
"@backstage/plugin-scaffolder": "^0.15.0",
|
||||
"@backstage/plugin-search": "^0.7.3",
|
||||
"@backstage/plugin-search-common": "^0.3.1",
|
||||
"@backstage/plugin-sentry": "^0.3.40",
|
||||
"@backstage/plugin-shortcuts": "^0.2.3",
|
||||
"@backstage/plugin-tech-radar": "^0.5.9",
|
||||
"@backstage/plugin-techdocs": "^0.15.1",
|
||||
"@backstage/plugin-todo": "^0.2.4",
|
||||
"@backstage/plugin-user-settings": "^0.4.1",
|
||||
"@backstage/plugin-tech-insights": "^0.1.12",
|
||||
"@backstage/theme": "^0.2.15",
|
||||
"@material-ui/core": "^4.12.2",
|
||||
"@material-ui/icons": "^4.9.1",
|
||||
|
||||
@@ -1,5 +1,24 @@
|
||||
# @backstage/backend-common
|
||||
|
||||
## 0.13.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- ae9d6fb3df: **BREAKING**:
|
||||
|
||||
- Removed the (since way back) deprecated `createDatabase` export, please use `createDatabaseClient` instead.
|
||||
- Removed the (since way back) deprecated `SingleConnectionDatabaseManager` export, please use `DatabaseManager` instead.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912)
|
||||
- e0a69ba49f: build(deps): bump `fs-extra` from 9.1.0 to 10.0.1
|
||||
- aefca2a7e9: add support for ETag at `BitbucketUrlReader.readUrl`
|
||||
- 3c2bc73901: Use `setupRequestMockHandlers` from `@backstage/backend-test-utils`
|
||||
- b1aacbf96a: Applied the fix for the `/alpha` entry point resolution that was part of the `v0.70.1` release of Backstage.
|
||||
- Updated dependencies
|
||||
- @backstage/config-loader@0.9.7
|
||||
|
||||
## 0.13.0-next.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/backend-common",
|
||||
"description": "Common functionality library for Backstage backends",
|
||||
"version": "0.13.0-next.0",
|
||||
"version": "0.13.0",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"private": false,
|
||||
@@ -36,7 +36,7 @@
|
||||
"dependencies": {
|
||||
"@backstage/cli-common": "^0.1.8",
|
||||
"@backstage/config": "^0.1.15",
|
||||
"@backstage/config-loader": "^0.9.7-next.0",
|
||||
"@backstage/config-loader": "^0.9.7",
|
||||
"@backstage/errors": "^0.2.2",
|
||||
"@backstage/integration": "^0.8.0",
|
||||
"@backstage/types": "^0.1.3",
|
||||
@@ -89,8 +89,8 @@
|
||||
}
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/backend-test-utils": "^0.1.21-next.0",
|
||||
"@backstage/cli": "^0.15.2-next.0",
|
||||
"@backstage/backend-test-utils": "^0.1.21",
|
||||
"@backstage/cli": "^0.15.2",
|
||||
"@types/archiver": "^5.1.0",
|
||||
"@types/compression": "^1.7.0",
|
||||
"@types/concat-stream": "^2.0.0",
|
||||
|
||||
@@ -1,5 +1,21 @@
|
||||
# @backstage/backend-tasks
|
||||
|
||||
## 0.2.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 9461f73643: **BREAKING**: The `TaskDefinition` type has been removed, and replaced by the equal pair `TaskScheduleDefinition` and `TaskInvocationDefinition`. The interface for `PluginTaskScheduler.scheduleTask` stays effectively unchanged, so this only affects you if you use the actual types directly.
|
||||
|
||||
Added the method `PluginTaskScheduler.createTaskSchedule`, which returns a `TaskSchedule` wrapper that is convenient to pass down into classes that want to control their task invocations while the caller wants to retain control of the actual schedule chosen.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912)
|
||||
- 7290dda9d4: Relaxed the task ID requirement to now support any non-empty string
|
||||
- ae2ed04076: Add support for cron syntax to configure task frequency - `TaskScheduleDefinition.frequency` can now be both a `Duration` and an object on the form `{ cron: string }`, where the latter is expected to be on standard crontab format (e.g. `'0 */2 * * *'`).
|
||||
- Updated dependencies
|
||||
- @backstage/backend-common@0.13.0
|
||||
|
||||
## 0.2.0-next.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/backend-tasks",
|
||||
"description": "Common distributed task management library for Backstage backends",
|
||||
"version": "0.2.0-next.0",
|
||||
"version": "0.2.0",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"private": false,
|
||||
@@ -33,7 +33,7 @@
|
||||
"start": "backstage-cli package start"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/backend-common": "^0.13.0-next.0",
|
||||
"@backstage/backend-common": "^0.13.0",
|
||||
"@backstage/config": "^0.1.15",
|
||||
"@backstage/errors": "^0.2.2",
|
||||
"@backstage/types": "^0.1.3",
|
||||
@@ -48,8 +48,8 @@
|
||||
"zod": "^3.9.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/backend-test-utils": "^0.1.21-next.0",
|
||||
"@backstage/cli": "^0.15.2-next.0",
|
||||
"@backstage/backend-test-utils": "^0.1.21",
|
||||
"@backstage/cli": "^0.15.2",
|
||||
"@types/cron": "^1.7.3",
|
||||
"jest": "^26.0.1",
|
||||
"wait-for-expect": "^3.0.2"
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/backend-test-utils
|
||||
|
||||
## 0.1.21
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- ab7cd7d70e: Do some groundwork for supporting the `better-sqlite3` driver, to maybe eventually replace `@vscode/sqlite3` (#9912)
|
||||
- 3c2bc73901: Add `setupRequestMockHandlers` which sets up a good `msw` server foundation, copied from `@backstage/test-utils` which is a frontend-only package and should not be used from backends.
|
||||
- Updated dependencies
|
||||
- @backstage/backend-common@0.13.0
|
||||
- @backstage/cli@0.15.2
|
||||
|
||||
## 0.1.21-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/backend-test-utils",
|
||||
"description": "Test helpers library for Backstage backends",
|
||||
"version": "0.1.21-next.0",
|
||||
"version": "0.1.21",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"private": false,
|
||||
@@ -34,8 +34,8 @@
|
||||
"start": "backstage-cli package start"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/backend-common": "^0.13.0-next.0",
|
||||
"@backstage/cli": "^0.15.2-next.0",
|
||||
"@backstage/backend-common": "^0.13.0",
|
||||
"@backstage/cli": "^0.15.2",
|
||||
"@backstage/config": "^0.1.15",
|
||||
"@vscode/sqlite3": "^5.0.7",
|
||||
"knex": "^1.0.2",
|
||||
@@ -46,7 +46,7 @@
|
||||
"uuid": "^8.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.15.2-next.0",
|
||||
"@backstage/cli": "^0.15.2",
|
||||
"jest": "^26.0.1"
|
||||
},
|
||||
"files": [
|
||||
|
||||
@@ -1,5 +1,42 @@
|
||||
# example-backend
|
||||
|
||||
## 0.2.68
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/backend-common@0.13.0
|
||||
- @backstage/backend-tasks@0.2.0
|
||||
- @backstage/plugin-app-backend@0.3.29
|
||||
- @backstage/plugin-auth-backend@0.12.1
|
||||
- @backstage/plugin-catalog-backend@0.24.0
|
||||
- @backstage/plugin-scaffolder-backend@0.18.0
|
||||
- @backstage/plugin-scaffolder-backend-module-rails@0.3.4
|
||||
- @backstage/plugin-kubernetes-backend@0.4.12
|
||||
- @backstage/plugin-rollbar-backend@0.1.26
|
||||
- @backstage/plugin-techdocs-backend@0.14.2
|
||||
- @backstage/catalog-model@0.13.0
|
||||
- @backstage/plugin-badges-backend@0.1.23
|
||||
- @backstage/plugin-search-backend-module-elasticsearch@0.1.1
|
||||
- @backstage/plugin-search-backend-module-pg@0.3.1
|
||||
- @backstage/plugin-search-backend-node@0.5.1
|
||||
- @backstage/plugin-search-backend@0.4.7
|
||||
- @backstage/catalog-client@0.9.0
|
||||
- example-app@0.2.68
|
||||
- @backstage/plugin-auth-node@0.1.5
|
||||
- @backstage/plugin-azure-devops-backend@0.3.8
|
||||
- @backstage/plugin-code-coverage-backend@0.1.27
|
||||
- @backstage/plugin-graphql-backend@0.1.19
|
||||
- @backstage/plugin-jenkins-backend@0.1.18
|
||||
- @backstage/plugin-kafka-backend@0.2.22
|
||||
- @backstage/plugin-permission-backend@0.5.4
|
||||
- @backstage/plugin-permission-node@0.5.4
|
||||
- @backstage/plugin-proxy-backend@0.2.23
|
||||
- @backstage/plugin-tech-insights-backend@0.2.9
|
||||
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.13
|
||||
- @backstage/plugin-tech-insights-node@0.2.7
|
||||
- @backstage/plugin-todo-backend@0.1.26
|
||||
|
||||
## 0.2.68-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "example-backend",
|
||||
"version": "0.2.68-next.0",
|
||||
"version": "0.2.68",
|
||||
"main": "dist/index.cjs.js",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -27,39 +27,39 @@
|
||||
"migrate:create": "knex migrate:make -x ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/backend-common": "^0.13.0-next.0",
|
||||
"@backstage/backend-tasks": "^0.2.0-next.0",
|
||||
"@backstage/catalog-client": "^0.9.0-next.0",
|
||||
"@backstage/catalog-model": "^0.13.0-next.0",
|
||||
"@backstage/backend-common": "^0.13.0",
|
||||
"@backstage/backend-tasks": "^0.2.0",
|
||||
"@backstage/catalog-client": "^0.9.0",
|
||||
"@backstage/catalog-model": "^0.13.0",
|
||||
"@backstage/config": "^0.1.15",
|
||||
"@backstage/integration": "^0.8.0",
|
||||
"@backstage/plugin-app-backend": "^0.3.29-next.0",
|
||||
"@backstage/plugin-auth-backend": "^0.12.1-next.0",
|
||||
"@backstage/plugin-auth-node": "^0.1.5-next.0",
|
||||
"@backstage/plugin-azure-devops-backend": "^0.3.8-next.0",
|
||||
"@backstage/plugin-badges-backend": "^0.1.23-next.0",
|
||||
"@backstage/plugin-catalog-backend": "^0.24.0-next.0",
|
||||
"@backstage/plugin-code-coverage-backend": "^0.1.27-next.0",
|
||||
"@backstage/plugin-graphql-backend": "^0.1.19-next.0",
|
||||
"@backstage/plugin-jenkins-backend": "^0.1.18-next.0",
|
||||
"@backstage/plugin-kubernetes-backend": "^0.4.12-next.0",
|
||||
"@backstage/plugin-kafka-backend": "^0.2.22-next.0",
|
||||
"@backstage/plugin-permission-backend": "^0.5.4-next.0",
|
||||
"@backstage/plugin-app-backend": "^0.3.29",
|
||||
"@backstage/plugin-auth-backend": "^0.12.1",
|
||||
"@backstage/plugin-auth-node": "^0.1.5",
|
||||
"@backstage/plugin-azure-devops-backend": "^0.3.8",
|
||||
"@backstage/plugin-badges-backend": "^0.1.23",
|
||||
"@backstage/plugin-catalog-backend": "^0.24.0",
|
||||
"@backstage/plugin-code-coverage-backend": "^0.1.27",
|
||||
"@backstage/plugin-graphql-backend": "^0.1.19",
|
||||
"@backstage/plugin-jenkins-backend": "^0.1.18",
|
||||
"@backstage/plugin-kubernetes-backend": "^0.4.12",
|
||||
"@backstage/plugin-kafka-backend": "^0.2.22",
|
||||
"@backstage/plugin-permission-backend": "^0.5.4",
|
||||
"@backstage/plugin-permission-common": "^0.5.2",
|
||||
"@backstage/plugin-permission-node": "^0.5.4-next.0",
|
||||
"@backstage/plugin-proxy-backend": "^0.2.23-next.0",
|
||||
"@backstage/plugin-rollbar-backend": "^0.1.26-next.0",
|
||||
"@backstage/plugin-scaffolder-backend": "^0.18.0-next.0",
|
||||
"@backstage/plugin-scaffolder-backend-module-rails": "^0.3.4-next.0",
|
||||
"@backstage/plugin-search-backend": "^0.4.7-next.0",
|
||||
"@backstage/plugin-search-backend-node": "^0.5.1-next.0",
|
||||
"@backstage/plugin-search-backend-module-elasticsearch": "^0.1.1-next.0",
|
||||
"@backstage/plugin-search-backend-module-pg": "^0.3.1-next.0",
|
||||
"@backstage/plugin-techdocs-backend": "^0.14.2-next.0",
|
||||
"@backstage/plugin-tech-insights-backend": "^0.2.9-next.0",
|
||||
"@backstage/plugin-tech-insights-node": "^0.2.7-next.0",
|
||||
"@backstage/plugin-tech-insights-backend-module-jsonfc": "^0.1.13-next.0",
|
||||
"@backstage/plugin-todo-backend": "^0.1.26-next.0",
|
||||
"@backstage/plugin-permission-node": "^0.5.4",
|
||||
"@backstage/plugin-proxy-backend": "^0.2.23",
|
||||
"@backstage/plugin-rollbar-backend": "^0.1.26",
|
||||
"@backstage/plugin-scaffolder-backend": "^0.18.0",
|
||||
"@backstage/plugin-scaffolder-backend-module-rails": "^0.3.4",
|
||||
"@backstage/plugin-search-backend": "^0.4.7",
|
||||
"@backstage/plugin-search-backend-node": "^0.5.1",
|
||||
"@backstage/plugin-search-backend-module-elasticsearch": "^0.1.1",
|
||||
"@backstage/plugin-search-backend-module-pg": "^0.3.1",
|
||||
"@backstage/plugin-techdocs-backend": "^0.14.2",
|
||||
"@backstage/plugin-tech-insights-backend": "^0.2.9",
|
||||
"@backstage/plugin-tech-insights-node": "^0.2.7",
|
||||
"@backstage/plugin-tech-insights-backend-module-jsonfc": "^0.1.13",
|
||||
"@backstage/plugin-todo-backend": "^0.1.26",
|
||||
"@gitbeaker/node": "^35.1.0",
|
||||
"@octokit/rest": "^18.5.3",
|
||||
"@vscode/sqlite3": "^5.0.7",
|
||||
@@ -76,7 +76,7 @@
|
||||
"winston": "^3.2.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.15.2-next.0",
|
||||
"@backstage/cli": "^0.15.2",
|
||||
"@types/dockerode": "^3.3.0",
|
||||
"@types/express": "^4.17.6",
|
||||
"@types/express-serve-static-core": "^4.17.5"
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
# @backstage/catalog-client
|
||||
|
||||
## 0.9.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- bf95bb806c: **BREAKING**: Removed previously deprecated `CatalogApi.getEntityByName`, please use `getEntityByRef` instead.
|
||||
- a3eb3d2afa: **BREAKING**: Removed `CatalogClient.getLocationByEntity` and `CatalogClient.getOriginLocationByEntity` which had previously been deprecated. Please use `CatalogApi.getLocationByRef` instead. Note that this only affects you if you were using `CatalogClient` (the class) directly, rather than `CatalogApi` (the interface), since it has been removed from the interface in an earlier release.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/catalog-model@0.13.0
|
||||
|
||||
## 0.9.0-next.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/catalog-client",
|
||||
"description": "An isomorphic client for the catalog backend",
|
||||
"version": "0.9.0-next.0",
|
||||
"version": "0.9.0",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -33,12 +33,12 @@
|
||||
"clean": "backstage-cli package clean"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/catalog-model": "^0.13.0-next.0",
|
||||
"@backstage/catalog-model": "^0.13.0",
|
||||
"@backstage/errors": "^0.2.2",
|
||||
"cross-fetch": "^3.1.5"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.15.2-next.0",
|
||||
"@backstage/cli": "^0.15.2",
|
||||
"@types/jest": "^26.0.7",
|
||||
"msw": "^0.35.0"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,29 @@
|
||||
# @backstage/catalog-model
|
||||
|
||||
## 0.13.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 51a9f8f122: **BREAKING**:
|
||||
|
||||
- Removed the previously deprecated type `EntityRef`. Please use `string` for stringified entity refs, `CompoundEntityRef` for compound kind-namespace-name triplet objects, or custom objects like `{ kind?: string; namespace?: string; name: string }` and similar if you have need for partial types.
|
||||
- Removed the previously deprecated type `LocationSpec` type, which has been moved to `@backstage/plugin-catalog-backend`.
|
||||
- Removed the previously deprecated function `parseEntityName`. Please use `parseEntityRef` instead.
|
||||
|
||||
- d1d488e371: **BREAKING**: The default validator for `metadata.tags` now permits the colon (`:`) character as well.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 2952566587: Updated `parseEntityRef` to allow `:` and `/` in the entity name. For example, parsing `'component:default/foo:bar'` will result in the name `'foo:bar'`.
|
||||
|
||||
Note that only parsing `'foo:bar'` itself will result in the name `'bar'` and the entity kind `'foo'`, meaning this is a particularly nasty trap for user defined entity references. For this reason it is strongly discouraged to use names that contain these characters, and the catalog model does not allow it by default. However, this change now makes is possible to use these names if the default catalog validation is replaced, and in particular a high level of automation of the catalog population can limit issues that it might otherwise cause.
|
||||
|
||||
- b1aacbf96a: Applied the fix for the `/alpha` entry point resolution that was part of the `v0.70.1` release of Backstage.
|
||||
- d1d488e371: **DEPRECATION**:
|
||||
|
||||
- Deprecated `CommonValidatorFunctions.isValidString`, please use `isNonEmptyString` instead which is equivalent but better named.
|
||||
- Deprecated `CommonValidatorFunctions.isValidTag`, with no replacement. Its purpose was too specific and not reusable, so it will be removed.
|
||||
|
||||
## 0.13.0-next.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/catalog-model",
|
||||
"description": "Types and validators that help describe the model of a Backstage Catalog",
|
||||
"version": "0.13.0-next.0",
|
||||
"version": "0.13.0",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -43,7 +43,7 @@
|
||||
"uuid": "^8.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.15.2-next.0",
|
||||
"@backstage/cli": "^0.15.2",
|
||||
"@types/jest": "^26.0.7",
|
||||
"@types/json-schema": "^7.0.5",
|
||||
"@types/lodash": "^4.14.151",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user