@backstage/plugin-scaffolder-backend-module-confluence-to-markdown 0.2.0-next.1 → 0.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +101 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,106 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-confluence-to-markdown
2
2
 
3
+ ## 0.2.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.19.2-next.0
9
+ - @backstage/config@1.0.8
10
+ - @backstage/errors@1.2.1
11
+ - @backstage/integration@1.5.1
12
+ - @backstage/types@1.1.0
13
+ - @backstage/plugin-scaffolder-backend@1.15.2-next.0
14
+ - @backstage/plugin-scaffolder-node@0.1.6-next.0
15
+
16
+ ## 0.2.0
17
+
18
+ ### Minor Changes
19
+
20
+ - 0a7e7c5d0c04: **BREAKING**
21
+
22
+ 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.
23
+
24
+ ## Required Changes
25
+
26
+ Below are examples for updating `bearer`, `basic`, and `userpass` implementations.
27
+
28
+ For `bearer`:
29
+ Before:
30
+
31
+ ```yaml
32
+ confluence:
33
+ baseUrl: 'https://confluence.example.com'
34
+ auth: 'bearer'
35
+ token: '${CONFLUENCE_TOKEN}'
36
+ ```
37
+
38
+ After:
39
+
40
+ ```yaml
41
+ confluence:
42
+ baseUrl: 'https://confluence.example.com'
43
+ auth:
44
+ type: 'bearer'
45
+ token: '${CONFLUENCE_TOKEN}'
46
+ ```
47
+
48
+ For `basic`:
49
+
50
+ Before:
51
+
52
+ ```yaml
53
+ confluence:
54
+ baseUrl: 'https://confluence.example.com'
55
+ auth: 'basic'
56
+ token: '${CONFLUENCE_TOKEN}'
57
+ email: 'example@company.org'
58
+ ```
59
+
60
+ After:
61
+
62
+ ```yaml
63
+ confluence:
64
+ baseUrl: 'https://confluence.example.com'
65
+ auth:
66
+ type: 'basic'
67
+ token: '${CONFLUENCE_TOKEN}'
68
+ email: 'example@company.org'
69
+ ```
70
+
71
+ For `userpass`
72
+ Before:
73
+
74
+ ```yaml
75
+ confluence:
76
+ baseUrl: 'https://confluence.example.com'
77
+ auth: 'userpass'
78
+ username: 'your-username'
79
+ password: 'your-password'
80
+ ```
81
+
82
+ After:
83
+
84
+ ```yaml
85
+ confluence:
86
+ baseUrl: 'https://confluence.example.com'
87
+ auth:
88
+ type: 'userpass'
89
+ username: 'your-username'
90
+ password: 'your-password'
91
+ ```
92
+
93
+ ### Patch Changes
94
+
95
+ - Updated dependencies
96
+ - @backstage/errors@1.2.1
97
+ - @backstage/backend-common@0.19.1
98
+ - @backstage/plugin-scaffolder-backend@1.15.1
99
+ - @backstage/config@1.0.8
100
+ - @backstage/integration@1.5.1
101
+ - @backstage/types@1.1.0
102
+ - @backstage/plugin-scaffolder-node@0.1.5
103
+
3
104
  ## 0.2.0-next.1
4
105
 
5
106
  ### 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.1-next.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.2-next.0",
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.2-next.0",
32
+ "@backstage/plugin-scaffolder-node": "^0.1.6-next.0",
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.40-next.0",
42
+ "@backstage/cli": "^0.22.10-next.0",
43
43
  "mock-fs": "^5.2.0",
44
44
  "msw": "^1.0.0"
45
45
  },