@red-hat-developer-hub/backstage-plugin-orchestrator-common 2.0.1 → 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 CHANGED
@@ -1,5 +1,15 @@
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
+
3
13
  ## 2.0.1
4
14
 
5
15
  ### Patch 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) => Capitalize<Lowercase<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": "2.0.1",
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.36.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.8.4",
60
+ "@backstage/plugin-permission-common": "^0.9.0",
61
61
  "@severlessworkflow/sdk-typescript": "^3.0.3",
62
- "axios": "^1.7.9",
62
+ "axios": "^1.11.0",
63
63
  "js-yaml": "^4.1.0"
64
64
  },
65
65
  "devDependencies": {
66
- "@backstage/cli": "^0.31.1",
66
+ "@backstage/cli": "^0.32.1",
67
67
  "@backstage/types": "^1.2.1",
68
- "@openapitools/openapi-generator-cli": "2.21.3",
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
  }