@akinon/next 1.73.0-rc.13 → 1.73.0-rc.15
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 +12 -0
- package/data/urls.ts +1 -1
- package/lib/cache-handler.mjs +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @akinon/next
|
|
2
2
|
|
|
3
|
+
## 1.73.0-rc.15
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 999168d6: ZERO-3104: Remove local cache handler from CacheHandler initialization
|
|
8
|
+
|
|
9
|
+
## 1.73.0-rc.14
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- e96633e6: ZERO-3100: Update stores endpoint
|
|
14
|
+
|
|
3
15
|
## 1.73.0-rc.13
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/data/urls.ts
CHANGED
|
@@ -151,7 +151,7 @@ export const landingpage = {
|
|
|
151
151
|
|
|
152
152
|
export const misc = {
|
|
153
153
|
autocomplete: '/autocomplete/',
|
|
154
|
-
stores: '/
|
|
154
|
+
stores: '/address/retail_store/',
|
|
155
155
|
menu: '/misc/menus/generate/',
|
|
156
156
|
prettyUrl: (pathname: string) => `/misc/pretty-url${pathname}/`,
|
|
157
157
|
prettyUrls: (pathname: string) => `/pretty_urls/?new_path__exact=${pathname}`,
|
package/lib/cache-handler.mjs
CHANGED
|
@@ -23,10 +23,10 @@ CacheHandler.onCreation(async () => {
|
|
|
23
23
|
timeoutMs: 5000
|
|
24
24
|
});
|
|
25
25
|
|
|
26
|
-
const localHandler = createLruHandler();
|
|
26
|
+
// const localHandler = createLruHandler();
|
|
27
27
|
|
|
28
28
|
return {
|
|
29
|
-
handlers: [redisHandler
|
|
29
|
+
handlers: [redisHandler]
|
|
30
30
|
};
|
|
31
31
|
});
|
|
32
32
|
|
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.73.0-rc.
|
|
4
|
+
"version": "1.73.0-rc.15",
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"bin": {
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"set-cookie-parser": "2.6.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@akinon/eslint-plugin-projectzero": "1.73.0-rc.
|
|
33
|
+
"@akinon/eslint-plugin-projectzero": "1.73.0-rc.15",
|
|
34
34
|
"@types/react-redux": "7.1.30",
|
|
35
35
|
"@types/set-cookie-parser": "2.4.7",
|
|
36
36
|
"@typescript-eslint/eslint-plugin": "6.7.4",
|