@backstage/plugin-catalog-backend-module-scaffolder-entity-model 0.2.0-next.2 → 0.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @backstage/plugin-catalog-backend-module-scaffolder-entity-model
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - d425fc4: **BREAKING**: The return values from `createBackendPlugin`, `createBackendModule`, and `createServiceFactory` are now simply `BackendFeature` and `ServiceFactory`, instead of the previously deprecated form of a function that returns them. For this reason, `createServiceFactory` also no longer accepts the callback form where you provide direct options to the service. This also affects all `coreServices.*` service refs.
8
+
9
+ This may in particular affect tests; if you were effectively doing `createBackendModule({...})()` (note the parentheses), you can now remove those extra parentheses at the end. You may encounter cases of this in your `packages/backend/src/index.ts` too, where you add plugins, modules, and services. If you were using `createServiceFactory` with a function as its argument for the purpose of passing in options, this pattern has been deprecated for a while and is no longer supported. You may want to explore the new multiton patterns to achieve your goals, or moving settings to app-config.
10
+
11
+ As part of this change, the `IdentityFactoryOptions` type was removed, and can no longer be used to tweak that service. The identity service was also deprecated some time ago, and you will want to [migrate to the new auth system](https://backstage.io/docs/tutorials/auth-service-migration) if you still rely on it.
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies
16
+ - @backstage/backend-plugin-api@1.0.0
17
+ - @backstage/catalog-model@1.7.0
18
+ - @backstage/plugin-catalog-common@1.1.0
19
+ - @backstage/plugin-catalog-node@1.13.0
20
+ - @backstage/plugin-scaffolder-common@1.5.6
21
+
3
22
  ## 0.2.0-next.2
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-scaffolder-entity-model",
3
- "version": "0.2.0-next.2",
3
+ "version": "0.2.0",
4
4
  "description": "Adds support for the scaffolder specific entity model (e.g. the Template kind) to the catalog backend plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -39,14 +39,14 @@
39
39
  "test": "backstage-cli package test"
40
40
  },
41
41
  "dependencies": {
42
- "@backstage/backend-plugin-api": "^1.0.0-next.2",
43
- "@backstage/catalog-model": "^1.6.0",
44
- "@backstage/plugin-catalog-common": "^1.0.26",
45
- "@backstage/plugin-catalog-node": "^1.12.7-next.2",
46
- "@backstage/plugin-scaffolder-common": "^1.5.5"
42
+ "@backstage/backend-plugin-api": "^1.0.0",
43
+ "@backstage/catalog-model": "^1.7.0",
44
+ "@backstage/plugin-catalog-common": "^1.1.0",
45
+ "@backstage/plugin-catalog-node": "^1.13.0",
46
+ "@backstage/plugin-scaffolder-common": "^1.5.6"
47
47
  },
48
48
  "devDependencies": {
49
- "@backstage/backend-test-utils": "^1.0.0-next.2",
50
- "@backstage/cli": "^0.27.1-next.2"
49
+ "@backstage/backend-test-utils": "^1.0.0",
50
+ "@backstage/cli": "^0.27.1"
51
51
  }
52
52
  }