@red-hat-developer-hub/backstage-plugin-orchestrator-common 2.0.0 → 3.0.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 +16 -0
- package/dist/index.d.ts +1 -1
- package/package.json +13 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
## @red-hat-developer-hub/backstage-plugin-orchestrator-common [1.13.1](https://github.com/janus-idp/backstage-plugins/compare/@red-hat-developer-hub/backstage-plugin-orchestrator-common@1.13.0...@red-hat-developer-hub/backstage-plugin-orchestrator-common@1.13.1) (2024-08-02)
|
|
2
2
|
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 3fce49c: Update dependencies to macth Backstage 1.39.1
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 784d858: Updated dependency `@openapitools/openapi-generator-cli` to `2.21.4`.
|
|
12
|
+
|
|
13
|
+
## 2.0.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 223d35c: Updated dependency `@openapitools/openapi-generator-cli` to `2.21.3`.
|
|
18
|
+
|
|
3
19
|
## 2.0.0
|
|
4
20
|
|
|
5
21
|
### Major Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1544,7 +1544,7 @@ declare function extractWorkflowFormat(source: string): WorkflowFormat;
|
|
|
1544
1544
|
declare const QUERY_PARAM_INSTANCE_ID: "instanceId";
|
|
1545
1545
|
|
|
1546
1546
|
type Capitalized<S extends string> = Capitalize<Lowercase<S>>;
|
|
1547
|
-
declare const capitalize: <S extends string>(text: S) =>
|
|
1547
|
+
declare const capitalize: <S extends string>(text: S) => Capitalized<S>;
|
|
1548
1548
|
declare const ellipsis: <S extends string>(text: S, prefixLength?: number) => string;
|
|
1549
1549
|
|
|
1550
1550
|
declare const orchestratorWorkflowPermission: _backstage_plugin_permission_common.BasicPermission;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@red-hat-developer-hub/backstage-plugin-orchestrator-common",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
},
|
|
13
13
|
"backstage": {
|
|
14
14
|
"role": "common-library",
|
|
15
|
-
"supported-versions": "1.
|
|
15
|
+
"supported-versions": "1.39.1",
|
|
16
16
|
"pluginId": "orchestrator",
|
|
17
17
|
"pluginPackages": [
|
|
18
18
|
"@red-hat-developer-hub/backstage-plugin-orchestrator",
|
|
@@ -57,15 +57,15 @@
|
|
|
57
57
|
"openapi:check": "./scripts/openapi.sh check"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@backstage/plugin-permission-common": "^0.
|
|
60
|
+
"@backstage/plugin-permission-common": "^0.9.0",
|
|
61
61
|
"@severlessworkflow/sdk-typescript": "^3.0.3",
|
|
62
|
-
"axios": "^1.
|
|
62
|
+
"axios": "^1.11.0",
|
|
63
63
|
"js-yaml": "^4.1.0"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
66
|
-
"@backstage/cli": "^0.
|
|
66
|
+
"@backstage/cli": "^0.32.1",
|
|
67
67
|
"@backstage/types": "^1.2.1",
|
|
68
|
-
"@openapitools/openapi-generator-cli": "2.21.
|
|
68
|
+
"@openapitools/openapi-generator-cli": "2.21.4",
|
|
69
69
|
"@types/json-schema": "7.0.15",
|
|
70
70
|
"js-yaml-cli": "0.6.0"
|
|
71
71
|
},
|
|
@@ -75,5 +75,12 @@
|
|
|
75
75
|
"@gciavarrini"
|
|
76
76
|
],
|
|
77
77
|
"author": "The Backstage Community",
|
|
78
|
+
"typesVersions": {
|
|
79
|
+
"*": {
|
|
80
|
+
"package.json": [
|
|
81
|
+
"package.json"
|
|
82
|
+
]
|
|
83
|
+
}
|
|
84
|
+
},
|
|
78
85
|
"module": "dist/index.esm.js"
|
|
79
86
|
}
|