Version Packages

This commit is contained in:
github-actions[bot]
2022-03-03 15:23:53 +00:00
parent 17e0b29a42
commit 3c8bb2854d
324 changed files with 2644 additions and 1649 deletions
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/catalog-model': patch
---
Move `@types/json-schema` to be a dev dependency
-10
View File
@@ -1,10 +0,0 @@
---
'@backstage/catalog-client': minor
---
**BREAKING**: Removed the old deprecated request/response types:
- `CatalogEntitiesRequest` - please use `GetEntitiesRequest` instead
- `CatalogEntityAncestorsRequest` - please use `GetEntityAncestorsRequest` instead
- `CatalogEntityAncestorsResponse` - please use `GetEntityAncestorsResponse` instead
- `CatalogListResponse` - please use `GetEntitiesResponse` instead
-10
View File
@@ -1,10 +0,0 @@
---
'@backstage/plugin-catalog-backend': minor
---
**Breaking**: Mark permission-related exports as alpha. This means that the exports below should now be imported from `@backstage/plugin-catalog-backend/alpha` instead of `@backstage/plugin-catalog-backend`.
- `catalogConditions`
- `createCatalogPolicyDecision`
- `permissionRules`
- `createCatalogPermissionRule`
-13
View File
@@ -1,13 +0,0 @@
---
'@backstage/backend-common': minor
---
**BREAKING**: The connection string for `redis` cache store now requires a protocol prefix.
```diff
backend:
cache:
store: redis
- connection: user:pass@cache.example.com:6379
+ connection: redis://user:pass@cache.example.com:6379
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Applied fix from version 0.17.2 of this package, which is part of the v0.69.2 release of Backstage.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/core-components': patch
'@backstage/plugin-search': patch
'@backstage/plugin-techdocs': patch
---
chore(deps): bump `react-text-truncate` from 0.17.0 to 0.18.0
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs-backend': patch
---
Added a new interface that allows for customization of when to build techdocs
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-analytics-module-ga': patch
---
Added CSP instructions to README
-31
View File
@@ -1,31 +0,0 @@
---
'@backstage/create-app': patch
---
Update the template to reflect the renaming of `DocsResultListItem` to `TechDocsSearchResultListItem` from `@backstage/plugin-techdocs`.
To apply this change to an existing app, make the following change to `packages/app/src/components/search/SearchPage.tsx`:
```diff
-import { DocsResultListItem } from '@backstage/plugin-techdocs';
+import { TechDocsSearchResultListItem } from '@backstage/plugin-techdocs';
```
```diff
case 'techdocs':
return (
- <DocsResultListItem
+ <TechDocsSearchResultListItem
key={document.location}
result={document}
/>
```
The `TechDocsIndexPage` now uses `DefaultTechDocsHome` as fall back if no children is provided as `LegacyTechDocsHome` is marked as deprecated. If you do not use a custom techdocs homepage, you can therefore update your app to the following:
```diff
- <Route path="/docs" element={<TechDocsIndexPage />}>
- <DefaultTechDocsHome />
- </Route>
+ <Route path="/docs" element={<TechDocsIndexPage />} />
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-msgraph': patch
---
add config option `groupExpand` to allow expanding a single relationship
-20
View File
@@ -1,20 +0,0 @@
---
'@backstage/plugin-api-docs': patch
'@backstage/plugin-auth-backend': patch
'@backstage/plugin-badges-backend': patch
'@backstage/plugin-catalog': patch
'@backstage/plugin-catalog-graph': patch
'@backstage/plugin-catalog-import': patch
'@backstage/plugin-catalog-react': patch
'@backstage/plugin-code-coverage-backend': patch
'@backstage/plugin-explore': patch
'@backstage/plugin-fossa': patch
'@backstage/plugin-jenkins-backend': patch
'@backstage/plugin-rollbar': patch
'@backstage/plugin-scaffolder-backend': patch
'@backstage/plugin-techdocs': patch
'@backstage/plugin-techdocs-backend': patch
'@backstage/plugin-todo-backend': patch
---
Use `getEntityByRef` instead of `getEntityByName` in the catalog client
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-common': minor
---
Remove resourceType property from catalogEntityCreatePermission. Resource type refers to the type of resources whose resourceRefs should be passed along with authorize requests, to allow conditional responses for that resource type. Since creation does not correspond to an entity (as the entity does not exist at the time of authorization), the resourceRef should not be included on the permission.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-jenkins-common': minor
---
Add a new common plugin for Jenkins which provides shared isomorphic code for the Jenkins plugin.
-12
View File
@@ -1,12 +0,0 @@
---
'@backstage/create-app': patch
---
Update import location of catalogEntityCreatePermission.
To apply this change to an existing app, make the following change to `packages/app/src/App.tsx`:
```diff
-import { catalogEntityCreatePermission } from '@backstage/plugin-catalog-common';
+import { catalogEntityCreatePermission } from '@backstage/plugin-catalog-common/alpha';
```
-13
View File
@@ -1,13 +0,0 @@
---
'@backstage/plugin-catalog': patch
'@backstage/plugin-catalog-graph': patch
'@backstage/plugin-catalog-import': patch
'@backstage/plugin-catalog-react': patch
'@backstage/plugin-explore': patch
'@backstage/plugin-fossa': patch
'@backstage/plugin-org': patch
'@backstage/plugin-scaffolder': patch
'@backstage/plugin-techdocs': patch
---
- **DEPRECATION**: Deprecated `formatEntityRefTitle` in favor of the new `humanizeEntityRef` method instead. Please migrate to using the new method instead.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-common': patch
---
DockerContainerRunner.runContainer now automatically removes the container when its execution terminates
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/integration': minor
'@backstage/backend-common': patch
'@backstage/plugin-scaffolder-backend': patch
---
ensure `apiBaseUrl` being set for Bitbucket integrations, replace hardcoded defaults
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Set timeout for scaffolder octokit client
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder': minor
---
- **BREAKING**: Removed the `FavouriteTemplate` export in favor of the `FavoriteEntity` from `@backstage/plugin-catalog-react`. Please migrate any usages to that component instead if you are creating your own `TemplateCard` page.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
**DEPRECATED**: The `results` export, and instead adding `processingResult` with the same shape and purpose.
-14
View File
@@ -1,14 +0,0 @@
---
'@backstage/plugin-scaffolder': patch
---
Added some deprecations as follows:
- **DEPRECATED**: `TemplateCardComponent` and `TaskPageComponent` props have been deprecated, and moved to a `components` prop instead. You can pass them in through there instead.
- **DEPRECATED**: `TemplateList` and `TemplateListProps` has been deprecated. Please use the `TemplateCard` to create your own list component instead.
- **DEPRECATED**: `setSecret` has been deprecated in favour of `setSecrets` when calling `useTemplateSecrets`
Other notable changes:
- `scaffolderApi.scaffold()` `values` type has been narrowed from `Record<string, any>` to `Record<string, JsonValue>` instead.
- Moved all navigation internally over to using `routeRefs` and `subRouteRefs`
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Internal restructuring to collect the various provider files in a `modules` folder while waiting to be externalized
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs': patch
---
Collapse techdocs sidebar on small devices
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
---
Deprecated `favoriteEntityTooltip` and `favoriteEntityIcon` since the utility value is very low.
-9
View File
@@ -1,9 +0,0 @@
---
'@backstage/catalog-model': patch
---
**DEPRECATION**: Deprecated the `EntityName` type, and added the better-named `CompoundEntityRef` to replace it.
**DEPRECATION**: Deprecated the `getEntityName` function, and added the better-named `getCompoundEntityRef` to replace it.
Please switch over to using the new symbols, as the old ones may be removed in a future release.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/core-app-api': minor
'@backstage/core-plugin-api': minor
'@backstage/test-utils': minor
---
**BREAKING**: Removed the deprecated `get` method from `StorageAPI` and its implementations, this method has been replaced by the `snapshot` method. The return value from snapshot no longer includes `newValue` which has been replaced by `value`. For getting notified when a value changes, use `observe$`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-permission-common': patch
---
Add api doc comments to `Permission` type properties.
-14
View File
@@ -1,14 +0,0 @@
---
'@backstage/plugin-catalog-common': minor
---
**Breaking**: Mark permission-related exports as alpha. This means that the exports below should now be imported from `@backstage/plugin-catalog-common/alpha` instead of `@backstage/plugin-catalog-common`.
- `RESOURCE_TYPE_CATALOG_ENTITY`
- `catalogEntityReadPermission`
- `catalogEntityCreatePermission`
- `catalogEntityDeletePermission`
- `catalogEntityRefreshPermission`
- `catalogLocationReadPermission`
- `catalogLocationCreatePermission`
- `catalogLocationDeletePermission`
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/plugin-catalog-react': minor
---
Removed some previously deprecated `routeRefs` as follows:
- **BREAKING**: Removed `entityRoute` in favor of `entityRouteRef`.
- **BREAKING**: Removed the previously deprecated `rootRoute` and `catalogRouteRef`. If you want to refer to the catalog index page from a public plugin you now need to use an `ExternalRouteRef` instead. For private plugins it is possible to take the shortcut of referring directly to `catalogPlugin.routes.indexPage` instead.
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-aws': patch
'@backstage/plugin-catalog-backend-module-ldap': patch
'@backstage/plugin-catalog-backend-module-msgraph': patch
'@backstage/plugin-scaffolder-backend': patch
---
Use the new `processingResult` export from the catalog backend
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-common': patch
---
Export FetchUrlReader to facilitate more flexible configuration of the backend.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-app-api': minor
---
**BREAKING**: Removed export of `GithubSession` and `SamlSession` which are only used internally.
-12
View File
@@ -1,12 +0,0 @@
---
'@backstage/plugin-jenkins-backend': patch
---
Jenkins plugin supports permissions now. We have added a new permission, so you can manage the permission for the users.
A new permission `jenkinsExecutePermission` is provided in `jenkins-common` package. This permission rule will be applied to check rebuild actions
if user is allowed to execute this action.
> We use 'catalog-entity' as a resource type, so you need to integrate a policy to handle catalog-entity resources
> You need to use this permission in your permission policy to check the user role/rights and return
> `AuthorizeResult.ALLOW` to allow rebuild action to logged user. (e.g: you can check if user or related group owns the entity)
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': minor
---
**BREAKING**: Removed the deprecated `app.<key>` template variables from the `index.html` templating. These should be replaced by using `config.getString("app.<key>")` instead.
+1 -3
View File
@@ -1,5 +1,3 @@
{
"currentReleaseVersion": {
"@backstage/plugin-scaffolder-backend": "0.17.2"
}
"currentReleaseVersion": {}
}
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Deprecated the `BitbucketRepositoryParser` type.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
---
- **BREAKING**: The `isOwnerOf` function has been marked as `@alpha` and is now only available via the `@backstage/plugin-catalog-react/alpha` import. The limitations of this function with regards to only supporting direct relations have also been documented.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': minor
---
Marked `useEntityPermission` as alpha since the underlying permission framework is under active development.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
The CLI now bundles both version 16 and 17 of the patched `@hot-loader/react-dom` dependency, and selects the appropriate one based on what version of `react-dom` is installed within the app.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/plugin-permission-node': patch
---
Export some utility functions for parsing PermissionCriteria
`isAndCriteria`, `isOrCriteria`, `isNotCriteria` are now exported.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-msgraph': patch
---
add documentation for config options `userGroupMemberSearch` and `groupSearch`
-10
View File
@@ -1,10 +0,0 @@
---
'@backstage/app-defaults': minor
'@backstage/core-app-api': minor
'@backstage/core-components': minor
'@backstage/core-plugin-api': minor
'@backstage/test-utils': minor
'@backstage/plugin-user-settings': minor
---
**BREAKING**: Removed deprecated `auth0AuthApiRef`, `oauth2ApiRef`, `samlAuthApiRef` and `oidcAuthApiRef` as these APIs are too generic to be useful. Instructions for how to migrate can be found at [https://backstage.io/docs/api/deprecations#generic-auth-api-refs](https://backstage.io/docs/api/deprecations#generic-auth-api-refs).
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': minor
---
**Breaking**: Removed `entityRef` from `CatalogProcessorRelationResult`. The field is not used by the catalog and relation information is already available inside the `reation` property.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/plugin-airbrake': patch
'@backstage/plugin-airbrake-backend': patch
---
The Airbrake plugin installation instructions have been updated to work better and conform to how the frontend and backend plugins are supposed to be integrated into a Backstage instance.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/catalog-client': patch
---
**DEPRECATION**: Deprecated `getEntityByName` from `CatalogApi` and added `getEntityByRef` instead, which accepts both string and compound ref forms.
@@ -1,18 +0,0 @@
---
'@backstage/plugin-search-backend-node': minor
'@backstage/search-common': minor
---
**BREAKING**
The Backstage Search Platform's indexing process has been rewritten as a stream
pipeline in order to improve efficiency and performance on large document sets.
The concepts of `Collator` and `Decorator` have been replaced with readable and
transform object streams (respectively), as well as factory classes to
instantiate them. Accordingly, the `SearchEngine.index()` method has also been
replaced with a `getIndexer()` factory method that resolves to a writable
object stream.
Check [this upgrade guide](https://backstage.io/docs/features/search/how-to-guides#how-to-migrate-from-search-alpha-to-beta)
for further details.
-12
View File
@@ -1,12 +0,0 @@
---
'@backstage/plugin-search-backend-module-pg': minor
---
**BREAKING**
The `PgSearchEngine` implements the new stream-based indexing process expected
by the latest `@backstage/search-backend-node`.
When updating to this version, you must also update to the latest version of
`@backstage/search-backend-node`. Check [this upgrade guide](https://backstage.io/docs/features/search/how-to-guides#how-to-migrate-from-search-alpha-to-beta)
for further details.
-13
View File
@@ -1,13 +0,0 @@
---
'@backstage/plugin-techdocs-backend': patch
---
A `DefaultTechDocsCollatorFactory`, which works with the new stream-based
search indexing subsystem, is now available. The `DefaultTechDocsCollator` will
continue to be available for those unable to upgrade to the stream-based
`@backstage/search-backend-node` (and related packages), however it is now
marked as deprecated and will be removed in a future version.
To upgrade this plugin and the search indexing subsystem in one go, check
[this upgrade guide](https://backstage.io/docs/features/search/how-to-guides#how-to-migrate-from-search-alpha-to-beta)
for necessary changes to your search backend plugin configuration.
-43
View File
@@ -1,43 +0,0 @@
---
'@backstage/create-app': patch
---
The Backstage Search Platform's indexing process has been rewritten as a stream
pipeline in order to improve efficiency and performance on large document sets.
To take advantage of this, upgrade to the latest version of
`@backstage/plugin-search-backend-node`, as well as any backend plugins whose
collators you are using. Then, make the following changes to your
`/packages/backend/src/plugins/search.ts` file:
```diff
-import { DefaultCatalogCollator } from '@backstage/plugin-catalog-backend';
-import { DefaultTechDocsCollator } from '@backstage/plugin-techdocs-backend';
+import { DefaultCatalogCollatorFactory } from '@backstage/plugin-catalog-backend';
+import { DefaultTechDocsCollatorFactory } from '@backstage/plugin-techdocs-backend';
// ...
const indexBuilder = new IndexBuilder({ logger, searchEngine });
indexBuilder.addCollator({
defaultRefreshIntervalSeconds: 600,
- collator: DefaultCatalogCollator.fromConfig(config, { discovery }),
+ factory: DefaultCatalogCollatorFactory.fromConfig(config, { discovery }),
});
indexBuilder.addCollator({
defaultRefreshIntervalSeconds: 600,
- collator: DefaultTechDocsCollator.fromConfig(config, {
+ factory: DefaultTechDocsCollatorFactory.fromConfig(config, {
discovery,
logger,
}),
});
```
If you've written custom collators, decorators, or search engines in your
Backstage backend instance, you will need to re-implement them as readable,
transform, and writable streams respectively (including factory classes for
instantiating them). [A how-to guide for refactoring](https://backstage.io/docs/features/search/how-to-guides#rewriting-alpha-style-collators-for-beta)
existing implementations is available.
@@ -1,12 +0,0 @@
---
'@backstage/plugin-search-backend-module-elasticsearch': minor
---
**BREAKING**
The `ElasticSearchSearchEngine` implements the new stream-based indexing
process expected by the latest `@backstage/search-backend-node`.
When updating to this version, you must also update to the latest version of
`@backstage/search-backend-node`. Check [this upgrade guide](https://backstage.io/docs/features/search/how-to-guides#how-to-migrate-from-search-alpha-to-beta)
for further details.
-13
View File
@@ -1,13 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
A `DefaultCatalogCollatorFactory`, which works with the new stream-based
search indexing subsystem, is now available. The `DefaultCatalogCollator` will
continue to be available for those unable to upgrade to the stream-based
`@backstage/search-backend-node` (and related packages), however it is now
marked as deprecated and will be removed in a future version.
To upgrade this plugin and the search indexing subsystem in one go, check
[this upgrade guide](https://backstage.io/docs/features/search/how-to-guides#how-to-migrate-from-search-alpha-to-beta)
for necessary changes to your search backend plugin configuration.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': minor
---
**Breaking**: Removed optional `handleError()` from `CatalogProcessor`. This optional method is never called by the catalog processing engine and can therefore be removed.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Cleanup API report
-9
View File
@@ -1,9 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
---
**BREAKING**: Moved **DefaultStarredEntitiesApi** to `@backstage/plugin-catalog`. If you were using this in tests, you can use the new `MockStarredEntitiesApi` from `@backstage/plugin-catalog-react` instead.
Fixed a risky behavior where `DefaultStarredEntitiesApi` forwarded values to observers that were later mutated.
Removed the `isStarred` method from `DefaultStarredEntitiesApi`, as it is not part of the `StarredEntitiesApi`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-plugin-api': minor
---
**BREAKING**: OAuth provider id is now required when passing a provider to `createAuthRequester`.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/plugin-catalog': patch
'@backstage/plugin-techdocs': patch
---
Removed usage of deprecated favorite utility methods.
-10
View File
@@ -1,10 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
'@backstage/plugin-catalog-common': patch
---
**DEPRECATION**: Moved the `CatalogEntityDocument` to `@backstage/plugin-catalog-common` and deprecated the export from `@backstage/plugin-catalog-backend`.
A new `type` field has also been added to `CatalogEntityDocument` as a replacement for `componentType`, which is now deprecated. Both fields are still present and should be set to the same value in order to avoid issues with indexing.
Any search customizations need to be updated to use this new `type` field instead, including any custom frontend filters, custom frontend result components, custom search decorators, or non-default Catalog collator implementations.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Applied fix from `v0.17.1` of this package which is part of the `v0.69.1` release of Backstage.
-10
View File
@@ -1,10 +0,0 @@
---
'@backstage/plugin-catalog': patch
'@backstage/plugin-catalog-react': patch
---
Added the following deprecations to the `catalog-react` package:
- **DEPRECATION**: `useEntity` will now warn if the entity has not yet been loaded, and will soon throw errors instead. If you're using the default implementation of `EntityLayout` and `EntitySwitch` then these components will ensure that there is an entity loaded before rendering children. If you're implementing your own `EntityLayout` or `EntitySwitch` or something that operates outside or adjacent to them, then use `useAsyncEntity`.
- **DEPRECATION**: the `loading`, `error` and `refresh` properties that are returned from `useEntity` have been deprecated, and are available on `useAsyncEntity` instead.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
---
Deprecated `getEntityMetadataEditUrl` and `getEntityMetadataViewUrl` as these just return one annotation from the entity passed in.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-ldap': patch
---
Fixed bug in Catalog LDAP module to acknowledge page events to continue receiving entries if pagePause=true
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog': patch
---
- Replaced usage of the deprecated and now removed `rootRoute` and `catalogRouteRef`s from the `catalog-react` package
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': minor
---
Removing the `EntityName` path for the `useEntityOwnership` as it has never worked correctly. Please pass in an entire `Entity` instead.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder': minor
---
**BREAKING**: Removing the exports of the raw components that back the `CustomFieldExtensions`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/techdocs-common': patch
---
adds passing projectID to the Storage client
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-app-api': minor
---
**BREAKING**: Removed the deprecated `GithubAuth.normalizeScopes` method.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-auth-backend': minor
---
**BREAKING**: The `TokenFactory.issueToken` used by custom sign-in resolvers now ensures that the sub claim given is a full entity reference of the format `<kind>:<namespace>/<name>`. Any existing custom sign-in resolver functions that do not supply a full entity reference must be updated.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs': patch
---
Remove copyright from old footer in documentation generated with previous version of `mkdocs-techdocs-plugin` (`v0.2.2`).
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs': patch
---
Show feedback when copying code snippet to clipboard.
-5
View File
@@ -1,5 +0,0 @@
---
'@techdocs/cli': patch
---
Bump `@backstage/techdocs-common` to `0.11.10` to use `spotify/techdocs:v0.3.7` which upgrades `mkdocs-theme` as a dependency of `mkdocs-techdocs-core`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs': patch
---
Fixed a bug that could cause searches in the in-context TechDocs search bar to show results from a different TechDocs site.
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/plugin-jenkins': minor
---
Jenkins plugin supports permissions now. We have added a new permission, so you can manage the permission for the users. See relates notes for `jenkins-plugin` for more details.
Rebuild action will be disabled if the user does not have necessary rights to execute rebuild action. A permission policy (defined in backend) must handle and check the identity rights
and return `AuthorizeResult.ALLOW` if user is allowed to execute rebuild action.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-cookiecutter': patch
---
Fixed bug where existing cookiecutter.json file is not used.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-msgraph': patch
---
add `userExpand` config option to allow expanding a single relationship
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/techdocs-common': patch
---
Modify techdocs builder to automatically append techdocs-core plugin to mkdocs.yaml file if it is missing. Adds an optional configuration item if this plugin needs to be omitted.
-29
View File
@@ -1,29 +0,0 @@
---
'@backstage/plugin-techdocs': minor
---
**BREAKING:**
Table column utilities `createNameColumn`, `createOwnerColumn`, `createTypeColumn` as well as actions utilities `createCopyDocsUrlAction` and `createStarEntityAction` are no longer directly exported. Instead accessible through DocsTable and EntityListDocsTable.
Use as following:
```tsx
DocsTable.columns.createNameColumn();
DocsTable.columns.createOwnerColumn();
DocsTable.columns.createTypeColumn();
DocsTable.actions.createCopyDocsUrlAction();
DocsTable.actions.createStarEntityAction();
```
- Renamed `DocsResultListItem` to `TechDocsSearchResultListItem`, leaving the old name in place as a deprecations.
- Renamed `TechDocsPage` to `TechDocsReaderPage`, leaving the old name in place as a deprecations.
- Renamed `TechDocsPageRenderFunction` to `TechDocsPageRenderFunction`, leaving the old name in place as a deprecations.
- Renamed `TechDocsPageHeader` to `TechDocsReaderPageHeader`, leaving the old name in place as a deprecations.
- `LegacyTechDocsHome` marked as deprecated and will be deleted in next release, use `TechDocsCustomHome` instead.
- `LegacyTechDocsPage` marked as deprecated and will be deleted in next release, use `TechDocsReaderPage` instead.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Tweaked the wording of the "does not have a location" errors to include the actual missing annotation name, to help users better in fixing their inputs.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/integration': patch
---
Fix Bitbucket Cloud and Bitbucket Server line number reference.
-22
View File
@@ -1,22 +0,0 @@
---
'@backstage/catalog-client': patch
'@backstage/plugin-auth-backend': patch
'@backstage/plugin-catalog': patch
'@backstage/plugin-catalog-backend': patch
'@backstage/plugin-catalog-graph': patch
'@backstage/plugin-catalog-import': patch
'@backstage/plugin-catalog-react': patch
'@backstage/plugin-code-coverage': patch
'@backstage/plugin-code-coverage-backend': patch
'@backstage/plugin-fossa': patch
'@backstage/plugin-jenkins': patch
'@backstage/plugin-jenkins-backend': patch
'@backstage/plugin-scaffolder-backend': patch
'@backstage/plugin-tech-insights': patch
'@backstage/plugin-tech-insights-backend': patch
'@backstage/plugin-techdocs': patch
'@backstage/plugin-techdocs-backend': patch
'@backstage/plugin-todo-backend': patch
---
Use `CompoundEntityRef` instead of `EntityName`, and `getCompoundEntityRef` instead of `getEntityName`, from `@backstage/catalog-model`.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/plugin-catalog': patch
'@backstage/plugin-org': patch
---
Removed usage of deprecated `getEntityMetadataViewUrl` and `getEntityMetadataEditUrl` helpers.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/core-components': patch
'@backstage/plugin-catalog-react': patch
---
Updated usage of `StorageApi` to use `snapshot` method instead of `get`
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-components': patch
---
Added ability for SidebarSubmenuItem to handle external links correctly via the "to" prop
-23
View File
@@ -1,23 +0,0 @@
---
'@backstage/catalog-model': minor
---
**BREAKING**: The following changes are all breaking changes.
Removed `EDIT_URL_ANNOTATION` and `VIEW_URL_ANNOTATION`, `LOCATION_ANNOTATION`, `ORIGIN_LOCATION_ANNOTATION`, `LOCATION_ANNOTATION`, `SOURCE_LOCATION_ANNOTATION`. All of these constants have been prefixed with ANNOTATION to be easier to find meaning `SOURCE_LOCATION_ANNOTATION` is available as `ANNOTATION_SOURCE_LOCATION`.
Removed `parseLocationReference`, replaced by `parseLocationRef`.
Removed `stringifyLocationReference`, replaced by `stringifyLocationRef`.
Removed `Location` type which has been moved to `catalog-client`.
Removed `ENTITY_DEFAULT_NAMESPACE`, replaced by `DEFAULT_NAMESPACE`.
Removed `compareEntityToRef` compare using `stringifyEntityRef` instead.
Removed `JSONSchema` type which should be imported from `json-schema` package instead.
Removed utility methods: `entityHasChanges`, `generateEntityEtag`, `generateEntityUid`, `generateUpdatedEntity`.
Removed `ENTITY_META_GENERATED_FIELDS` and `EntityRefContext`.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
**DEPRECATION**: Deprecated the `RefreshIntervalFunction` and `createRandomRefreshInterval` in favour of the `ProcessingIntervalFunction` and `createRandomProcessingInterval` type and method respectively. Please migrate to use the new names.
**DEPRECATION**: Deprecated the `setRefreshInterval` and `setRefreshIntervalSeconds` methods on the `CatalogBuilder` for the new `setProcessingInterval` and `setProcessingIntervalSeconds` methods. Please migrate to use the new names.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Fix the support for custom defaultBranch values for Bitbucket Cloud at the `publish:bitbucket` scaffolder action.
+1 -1
View File
@@ -47,7 +47,7 @@
"resolutions": {
"**/@graphql-codegen/cli/**/ws": "^7.4.6"
},
"version": "0.69.0",
"version": "0.70.0",
"dependencies": {
"@manypkg/get-packages": "^1.1.3",
"@microsoft/api-documenter": "^7.15.0",
+14
View File
@@ -1,5 +1,19 @@
# @backstage/app-defaults
## 0.2.0
### Minor Changes
- af5eaa87f4: **BREAKING**: Removed deprecated `auth0AuthApiRef`, `oauth2ApiRef`, `samlAuthApiRef` and `oidcAuthApiRef` as these APIs are too generic to be useful. Instructions for how to migrate can be found at [https://backstage.io/docs/api/deprecations#generic-auth-api-refs](https://backstage.io/docs/api/deprecations#generic-auth-api-refs).
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.9.0
- @backstage/core-app-api@0.6.0
- @backstage/core-plugin-api@0.8.0
- @backstage/plugin-permission-react@0.3.3
## 0.1.9
### Patch Changes
+7 -7
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/app-defaults",
"description": "Provides the default wiring of a Backstage App",
"version": "0.1.9",
"version": "0.2.0",
"private": false,
"publishConfig": {
"access": "public",
@@ -33,10 +33,10 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/core-components": "^0.8.10",
"@backstage/core-app-api": "^0.5.4",
"@backstage/core-plugin-api": "^0.7.0",
"@backstage/plugin-permission-react": "^0.3.2",
"@backstage/core-components": "^0.9.0",
"@backstage/core-app-api": "^0.6.0",
"@backstage/core-plugin-api": "^0.8.0",
"@backstage/plugin-permission-react": "^0.3.3",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -46,8 +46,8 @@
"react": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.14.1",
"@backstage/test-utils": "^0.2.6",
"@backstage/cli": "^0.15.0",
"@backstage/test-utils": "^0.3.0",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^11.2.5",
"@types/jest": "^26.0.7",
+53
View File
@@ -1,5 +1,58 @@
# example-app
## 0.2.67
### Patch Changes
- Updated dependencies
- @backstage/catalog-model@0.12.0
- @backstage/core-components@0.9.0
- @backstage/plugin-search@0.7.2
- @backstage/plugin-techdocs@0.15.0
- @backstage/plugin-api-docs@0.8.1
- @backstage/plugin-catalog@0.9.1
- @backstage/plugin-catalog-graph@0.2.13
- @backstage/plugin-catalog-import@0.8.4
- @backstage/plugin-catalog-react@0.8.0
- @backstage/plugin-explore@0.3.32
- @backstage/plugin-rollbar@0.4.1
- @backstage/plugin-catalog-common@0.2.0
- @backstage/plugin-org@0.5.1
- @backstage/plugin-scaffolder@0.14.0
- @backstage/core-app-api@0.6.0
- @backstage/core-plugin-api@0.8.0
- @backstage/cli@0.15.0
- @backstage/app-defaults@0.2.0
- @backstage/plugin-user-settings@0.4.0
- @backstage/plugin-airbrake@0.3.1
- @backstage/search-common@0.3.0
- @backstage/plugin-jenkins@0.7.0
- @backstage/plugin-code-coverage@0.1.28
- @backstage/plugin-tech-insights@0.1.11
- @backstage/plugin-azure-devops@0.1.17
- @backstage/plugin-badges@0.2.25
- @backstage/plugin-circleci@0.3.1
- @backstage/plugin-cloudbuild@0.3.1
- @backstage/plugin-cost-insights@0.11.23
- @backstage/plugin-github-actions@0.5.1
- @backstage/plugin-gocd@0.1.7
- @backstage/plugin-home@0.4.17
- @backstage/plugin-kafka@0.3.1
- @backstage/plugin-kubernetes@0.6.1
- @backstage/plugin-lighthouse@0.3.1
- @backstage/plugin-newrelic-dashboard@0.1.9
- @backstage/plugin-pagerduty@0.3.28
- @backstage/plugin-sentry@0.3.39
- @backstage/plugin-todo@0.2.3
- @backstage/integration-react@0.1.24
- @backstage/plugin-apache-airflow@0.1.9
- @backstage/plugin-gcp-projects@0.3.20
- @backstage/plugin-graphiql@0.2.33
- @backstage/plugin-newrelic@0.3.19
- @backstage/plugin-shortcuts@0.2.2
- @backstage/plugin-tech-radar@0.5.8
- @backstage/plugin-permission-react@0.3.3
## 0.2.66
### Patch Changes
+50 -50
View File
@@ -1,59 +1,59 @@
{
"name": "example-app",
"version": "0.2.66",
"version": "0.2.67",
"private": true,
"backstage": {
"role": "frontend"
},
"bundled": true,
"dependencies": {
"@backstage/app-defaults": "^0.1.9",
"@backstage/catalog-model": "^0.11.0",
"@backstage/cli": "^0.14.1",
"@backstage/core-app-api": "^0.5.4",
"@backstage/core-components": "^0.8.10",
"@backstage/core-plugin-api": "^0.7.0",
"@backstage/integration-react": "^0.1.23",
"@backstage/plugin-airbrake": "^0.3.0",
"@backstage/plugin-api-docs": "^0.8.0",
"@backstage/plugin-azure-devops": "^0.1.16",
"@backstage/plugin-apache-airflow": "^0.1.8",
"@backstage/plugin-badges": "^0.2.24",
"@backstage/plugin-catalog": "^0.9.0",
"@backstage/plugin-catalog-common": "^0.1.4",
"@backstage/plugin-catalog-graph": "^0.2.12",
"@backstage/plugin-catalog-import": "^0.8.3",
"@backstage/plugin-catalog-react": "^0.7.0",
"@backstage/plugin-circleci": "^0.3.0",
"@backstage/plugin-cloudbuild": "^0.3.0",
"@backstage/plugin-code-coverage": "^0.1.27",
"@backstage/plugin-cost-insights": "^0.11.22",
"@backstage/plugin-explore": "^0.3.31",
"@backstage/plugin-gcp-projects": "^0.3.19",
"@backstage/plugin-github-actions": "^0.5.0",
"@backstage/plugin-gocd": "^0.1.6",
"@backstage/plugin-graphiql": "^0.2.32",
"@backstage/plugin-home": "^0.4.16",
"@backstage/plugin-jenkins": "^0.6.0",
"@backstage/plugin-kafka": "^0.3.0",
"@backstage/plugin-kubernetes": "^0.6.0",
"@backstage/plugin-lighthouse": "^0.3.0",
"@backstage/plugin-newrelic": "^0.3.18",
"@backstage/plugin-newrelic-dashboard": "^0.1.8",
"@backstage/plugin-org": "^0.5.0",
"@backstage/plugin-pagerduty": "0.3.27",
"@backstage/plugin-permission-react": "^0.3.2",
"@backstage/plugin-rollbar": "^0.4.0",
"@backstage/plugin-scaffolder": "^0.13.0",
"@backstage/plugin-search": "^0.7.1",
"@backstage/plugin-sentry": "^0.3.38",
"@backstage/plugin-shortcuts": "^0.2.1",
"@backstage/plugin-tech-radar": "^0.5.7",
"@backstage/plugin-techdocs": "^0.14.0",
"@backstage/plugin-todo": "^0.2.2",
"@backstage/plugin-user-settings": "^0.3.21",
"@backstage/search-common": "^0.2.4",
"@backstage/plugin-tech-insights": "^0.1.10",
"@backstage/app-defaults": "^0.2.0",
"@backstage/catalog-model": "^0.12.0",
"@backstage/cli": "^0.15.0",
"@backstage/core-app-api": "^0.6.0",
"@backstage/core-components": "^0.9.0",
"@backstage/core-plugin-api": "^0.8.0",
"@backstage/integration-react": "^0.1.24",
"@backstage/plugin-airbrake": "^0.3.1",
"@backstage/plugin-api-docs": "^0.8.1",
"@backstage/plugin-azure-devops": "^0.1.17",
"@backstage/plugin-apache-airflow": "^0.1.9",
"@backstage/plugin-badges": "^0.2.25",
"@backstage/plugin-catalog": "^0.9.1",
"@backstage/plugin-catalog-common": "^0.2.0",
"@backstage/plugin-catalog-graph": "^0.2.13",
"@backstage/plugin-catalog-import": "^0.8.4",
"@backstage/plugin-catalog-react": "^0.8.0",
"@backstage/plugin-circleci": "^0.3.1",
"@backstage/plugin-cloudbuild": "^0.3.1",
"@backstage/plugin-code-coverage": "^0.1.28",
"@backstage/plugin-cost-insights": "^0.11.23",
"@backstage/plugin-explore": "^0.3.32",
"@backstage/plugin-gcp-projects": "^0.3.20",
"@backstage/plugin-github-actions": "^0.5.1",
"@backstage/plugin-gocd": "^0.1.7",
"@backstage/plugin-graphiql": "^0.2.33",
"@backstage/plugin-home": "^0.4.17",
"@backstage/plugin-jenkins": "^0.7.0",
"@backstage/plugin-kafka": "^0.3.1",
"@backstage/plugin-kubernetes": "^0.6.1",
"@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-permission-react": "^0.3.3",
"@backstage/plugin-rollbar": "^0.4.1",
"@backstage/plugin-scaffolder": "^0.14.0",
"@backstage/plugin-search": "^0.7.2",
"@backstage/plugin-sentry": "^0.3.39",
"@backstage/plugin-shortcuts": "^0.2.2",
"@backstage/plugin-tech-radar": "^0.5.8",
"@backstage/plugin-techdocs": "^0.15.0",
"@backstage/plugin-todo": "^0.2.3",
"@backstage/plugin-user-settings": "^0.4.0",
"@backstage/search-common": "^0.3.0",
"@backstage/plugin-tech-insights": "^0.1.11",
"@backstage/theme": "^0.2.15",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
@@ -74,8 +74,8 @@
"zen-observable": "^0.8.15"
},
"devDependencies": {
"@backstage/plugin-permission-react": "^0.3.2",
"@backstage/test-utils": "^0.2.6",
"@backstage/plugin-permission-react": "^0.3.3",
"@backstage/test-utils": "^0.3.0",
"@rjsf/core": "^3.2.1",
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.10.1",
+22
View File
@@ -1,5 +1,27 @@
# @backstage/backend-common
## 0.12.0
### Minor Changes
- 9a0510144f: **BREAKING**: The connection string for `redis` cache store now requires a protocol prefix.
```diff
backend:
cache:
store: redis
- connection: user:pass@cache.example.com:6379
+ connection: redis://user:pass@cache.example.com:6379
```
### Patch Changes
- 0df6077ab5: DockerContainerRunner.runContainer now automatically removes the container when its execution terminates
- 34af86517c: ensure `apiBaseUrl` being set for Bitbucket integrations, replace hardcoded defaults
- b838717e92: Export FetchUrlReader to facilitate more flexible configuration of the backend.
- Updated dependencies
- @backstage/integration@0.8.0
## 0.11.0
### Minor Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/backend-common",
"description": "Common functionality library for Backstage backends",
"version": "0.11.0",
"version": "0.12.0",
"main": "src/index.ts",
"types": "src/index.ts",
"private": false,
@@ -38,7 +38,7 @@
"@backstage/config": "^0.1.15",
"@backstage/config-loader": "^0.9.6",
"@backstage/errors": "^0.2.2",
"@backstage/integration": "^0.7.5",
"@backstage/integration": "^0.8.0",
"@backstage/types": "^0.1.3",
"@google-cloud/storage": "^5.8.0",
"@manypkg/get-packages": "^1.1.3",
@@ -89,8 +89,8 @@
}
},
"devDependencies": {
"@backstage/cli": "^0.14.1",
"@backstage/test-utils": "^0.2.6",
"@backstage/cli": "^0.15.0",
"@backstage/test-utils": "^0.3.0",
"@types/archiver": "^5.1.0",
"@types/compression": "^1.7.0",
"@types/concat-stream": "^2.0.0",
+7
View File
@@ -1,5 +1,12 @@
# @backstage/backend-tasks
## 0.1.10
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.12.0
## 0.1.9
### Patch Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/backend-tasks",
"description": "Common distributed task management library for Backstage backends",
"version": "0.1.9",
"version": "0.1.10",
"main": "src/index.ts",
"types": "src/index.ts",
"private": false,
@@ -33,7 +33,7 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/backend-common": "^0.11.0",
"@backstage/backend-common": "^0.12.0",
"@backstage/config": "^0.1.15",
"@backstage/errors": "^0.2.2",
"@backstage/types": "^0.1.3",
@@ -47,8 +47,8 @@
"zod": "^3.9.5"
},
"devDependencies": {
"@backstage/backend-test-utils": "^0.1.19",
"@backstage/cli": "^0.14.1",
"@backstage/backend-test-utils": "^0.1.20",
"@backstage/cli": "^0.15.0",
"jest": "^26.0.1",
"wait-for-expect": "^3.0.2"
},
+8
View File
@@ -1,5 +1,13 @@
# @backstage/backend-test-utils
## 0.1.20
### Patch Changes
- Updated dependencies
- @backstage/backend-common@0.12.0
- @backstage/cli@0.15.0
## 0.1.19
### Patch Changes
+4 -4
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/backend-test-utils",
"description": "Test helpers library for Backstage backends",
"version": "0.1.19",
"version": "0.1.20",
"main": "src/index.ts",
"types": "src/index.ts",
"private": false,
@@ -34,8 +34,8 @@
"start": "backstage-cli package start"
},
"dependencies": {
"@backstage/backend-common": "^0.11.0",
"@backstage/cli": "^0.14.1",
"@backstage/backend-common": "^0.12.0",
"@backstage/cli": "^0.15.0",
"@backstage/config": "^0.1.15",
"@vscode/sqlite3": "^5.0.7",
"knex": "^1.0.2",
@@ -45,7 +45,7 @@
"uuid": "^8.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.14.1",
"@backstage/cli": "^0.15.0",
"jest": "^26.0.1"
},
"files": [
+39
View File
@@ -1,5 +1,44 @@
# example-backend
## 0.2.67
### Patch Changes
- Updated dependencies
- @backstage/catalog-model@0.12.0
- @backstage/catalog-client@0.8.0
- @backstage/plugin-catalog-backend@0.23.0
- @backstage/backend-common@0.12.0
- @backstage/plugin-scaffolder-backend@0.17.3
- @backstage/plugin-techdocs-backend@0.14.1
- @backstage/plugin-auth-backend@0.12.0
- @backstage/plugin-badges-backend@0.1.22
- @backstage/plugin-code-coverage-backend@0.1.26
- @backstage/plugin-jenkins-backend@0.1.17
- @backstage/plugin-todo-backend@0.1.25
- @backstage/integration@0.8.0
- @backstage/plugin-permission-common@0.5.2
- @backstage/plugin-permission-node@0.5.3
- @backstage/plugin-search-backend-node@0.5.0
- @backstage/plugin-search-backend-module-pg@0.3.0
- @backstage/plugin-search-backend-module-elasticsearch@0.1.0
- @backstage/plugin-tech-insights-backend@0.2.8
- example-app@0.2.67
- @backstage/plugin-auth-node@0.1.4
- @backstage/plugin-kafka-backend@0.2.21
- @backstage/plugin-kubernetes-backend@0.4.11
- @backstage/backend-tasks@0.1.10
- @backstage/plugin-app-backend@0.3.28
- @backstage/plugin-azure-devops-backend@0.3.7
- @backstage/plugin-graphql-backend@0.1.18
- @backstage/plugin-permission-backend@0.5.3
- @backstage/plugin-proxy-backend@0.2.22
- @backstage/plugin-rollbar-backend@0.1.25
- @backstage/plugin-scaffolder-backend-module-rails@0.3.3
- @backstage/plugin-search-backend@0.4.6
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.12
- @backstage/plugin-tech-insights-node@0.2.6
## 0.2.66
### Patch Changes
+34 -34
View File
@@ -1,6 +1,6 @@
{
"name": "example-backend",
"version": "0.2.66",
"version": "0.2.67",
"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.11.0",
"@backstage/backend-tasks": "^0.1.9",
"@backstage/catalog-client": "^0.7.2",
"@backstage/catalog-model": "^0.11.0",
"@backstage/backend-common": "^0.12.0",
"@backstage/backend-tasks": "^0.1.10",
"@backstage/catalog-client": "^0.8.0",
"@backstage/catalog-model": "^0.12.0",
"@backstage/config": "^0.1.15",
"@backstage/integration": "^0.7.5",
"@backstage/plugin-app-backend": "^0.3.27",
"@backstage/plugin-auth-backend": "^0.11.0",
"@backstage/plugin-auth-node": "^0.1.3",
"@backstage/plugin-azure-devops-backend": "^0.3.6",
"@backstage/plugin-badges-backend": "^0.1.21",
"@backstage/plugin-catalog-backend": "^0.22.0",
"@backstage/plugin-code-coverage-backend": "^0.1.25",
"@backstage/plugin-graphql-backend": "^0.1.17",
"@backstage/plugin-jenkins-backend": "^0.1.16",
"@backstage/plugin-kubernetes-backend": "^0.4.10",
"@backstage/plugin-kafka-backend": "^0.2.20",
"@backstage/plugin-permission-backend": "^0.5.2",
"@backstage/plugin-permission-common": "^0.5.1",
"@backstage/plugin-permission-node": "^0.5.2",
"@backstage/plugin-proxy-backend": "^0.2.21",
"@backstage/plugin-rollbar-backend": "^0.1.24",
"@backstage/plugin-scaffolder-backend": "^0.17.0",
"@backstage/plugin-scaffolder-backend-module-rails": "^0.3.2",
"@backstage/plugin-search-backend": "^0.4.5",
"@backstage/plugin-search-backend-node": "^0.4.7",
"@backstage/plugin-search-backend-module-elasticsearch": "^0.0.10",
"@backstage/plugin-search-backend-module-pg": "^0.2.9",
"@backstage/plugin-techdocs-backend": "^0.14.0",
"@backstage/plugin-tech-insights-backend": "^0.2.7",
"@backstage/plugin-tech-insights-node": "^0.2.5",
"@backstage/plugin-tech-insights-backend-module-jsonfc": "^0.1.11",
"@backstage/plugin-todo-backend": "^0.1.24",
"@backstage/integration": "^0.8.0",
"@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-backend": "^0.3.7",
"@backstage/plugin-badges-backend": "^0.1.22",
"@backstage/plugin-catalog-backend": "^0.23.0",
"@backstage/plugin-code-coverage-backend": "^0.1.26",
"@backstage/plugin-graphql-backend": "^0.1.18",
"@backstage/plugin-jenkins-backend": "^0.1.17",
"@backstage/plugin-kubernetes-backend": "^0.4.11",
"@backstage/plugin-kafka-backend": "^0.2.21",
"@backstage/plugin-permission-backend": "^0.5.3",
"@backstage/plugin-permission-common": "^0.5.2",
"@backstage/plugin-permission-node": "^0.5.3",
"@backstage/plugin-proxy-backend": "^0.2.22",
"@backstage/plugin-rollbar-backend": "^0.1.25",
"@backstage/plugin-scaffolder-backend": "^0.17.3",
"@backstage/plugin-scaffolder-backend-module-rails": "^0.3.3",
"@backstage/plugin-search-backend": "^0.4.6",
"@backstage/plugin-search-backend-node": "^0.5.0",
"@backstage/plugin-search-backend-module-elasticsearch": "^0.1.0",
"@backstage/plugin-search-backend-module-pg": "^0.3.0",
"@backstage/plugin-techdocs-backend": "^0.14.1",
"@backstage/plugin-tech-insights-backend": "^0.2.8",
"@backstage/plugin-tech-insights-node": "^0.2.6",
"@backstage/plugin-tech-insights-backend-module-jsonfc": "^0.1.12",
"@backstage/plugin-todo-backend": "^0.1.25",
"@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.14.1",
"@backstage/cli": "^0.15.0",
"@types/dockerode": "^3.3.0",
"@types/express": "^4.17.6",
"@types/express-serve-static-core": "^4.17.5"
+18
View File
@@ -1,5 +1,23 @@
# @backstage/catalog-client
## 0.8.0
### Minor Changes
- bb2ba5f10d: **BREAKING**: Removed the old deprecated request/response types:
- `CatalogEntitiesRequest` - please use `GetEntitiesRequest` instead
- `CatalogEntityAncestorsRequest` - please use `GetEntityAncestorsRequest` instead
- `CatalogEntityAncestorsResponse` - please use `GetEntityAncestorsResponse` instead
- `CatalogListResponse` - please use `GetEntitiesResponse` instead
### Patch Changes
- a52f69987a: **DEPRECATION**: Deprecated `getEntityByName` from `CatalogApi` and added `getEntityByRef` instead, which accepts both string and compound ref forms.
- 36aa63022b: Use `CompoundEntityRef` instead of `EntityName`, and `getCompoundEntityRef` instead of `getEntityName`, from `@backstage/catalog-model`.
- Updated dependencies
- @backstage/catalog-model@0.12.0
## 0.7.2
### Patch Changes
+3 -3
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/catalog-client",
"description": "An isomorphic client for the catalog backend",
"version": "0.7.2",
"version": "0.8.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.11.0",
"@backstage/catalog-model": "^0.12.0",
"@backstage/errors": "^0.2.2",
"cross-fetch": "^3.1.5"
},
"devDependencies": {
"@backstage/cli": "^0.14.1",
"@backstage/cli": "^0.15.0",
"@types/jest": "^26.0.7",
"msw": "^0.35.0"
},

Some files were not shown because too many files have changed in this diff Show More