@backstage/plugin-techdocs-backend 0.10.2 → 0.10.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,16 @@
1
1
  # @backstage/plugin-techdocs-backend
2
2
 
3
+ ## 0.10.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/integration@0.6.5
9
+ - @backstage/catalog-client@0.4.0
10
+ - @backstage/catalog-model@0.9.3
11
+ - @backstage/backend-common@0.9.4
12
+ - @backstage/config@0.1.10
13
+
3
14
  ## 0.10.2
4
15
 
5
16
  ### Patch Changes
package/README.md CHANGED
@@ -4,22 +4,22 @@ This is the backend part of the techdocs plugin.
4
4
 
5
5
  ## Getting Started
6
6
 
7
- This backend plugin can be started in a standalone mode from directly in this package
8
- with `yarn start`. However, it will have limited functionality and that process is
7
+ This backend plugin can be started in a standalone mode directly from in this package
8
+ using `yarn start`. However, it will have limited functionality and that process is
9
9
  most convenient when developing the techdocs backend plugin itself.
10
10
 
11
- To evaluate TechDocs and have a greater amount of functionality available, instead do
11
+ To evaluate TechDocs and have a greater amount of functionality available, instead do:
12
12
 
13
13
  ```bash
14
- # in one terminal window, run this from from the very root of the Backstage project
14
+ # From your Backstage root directory
15
15
  cd packages/backend
16
16
  yarn start
17
17
  ```
18
18
 
19
19
  ## What techdocs-backend does
20
20
 
21
- This plugin is the backend part of the techdocs plugin. It provides serving and building of documentation for any entity.
22
- To configure various storage providers and building options, see http://backstage.io/docs/features/techdocs/configuration
21
+ This provides serving and building of documentation for any entity.
22
+ To configure various storage providers and building options, see http://backstage.io/docs/features/techdocs/configuration.
23
23
 
24
24
  The techdocs-backend re-exports the [techdocs-common](https://github.com/backstage/backstage/tree/master/packages/techdocs-common) package which has the features to prepare, generate and publish docs.
25
25
  The Publishers are also used to fetch the static documentation files and render them in TechDocs.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-techdocs-backend",
3
3
  "description": "The Backstage backend plugin that renders technical documentation for your components",
4
- "version": "0.10.2",
4
+ "version": "0.10.3",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -31,12 +31,12 @@
31
31
  "clean": "backstage-cli clean"
32
32
  },
33
33
  "dependencies": {
34
- "@backstage/backend-common": "^0.9.3",
35
- "@backstage/catalog-client": "^0.3.17",
36
- "@backstage/catalog-model": "^0.9.1",
37
- "@backstage/config": "^0.1.8",
34
+ "@backstage/backend-common": "^0.9.4",
35
+ "@backstage/catalog-client": "^0.4.0",
36
+ "@backstage/catalog-model": "^0.9.3",
37
+ "@backstage/config": "^0.1.10",
38
38
  "@backstage/errors": "^0.1.1",
39
- "@backstage/integration": "^0.6.4",
39
+ "@backstage/integration": "^0.6.5",
40
40
  "@backstage/search-common": "^0.2.0",
41
41
  "@backstage/techdocs-common": "^0.10.1",
42
42
  "@types/express": "^4.17.6",
@@ -51,7 +51,7 @@
51
51
  "winston": "^3.2.1"
52
52
  },
53
53
  "devDependencies": {
54
- "@backstage/cli": "^0.7.12",
54
+ "@backstage/cli": "^0.7.13",
55
55
  "@backstage/test-utils": "^0.1.17",
56
56
  "@types/dockerode": "^3.2.1",
57
57
  "msw": "^0.29.0",
@@ -62,5 +62,5 @@
62
62
  "config.d.ts"
63
63
  ],
64
64
  "configSchema": "config.d.ts",
65
- "gitHead": "4dc47ebe3c30e9bdba9c2239aed9ece1a4d479a0"
65
+ "gitHead": "2fd2dbc5d2fad9da5f623126920958970aea469b"
66
66
  }