@automattic/social-previews 1.1.2 → 1.1.3

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 +5 -0
  2. package/package.json +2 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.1.3 (2022-05-16)
4
+
5
+ - Remove unnecessary peer dependencies on `@wordpress/data`, `reakit-utils`, and `redux`.
6
+ - Add missing peer dependency on `react-dom`.
7
+
3
8
  ## v1.1.2 (2022-05-13)
4
9
 
5
10
  - Dependency updates and internal code cleanup.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/social-previews",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "description": "A suite of components to generate previews for a post for both social and search engines.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -51,9 +51,7 @@
51
51
  "react-dom": "^17.0.2"
52
52
  },
53
53
  "peerDependencies": {
54
- "@wordpress/data": "^6.7.0",
55
54
  "react": "^17.0.2",
56
- "reakit-utils": "^0.15.1",
57
- "redux": "^4.1.2"
55
+ "react-dom": "^17.0.2"
58
56
  }
59
57
  }