Merge pull request #18652 from backstage/changeset-release/master
Version Packages
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-search': patch
|
||||
---
|
||||
|
||||
Fixed bug in "View Full Results" link of Search Modal that did not navigate to the full results page.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-devtools': patch
|
||||
---
|
||||
|
||||
Allow specifying custom title for `DevToolsLayout`
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-kubernetes-backend': patch
|
||||
---
|
||||
|
||||
Replace reference to deprecated import
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-badges-backend': patch
|
||||
---
|
||||
|
||||
Added support for the [new backend system](https://backstage.io/docs/backend-system/)
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
Fixed the `--alwaysYarnPack` flag on the`backstage-cli build-workspace` command.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Post-create message - added instruction to run `yarn install` when app was created with `--skip-install`
|
||||
@@ -1,76 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-backend-module-confluence-to-markdown': minor
|
||||
---
|
||||
|
||||
**BREAKING**
|
||||
|
||||
This change updates the configuration of the confluence-to-markdown action so that it does not conflict with other confluence plguins. Currently many plugins make use of the `confluence.auth` configuration. However, only the confluence-to-markdown action uses the `confluence.auth` as a string. This change updates it so that `confluence.auth` is an object.
|
||||
|
||||
## Required Changes
|
||||
|
||||
Below are examples for updating `bearer`, `basic`, and `userpass` implementations.
|
||||
|
||||
For `bearer`:
|
||||
Before:
|
||||
|
||||
```yaml
|
||||
confluence:
|
||||
baseUrl: 'https://confluence.example.com'
|
||||
auth: 'bearer'
|
||||
token: '${CONFLUENCE_TOKEN}'
|
||||
```
|
||||
|
||||
After:
|
||||
|
||||
```yaml
|
||||
confluence:
|
||||
baseUrl: 'https://confluence.example.com'
|
||||
auth:
|
||||
type: 'bearer'
|
||||
token: '${CONFLUENCE_TOKEN}'
|
||||
```
|
||||
|
||||
For `basic`:
|
||||
|
||||
Before:
|
||||
|
||||
```yaml
|
||||
confluence:
|
||||
baseUrl: 'https://confluence.example.com'
|
||||
auth: 'basic'
|
||||
token: '${CONFLUENCE_TOKEN}'
|
||||
email: 'example@company.org'
|
||||
```
|
||||
|
||||
After:
|
||||
|
||||
```yaml
|
||||
confluence:
|
||||
baseUrl: 'https://confluence.example.com'
|
||||
auth:
|
||||
type: 'basic'
|
||||
token: '${CONFLUENCE_TOKEN}'
|
||||
email: 'example@company.org'
|
||||
```
|
||||
|
||||
For `userpass`
|
||||
Before:
|
||||
|
||||
```yaml
|
||||
confluence:
|
||||
baseUrl: 'https://confluence.example.com'
|
||||
auth: 'userpass'
|
||||
username: 'your-username'
|
||||
password: 'your-password'
|
||||
```
|
||||
|
||||
After:
|
||||
|
||||
```yaml
|
||||
confluence:
|
||||
baseUrl: 'https://confluence.example.com'
|
||||
auth:
|
||||
type: 'userpass'
|
||||
username: 'your-username'
|
||||
password: 'your-password'
|
||||
```
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/theme': patch
|
||||
---
|
||||
|
||||
Overwrite `PaletteOptions` & `ThemeOptions` type to allow use of `createTheme` from `@backstage/theme` as well as `@material-ui/core/styles` with the same type. Also replaced the default `CSSBaseline` with v4 instead of v5 for better backwards compatibility for now.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Bumped create-app version.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
add cy.\*\*.should to cypress eslintrc
|
||||
@@ -1,10 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-unprocessed-entities': patch
|
||||
---
|
||||
|
||||
The Catalog Unprocessed Entities plugin can now be integrated as a tab within the DevTools plugin
|
||||
|
||||
- Added an export for `UnprocessedEntitiesContent`
|
||||
- Updated the `README` with images of the features
|
||||
- Adjusted the styles to fill in the available space
|
||||
- Set the table page size to 20 as 40 was causing errors in the browser console
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/errors': patch
|
||||
---
|
||||
|
||||
Set `this.name` in all error classes that extend `CustomErrorBase` class to their actual name
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-stackstorm': patch
|
||||
---
|
||||
|
||||
Add props to StackstormHome for Header Customization
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-react': patch
|
||||
---
|
||||
|
||||
Made markdown description theme-able
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-airbrake-backend': patch
|
||||
---
|
||||
|
||||
Added support for the [new backend system](https://backstage.io/docs/backend-system/)
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-airbrake': patch
|
||||
---
|
||||
|
||||
Added documentation for the [new backend system](https://backstage.io/docs/backend-system/)
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-github': patch
|
||||
---
|
||||
|
||||
fixed event handler to respect configured organization
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-unprocessed-entities': patch
|
||||
---
|
||||
|
||||
Export some types and API items. This allows people to call the API from different places with the ApiRef, as well
|
||||
as completely customize the client if required. Check the [README.md](https://github.com/backstage/backstage/blob/master/plugins/catalog-unprocessed-entities/README.md) to
|
||||
note what needs to be added in order to use the new `catalogUnprocessedEntitiesApiRef` exported function.
|
||||
@@ -1,8 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
'@backstage/cli-node': patch
|
||||
'@backstage/plugin-devtools-backend': patch
|
||||
'@backstage/plugin-tech-insights-backend': patch
|
||||
---
|
||||
|
||||
semver upgrade to 7.5.3
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-kubernetes-backend': patch
|
||||
---
|
||||
|
||||
Add WebSocket support to `kubernetes-backend` proxy.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-devtools': patch
|
||||
---
|
||||
|
||||
Updated the `README` with instructions on how to integrate the Catalog Unprocessed Entities plugin as a tab within DevTools
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-lighthouse': patch
|
||||
---
|
||||
|
||||
Added more verbose components (used to render `null`) when no audits for a website corresponding to the provided url were found.
|
||||
Added `Create New Audit` button for the `AuditListForEntity` component used by `EntityLighthouseContent` and `EmbeddedRouter`.
|
||||
Removed error alert from `errorApi` if error was due to no audits being found for a website (empty database query result).
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-common': patch
|
||||
---
|
||||
|
||||
use `Readable.from` to explicitly convert the `buffer` from `node-fetch` to a `Readable` stream
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-import': patch
|
||||
---
|
||||
|
||||
Add a "View Component" button as the primary CTA after registering a new component using a link to catalog-info.yaml
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/theme': patch
|
||||
---
|
||||
|
||||
Applying the modified `theme.spacing` method only to overrides instead of replacing it in the whole theme.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-sonarqube': patch
|
||||
'@backstage/plugin-sonarqube-backend': patch
|
||||
---
|
||||
|
||||
Made default config optional
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-dynatrace': patch
|
||||
---
|
||||
|
||||
updated the link that the "View Entity in Dynatrace" redirects the user to.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-backend': patch
|
||||
---
|
||||
|
||||
Indicate the name of the option that is being deprecated in task deprecation warning.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-unprocessed': patch
|
||||
'@backstage/plugin-catalog-unprocessed-entities': patch
|
||||
---
|
||||
|
||||
Fix and improve documentation for the unprocessed entities modules.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-kubernetes-backend': patch
|
||||
---
|
||||
|
||||
Proxy endpoint supports cluster URLs with subpath
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-azure-devops-backend': patch
|
||||
'@backstage/plugin-devtools-backend': patch
|
||||
'@backstage/plugin-linguist-backend': patch
|
||||
---
|
||||
|
||||
Added alpha support for the [new backend system](https://backstage.io/docs/backend-system/)
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-react': minor
|
||||
'@backstage/plugin-catalog': minor
|
||||
---
|
||||
|
||||
Tables which use `EntityTableProps` now have an additional `tableOptions` prop which can be used to provide additional table options to these components.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-home': patch
|
||||
---
|
||||
|
||||
fix: update plugin home dependency for `@rjsf/material-ui` to `@rjsf/material-ui-v5`
|
||||
@@ -1,296 +0,0 @@
|
||||
{
|
||||
"mode": "exit",
|
||||
"tag": "next",
|
||||
"initialVersions": {
|
||||
"example-app": "0.2.84",
|
||||
"@backstage/app-defaults": "1.4.0",
|
||||
"example-backend": "0.2.84",
|
||||
"@backstage/backend-app-api": "0.4.4",
|
||||
"@backstage/backend-common": "0.19.0",
|
||||
"@backstage/backend-defaults": "0.1.11",
|
||||
"@backstage/backend-dev-utils": "0.1.1",
|
||||
"example-backend-next": "0.0.12",
|
||||
"@backstage/backend-openapi-utils": "0.0.2",
|
||||
"@backstage/backend-plugin-api": "0.5.3",
|
||||
"@backstage/backend-tasks": "0.5.3",
|
||||
"@backstage/backend-test-utils": "0.1.38",
|
||||
"@backstage/catalog-client": "1.4.2",
|
||||
"@backstage/catalog-model": "1.4.0",
|
||||
"@backstage/cli": "0.22.8",
|
||||
"@backstage/cli-common": "0.1.12",
|
||||
"@backstage/cli-node": "0.1.1",
|
||||
"@backstage/codemods": "0.1.44",
|
||||
"@backstage/config": "1.0.8",
|
||||
"@backstage/config-loader": "1.3.1",
|
||||
"@backstage/core-app-api": "1.8.1",
|
||||
"@backstage/core-components": "0.13.2",
|
||||
"@backstage/core-plugin-api": "1.5.2",
|
||||
"@backstage/create-app": "0.5.2",
|
||||
"@backstage/dev-utils": "1.0.16",
|
||||
"e2e-test": "0.2.4",
|
||||
"@backstage/errors": "1.2.0",
|
||||
"@backstage/eslint-plugin": "0.1.3",
|
||||
"@backstage/integration": "1.5.0",
|
||||
"@backstage/integration-aws-node": "0.1.4",
|
||||
"@backstage/integration-react": "1.1.14",
|
||||
"@backstage/release-manifests": "0.0.9",
|
||||
"@backstage/repo-tools": "0.3.1",
|
||||
"@techdocs/cli": "1.4.3",
|
||||
"techdocs-cli-embedded-app": "0.2.83",
|
||||
"@backstage/test-utils": "1.4.0",
|
||||
"@backstage/theme": "0.4.0",
|
||||
"@backstage/types": "1.1.0",
|
||||
"@backstage/version-bridge": "1.0.4",
|
||||
"@backstage/plugin-adr": "0.6.2",
|
||||
"@backstage/plugin-adr-backend": "0.3.4",
|
||||
"@backstage/plugin-adr-common": "0.2.10",
|
||||
"@backstage/plugin-airbrake": "0.3.19",
|
||||
"@backstage/plugin-airbrake-backend": "0.2.19",
|
||||
"@backstage/plugin-allure": "0.1.35",
|
||||
"@backstage/plugin-analytics-module-ga": "0.1.30",
|
||||
"@backstage/plugin-analytics-module-ga4": "0.1.1",
|
||||
"@backstage/plugin-apache-airflow": "0.2.12",
|
||||
"@backstage/plugin-api-docs": "0.9.5",
|
||||
"@backstage/plugin-api-docs-module-protoc-gen-doc": "0.1.2",
|
||||
"@backstage/plugin-apollo-explorer": "0.1.12",
|
||||
"@backstage/plugin-app-backend": "0.3.46",
|
||||
"@backstage/plugin-auth-backend": "0.18.4",
|
||||
"@backstage/plugin-auth-node": "0.2.15",
|
||||
"@backstage/plugin-azure-devops": "0.3.1",
|
||||
"@backstage/plugin-azure-devops-backend": "0.3.25",
|
||||
"@backstage/plugin-azure-devops-common": "0.3.0",
|
||||
"@backstage/plugin-azure-sites": "0.1.8",
|
||||
"@backstage/plugin-azure-sites-backend": "0.1.8",
|
||||
"@backstage/plugin-azure-sites-common": "0.1.0",
|
||||
"@backstage/plugin-badges": "0.2.43",
|
||||
"@backstage/plugin-badges-backend": "0.2.1",
|
||||
"@backstage/plugin-bazaar": "0.2.10",
|
||||
"@backstage/plugin-bazaar-backend": "0.2.9",
|
||||
"@backstage/plugin-bitbucket-cloud-common": "0.2.7",
|
||||
"@backstage/plugin-bitrise": "0.1.46",
|
||||
"@backstage/plugin-catalog": "1.11.2",
|
||||
"@backstage/plugin-catalog-backend": "1.10.0",
|
||||
"@backstage/plugin-catalog-backend-module-aws": "0.2.1",
|
||||
"@backstage/plugin-catalog-backend-module-azure": "0.1.17",
|
||||
"@backstage/plugin-catalog-backend-module-bitbucket": "0.2.13",
|
||||
"@backstage/plugin-catalog-backend-module-bitbucket-cloud": "0.1.13",
|
||||
"@backstage/plugin-catalog-backend-module-bitbucket-server": "0.1.11",
|
||||
"@backstage/plugin-catalog-backend-module-gerrit": "0.1.14",
|
||||
"@backstage/plugin-catalog-backend-module-github": "0.3.1",
|
||||
"@backstage/plugin-catalog-backend-module-gitlab": "0.2.2",
|
||||
"@backstage/plugin-catalog-backend-module-incremental-ingestion": "0.3.3",
|
||||
"@backstage/plugin-catalog-backend-module-ldap": "0.5.13",
|
||||
"@backstage/plugin-catalog-backend-module-msgraph": "0.5.5",
|
||||
"@backstage/plugin-catalog-backend-module-openapi": "0.1.12",
|
||||
"@backstage/plugin-catalog-backend-module-puppetdb": "0.1.3",
|
||||
"@backstage/plugin-catalog-backend-module-unprocessed": "0.1.0",
|
||||
"@backstage/plugin-catalog-common": "1.0.14",
|
||||
"@internal/plugin-catalog-customized": "0.0.11",
|
||||
"@backstage/plugin-catalog-graph": "0.2.31",
|
||||
"@backstage/plugin-catalog-graphql": "0.3.21",
|
||||
"@backstage/plugin-catalog-import": "0.9.9",
|
||||
"@backstage/plugin-catalog-node": "1.3.7",
|
||||
"@backstage/plugin-catalog-react": "1.7.0",
|
||||
"@backstage/plugin-catalog-unprocessed-entities": "0.1.0",
|
||||
"@backstage/plugin-cicd-statistics": "0.1.21",
|
||||
"@backstage/plugin-cicd-statistics-module-gitlab": "0.1.15",
|
||||
"@backstage/plugin-circleci": "0.3.19",
|
||||
"@backstage/plugin-cloudbuild": "0.3.19",
|
||||
"@backstage/plugin-code-climate": "0.1.19",
|
||||
"@backstage/plugin-code-coverage": "0.2.12",
|
||||
"@backstage/plugin-code-coverage-backend": "0.2.12",
|
||||
"@backstage/plugin-codescene": "0.1.14",
|
||||
"@backstage/plugin-config-schema": "0.1.42",
|
||||
"@backstage/plugin-cost-insights": "0.12.8",
|
||||
"@backstage/plugin-cost-insights-common": "0.1.1",
|
||||
"@backstage/plugin-devtools": "0.1.1",
|
||||
"@backstage/plugin-devtools-backend": "0.1.1",
|
||||
"@backstage/plugin-devtools-common": "0.1.1",
|
||||
"@backstage/plugin-dynatrace": "6.0.0",
|
||||
"@backstage/plugin-entity-feedback": "0.2.2",
|
||||
"@backstage/plugin-entity-feedback-backend": "0.1.4",
|
||||
"@backstage/plugin-entity-feedback-common": "0.1.1",
|
||||
"@backstage/plugin-entity-validation": "0.1.4",
|
||||
"@backstage/plugin-events-backend": "0.2.7",
|
||||
"@backstage/plugin-events-backend-module-aws-sqs": "0.2.1",
|
||||
"@backstage/plugin-events-backend-module-azure": "0.1.8",
|
||||
"@backstage/plugin-events-backend-module-bitbucket-cloud": "0.1.8",
|
||||
"@backstage/plugin-events-backend-module-gerrit": "0.1.8",
|
||||
"@backstage/plugin-events-backend-module-github": "0.1.8",
|
||||
"@backstage/plugin-events-backend-module-gitlab": "0.1.8",
|
||||
"@backstage/plugin-events-backend-test-utils": "0.1.8",
|
||||
"@backstage/plugin-events-node": "0.2.7",
|
||||
"@internal/plugin-todo-list": "1.0.14",
|
||||
"@internal/plugin-todo-list-backend": "1.0.14",
|
||||
"@internal/plugin-todo-list-common": "1.0.11",
|
||||
"@backstage/plugin-explore": "0.4.5",
|
||||
"@backstage/plugin-explore-backend": "0.0.8",
|
||||
"@backstage/plugin-explore-common": "0.0.1",
|
||||
"@backstage/plugin-explore-react": "0.0.29",
|
||||
"@backstage/plugin-firehydrant": "0.2.3",
|
||||
"@backstage/plugin-fossa": "0.2.51",
|
||||
"@backstage/plugin-gcalendar": "0.3.15",
|
||||
"@backstage/plugin-gcp-projects": "0.3.38",
|
||||
"@backstage/plugin-git-release-manager": "0.3.32",
|
||||
"@backstage/plugin-github-actions": "0.6.0",
|
||||
"@backstage/plugin-github-deployments": "0.1.50",
|
||||
"@backstage/plugin-github-issues": "0.2.8",
|
||||
"@backstage/plugin-github-pull-requests-board": "0.1.13",
|
||||
"@backstage/plugin-gitops-profiles": "0.3.37",
|
||||
"@backstage/plugin-gocd": "0.1.25",
|
||||
"@backstage/plugin-graphiql": "0.2.51",
|
||||
"@backstage/plugin-graphql-backend": "0.1.36",
|
||||
"@backstage/plugin-graphql-voyager": "0.1.4",
|
||||
"@backstage/plugin-home": "0.5.3",
|
||||
"@backstage/plugin-home-react": "0.1.0",
|
||||
"@backstage/plugin-ilert": "0.2.8",
|
||||
"@backstage/plugin-jenkins": "0.8.1",
|
||||
"@backstage/plugin-jenkins-backend": "0.2.1",
|
||||
"@backstage/plugin-jenkins-common": "0.1.16",
|
||||
"@backstage/plugin-kafka": "0.3.19",
|
||||
"@backstage/plugin-kafka-backend": "0.2.39",
|
||||
"@backstage/plugin-kubernetes": "0.9.2",
|
||||
"@backstage/plugin-kubernetes-backend": "0.11.1",
|
||||
"@backstage/plugin-kubernetes-common": "0.6.4",
|
||||
"@backstage/plugin-lighthouse": "0.4.4",
|
||||
"@backstage/plugin-lighthouse-backend": "0.2.2",
|
||||
"@backstage/plugin-lighthouse-common": "0.1.2",
|
||||
"@backstage/plugin-linguist": "0.1.4",
|
||||
"@backstage/plugin-linguist-backend": "0.3.0",
|
||||
"@backstage/plugin-linguist-common": "0.1.0",
|
||||
"@backstage/plugin-microsoft-calendar": "0.1.4",
|
||||
"@backstage/plugin-newrelic": "0.3.37",
|
||||
"@backstage/plugin-newrelic-dashboard": "0.2.12",
|
||||
"@backstage/plugin-nomad": "0.1.0",
|
||||
"@backstage/plugin-nomad-backend": "0.1.0",
|
||||
"@backstage/plugin-octopus-deploy": "0.2.1",
|
||||
"@backstage/plugin-org": "0.6.9",
|
||||
"@backstage/plugin-org-react": "0.1.8",
|
||||
"@backstage/plugin-pagerduty": "0.6.0",
|
||||
"@backstage/plugin-periskop": "0.1.17",
|
||||
"@backstage/plugin-periskop-backend": "0.1.17",
|
||||
"@backstage/plugin-permission-backend": "0.5.21",
|
||||
"@backstage/plugin-permission-common": "0.7.6",
|
||||
"@backstage/plugin-permission-node": "0.7.9",
|
||||
"@backstage/plugin-permission-react": "0.4.13",
|
||||
"@backstage/plugin-playlist": "0.1.11",
|
||||
"@backstage/plugin-playlist-backend": "0.3.2",
|
||||
"@backstage/plugin-playlist-common": "0.1.7",
|
||||
"@backstage/plugin-proxy-backend": "0.2.40",
|
||||
"@backstage/plugin-puppetdb": "0.1.2",
|
||||
"@backstage/plugin-rollbar": "0.4.19",
|
||||
"@backstage/plugin-rollbar-backend": "0.1.43",
|
||||
"@backstage/plugin-scaffolder": "1.14.0",
|
||||
"@backstage/plugin-scaffolder-backend": "1.15.0",
|
||||
"@backstage/plugin-scaffolder-backend-module-confluence-to-markdown": "0.1.3",
|
||||
"@backstage/plugin-scaffolder-backend-module-cookiecutter": "0.2.22",
|
||||
"@backstage/plugin-scaffolder-backend-module-gitlab": "0.2.1",
|
||||
"@backstage/plugin-scaffolder-backend-module-rails": "0.4.15",
|
||||
"@backstage/plugin-scaffolder-backend-module-sentry": "0.1.6",
|
||||
"@backstage/plugin-scaffolder-backend-module-yeoman": "0.2.19",
|
||||
"@backstage/plugin-scaffolder-common": "1.3.1",
|
||||
"@backstage/plugin-scaffolder-node": "0.1.4",
|
||||
"@backstage/plugin-scaffolder-react": "1.5.0",
|
||||
"@backstage/plugin-search": "1.3.2",
|
||||
"@backstage/plugin-search-backend": "1.3.2",
|
||||
"@backstage/plugin-search-backend-module-catalog": "0.1.2",
|
||||
"@backstage/plugin-search-backend-module-elasticsearch": "1.3.1",
|
||||
"@backstage/plugin-search-backend-module-explore": "0.1.2",
|
||||
"@backstage/plugin-search-backend-module-pg": "0.5.7",
|
||||
"@backstage/plugin-search-backend-module-techdocs": "0.1.2",
|
||||
"@backstage/plugin-search-backend-node": "1.2.2",
|
||||
"@backstage/plugin-search-common": "1.2.4",
|
||||
"@backstage/plugin-search-react": "1.6.2",
|
||||
"@backstage/plugin-sentry": "0.5.4",
|
||||
"@backstage/plugin-shortcuts": "0.3.11",
|
||||
"@backstage/plugin-sonarqube": "0.7.0",
|
||||
"@backstage/plugin-sonarqube-backend": "0.2.0",
|
||||
"@backstage/plugin-sonarqube-react": "0.1.6",
|
||||
"@backstage/plugin-splunk-on-call": "0.4.8",
|
||||
"@backstage/plugin-stack-overflow": "0.1.17",
|
||||
"@backstage/plugin-stack-overflow-backend": "0.2.2",
|
||||
"@backstage/plugin-stackstorm": "0.1.3",
|
||||
"@backstage/plugin-tech-insights": "0.3.11",
|
||||
"@backstage/plugin-tech-insights-backend": "0.5.12",
|
||||
"@backstage/plugin-tech-insights-backend-module-jsonfc": "0.1.30",
|
||||
"@backstage/plugin-tech-insights-common": "0.2.11",
|
||||
"@backstage/plugin-tech-insights-node": "0.4.4",
|
||||
"@backstage/plugin-tech-radar": "0.6.5",
|
||||
"@backstage/plugin-techdocs": "1.6.4",
|
||||
"@backstage/plugin-techdocs-addons-test-utils": "1.0.15",
|
||||
"@backstage/plugin-techdocs-backend": "1.6.3",
|
||||
"@backstage/plugin-techdocs-module-addons-contrib": "1.0.14",
|
||||
"@backstage/plugin-techdocs-node": "1.7.2",
|
||||
"@backstage/plugin-techdocs-react": "1.1.7",
|
||||
"@backstage/plugin-todo": "0.2.21",
|
||||
"@backstage/plugin-todo-backend": "0.1.43",
|
||||
"@backstage/plugin-user-settings": "0.7.4",
|
||||
"@backstage/plugin-user-settings-backend": "0.1.10",
|
||||
"@backstage/plugin-vault": "0.1.13",
|
||||
"@backstage/plugin-vault-backend": "0.3.2",
|
||||
"@backstage/plugin-xcmetrics": "0.2.39"
|
||||
},
|
||||
"changesets": [
|
||||
"afraid-windows-rule",
|
||||
"angry-phones-wash",
|
||||
"beige-actors-melt",
|
||||
"chatty-buttons-deny",
|
||||
"cli-always-yarn-pack-freal",
|
||||
"cold-hounds-cheat",
|
||||
"cool-beans-tap",
|
||||
"cool-starfishes-love",
|
||||
"create-app-1687867724",
|
||||
"cuddly-guests-hide",
|
||||
"cyan-shirts-deny",
|
||||
"dirty-wasps-draw",
|
||||
"dull-onions-remember",
|
||||
"fluffy-frogs-change",
|
||||
"fluffy-readers-own",
|
||||
"forty-kids-do",
|
||||
"fresh-bears-yawn",
|
||||
"green-otters-wait",
|
||||
"heavy-jeans-refuse",
|
||||
"khaki-rocks-do",
|
||||
"lazy-frogs-destroy",
|
||||
"lemon-cycles-enjoy",
|
||||
"many-ants-poke",
|
||||
"mean-bobcats-taste",
|
||||
"mighty-pandas-deny",
|
||||
"mighty-shoes-refuse",
|
||||
"neat-spiders-glow",
|
||||
"old-rules-give",
|
||||
"polite-shrimps-confess",
|
||||
"popular-crabs-deny",
|
||||
"popular-icons-doubt",
|
||||
"popular-kangaroos-accept",
|
||||
"pretty-apes-know",
|
||||
"pretty-falcons-drive",
|
||||
"purple-feet-approve",
|
||||
"purple-starfishes-design",
|
||||
"red-cherries-draw",
|
||||
"renovate-46eac46",
|
||||
"renovate-739552f",
|
||||
"renovate-f316d5e",
|
||||
"rotten-colts-decide",
|
||||
"seven-pillows-hear",
|
||||
"shiny-meals-chew",
|
||||
"short-rabbits-roll",
|
||||
"silent-oranges-explode",
|
||||
"silly-chairs-protect",
|
||||
"silver-balloons-sniff",
|
||||
"sixty-humans-rescue",
|
||||
"sour-humans-begin",
|
||||
"strange-baboons-look",
|
||||
"sweet-cameras-kick",
|
||||
"sweet-pots-rescue",
|
||||
"tame-carpets-smell",
|
||||
"tender-clouds-promise",
|
||||
"tender-oranges-change",
|
||||
"thin-countries-battle",
|
||||
"tough-flowers-suffer",
|
||||
"twenty-seas-float",
|
||||
"wicked-ears-scream",
|
||||
"yellow-schools-relax",
|
||||
"young-frogs-burn"
|
||||
]
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-incremental-ingestion': patch
|
||||
---
|
||||
|
||||
Update readme and instructions
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-adr-backend': patch
|
||||
---
|
||||
|
||||
Added support for the [new backend system](https://backstage.io/docs/backend-system/)
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-lighthouse-backend': patch
|
||||
---
|
||||
|
||||
Added support for the [new backend system](https://backstage.io/docs/backend-system/)
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/core-components': patch
|
||||
---
|
||||
|
||||
The `Skip to content` button on click focuses on the main article tag and skips the `h1` tag. Users are not able to identify which page they are on currently. Now it's changed the behaviour of the button and focuses on the `h1` tag on the page.
|
||||
@@ -1,8 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-github': patch
|
||||
'@backstage/core-components': patch
|
||||
'@backstage/plugin-playlist': patch
|
||||
'@backstage/plugin-nomad': patch
|
||||
---
|
||||
|
||||
Break some internal circular import chains
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/core-components': patch
|
||||
---
|
||||
|
||||
Parse unicode characters in name for avatar component
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-kubernetes': patch
|
||||
---
|
||||
|
||||
Make pod drawer headings consistent
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
'@backstage/plugin-scaffolder-backend': patch
|
||||
---
|
||||
|
||||
Updated dependency `esbuild` to `^0.18.0`.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/codemods': patch
|
||||
---
|
||||
|
||||
Updated dependency `jscodeshift` to `^0.15.0`.
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/core-components': patch
|
||||
'@backstage/plugin-codescene': patch
|
||||
'@backstage/plugin-sonarqube': patch
|
||||
---
|
||||
|
||||
Updated dependency `rc-progress` to `3.4.2`.
|
||||
@@ -1,38 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-incremental-ingestion': minor
|
||||
---
|
||||
|
||||
**BREAKING** Allow incremental event handlers to be async; Force event handler
|
||||
to indicate if it made a change. Instead of returning `null` or `undefined` from an event
|
||||
handler to indicate no-oop, instead return the value { type: "ignored" }.
|
||||
|
||||
**before**
|
||||
|
||||
```javascript
|
||||
import { createDelta, shouldIgnore } from "./my-delta-creater";
|
||||
|
||||
eventHandler: {
|
||||
onEvent(params) {
|
||||
if (shouldIgnore(params)) {
|
||||
return;
|
||||
}
|
||||
return createDelta(params);
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
**after**
|
||||
|
||||
```javascript
|
||||
import { createDelta, shouldIgnore } from "./my-delta-creater";
|
||||
|
||||
eventHandler: {
|
||||
async onEvent(params) {
|
||||
if (shouldIgnore(params) {
|
||||
return { type: "ignored" };
|
||||
}
|
||||
// code to create delta can now be async if needed
|
||||
return await createDelta(params);
|
||||
}
|
||||
}
|
||||
```
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/theme': patch
|
||||
---
|
||||
|
||||
You can now customize the typography of your theme by passing in your own custom typography defaults
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-unprocessed-entities': patch
|
||||
---
|
||||
|
||||
Corrected the installation instructions.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/core-app-api': minor
|
||||
---
|
||||
|
||||
add login in popup options to config popup width and height
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-kubernetes-backend': patch
|
||||
---
|
||||
|
||||
Fixed a bug where the proxy endpoint would error when used in combination with
|
||||
a local kubectl proxy process and a token-based auth strategy on-cluster.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-entity-feedback-backend': patch
|
||||
---
|
||||
|
||||
Added support for the new backend system
|
||||
@@ -1,8 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-home-react': patch
|
||||
'@backstage/plugin-home': patch
|
||||
---
|
||||
|
||||
Add possibility to customize the settings widget for different
|
||||
properties by using the `uiSchema` provided by the json-schema.
|
||||
More information here: https://rjsf-team.github.io/react-jsonschema-form/docs/api-reference/uiSchema
|
||||
@@ -1,12 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-cost-insights': patch
|
||||
'@backstage/plugin-user-settings': patch
|
||||
'@backstage/theme': patch
|
||||
'@backstage/test-utils': patch
|
||||
'@backstage/core-plugin-api': patch
|
||||
'@backstage/core-components': patch
|
||||
'@backstage/core-app-api': patch
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
Fixing MUI / Material UI references
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-unprocessed-entities': patch
|
||||
---
|
||||
|
||||
Fixed spacing for success message
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Enable specifying an external application template when using the `create-app` CLI command.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
'@backstage/plugin-catalog': patch
|
||||
---
|
||||
|
||||
Display a warning alert if relations are defined, which don't exist in the catalog.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/theme': patch
|
||||
---
|
||||
|
||||
Removed the hard coded color and background color in the `MuiChip` overrides so that they work better with custom themes
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend': minor
|
||||
'@backstage/plugin-catalog-node': minor
|
||||
---
|
||||
|
||||
Support placeholder resolvers in the CatalogPlugin, also moves `PlaceholderResolver` and related types from `@backstage/plugin-catalog-backend` to `@backstage/plugin-catalog-node`.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-home': patch
|
||||
---
|
||||
|
||||
Fix missing column breakpoints in `CustomHompageGrid`
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Updated included Dockerfile to include `g++`. Also updated the comments to note that some of the dependencies are also needed by isolated-vm
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/core-components': patch
|
||||
---
|
||||
|
||||
Remove zooming in restrictions in the catalog graph
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-kubernetes': patch
|
||||
---
|
||||
|
||||
Changed Google cloud auth scope to read-only.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-auth-backend': patch
|
||||
---
|
||||
|
||||
Support for Token Endpoint Auth Method for OIDC Provider
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-adr-common': patch
|
||||
'@backstage/plugin-adr': patch
|
||||
---
|
||||
|
||||
fixed error with date parsing.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/core-plugin-api': patch
|
||||
---
|
||||
|
||||
Change `IconComponent` type to be compatible with Material UI v5 icons.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-kubernetes-backend': patch
|
||||
---
|
||||
|
||||
Update readme with a valid link to k8s documentation
|
||||
@@ -1,8 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-unprocessed-entities': patch
|
||||
'@backstage/plugin-devtools': patch
|
||||
'@backstage/plugin-puppetdb': patch
|
||||
'@backstage/plugin-nomad': patch
|
||||
---
|
||||
|
||||
update some peer dependencies to silence yarn install
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/core-components': patch
|
||||
---
|
||||
|
||||
Fix keyboard navigation & focus highlight on Select component.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-backend-module-gitlab': patch
|
||||
---
|
||||
|
||||
Fixed a bug in `gitlab:group:ensureExists` where `repos` was always set as the root group.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/theme': patch
|
||||
---
|
||||
|
||||
Override the spacing to a v5 compliant method
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-unprocessed-entities': patch
|
||||
---
|
||||
|
||||
install command points to correct package name
|
||||
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -47,7 +47,7 @@
|
||||
"@types/react": "^17",
|
||||
"@types/react-dom": "^17"
|
||||
},
|
||||
"version": "1.16.0-next.2",
|
||||
"version": "1.16.0",
|
||||
"dependencies": {
|
||||
"@backstage/errors": "workspace:^",
|
||||
"@manypkg/get-packages": "^1.1.3"
|
||||
|
||||
@@ -1,5 +1,16 @@
|
||||
# @backstage/app-defaults
|
||||
|
||||
## 1.4.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/theme@0.4.1
|
||||
- @backstage/core-components@0.13.3
|
||||
- @backstage/core-app-api@1.9.0
|
||||
- @backstage/core-plugin-api@1.5.3
|
||||
- @backstage/plugin-permission-react@0.4.14
|
||||
|
||||
## 1.4.1-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/app-defaults",
|
||||
"description": "Provides the default wiring of a Backstage App",
|
||||
"version": "1.4.1-next.2",
|
||||
"version": "1.4.1",
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
"main": "dist/index.esm.js",
|
||||
|
||||
@@ -1,5 +1,80 @@
|
||||
# example-app
|
||||
|
||||
## 0.2.85
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-search@1.3.3
|
||||
- @backstage/plugin-devtools@0.1.2
|
||||
- @backstage/cli@0.22.9
|
||||
- @backstage/theme@0.4.1
|
||||
- @backstage/plugin-catalog-unprocessed-entities@0.1.1
|
||||
- @backstage/plugin-stackstorm@0.1.4
|
||||
- @backstage/plugin-scaffolder-react@1.5.1
|
||||
- @backstage/plugin-airbrake@0.3.20
|
||||
- @backstage/plugin-lighthouse@0.4.5
|
||||
- @backstage/plugin-catalog-import@0.9.10
|
||||
- @backstage/plugin-dynatrace@7.0.0
|
||||
- @backstage/plugin-catalog-react@1.8.0
|
||||
- @backstage/plugin-home@0.5.4
|
||||
- @backstage/core-components@0.13.3
|
||||
- @backstage/plugin-playlist@0.1.12
|
||||
- @backstage/plugin-nomad@0.1.1
|
||||
- @backstage/plugin-kubernetes@0.9.3
|
||||
- @backstage/core-app-api@1.9.0
|
||||
- @backstage/plugin-cost-insights@0.12.9
|
||||
- @backstage/plugin-user-settings@0.7.5
|
||||
- @backstage/core-plugin-api@1.5.3
|
||||
- @backstage/plugin-adr@0.6.3
|
||||
- @backstage/plugin-puppetdb@0.1.3
|
||||
- @backstage/app-defaults@1.4.1
|
||||
- @backstage/catalog-model@1.4.1
|
||||
- @backstage/config@1.0.8
|
||||
- @backstage/integration-react@1.1.15
|
||||
- @backstage/plugin-apache-airflow@0.2.13
|
||||
- @backstage/plugin-api-docs@0.9.6
|
||||
- @backstage/plugin-azure-devops@0.3.2
|
||||
- @backstage/plugin-azure-sites@0.1.9
|
||||
- @backstage/plugin-badges@0.2.44
|
||||
- @backstage/plugin-catalog-common@1.0.15
|
||||
- @backstage/plugin-catalog-graph@0.2.32
|
||||
- @backstage/plugin-circleci@0.3.20
|
||||
- @backstage/plugin-cloudbuild@0.3.20
|
||||
- @backstage/plugin-code-coverage@0.2.13
|
||||
- @backstage/plugin-entity-feedback@0.2.3
|
||||
- @backstage/plugin-explore@0.4.6
|
||||
- @backstage/plugin-gcalendar@0.3.16
|
||||
- @backstage/plugin-gcp-projects@0.3.39
|
||||
- @backstage/plugin-github-actions@0.6.1
|
||||
- @backstage/plugin-gocd@0.1.26
|
||||
- @backstage/plugin-graphiql@0.2.52
|
||||
- @backstage/plugin-jenkins@0.8.2
|
||||
- @backstage/plugin-kafka@0.3.20
|
||||
- @backstage/plugin-linguist@0.1.5
|
||||
- @backstage/plugin-linguist-common@0.1.0
|
||||
- @backstage/plugin-microsoft-calendar@0.1.5
|
||||
- @backstage/plugin-newrelic@0.3.38
|
||||
- @backstage/plugin-newrelic-dashboard@0.2.13
|
||||
- @backstage/plugin-octopus-deploy@0.2.2
|
||||
- @backstage/plugin-org@0.6.10
|
||||
- @backstage/plugin-pagerduty@0.6.1
|
||||
- @backstage/plugin-permission-react@0.4.14
|
||||
- @backstage/plugin-rollbar@0.4.20
|
||||
- @backstage/plugin-scaffolder@1.14.1
|
||||
- @backstage/plugin-search-common@1.2.5
|
||||
- @backstage/plugin-search-react@1.6.3
|
||||
- @backstage/plugin-sentry@0.5.5
|
||||
- @backstage/plugin-shortcuts@0.3.12
|
||||
- @backstage/plugin-stack-overflow@0.1.18
|
||||
- @backstage/plugin-tech-insights@0.3.12
|
||||
- @backstage/plugin-tech-radar@0.6.6
|
||||
- @backstage/plugin-techdocs@1.6.5
|
||||
- @backstage/plugin-techdocs-module-addons-contrib@1.0.15
|
||||
- @backstage/plugin-techdocs-react@1.1.8
|
||||
- @backstage/plugin-todo@0.2.22
|
||||
- @internal/plugin-catalog-customized@0.0.12
|
||||
|
||||
## 0.2.85-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "example-app",
|
||||
"version": "0.2.85-next.2",
|
||||
"version": "0.2.85",
|
||||
"private": true,
|
||||
"backstage": {
|
||||
"role": "frontend"
|
||||
|
||||
@@ -1,5 +1,21 @@
|
||||
# @backstage/backend-app-api
|
||||
|
||||
## 0.4.5
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/errors@1.2.1
|
||||
- @backstage/backend-common@0.19.1
|
||||
- @backstage/backend-plugin-api@0.5.4
|
||||
- @backstage/backend-tasks@0.5.4
|
||||
- @backstage/cli-common@0.1.12
|
||||
- @backstage/config@1.0.8
|
||||
- @backstage/config-loader@1.3.2
|
||||
- @backstage/types@1.1.0
|
||||
- @backstage/plugin-auth-node@0.2.16
|
||||
- @backstage/plugin-permission-node@0.7.10
|
||||
|
||||
## 0.4.5-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/backend-app-api",
|
||||
"description": "Core API used by Backstage backend apps",
|
||||
"version": "0.4.5-next.0",
|
||||
"version": "0.4.5",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"publishConfig": {
|
||||
|
||||
@@ -1,5 +1,22 @@
|
||||
# @backstage/backend-common
|
||||
|
||||
## 0.19.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 787ddcc5ef99: use `Readable.from` to explicitly convert the `buffer` from `node-fetch` to a `Readable` stream
|
||||
- Updated dependencies
|
||||
- @backstage/errors@1.2.1
|
||||
- @backstage/backend-app-api@0.4.5
|
||||
- @backstage/backend-dev-utils@0.1.1
|
||||
- @backstage/backend-plugin-api@0.5.4
|
||||
- @backstage/cli-common@0.1.12
|
||||
- @backstage/config@1.0.8
|
||||
- @backstage/config-loader@1.3.2
|
||||
- @backstage/integration@1.5.1
|
||||
- @backstage/integration-aws-node@0.1.5
|
||||
- @backstage/types@1.1.0
|
||||
|
||||
## 0.19.1-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/backend-common",
|
||||
"description": "Common functionality library for Backstage backends",
|
||||
"version": "0.19.1-next.0",
|
||||
"version": "0.19.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"publishConfig": {
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/backend-defaults
|
||||
|
||||
## 0.1.12
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/backend-common@0.19.1
|
||||
- @backstage/backend-app-api@0.4.5
|
||||
- @backstage/backend-plugin-api@0.5.4
|
||||
|
||||
## 0.1.12-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/backend-defaults",
|
||||
"description": "Backend defaults used by Backstage backend apps",
|
||||
"version": "0.1.12-next.0",
|
||||
"version": "0.1.12",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"publishConfig": {
|
||||
|
||||
@@ -1,5 +1,36 @@
|
||||
# example-backend-next
|
||||
|
||||
## 0.0.13
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-kubernetes-backend@0.11.2
|
||||
- @backstage/plugin-badges-backend@0.2.2
|
||||
- @backstage/plugin-devtools-backend@0.1.2
|
||||
- @backstage/plugin-scaffolder-backend@1.15.1
|
||||
- @backstage/plugin-catalog-backend-module-unprocessed@0.1.1
|
||||
- @backstage/plugin-azure-devops-backend@0.3.26
|
||||
- @backstage/plugin-linguist-backend@0.3.1
|
||||
- @backstage/plugin-adr-backend@0.3.5
|
||||
- @backstage/plugin-lighthouse-backend@0.2.3
|
||||
- @backstage/plugin-entity-feedback-backend@0.1.5
|
||||
- @backstage/plugin-catalog-backend@1.11.0
|
||||
- @backstage/backend-defaults@0.1.12
|
||||
- @backstage/backend-tasks@0.5.4
|
||||
- @backstage/plugin-app-backend@0.3.47
|
||||
- @backstage/plugin-auth-node@0.2.16
|
||||
- @backstage/plugin-permission-backend@0.5.22
|
||||
- @backstage/plugin-permission-common@0.7.7
|
||||
- @backstage/plugin-permission-node@0.7.10
|
||||
- @backstage/plugin-search-backend@1.3.3
|
||||
- @backstage/plugin-search-backend-module-catalog@0.1.3
|
||||
- @backstage/plugin-search-backend-module-explore@0.1.3
|
||||
- @backstage/plugin-search-backend-module-techdocs@0.1.3
|
||||
- @backstage/plugin-search-backend-node@1.2.3
|
||||
- @backstage/plugin-techdocs-backend@1.6.4
|
||||
- @backstage/plugin-todo-backend@0.1.44
|
||||
|
||||
## 0.0.13-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "example-backend-next",
|
||||
"version": "0.0.13-next.2",
|
||||
"version": "0.0.13",
|
||||
"main": "dist/index.cjs.js",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
|
||||
@@ -1,5 +1,16 @@
|
||||
# @backstage/backend-plugin-api
|
||||
|
||||
## 0.5.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/backend-tasks@0.5.4
|
||||
- @backstage/config@1.0.8
|
||||
- @backstage/types@1.1.0
|
||||
- @backstage/plugin-auth-node@0.2.16
|
||||
- @backstage/plugin-permission-common@0.7.7
|
||||
|
||||
## 0.5.4-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/backend-plugin-api",
|
||||
"description": "Core API used by Backstage backend plugins",
|
||||
"version": "0.5.4-next.0",
|
||||
"version": "0.5.4",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"publishConfig": {
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/backend-tasks
|
||||
|
||||
## 0.5.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/errors@1.2.1
|
||||
- @backstage/backend-common@0.19.1
|
||||
- @backstage/config@1.0.8
|
||||
- @backstage/types@1.1.0
|
||||
|
||||
## 0.5.4-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/backend-tasks",
|
||||
"description": "Common distributed task management library for Backstage backends",
|
||||
"version": "0.5.4-next.0",
|
||||
"version": "0.5.4",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"publishConfig": {
|
||||
|
||||
@@ -1,5 +1,17 @@
|
||||
# @backstage/backend-test-utils
|
||||
|
||||
## 0.1.39
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/backend-common@0.19.1
|
||||
- @backstage/backend-app-api@0.4.5
|
||||
- @backstage/backend-plugin-api@0.5.4
|
||||
- @backstage/config@1.0.8
|
||||
- @backstage/types@1.1.0
|
||||
- @backstage/plugin-auth-node@0.2.16
|
||||
|
||||
## 0.1.39-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/backend-test-utils",
|
||||
"description": "Test helpers library for Backstage backends",
|
||||
"version": "0.1.39-next.0",
|
||||
"version": "0.1.39",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"publishConfig": {
|
||||
|
||||
@@ -1,5 +1,60 @@
|
||||
# example-backend
|
||||
|
||||
## 0.2.85
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/plugin-kubernetes-backend@0.11.2
|
||||
- @backstage/plugin-badges-backend@0.2.2
|
||||
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.0
|
||||
- @backstage/plugin-devtools-backend@0.1.2
|
||||
- @backstage/plugin-tech-insights-backend@0.5.13
|
||||
- @backstage/backend-common@0.19.1
|
||||
- @backstage/plugin-scaffolder-backend@1.15.1
|
||||
- @backstage/plugin-catalog-backend-module-unprocessed@0.1.1
|
||||
- @backstage/plugin-azure-devops-backend@0.3.26
|
||||
- @backstage/plugin-linguist-backend@0.3.1
|
||||
- @backstage/plugin-adr-backend@0.3.5
|
||||
- @backstage/plugin-lighthouse-backend@0.2.3
|
||||
- @backstage/plugin-entity-feedback-backend@0.1.5
|
||||
- @backstage/plugin-catalog-backend@1.11.0
|
||||
- @backstage/plugin-catalog-node@1.4.0
|
||||
- @backstage/plugin-auth-backend@0.18.5
|
||||
- example-app@0.2.85
|
||||
- @backstage/backend-tasks@0.5.4
|
||||
- @backstage/catalog-client@1.4.3
|
||||
- @backstage/catalog-model@1.4.1
|
||||
- @backstage/config@1.0.8
|
||||
- @backstage/integration@1.5.1
|
||||
- @backstage/plugin-app-backend@0.3.47
|
||||
- @backstage/plugin-auth-node@0.2.16
|
||||
- @backstage/plugin-azure-sites-backend@0.1.9
|
||||
- @backstage/plugin-code-coverage-backend@0.2.13
|
||||
- @backstage/plugin-events-backend@0.2.8
|
||||
- @backstage/plugin-events-node@0.2.8
|
||||
- @backstage/plugin-explore-backend@0.0.9
|
||||
- @backstage/plugin-graphql-backend@0.1.37
|
||||
- @backstage/plugin-jenkins-backend@0.2.2
|
||||
- @backstage/plugin-kafka-backend@0.2.40
|
||||
- @backstage/plugin-nomad-backend@0.1.1
|
||||
- @backstage/plugin-permission-backend@0.5.22
|
||||
- @backstage/plugin-permission-common@0.7.7
|
||||
- @backstage/plugin-permission-node@0.7.10
|
||||
- @backstage/plugin-playlist-backend@0.3.3
|
||||
- @backstage/plugin-proxy-backend@0.2.41
|
||||
- @backstage/plugin-rollbar-backend@0.1.44
|
||||
- @backstage/plugin-scaffolder-backend-module-rails@0.4.16
|
||||
- @backstage/plugin-search-backend@1.3.3
|
||||
- @backstage/plugin-search-backend-module-elasticsearch@1.3.2
|
||||
- @backstage/plugin-search-backend-module-pg@0.5.8
|
||||
- @backstage/plugin-search-backend-node@1.2.3
|
||||
- @backstage/plugin-search-common@1.2.5
|
||||
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.31
|
||||
- @backstage/plugin-tech-insights-node@0.4.5
|
||||
- @backstage/plugin-techdocs-backend@1.6.4
|
||||
- @backstage/plugin-todo-backend@0.1.44
|
||||
|
||||
## 0.2.85-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "example-backend",
|
||||
"version": "0.2.85-next.2",
|
||||
"version": "0.2.85",
|
||||
"main": "dist/index.cjs.js",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
|
||||
@@ -1,5 +1,13 @@
|
||||
# @backstage/catalog-client
|
||||
|
||||
## 1.4.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/errors@1.2.1
|
||||
- @backstage/catalog-model@1.4.1
|
||||
|
||||
## 1.4.3-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/catalog-client",
|
||||
"description": "An isomorphic client for the catalog backend",
|
||||
"version": "1.4.3-next.0",
|
||||
"version": "1.4.3",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/catalog-model
|
||||
|
||||
## 1.4.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- Updated dependencies
|
||||
- @backstage/errors@1.2.1
|
||||
- @backstage/config@1.0.8
|
||||
- @backstage/types@1.1.0
|
||||
|
||||
## 1.4.1-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/catalog-model",
|
||||
"description": "Types and validators that help describe the model of a Backstage Catalog",
|
||||
"version": "1.4.1-next.0",
|
||||
"version": "1.4.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
|
||||
@@ -1,5 +1,15 @@
|
||||
# @backstage/cli-node
|
||||
|
||||
## 0.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 4edd1ef71453: semver upgrade to 7.5.3
|
||||
- Updated dependencies
|
||||
- @backstage/errors@1.2.1
|
||||
- @backstage/cli-common@0.1.12
|
||||
- @backstage/types@1.1.0
|
||||
|
||||
## 0.1.2-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/cli-node",
|
||||
"description": "Node.js library for Backstage CLIs",
|
||||
"version": "0.1.2-next.1",
|
||||
"version": "0.1.2",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
|
||||
@@ -1,5 +1,25 @@
|
||||
# @backstage/cli
|
||||
|
||||
## 0.22.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 6adb6f41711a: Fixed the `--alwaysYarnPack` flag on the`backstage-cli build-workspace` command.
|
||||
- 4edd1ef71453: semver upgrade to 7.5.3
|
||||
- ff45cb559e49: Updated dependency `esbuild` to `^0.18.0`.
|
||||
- 8174cf4c0edf: Fixing MUI / Material UI references
|
||||
- Updated dependencies
|
||||
- @backstage/errors@1.2.1
|
||||
- @backstage/cli-node@0.1.2
|
||||
- @backstage/catalog-model@1.4.1
|
||||
- @backstage/cli-common@0.1.12
|
||||
- @backstage/config@1.0.8
|
||||
- @backstage/config-loader@1.3.2
|
||||
- @backstage/eslint-plugin@0.1.3
|
||||
- @backstage/integration@1.5.1
|
||||
- @backstage/release-manifests@0.0.9
|
||||
- @backstage/types@1.1.0
|
||||
|
||||
## 0.22.9-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/cli",
|
||||
"description": "CLI for developing Backstage plugins and apps",
|
||||
"version": "0.22.9-next.1",
|
||||
"version": "0.22.9",
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user