@backstage/plugin-techdocs 1.10.0-next.3 → 1.10.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,54 @@
1
1
  # @backstage/plugin-techdocs
2
2
 
3
+ ## 1.10.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/errors@1.2.4-next.0
9
+ - @backstage/theme@0.5.2-next.0
10
+ - @backstage/core-components@0.14.1-next.0
11
+ - @backstage/integration-react@1.1.25-next.0
12
+ - @backstage/plugin-catalog-react@1.10.1-next.0
13
+ - @backstage/plugin-search-common@1.2.11-next.0
14
+ - @backstage/catalog-model@1.4.5-next.0
15
+ - @backstage/config@1.1.2-next.0
16
+ - @backstage/core-plugin-api@1.9.1-next.0
17
+ - @backstage/integration@1.9.1-next.0
18
+ - @backstage/plugin-search-react@1.7.7-next.0
19
+ - @backstage/plugin-techdocs-react@1.1.17-next.0
20
+ - @backstage/frontend-plugin-api@0.6.1-next.0
21
+ - @backstage/core-compat-api@0.2.1-next.0
22
+
23
+ ## 1.10.0
24
+
25
+ ### Minor Changes
26
+
27
+ - af4d147: Updated the styling for `<code>` tags to avoid word break.
28
+
29
+ ### Patch Changes
30
+
31
+ - 912ca7b: Use `convertLegacyRouteRefs` to define routes in `/alpha` export plugin.
32
+ - 8fe56a8: Widen `@types/react` dependency range to include version 18.
33
+ - 3631fb4: Updated dependency `dompurify` to `^3.0.0`.
34
+ Updated dependency `@types/dompurify` to `^3.0.0`.
35
+ - 1cae748: Updated dependency `git-url-parse` to `^14.0.0`.
36
+ - Updated dependencies
37
+ - @backstage/frontend-plugin-api@0.6.0
38
+ - @backstage/core-compat-api@0.2.0
39
+ - @backstage/plugin-catalog-react@1.10.0
40
+ - @backstage/core-components@0.14.0
41
+ - @backstage/plugin-techdocs-react@1.1.16
42
+ - @backstage/catalog-model@1.4.4
43
+ - @backstage/theme@0.5.1
44
+ - @backstage/integration@1.9.0
45
+ - @backstage/core-plugin-api@1.9.0
46
+ - @backstage/plugin-search-react@1.7.6
47
+ - @backstage/config@1.1.1
48
+ - @backstage/errors@1.2.3
49
+ - @backstage/integration-react@1.1.24
50
+ - @backstage/plugin-search-common@1.2.10
51
+
3
52
  ## 1.10.0-next.3
4
53
 
5
54
  ### Patch Changes
@@ -48,7 +97,7 @@
48
97
 
49
98
  ### Minor Changes
50
99
 
51
- - af4d147: Updated the styling for <code> tags to avoid word break.
100
+ - af4d147: Updated the styling for `<code>` tags to avoid word break.
52
101
 
53
102
  ### Patch Changes
54
103
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-techdocs",
3
- "version": "1.10.0-next.3",
3
+ "version": "1.10.1-next.0",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
package/package.json CHANGED
@@ -1,13 +1,25 @@
1
1
  {
2
2
  "name": "@backstage/plugin-techdocs",
3
+ "version": "1.10.1-next.0",
3
4
  "description": "The Backstage plugin that renders technical documentation for your components",
4
- "version": "1.10.0-next.3",
5
- "main": "./dist/index.esm.js",
6
- "types": "./dist/index.d.ts",
7
- "license": "Apache-2.0",
5
+ "backstage": {
6
+ "role": "frontend-plugin"
7
+ },
8
8
  "publishConfig": {
9
9
  "access": "public"
10
10
  },
11
+ "keywords": [
12
+ "backstage",
13
+ "techdocs"
14
+ ],
15
+ "homepage": "https://backstage.io",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/backstage/backstage",
19
+ "directory": "plugins/techdocs"
20
+ },
21
+ "license": "Apache-2.0",
22
+ "sideEffects": false,
11
23
  "exports": {
12
24
  ".": {
13
25
  "import": "./dist/index.esm.js",
@@ -21,44 +33,37 @@
21
33
  },
22
34
  "./package.json": "./package.json"
23
35
  },
