@backstage/plugin-catalog-backend-module-unprocessed 0.2.3-next.2 → 0.3.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,59 @@
1
1
  # @backstage/plugin-catalog-backend-module-unprocessed
2
2
 
3
+ ## 0.3.0
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/plugin-auth-node@0.3.0
27
+ - @backstage/catalog-model@1.4.2
28
+ - @backstage/backend-plugin-api@0.6.3
29
+
30
+ ## 0.3.0-next.3
31
+
32
+ ### Minor Changes
33
+
34
+ - 71114ac50e02: **BREAKING**: The export for the new backend system has been moved to be the `default` export.
35
+
36
+ For example, if you are currently importing the plugin using the following pattern:
37
+
38
+ ```ts
39
+ import { examplePlugin } from '@backstage/plugin-example-backend';
40
+
41
+ backend.add(examplePlugin);
42
+ ```
43
+
44
+ It should be migrated to this:
45
+
46
+ ```ts
47
+ backend.add(import('@backstage/plugin-example-backend'));
48
+ ```
49
+
50
+ ### Patch Changes
51
+
52
+ - Updated dependencies
53
+ - @backstage/catalog-model@1.4.2-next.2
54
+ - @backstage/backend-plugin-api@0.6.3-next.3
55
+ - @backstage/plugin-auth-node@0.3.0-next.3
56
+
3
57
  ## 0.2.3-next.2
4
58
 
5
59
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -125,5 +125,5 @@ const catalogModuleUnprocessedEntities = backendPluginApi.createBackendModule({
125
125
  });
126
126
 
127
127
  exports.UnprocessedEntitiesModule = UnprocessedEntitiesModule;
128
- exports.catalogModuleUnprocessedEntities = catalogModuleUnprocessedEntities;
128
+ exports["default"] = catalogModuleUnprocessedEntities;
129
129
  //# sourceMappingURL=index.cjs.js.map
package/dist/index.d.ts CHANGED
@@ -26,4 +26,4 @@ declare class UnprocessedEntitiesModule {
26
26
  registerRoutes(): void;
27
27
  }
28
28
 
29
- export { UnprocessedEntitiesModule, catalogModuleUnprocessedEntities };
29
+ export { UnprocessedEntitiesModule, catalogModuleUnprocessedEntities as default };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-unprocessed",
3
3
  "description": "Backstage Catalog module to view unprocessed entities",
4
- "version": "0.2.3-next.2",
4
+ "version": "0.3.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -28,15 +28,15 @@
28
28
  "postpack": "backstage-cli package postpack"
29
29
  },
30
30
  "devDependencies": {
31
- "@backstage/cli": "^0.22.13-next.2"
31
+ "@backstage/cli": "^0.22.13"
32
32
  },
33
33
  "files": [
34
34
  "dist"
35
35
  ],
36
36
  "dependencies": {
37
- "@backstage/backend-plugin-api": "^0.6.3-next.2",
38
- "@backstage/catalog-model": "^1.4.2-next.1",
39
- "@backstage/plugin-auth-node": "^0.3.0-next.2",
37
+ "@backstage/backend-plugin-api": "^0.6.3",
38
+ "@backstage/catalog-model": "^1.4.2",
39
+ "@backstage/plugin-auth-node": "^0.3.0",
40
40
  "express-promise-router": "^4.1.1",
41
41
  "knex": "^2.4.2"
42
42
  }