@salesforce/pwa-kit-react-sdk 3.0.0-preview.2 → 3.0.0-preview.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.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,5 @@
1
- ## v3.0.0-preview.2 (Jun 05, 2023)
2
- ## v3.0.0-preview.1 (Jun 02, 2023)
3
- ## v3.0.0-preview.0 (May 31, 2023)
1
+ ## v3.0.0-preview.4 (Jun 14, 2023)
2
+ ## v3.0.0-preview.3 (Jun 13, 2023)
4
3
  ## v3.0.0-dev (May 12, 2023)
5
4
 
6
5
  - Remove usage of `device-context` due to deprecation of user agent string. [#1168](https://github.com/SalesforceCommerceCloud/pwa-kit/pull/1168)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/pwa-kit-react-sdk",
3
- "version": "3.0.0-preview.2",
3
+ "version": "3.0.0-preview.4",
4
4
  "description": "A library that supports the isomorphic React rendering pipeline for Commerce Cloud Managed Runtime apps",
5
5
  "homepage": "https://github.com/SalesforceCommerceCloud/pwa-kit/tree/develop/packages/pwa-kit-react-sdk#readme",
6
6
  "bugs": {
@@ -36,7 +36,7 @@
36
36
  "@loadable/babel-plugin": "^5.15.3",
37
37
  "@loadable/server": "^5.15.3",
38
38
  "@loadable/webpack-plugin": "^5.15.2",
39
- "@salesforce/pwa-kit-runtime": "3.0.0-preview.2",
39
+ "@salesforce/pwa-kit-runtime": "3.0.0-preview.4",
40
40
  "@tanstack/react-query": "^4.28.0",
41
41
  "cross-env": "^5.2.1",
42
42
  "event-emitter": "^0.3.5",
@@ -49,11 +49,11 @@
49
49
  },
50
50
  "devDependencies": {
51
51
  "@loadable/component": "^5.15.3",
52
- "@salesforce/pwa-kit-dev": "3.0.0-preview.2",
52
+ "@salesforce/pwa-kit-dev": "3.0.0-preview.4",
53
53
  "@testing-library/jest-dom": "^5.16.5",
54
54
  "@testing-library/react": "^14.0.0",
55
55
  "@testing-library/user-event": "^14.4.3",
56
- "internal-lib-build": "3.0.0-preview.2",
56
+ "internal-lib-build": "3.0.0-preview.4",
57
57
  "node-html-parser": "^3.3.6",
58
58
  "nodemon": "^2.0.22",
59
59
  "react": "^18.2.0",
@@ -78,5 +78,5 @@
78
78
  "publishConfig": {
79
79
  "directory": "dist"
80
80
  },
81
- "gitHead": "a2476c090ce48fd09e9116437aedc6cc45ae60bd"
81
+ "gitHead": "06b3f17fd233777136fdb699aa93df4c52874217"
82
82
  }
@@ -24,8 +24,7 @@ const STATE_KEY = '__reactQuery';
24
24
  *
25
25
  * @param {React.ReactElement} Wrapped The component to be wrapped
26
26
  * @param {Object} options
27
- * @param {Object} options.queryClientConfig The react query client configuration object to be used. By
28
- * default the `retry` option will be set to false to ensure performant server rendering.
27
+ * @param {Object} options.queryClientConfig The react query client configuration object to be used.
29
28
  *
30
29
  * @returns {React.ReactElement}
31
30
  */