@backstage/core-compat-api 0.5.9-next.2 → 0.5.9

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 +14 -0
  2. package/package.json +18 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @backstage/core-compat-api
2
2
 
3
+ ## 0.5.9
4
+
5
+ ### Patch Changes
6
+
7
+ - b15a685: Added `withApis`, which is a Higher-Order Component for providing APIs as props to a component via `useApiHolder`.
8
+ - 8e09233: Added a missing dependency on `@backstage/filter-predicates` to `@backstage/core-compat-api`. This fixes package metadata for consumers that use compatibility helpers relying on filter predicate support.
9
+ - a49a40d: Updated dependency `zod` to `^3.25.76 || ^4.0.0` & migrated to `/v3` or `/v4` imports.
10
+ - Updated dependencies
11
+ - @backstage/plugin-catalog-react@2.1.0
12
+ - @backstage/core-plugin-api@1.12.4
13
+ - @backstage/frontend-plugin-api@0.15.0
14
+ - @backstage/plugin-app-react@0.2.1
15
+ - @backstage/filter-predicates@0.1.1
16
+
3
17
  ## 0.5.9-next.2
4
18
 
5
19
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/core-compat-api",
3
- "version": "0.5.9-next.2",
3
+ "version": "0.5.9",
4
4
  "backstage": {
5
5
  "role": "web-library"
6
6
  },
@@ -31,31 +31,32 @@
31
31
  "test": "backstage-cli package test"
32
32
  },
33
33
  "dependencies": {
34
- "@backstage/core-plugin-api": "1.12.4-next.1",
35
- "@backstage/errors": "1.2.7",
36
- "@backstage/frontend-plugin-api": "0.15.0-next.1",
37
- "@backstage/plugin-app-react": "0.2.1-next.1",
38
- "@backstage/plugin-catalog-react": "2.1.0-next.2",
39
- "@backstage/types": "1.2.2",
40
- "@backstage/version-bridge": "1.0.12",
34
+ "@backstage/core-plugin-api": "^1.12.4",
35
+ "@backstage/errors": "^1.2.7",
36
+ "@backstage/filter-predicates": "^0.1.1",
37
+ "@backstage/frontend-plugin-api": "^0.15.0",
38
+ "@backstage/plugin-app-react": "^0.2.1",
39
+ "@backstage/plugin-catalog-react": "^2.1.0",
40
+ "@backstage/types": "^1.2.2",
41
+ "@backstage/version-bridge": "^1.0.12",
41
42
  "lodash": "^4.17.21",
42
- "zod": "^3.25.76"
43
+ "zod": "^3.25.76 || ^4.0.0"
43
44
  },
44
45
  "devDependencies": {
45
- "@backstage/cli": "0.36.0-next.2",
46
- "@backstage/core-app-api": "1.19.6-next.1",
47
- "@backstage/frontend-app-api": "0.16.0-next.1",
48
- "@backstage/frontend-test-utils": "0.5.1-next.2",
49
- "@backstage/plugin-catalog": "2.0.0-next.2",
50
- "@backstage/test-utils": "1.7.16-next.0",
51
- "@backstage/types": "1.2.2",
46
+ "@backstage/cli": "^0.36.0",
47
+ "@backstage/core-app-api": "^1.19.6",
48
+ "@backstage/frontend-app-api": "^0.16.0",
49
+ "@backstage/frontend-test-utils": "^0.5.1",
50
+ "@backstage/plugin-catalog": "^2.0.0",
51
+ "@backstage/test-utils": "^1.7.16",
52
+ "@backstage/types": "^1.2.2",
52
53
  "@testing-library/jest-dom": "^6.0.0",
53
54
  "@testing-library/react": "^16.0.0",
54
55
  "@types/react": "^18.0.0",
55
56
  "react": "^18.0.2",
56
57
  "react-dom": "^18.0.2",
57
58
  "react-router-dom": "^6.30.2",
58
- "zod": "^3.25.76"
59
+ "zod": "^3.25.76 || ^4.0.0"
59
60
  },
60
61
  "peerDependencies": {
61
62
  "@types/react": "^17.0.0 || ^18.0.0",