@backstage/plugin-scaffolder-backend-module-azure 0.0.0-nightly-20240616021858 → 0.0.0-nightly-20240618021721
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 +5 -4
- package/dist/index.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-azure
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20240618021721
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
|
+
- 78a0b08: Internal refactor to handle `BackendFeature` contract change.
|
|
7
8
|
- b4169ee: Use `GitRepository.webUrl` instead of `GitRepository.remoteUrl` to set the value of `repoContentsUrl` as `remoteUrl` can sometimes return an URL with the wrong format (e.g. `https://<organization>@dev.azure.com/<organization>/<project>/\_git/<repository>`).
|
|
8
9
|
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
9
10
|
- Updated dependencies
|
|
10
|
-
- @backstage/backend-plugin-api@0.0.0-nightly-
|
|
11
|
-
- @backstage/integration@0.0.0-nightly-
|
|
12
|
-
- @backstage/plugin-scaffolder-node@0.0.0-nightly-
|
|
11
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20240618021721
|
|
12
|
+
- @backstage/integration@0.0.0-nightly-20240618021721
|
|
13
|
+
- @backstage/plugin-scaffolder-node@0.0.0-nightly-20240618021721
|
|
13
14
|
- @backstage/config@1.2.0
|
|
14
15
|
- @backstage/errors@1.2.4
|
|
15
16
|
|
package/dist/index.d.ts
CHANGED
|
@@ -27,6 +27,6 @@ declare function createPublishAzureAction(options: {
|
|
|
27
27
|
* @public
|
|
28
28
|
* The Azure Module for the Scaffolder Backend
|
|
29
29
|
*/
|
|
30
|
-
declare const azureModule:
|
|
30
|
+
declare const azureModule: _backstage_backend_plugin_api.BackendFeatureCompat;
|
|
31
31
|
|
|
32
32
|
export { createPublishAzureAction, azureModule as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-azure",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20240618021721",
|
|
4
4
|
"description": "The azure module for @backstage/plugin-scaffolder-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -39,16 +39,16 @@
|
|
|
39
39
|
"test": "backstage-cli package test"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@backstage/backend-plugin-api": "^0.0.0-nightly-
|
|
42
|
+
"@backstage/backend-plugin-api": "^0.0.0-nightly-20240618021721",
|
|
43
43
|
"@backstage/config": "^1.2.0",
|
|
44
44
|
"@backstage/errors": "^1.2.4",
|
|
45
|
-
"@backstage/integration": "^0.0.0-nightly-
|
|
46
|
-
"@backstage/plugin-scaffolder-node": "^0.0.0-nightly-
|
|
45
|
+
"@backstage/integration": "^0.0.0-nightly-20240618021721",
|
|
46
|
+
"@backstage/plugin-scaffolder-node": "^0.0.0-nightly-20240618021721",
|
|
47
47
|
"azure-devops-node-api": "^12.0.0",
|
|
48
48
|
"yaml": "^2.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
52
|
-
"@backstage/plugin-scaffolder-node-test-utils": "^0.0.0-nightly-
|
|
51
|
+
"@backstage/cli": "^0.0.0-nightly-20240618021721",
|
|
52
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.0.0-nightly-20240618021721"
|
|
53
53
|
}
|
|
54
54
|
}
|