@backstage/plugin-techdocs-backend 1.10.13-next.2 → 1.10.14-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,48 @@
1
1
  # @backstage/plugin-techdocs-backend
2
2
 
3
+ ## 1.10.14-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 094eaa3: Remove references to in-repo backend-common
8
+ - Updated dependencies
9
+ - @backstage/plugin-search-backend-module-techdocs@0.2.3-next.0
10
+ - @backstage/backend-plugin-api@1.0.1-next.0
11
+ - @backstage/catalog-client@1.7.0
12
+ - @backstage/catalog-model@1.7.0
13
+ - @backstage/config@1.2.0
14
+ - @backstage/errors@1.2.4
15
+ - @backstage/integration@1.15.0
16
+ - @backstage/plugin-catalog-common@1.1.0
17
+ - @backstage/plugin-catalog-node@1.13.1-next.0
18
+ - @backstage/plugin-permission-common@0.8.1
19
+ - @backstage/plugin-techdocs-common@0.1.0
20
+ - @backstage/plugin-techdocs-node@1.12.12-next.0
21
+
22
+ ## 1.10.13
23
+
24
+ ### Patch Changes
25
+
26
+ - 086c32d: Dedicated token for techdocs cache sync
27
+ - 5b679ac: The `createRouter` and its related types has been marked as deprecared. This backend should instead be initialized using the new backend system.
28
+ - d425fc4: Modules, plugins, and services are now `BackendFeature`, not a function that returns a feature.
29
+ - c2b63ab: Updated dependency `supertest` to `^7.0.0`.
30
+ - 5edd344: Refactor to use injected catalog client in the new backend system
31
+ - Updated dependencies
32
+ - @backstage/backend-common@0.25.0
33
+ - @backstage/plugin-techdocs-node@1.12.11
34
+ - @backstage/backend-plugin-api@1.0.0
35
+ - @backstage/catalog-model@1.7.0
36
+ - @backstage/catalog-client@1.7.0
37
+ - @backstage/plugin-search-backend-module-techdocs@0.2.2
38
+ - @backstage/plugin-catalog-common@1.1.0
39
+ - @backstage/plugin-catalog-node@1.13.0
40
+ - @backstage/integration@1.15.0
41
+ - @backstage/config@1.2.0
42
+ - @backstage/errors@1.2.4
43
+ - @backstage/plugin-permission-common@0.8.1
44
+ - @backstage/plugin-techdocs-common@0.1.0
45
+
3
46
  ## 1.10.13-next.2
4
47
 
5
48
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-techdocs-backend__alpha",
3
- "version": "1.10.13-next.2",
3
+ "version": "1.10.14-next.0",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-techdocs-backend",
3
- "version": "1.10.13-next.2",
3
+ "version": "1.10.14-next.0",
4
4
  "description": "The Backstage backend plugin that renders technical documentation for your components",
5
5
  "backstage": {
6
6
  "role": "backend-plugin",
@@ -34,6 +34,7 @@
34
34
  "default": "./dist/index.cjs.js"
35
35
  },
36
36
  "./alpha": {
37
+ "backstage": "@backstage/BackendFeature",
37
38
  "require": "./dist/alpha.cjs.js",
38
39
  "types": "./dist/alpha.d.ts",
39
40
  "default": "./dist/alpha.cjs.js"
@@ -57,19 +58,19 @@
57
58
  "test": "backstage-cli package test"
58
59
  },
59
60
  "dependencies": {
60
- "@backstage/backend-common": "^0.25.0-next.2",
61
- "@backstage/backend-plugin-api": "^1.0.0-next.2",
62
- "@backstage/catalog-client": "^1.7.0-next.1",
63
- "@backstage/catalog-model": "^1.6.0",
61
+ "@backstage/backend-common": "^0.25.0",
62
+ "@backstage/backend-plugin-api": "^1.0.1-next.0",
63
+ "@backstage/catalog-client": "^1.7.0",
64
+ "@backstage/catalog-model": "^1.7.0",
64
65
  "@backstage/config": "^1.2.0",
65
66
  "@backstage/errors": "^1.2.4",
66
- "@backstage/integration": "^1.15.0-next.0",
67
- "@backstage/plugin-catalog-common": "^1.0.26",
68
- "@backstage/plugin-catalog-node": "^1.12.7-next.2",
67
+ "@backstage/integration": "^1.15.0",
68
+ "@backstage/plugin-catalog-common": "^1.1.0",
69
+ "@backstage/plugin-catalog-node": "^1.13.1-next.0",
69
70
  "@backstage/plugin-permission-common": "^0.8.1",
70
- "@backstage/plugin-search-backend-module-techdocs": "^0.2.2-next.2",
71
+ "@backstage/plugin-search-backend-module-techdocs": "^0.2.3-next.0",
71
72
  "@backstage/plugin-techdocs-common": "^0.1.0",
72
- "@backstage/plugin-techdocs-node": "^1.12.11-next.2",
73
+ "@backstage/plugin-techdocs-node": "^1.12.12-next.0",
73
74
  "@types/express": "^4.17.6",
74
75
  "express": "^4.17.1",
75
76
  "express-promise-router": "^4.1.0",
@@ -81,9 +82,9 @@
81
82
  "winston": "^3.2.1"
82
83
  },
83
84
  "devDependencies": {
84
- "@backstage/backend-defaults": "^0.5.0-next.2",
85
- "@backstage/backend-test-utils": "^1.0.0-next.2",
86
- "@backstage/cli": "^0.27.1-next.2",
85
+ "@backstage/backend-defaults": "^0.5.1-next.0",
86
+ "@backstage/backend-test-utils": "^1.0.1-next.0",
87
+ "@backstage/cli": "^0.28.0-next.0",
87
88
  "msw": "^1.0.0",
88
89
  "supertest": "^7.0.0"
89
90
  },