@automattic/jetpack-connection 1.4.3 → 1.4.5

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 +10 -0
  2. package/package.json +7 -5
package/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  ### This is a list detailing changes for the Jetpack RNA Connection Component releases.
4
4
 
5
+ ## [1.4.5] - 2025-08-25
6
+ ### Changed
7
+ - Update dependencies.
8
+
9
+ ## [1.4.4] - 2025-08-18
10
+ ### Added
11
+ - Add type-check script to ensure that the TypeScript files are type-checked. [#44795]
12
+
5
13
  ## [1.4.3] - 2025-08-14
6
14
  ### Changed
7
15
  - Update dependencies.
@@ -1142,6 +1150,8 @@
1142
1150
  - `Main` and `ConnectUser` components added.
1143
1151
  - `JetpackRestApiClient` API client added.
1144
1152
 
1153
+ [1.4.5]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.4...v1.4.5
1154
+ [1.4.4]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.3...v1.4.4
1145
1155
  [1.4.3]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.2...v1.4.3
1146
1156
  [1.4.2]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.1...v1.4.2
1147
1157
  [1.4.1]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.0...v1.4.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-connection",
3
- "version": "1.4.3",
3
+ "version": "1.4.5",
4
4
  "description": "Jetpack Connection Component",
5
5
  "homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/connection/#readme",
6
6
  "bugs": {
@@ -24,14 +24,15 @@
24
24
  },
25
25
  "scripts": {
26
26
  "test": "NODE_OPTIONS=--experimental-vm-modules jest",
27
- "test-coverage": "pnpm run test --coverage"
27
+ "test-coverage": "pnpm run test --coverage",
28
+ "typecheck": "tsc --noEmit"
28
29
  },
29
30
  "dependencies": {
30
31
  "@automattic/jetpack-analytics": "^1.0.4",
31
32
  "@automattic/jetpack-api": "^1.0.8",
32
- "@automattic/jetpack-components": "^1.2.0",
33
+ "@automattic/jetpack-components": "^1.2.2",
33
34
  "@automattic/jetpack-config": "^1.0.4",
34
- "@automattic/jetpack-script-data": "^0.5.1",
35
+ "@automattic/jetpack-script-data": "^0.5.2",
35
36
  "@wordpress/base-styles": "6.4.0",
36
37
  "@wordpress/browserslist-config": "6.28.0",
37
38
  "@wordpress/components": "30.1.0",
@@ -56,7 +57,8 @@
56
57
  "jest-environment-jsdom": "30.0.4",
57
58
  "react": "18.3.1",
58
59
  "react-dom": "18.3.1",
59
- "storybook": "9.0.15"
60
+ "storybook": "9.0.15",
61
+ "typescript": "5.8.3"
60
62
  },
61
63
  "peerDependencies": {
62
64
  "react": "^18.0.0",