@akinon/next 1.34.0-rc.5 → 1.34.0-rc.7
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 +5 -18
- package/api/client.ts +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# @akinon/next
|
|
2
2
|
|
|
3
|
-
## 1.34.0-rc.
|
|
3
|
+
## 1.34.0-rc.7
|
|
4
4
|
|
|
5
|
-
## 1.34.0-rc.
|
|
5
|
+
## 1.34.0-rc.6
|
|
6
6
|
|
|
7
7
|
### Minor Changes
|
|
8
8
|
|
|
@@ -19,24 +19,11 @@
|
|
|
19
19
|
- 6b2972b: ZERO-2514: Fix handling of status 204 and return Commerce status code in client proxy API.
|
|
20
20
|
- 3e68768: ZERO-2578: Add osessionid check in middleware
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
## 1.34.0-rc.0
|
|
22
|
+
### Patch Changes
|
|
25
23
|
|
|
26
|
-
|
|
24
|
+
- 59fb7c3: ZERO-2504: get set-cookie headers from commerce request
|
|
27
25
|
|
|
28
|
-
|
|
29
|
-
- 6d4aadb: ZERO-2476: Auto install recommendenent extension
|
|
30
|
-
- ebb63ce: ZERO-2525: Fix category facet removal bug and add close icon to active filters
|
|
31
|
-
- 7cebe87: ZERO-2524: Add check monorepo utility function
|
|
32
|
-
- f0c23bc: ZERO-2135: add custom not found page
|
|
33
|
-
- 3420416: ZERO-2533: extend eslint config from @akinon/next
|
|
34
|
-
- 495d155: ZERO-2505: findBaseDir function is united and move on to the utils
|
|
35
|
-
- 40ad73e: ZERO-2504: add cookie filter to api client request
|
|
36
|
-
- 495d155: ZERO-2524: Zero-cli dist checks for changes and renders it to the terminal.
|
|
37
|
-
- f046f8e: ZERO-2575: update version for react-number-format
|
|
38
|
-
- 6b2972b: ZERO-2514: Fix handling of status 204 and return Commerce status code in client proxy API.
|
|
39
|
-
- 3e68768: ZERO-2578: Add osessionid check in middleware
|
|
26
|
+
## 1.33.2
|
|
40
27
|
|
|
41
28
|
## 1.33.1
|
|
42
29
|
|
package/api/client.ts
CHANGED
|
@@ -141,7 +141,7 @@ async function proxyRequest(...args) {
|
|
|
141
141
|
);
|
|
142
142
|
}
|
|
143
143
|
|
|
144
|
-
const setCookieHeaders =
|
|
144
|
+
const setCookieHeaders = request.headers.getSetCookie();
|
|
145
145
|
const exceptCookieKeys = ['pz-locale', 'pz-currency'];
|
|
146
146
|
|
|
147
147
|
const isExcludedCookie = (name: string) => exceptCookieKeys.includes(name);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akinon/next",
|
|
3
3
|
"description": "Core package for Project Zero Next",
|
|
4
|
-
"version": "1.34.0-rc.
|
|
4
|
+
"version": "1.34.0-rc.7",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@typescript-eslint/eslint-plugin": "6.7.4",
|
|
35
35
|
"@typescript-eslint/parser": "6.7.4",
|
|
36
36
|
"eslint": "^8.14.0",
|
|
37
|
-
"@akinon/eslint-plugin-projectzero": "1.34.0-rc.
|
|
37
|
+
"@akinon/eslint-plugin-projectzero": "1.34.0-rc.7",
|
|
38
38
|
"eslint-config-prettier": "8.5.0"
|
|
39
39
|
}
|
|
40
40
|
}
|