@akinon/next 1.37.0-rc.7 → 1.37.0-rc.8
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 +19 -0
- package/package.json +2 -2
- /package/{eslint.config.js → .eslintrc.js} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @akinon/next
|
|
2
2
|
|
|
3
|
+
## 1.37.0-rc.8
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1bc5e92: ZERO-2701: Fix image loader regex to handle null src values
|
|
8
|
+
- a4c8d6a: ZERO-2663: Fix the image url for gif and svgs and return them without options
|
|
9
|
+
- c53ea3e: ZERO-2609: Reset additional form fields when selectedFormType is not company
|
|
10
|
+
- c53ef7b: ZERO-2668: The Link component has been updated to improve the logic for handling href values. Previously, if the href was not a string or started with 'http', it would return the href as is. Now, if the href is not provided, it will default to '#' to prevent any potential errors. Additionally, if the href is a string and does not start with 'http', it will be formatted with the locale and pathname, based on the localeUrlStrategy and defaultLocaleValue. This ensures that the correct href is generated based on the localization settings.
|
|
11
|
+
- 1448a96: ZERO-2612: add errors type in CheckoutState
|
|
12
|
+
- 6247aae: ZERO-2698: rename eslint config files
|
|
13
|
+
- b5d5c5c: ZERO-2683: Add conditional initialization for Sentry based on type
|
|
14
|
+
- 75080fd: ZERO-2630: Add max limit to postcode area
|
|
15
|
+
- 91265bb: ZERO-2551: Improve pretty url and caching performance
|
|
16
|
+
- bbe18b9: ZERO-2575: Fix build error
|
|
17
|
+
- 05b1fe1: ZERO-2674: Update getMenu query to accept depth and parent parameters
|
|
18
|
+
- dff0d59: ZERO-2659: add formData support to proxy api requests
|
|
19
|
+
- beb499e: ZERO-2551: Add new tsconfig paths
|
|
20
|
+
- f046f8e: ZERO-2575: update version for react-number-format
|
|
21
|
+
|
|
3
22
|
## 1.37.0-rc.7
|
|
4
23
|
|
|
5
24
|
## 1.37.0-rc.6
|
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.37.0-rc.
|
|
4
|
+
"version": "1.37.0-rc.8",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@typescript-eslint/eslint-plugin": "6.7.4",
|
|
36
36
|
"@typescript-eslint/parser": "6.7.4",
|
|
37
37
|
"eslint": "^8.14.0",
|
|
38
|
-
"@akinon/eslint-plugin-projectzero": "1.37.0-rc.
|
|
38
|
+
"@akinon/eslint-plugin-projectzero": "1.37.0-rc.8",
|
|
39
39
|
"eslint-config-prettier": "8.5.0"
|
|
40
40
|
}
|
|
41
41
|
}
|
|
File without changes
|