@backstage/version-bridge 0.1.0 → 0.1.1

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 +7 -0
  2. package/package.json +7 -7
package/CHANGELOG.md ADDED
@@ -0,0 +1,7 @@
1
+ # @backstage/version-bridge
2
+
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - cd450844f6: Moved React dependencies to `peerDependencies` and allow both React v16 and v17 to be used.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/version-bridge",
3
3
  "description": "Utilities used by @backstage packages to support multiple concurrent versions",
4
- "version": "0.1.0",
4
+ "version": "0.1.1",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public",
@@ -28,18 +28,18 @@
28
28
  "postpack": "backstage-cli postpack",
29
29
  "clean": "backstage-cli clean"
30
30
  },
31
- "dependencies": {
32
- "@types/react": "*",
33
- "react": "^16.12.0"
31
+ "peerDependencies": {
32
+ "@types/react": "^16.13.1 || ^17.0.0",
33
+ "react": "^16.13.1 || ^17.0.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@backstage/cli": "^0.7.11",
36
+ "@backstage/cli": "^0.10.1",
37
37
  "@testing-library/jest-dom": "^5.10.1",
38
38
  "@testing-library/react": "^11.2.5",
39
- "@testing-library/react-hooks": "^3.4.2"
39
+ "@testing-library/react-hooks": "^7.0.2"
40
40
  },
41
41
  "files": [
42
42
  "dist"
43
43
  ],
44
- "gitHead": "360039a4f3baed2cc3ff7bb271205619455c3c6d"
44
+ "gitHead": "562be0b43016294e27af3ad024191bb86b13b1c1"
45
45
  }