24
- "backstage": {
25
- "role": "frontend-plugin"
26
- },
27
- "homepage": "https://backstage.io",
28
- "repository": {
29
- "type": "git",
30
- "url": "https://github.com/backstage/backstage",
31
- "directory": "plugins/techdocs"
32
- },
33
- "keywords": [
34
- "backstage",
35
- "techdocs"
36
+ "main": "./dist/index.esm.js",
37
+ "types": "./dist/index.d.ts",
38
+ "files": [
39
+ "dist",
40
+ "config.d.ts",
41
+ "alpha"
36
42
  ],
37
- "sideEffects": false,
38
43
  "scripts": {
39
44
  "build": "backstage-cli package build",
40
- "start": "backstage-cli package start",
45
+ "clean": "backstage-cli package clean",
41
46
  "lint": "backstage-cli package lint",
42
- "test": "backstage-cli package test",
43
47
  "prepack": "backstage-cli package prepack",
44
48
  "postpack": "backstage-cli package postpack",
45
- "clean": "backstage-cli package clean"
49
+ "start": "backstage-cli package start",
50
+ "test": "backstage-cli package test"
46
51
  },
47
52
  "dependencies": {
48
- "@backstage/catalog-model": "^1.4.4-next.0",
49
- "@backstage/config": "^1.1.1",
50
- "@backstage/core-compat-api": "^0.2.0-next.3",
51
- "@backstage/core-components": "^0.14.0-next.2",
52
- "@backstage/core-plugin-api": "^1.9.0-next.1",
53
- "@backstage/errors": "^1.2.3",
54
- "@backstage/frontend-plugin-api": "^0.6.0-next.3",
55
- "@backstage/integration": "^1.9.0-next.1",
56
- "@backstage/integration-react": "^1.1.24-next.2",
57
- "@backstage/plugin-catalog-react": "^1.10.0-next.3",
58
- "@backstage/plugin-search-common": "^1.2.10",
59
- "@backstage/plugin-search-react": "^1.7.6-next.3",
60
- "@backstage/plugin-techdocs-react": "^1.1.16-next.2",
61
- "@backstage/theme": "^0.5.1-next.1",
53
+ "@backstage/catalog-model": "^1.4.5-next.0",
54
+ "@backstage/config": "^1.1.2-next.0",
55
+ "@backstage/core-compat-api": "^0.2.1-next.0",
56
+ "@backstage/core-components": "^0.14.1-next.0",
57
+ "@backstage/core-plugin-api": "^1.9.1-next.0",
58
+ "@backstage/errors": "^1.2.4-next.0",
59
+ "@backstage/frontend-plugin-api": "^0.6.1-next.0",
60
+ "@backstage/integration": "^1.9.1-next.0",
61
+ "@backstage/integration-react": "^1.1.25-next.0",
62
+ "@backstage/plugin-catalog-react": "^1.10.1-next.0",
63
+ "@backstage/plugin-search-common": "^1.2.11-next.0",
64
+ "@backstage/plugin-search-react": "^1.7.7-next.0",
65
+ "@backstage/plugin-techdocs-react": "^1.1.17-next.0",
66
+ "@backstage/theme": "^0.5.2-next.0",
62
67
  "@material-ui/core": "^4.12.2",
63
68
  "@material-ui/icons": "^4.9.1",
64
69
  "@material-ui/lab": "4.0.0-alpha.61",
@@ -72,17 +77,12 @@
72
77
  "react-helmet": "6.1.0",
73
78
  "react-use": "^17.2.4"
74
79
  },
75
- "peerDependencies": {
76
- "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
77
- "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
78
- "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
79
- },
80
80
  "devDependencies": {
81
- "@backstage/cli": "^0.25.2-next.3",
82
- "@backstage/core-app-api": "^1.12.0-next.1",
83
- "@backstage/dev-utils": "^1.0.27-next.3",
84
- "@backstage/plugin-techdocs-module-addons-contrib": "^1.1.5-next.3",
85
- "@backstage/test-utils": "^1.5.0-next.3",
81
+ "@backstage/cli": "^0.25.3-next.0",
82
+ "@backstage/core-app-api": "^1.12.1-next.0",
83
+ "@backstage/dev-utils": "^1.0.28-next.0",
84
+ "@backstage/plugin-techdocs-module-addons-contrib": "^1.1.6-next.0",
85
+ "@backstage/test-utils": "^1.5.1-next.0",
86
86
  "@testing-library/dom": "^9.0.0",
87
87
  "@testing-library/jest-dom": "^6.0.0",
88
88
  "@testing-library/react": "^14.0.0",
@@ -91,11 +91,11 @@
91
91
  "@types/event-source-polyfill": "^1.0.0",
92
92
  "canvas": "^2.10.2"
93
93
  },
94
- "files": [
95
- "dist",
96
- "config.d.ts",
97
- "alpha"
98
- ],
94
+ "peerDependencies": {
95
+ "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
96
+ "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
97
+ "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
98
+ },
99
99
  "configSchema": "config.d.ts",
100
100
  "module": "./dist/index.esm.js"
101
101
  }