Version Packages
This commit is contained in:
@@ -1,5 +1,56 @@
|
||||
# @backstage/plugin-scaffolder-backend
|
||||
|
||||
## 1.6.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- ea2eee9e6a: Add the option for a homepage when using the `github:publish` action
|
||||
- 8872cc735d: Fixed a bug in plugin-scaffolder-backend where it ignores the skip migration database options.
|
||||
|
||||
To use this new implementation you need to create the instance of `DatabaseTaskStore` using the `PluginDatabaseManager` instead of `Knex`;
|
||||
|
||||
```
|
||||
import { DatabaseManager, getRootLogger, loadBackendConfig } from '@backstage/backend-common';
|
||||
import { DatabaseTaskStore } from '@backstage/plugin-scaffolder-backend';
|
||||
|
||||
const config = await loadBackendConfig({ argv: process.argv, logger: getRootLogger() });
|
||||
const databaseManager = DatabaseManager.fromConfig(config, { migrations: { skip: true } });
|
||||
const databaseTaskStore = await DatabaseTaskStore.create(databaseManager);
|
||||
```
|
||||
|
||||
- 7db9613671: Added `projectId` for gitlab projects to be displayed in the `gitlab:publish` output
|
||||
- d1f7ba58e3: Added `repositoryId` output when create a repository in Azure
|
||||
- 1ff817b3f0: add entity metadata to the template info type
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- eadf56bbbf: Bump `git-url-parse` version to `^13.0.0`
|
||||
- de8ee4afe3: Provide information about the user into scaffolder template action's context
|
||||
- 096631e571: Added support for handling broken symlinks within the scaffolder backend. This is intended for templates that may hold a symlink that is invalid at build time but valid within the destination repo.
|
||||
- 0d8d650e32: Applied the fix from version 1.5.1 of this package, which is part of the v1.5.1 release of Backstage.
|
||||
- 667d917488: Updated dependency `msw` to `^0.47.0`.
|
||||
- 87ec2ba4d6: Updated dependency `msw` to `^0.46.0`.
|
||||
- bf5e9030eb: Updated dependency `msw` to `^0.45.0`.
|
||||
- 2df9955f4a: Removed the depreacated `publish:file` action, use the template editor to test templates instead.
|
||||
- 0ecc9a6784: Properly set `ctx.isDryRun` when running actions in dry run mode. Also always log action inputs for debugging purposes when running in dry run mode.
|
||||
- 6b9f6c0a4d: Added alpha `scaffolderPlugin` to be used with experimental backend system.
|
||||
- 83c037cd46: Disable octokit throttling in publish:github:pull-request
|
||||
- 2cbd533426: Uptake the `IdentityApi` change to use `getIdentity` instead of `authenticate` for retrieving the logged in users identity.
|
||||
- ef9ab322de: Minor API signatures cleanup
|
||||
- 50467bc15b: The number of task workers used to execute templates now default to 3, rather than 1.
|
||||
- Updated dependencies
|
||||
- @backstage/backend-plugin-api@0.1.2
|
||||
- @backstage/backend-common@0.15.1
|
||||
- @backstage/plugin-auth-node@0.2.5
|
||||
- @backstage/plugin-catalog-node@1.1.0
|
||||
- @backstage/integration@1.3.1
|
||||
- @backstage/plugin-catalog-backend@1.4.0
|
||||
- @backstage/catalog-client@1.1.0
|
||||
- @backstage/catalog-model@1.1.1
|
||||
- @backstage/config@1.0.2
|
||||
- @backstage/errors@1.1.1
|
||||
- @backstage/plugin-scaffolder-common@1.2.0
|
||||
|
||||
## 1.6.0-next.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/plugin-scaffolder-backend",
|
||||
"description": "The Backstage backend plugin that helps you create new things",
|
||||
"version": "1.6.0-next.3",
|
||||
"version": "1.6.0",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -34,17 +34,17 @@
|
||||
"build:assets": "node scripts/build-nunjucks.js"
|
||||
},
|
||||
"dependencies": {
|
||||
"@backstage/backend-common": "^0.15.1-next.3",
|
||||
"@backstage/backend-plugin-api": "^0.1.2-next.2",
|
||||
"@backstage/catalog-client": "^1.1.0-next.2",
|
||||
"@backstage/catalog-model": "^1.1.1-next.0",
|
||||
"@backstage/config": "^1.0.2-next.0",
|
||||
"@backstage/errors": "^1.1.1-next.0",
|
||||
"@backstage/integration": "^1.3.1-next.2",
|
||||
"@backstage/plugin-auth-node": "^0.2.5-next.3",
|
||||
"@backstage/plugin-catalog-backend": "^1.4.0-next.3",
|
||||
"@backstage/plugin-catalog-node": "^1.1.0-next.2",
|
||||
"@backstage/plugin-scaffolder-common": "^1.2.0-next.1",
|
||||
"@backstage/backend-common": "^0.15.1",
|
||||
"@backstage/backend-plugin-api": "^0.1.2",
|
||||
"@backstage/catalog-client": "^1.1.0",
|
||||
"@backstage/catalog-model": "^1.1.1",
|
||||
"@backstage/config": "^1.0.2",
|
||||
"@backstage/errors": "^1.1.1",
|
||||
"@backstage/integration": "^1.3.1",
|
||||
"@backstage/plugin-auth-node": "^0.2.5",
|
||||
"@backstage/plugin-catalog-backend": "^1.4.0",
|
||||
"@backstage/plugin-catalog-node": "^1.1.0",
|
||||
"@backstage/plugin-scaffolder-common": "^1.2.0",
|
||||
"@backstage/types": "^1.0.0",
|
||||
"@gitbeaker/core": "^35.6.0",
|
||||
"@gitbeaker/node": "^35.1.0",
|
||||
@@ -79,8 +79,8 @@
|
||||
"zod": "^3.11.6"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/backend-test-utils": "^0.1.28-next.3",
|
||||
"@backstage/cli": "^0.19.0-next.3",
|
||||
"@backstage/backend-test-utils": "^0.1.28",
|
||||
"@backstage/cli": "^0.19.0",
|
||||
"@types/command-exists": "^1.2.0",
|
||||
"@types/fs-extra": "^9.0.1",
|
||||
"@types/git-url-parse": "^9.0.0",
|
||||
|
||||
Reference in New Issue
Block a user