@backstage/plugin-scaffolder-backend-module-confluence-to-markdown 0.2.0-next.1 → 0.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +88 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,93 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-confluence-to-markdown
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0a7e7c5d0c04: **BREAKING**
8
+
9
+ This change updates the configuration of the confluence-to-markdown action so that it does not conflict with other confluence plguins. Currently many plugins make use of the `confluence.auth` configuration. However, only the confluence-to-markdown action uses the `confluence.auth` as a string. This change updates it so that `confluence.auth` is an object.
10
+
11
+ ## Required Changes
12
+
13
+ Below are examples for updating `bearer`, `basic`, and `userpass` implementations.
14
+
15
+ For `bearer`:
16
+ Before:
17
+
18
+ ```yaml
19
+ confluence:
20
+ baseUrl: 'https://confluence.example.com'
21
+ auth: 'bearer'
22
+ token: '${CONFLUENCE_TOKEN}'
23
+ ```
24
+
25
+ After:
26
+
27
+ ```yaml
28
+ confluence:
29
+ baseUrl: 'https://confluence.example.com'
30
+ auth:
31
+ type: 'bearer'
32
+ token: '${CONFLUENCE_TOKEN}'
33
+ ```
34
+
35
+ For `basic`:
36
+
37
+ Before:
38
+
39
+ ```yaml
40
+ confluence:
41
+ baseUrl: 'https://confluence.example.com'
42
+ auth: 'basic'
43
+ token: '${CONFLUENCE_TOKEN}'
44
+ email: 'example@company.org'
45
+ ```
46
+
47
+ After:
48
+
49
+ ```yaml
50
+ confluence:
51
+ baseUrl: 'https://confluence.example.com'
52
+ auth:
53
+ type: 'basic'
54
+ token: '${CONFLUENCE_TOKEN}'
55
+ email: 'example@company.org'
56
+ ```
57
+
58
+ For `userpass`
59
+ Before:
60
+
61
+ ```yaml
62
+ confluence:
63
+ baseUrl: 'https://confluence.example.com'
64
+ auth: 'userpass'
65
+ username: 'your-username'
66
+ password: 'your-password'
67
+ ```
68
+
69
+ After:
70
+
71
+ ```yaml
72
+ confluence:
73
+ baseUrl: 'https://confluence.example.com'
74
+ auth:
75
+ type: 'userpass'
76
+ username: 'your-username'
77
+ password: 'your-password'
78
+ ```
79
+
80
+ ### Patch Changes
81
+
82
+ - Updated dependencies
83
+ - @backstage/errors@1.2.1
84
+ - @backstage/backend-common@0.19.1
85
+ - @backstage/plugin-scaffolder-backend@1.15.1
86
+ - @backstage/config@1.0.8
87
+ - @backstage/integration@1.5.1
88
+ - @backstage/types@1.1.0
89
+ - @backstage/plugin-scaffolder-node@0.1.5
90
+
3
91
  ## 0.2.0-next.1
4
92
 
5
93
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-confluence-to-markdown",
3
3
  "description": "The confluence-to-markdown module for @backstage/plugin-scaffolder-backend",
4
- "version": "0.2.0-next.1",
4
+ "version": "0.2.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -24,12 +24,12 @@
24
24
  "help": "backstage-cli help"
25
25
  },
26
26
  "dependencies": {
27
- "@backstage/backend-common": "^0.19.1-next.0",
27
+ "@backstage/backend-common": "^0.19.1",
28
28
  "@backstage/config": "^1.0.8",
29
- "@backstage/errors": "^1.2.1-next.0",
30
- "@backstage/integration": "^1.5.1-next.0",
31
- "@backstage/plugin-scaffolder-backend": "^1.15.1-next.1",
32
- "@backstage/plugin-scaffolder-node": "^0.1.5-next.0",
29
+ "@backstage/errors": "^1.2.1",
30
+ "@backstage/integration": "^1.5.1",
31
+ "@backstage/plugin-scaffolder-backend": "^1.15.1",
32
+ "@backstage/plugin-scaffolder-node": "^0.1.5",
33
33
  "@backstage/types": "^1.1.0",
34
34
  "fs-extra": "10.1.0",
35
35
  "git-url-parse": "^13.1.0",
@@ -38,8 +38,8 @@
38
38
  "yaml": "^2.0.0"
39
39
  },
40
40
  "devDependencies": {
41
- "@backstage/backend-test-utils": "^0.1.39-next.0",
42
- "@backstage/cli": "^0.22.9-next.1",
41
+ "@backstage/backend-test-utils": "^0.1.39",
42
+ "@backstage/cli": "^0.22.9",
43
43
  "mock-fs": "^5.2.0",
44
44
  "msw": "^1.0.0"
45
45
  },