@automattic/jetpack-connection 1.4.2 → 1.4.4

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.4] - 2025-08-18
6
+ ### Added
7
+ - Added type-check script to ensure that the TS files are type-checked. [#44795]
8
+
9
+ ## [1.4.3] - 2025-08-14
10
+ ### Changed
11
+ - Update dependencies.
12
+
5
13
  ## [1.4.2] - 2025-08-13
6
14
  ### Changed
7
15
  - Update package dependencies. [#44701]
@@ -1138,6 +1146,8 @@
1138
1146
  - `Main` and `ConnectUser` components added.
1139
1147
  - `JetpackRestApiClient` API client added.
1140
1148
 
1149
+ [1.4.4]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.3...v1.4.4
1150
+ [1.4.3]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.2...v1.4.3
1141
1151
  [1.4.2]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.1...v1.4.2
1142
1152
  [1.4.1]: https://github.com/Automattic/jetpack-connection-js/compare/v1.4.0...v1.4.1
1143
1153
  [1.4.0]: https://github.com/Automattic/jetpack-connection-js/compare/v1.3.2...v1.4.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@automattic/jetpack-connection",
3
- "version": "1.4.2",
3
+ "version": "1.4.4",
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.1.19",
33
+ "@automattic/jetpack-components": "^1.2.1",
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",