@backstage/plugin-scaffolder-common 2.0.0-next.2 → 2.0.1-next.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,33 @@
1
1
  # @backstage/plugin-scaffolder-common
2
2
 
3
+ ## 2.0.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/errors@1.3.0-next.0
9
+ - @backstage/integration@2.0.1-next.0
10
+ - @backstage/catalog-model@1.7.8-next.0
11
+ - @backstage/plugin-permission-common@0.9.8-next.0
12
+
13
+ ## 2.0.0
14
+
15
+ ### Major Changes
16
+
17
+ - 527cf88: **BREAKING** Removed deprecated `bitbucket` integration from being registered in the `ScaffolderClient`. Use the `bitbucketCloud` or `bitbucketServer` integrations instead.
18
+
19
+ ### Minor Changes
20
+
21
+ - f598909: **BREAKING PRODUCERS**: Made `retry`, `listTasks`, `listTemplatingExtensions`, `dryRun`, and `autocomplete` required methods on the `ScaffolderApi` interface. Implementations of `ScaffolderApi` must now provide these methods.
22
+ - e8736ea: Added an optional `secrets` field to `TemplateEntityV1beta3` for configuring secrets validation. The schema for validating secrets is defined under `secrets.schema` as a JSON Schema object.
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies
27
+ - @backstage/integration@2.0.0
28
+ - @backstage/plugin-permission-common@0.9.7
29
+ - @backstage/catalog-model@1.7.7
30
+
3
31
  ## 2.0.0-next.2
4
32
 
5
33
  ### Minor Changes
package/dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { EntityMeta, UserEntity, KindValidator, Entity } from '@backstage/catalog-model';
1
+ import { EntityMeta, UserEntity, Entity, KindValidator } from '@backstage/catalog-model';
2
2
  import { JsonObject, JsonArray, JsonValue, Observable } from '@backstage/types';
3
3
  import { ScmIntegrationRegistry } from '@backstage/integration';
4
4
  import { JSONSchema7 } from 'json-schema';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-common",
3
- "version": "2.0.0-next.2",
3
+ "version": "2.0.1-next.0",
4
4
  "description": "Common functionalities for the scaffolder, to be shared between scaffolder and scaffolder-backend plugin",
5
5
  "backstage": {
6
6
  "role": "common-library",
@@ -70,10 +70,10 @@
70
70
  "test": "backstage-cli package test"
71
71
  },
72
72
  "dependencies": {
73
- "@backstage/catalog-model": "1.7.6",
74
- "@backstage/errors": "1.2.7",
75
- "@backstage/integration": "2.0.0-next.2",
76
- "@backstage/plugin-permission-common": "0.9.6",
73
+ "@backstage/catalog-model": "1.7.8-next.0",
74
+ "@backstage/errors": "1.3.0-next.0",
75
+ "@backstage/integration": "2.0.1-next.0",
76
+ "@backstage/plugin-permission-common": "0.9.8-next.0",
77
77
  "@backstage/types": "1.2.2",
78
78
  "@microsoft/fetch-event-source": "^2.0.1",
79
79
  "@types/json-schema": "^7.0.9",
@@ -83,8 +83,8 @@
83
83
  "zen-observable": "^0.10.0"
84
84
  },
85
85
  "devDependencies": {
86
- "@backstage/cli": "0.36.0-next.2",
87
- "@backstage/test-utils": "1.7.16-next.0",
86
+ "@backstage/cli": "0.36.1-next.2",
87
+ "@backstage/test-utils": "1.7.17-next.2",
88
88
  "msw": "^1.0.0"
89
89
  },
90
90
  "module": "./dist/index.esm.js"