@backstage/plugin-user-settings-backend 0.1.15-next.1 → 0.2.0-next.3

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,47 @@
1
1
  # @backstage/plugin-user-settings-backend
2
2
 
3
+ ## 0.2.0-next.3
4
+
5
+ ### Minor Changes
6
+
7
+ - 71114ac50e02: **BREAKING**: The export for the new backend system has been moved to be the `default` export.
8
+
9
+ For example, if you are currently importing the plugin using the following pattern:
10
+
11
+ ```ts
12
+ import { examplePlugin } from '@backstage/plugin-example-backend';
13
+
14
+ backend.add(examplePlugin);
15
+ ```
16
+
17
+ It should be migrated to this:
18
+
19
+ ```ts
20
+ backend.add(import('@backstage/plugin-example-backend'));
21
+ ```
22
+
23
+ ### Patch Changes
24
+
25
+ - Updated dependencies
26
+ - @backstage/catalog-model@1.4.2-next.2
27
+ - @backstage/errors@1.2.2-next.0
28
+ - @backstage/types@1.1.1-next.0
29
+ - @backstage/backend-plugin-api@0.6.3-next.3
30
+ - @backstage/backend-common@0.19.5-next.3
31
+ - @backstage/plugin-auth-node@0.3.0-next.3
32
+
33
+ ## 0.1.15-next.2
34
+
35
+ ### Patch Changes
36
+
37
+ - Updated dependencies
38
+ - @backstage/backend-common@0.19.5-next.2
39
+ - @backstage/plugin-auth-node@0.3.0-next.2
40
+ - @backstage/backend-plugin-api@0.6.3-next.2
41
+ - @backstage/catalog-model@1.4.2-next.1
42
+ - @backstage/errors@1.2.1
43
+ - @backstage/types@1.1.0
44
+
3
45
  ## 0.1.15-next.1
4
46
 
5
47
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-user-settings-backend",
3
- "version": "0.1.15-next.1",
3
+ "version": "0.2.0-next.3",
4
4
  "main": "../dist/index.cjs.js",
5
5
  "types": "../dist/index.alpha.d.ts"
6
6
  }
@@ -23,6 +23,7 @@ export declare interface RouterOptions {
23
23
  *
24
24
  * @alpha
25
25
  */
26
- export declare const userSettingsPlugin: () => BackendFeature;
26
+ declare const userSettingsPlugin: () => BackendFeature;
27
+ export default userSettingsPlugin;
27
28
 
28
29
  export { }
package/dist/index.cjs.js CHANGED
@@ -142,5 +142,5 @@ const userSettingsPlugin = backendPluginApi.createBackendPlugin({
142
142
  });
143
143
 
144
144
  exports.createRouter = createRouter;
145
- exports.userSettingsPlugin = userSettingsPlugin;
145
+ exports["default"] = userSettingsPlugin;
146
146
  //# sourceMappingURL=index.cjs.js.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-user-settings-backend",
3
3
  "description": "The Backstage backend plugin to manage user settings",
4
- "version": "0.1.15-next.1",
4
+ "version": "0.2.0-next.3",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -30,12 +30,12 @@
30
30
  "clean": "backstage-cli package clean"
31
31
  },
32
32
  "dependencies": {
33
- "@backstage/backend-common": "^0.19.5-next.1",
34
- "@backstage/backend-plugin-api": "^0.6.3-next.1",
35
- "@backstage/catalog-model": "^1.4.2-next.0",
36
- "@backstage/errors": "^1.2.1",
37
- "@backstage/plugin-auth-node": "^0.3.0-next.1",
38
- "@backstage/types": "^1.1.0",
33
+ "@backstage/backend-common": "^0.19.5-next.3",
34
+ "@backstage/backend-plugin-api": "^0.6.3-next.3",
35
+ "@backstage/catalog-model": "^1.4.2-next.2",
36
+ "@backstage/errors": "^1.2.2-next.0",
37
+ "@backstage/plugin-auth-node": "^0.3.0-next.3",
38
+ "@backstage/types": "^1.1.1-next.0",
39
39
  "@types/express": "^4.17.6",
40
40
  "express": "^4.17.1",
41
41
  "express-promise-router": "^4.1.0",
@@ -44,8 +44,8 @@
44
44
  "yn": "^4.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@backstage/backend-test-utils": "^0.2.3-next.1",
48
- "@backstage/cli": "^0.22.13-next.1",
47
+ "@backstage/backend-test-utils": "^0.2.3-next.3",
48
+ "@backstage/cli": "^0.22.13-next.3",
49
49
  "@types/supertest": "^2.0.8",
50
50
  "supertest": "^6.1.3"
51
51
  },