Version Packages (next)

This commit is contained in:
github-actions[bot]
2022-09-06 13:11:16 +00:00
parent fc3f9cea9c
commit f275697d2b
236 changed files with 4502 additions and 1411 deletions
+21
View File
@@ -1,5 +1,26 @@
# @backstage/cli
## 0.19.0-next.2
### Patch Changes
- 8d886dd33e: The `create-plugin` and `create` commands have both been deprecated in favor of a new `new` command. The `new` command is functionally identical to `create`, but the new naming makes it possible to use as yarn script, since `yarn create` is reserved.
- 548053614a: Deprecated the `plugin:diff` command. If you wish to keep running similar checks in your project we recommend using bespoke scripts. A useful utility for such scripts is `@manypkg/get-packages`, which helps you enumerate all packages in a monorepo.
- 513b4dd4ef: The `versions:bump` command will now update dependency ranges in `package.json`, even if the new version is within the current range.
- 221e951298: Added support for custom certificate for webpack dev server.
- 934cc34563: Avoid validating the backend configuration schema when loading static configuration for building the frontend.
- 3d4f5daadf: Remove use of deprecated trimLeft/trimRight
- 742cb4f3d7: Fix issue when using `.jsx` files inside tests
- e7600bdb04: Tweaked workspace packaging to not rewrite existing `package.json` files.
- 1cb078ad9f: Fixed a misconfiguration where all modules where treated as ESM by the React Refresh plugin for Webpack.
- 1fd4f2746f: Removed internal dependencies on Lerna. It is now no longer necessary to have Lerna installed in a project to use all features of the Backstage CLI.
- 667d917488: Updated dependency `msw` to `^0.47.0`.
- 87ec2ba4d6: Updated dependency `msw` to `^0.46.0`.
- 68c2697077: Added a new `backstage-cli repo clean` command that cleans the repo root and runs the clean script in all packages.
- Updated dependencies
- @backstage/config-loader@1.1.4-next.1
- @backstage/release-manifests@0.0.6-next.1
## 0.19.0-next.1
### Minor Changes
+8 -8
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/cli",
"description": "CLI for developing Backstage plugins and apps",
"version": "0.19.0-next.1",
"version": "0.19.0-next.2",
"publishConfig": {
"access": "public"
},
@@ -32,9 +32,9 @@
"dependencies": {
"@backstage/cli-common": "^0.1.9",
"@backstage/config": "^1.0.1",
"@backstage/config-loader": "^1.1.4-next.0",
"@backstage/config-loader": "^1.1.4-next.1",
"@backstage/errors": "^1.1.0",
"@backstage/release-manifests": "^0.0.6-next.0",
"@backstage/release-manifests": "^0.0.6-next.1",
"@backstage/types": "^1.0.0",
"@manypkg/get-packages": "^1.1.3",
"@octokit/request": "^6.0.0",
@@ -128,13 +128,13 @@
"zod": "^3.11.6"
},
"devDependencies": {
"@backstage/backend-common": "^0.15.1-next.1",
"@backstage/backend-common": "^0.15.1-next.2",
"@backstage/config": "^1.0.1",
"@backstage/core-app-api": "^1.1.0-next.1",
"@backstage/core-components": "^0.11.1-next.1",
"@backstage/core-plugin-api": "^1.0.6-next.1",
"@backstage/core-app-api": "^1.1.0-next.2",
"@backstage/core-components": "^0.11.1-next.2",
"@backstage/core-plugin-api": "^1.0.6-next.2",
"@backstage/dev-utils": "^1.0.6-next.1",
"@backstage/test-utils": "^1.2.0-next.1",
"@backstage/test-utils": "^1.2.0-next.2",
"@backstage/theme": "^0.2.16",
"@types/diff": "^5.0.0",
"@types/express": "^4.17.6",