@akinon/next 1.69.0-rc.4 → 1.69.0
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 +4 -24
- package/instrumentation/index.ts +0 -7
- package/package.json +2 -2
- package/plugins.d.ts +0 -1
- package/redux/middlewares/index.ts +1 -4
- package/with-pz-config.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,34 +1,14 @@
|
|
|
1
1
|
# @akinon/next
|
|
2
2
|
|
|
3
|
-
## 1.69.0
|
|
3
|
+
## 1.69.0
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
7
|
- 063da74: ZERO-3010: Remove pz-iyzico-saved-card package
|
|
8
|
-
|
|
9
|
-
## 1.69.0-rc.3
|
|
10
|
-
|
|
11
|
-
### Minor Changes
|
|
12
|
-
|
|
13
|
-
- cbdb0c8: ZERO-3010: Move pretty url page into project
|
|
14
|
-
|
|
15
|
-
## 1.69.0-rc.2
|
|
16
|
-
|
|
17
|
-
### Minor Changes
|
|
18
|
-
|
|
19
|
-
- 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
|
|
20
|
-
|
|
21
|
-
## 1.69.0-rc.1
|
|
22
|
-
|
|
23
|
-
### Minor Changes
|
|
24
|
-
|
|
25
8
|
- 72da021: ZERO-3010: Remove unused code in pretty-url.tsx
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
### Minor Changes
|
|
30
|
-
|
|
31
|
-
- 4d3deb4: ZERO-2935: sentry 8 upgrade
|
|
9
|
+
- 5632a99: ZERO-3010: Remove iyzicoSavedCardReducer from reducers
|
|
10
|
+
- cbdb0c8: ZERO-3010: Move pretty url page into project
|
|
11
|
+
- 80c869b: ZERO-3010: Remove savedCardMiddleware from redux middlewares
|
|
32
12
|
|
|
33
13
|
## 1.68.0
|
|
34
14
|
|
package/instrumentation/index.ts
CHANGED
|
@@ -1,12 +1,5 @@
|
|
|
1
|
-
import { initSentry } from '../sentry';
|
|
2
|
-
|
|
3
1
|
export async function register() {
|
|
4
2
|
if (process.env.NEXT_RUNTIME === 'nodejs') {
|
|
5
3
|
await import('./node');
|
|
6
|
-
initSentry('Server');
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
if (process.env.NEXT_RUNTIME === 'edge') {
|
|
10
|
-
initSentry('Edge');
|
|
11
4
|
}
|
|
12
5
|
}
|
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.69.0
|
|
4
|
+
"version": "1.69.0",
|
|
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.69.0
|
|
33
|
+
"@akinon/eslint-plugin-projectzero": "1.69.0",
|
|
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",
|
package/plugins.d.ts
CHANGED
|
@@ -11,8 +11,6 @@ import {
|
|
|
11
11
|
import { api } from '../../data/client/api';
|
|
12
12
|
import logger from '@akinon/next/utils/log';
|
|
13
13
|
|
|
14
|
-
import { savedCardMiddleware } from '@akinon/pz-saved-card';
|
|
15
|
-
|
|
16
14
|
export const rtkQueryResponseHandler: Middleware =
|
|
17
15
|
({ dispatch }) =>
|
|
18
16
|
(next) =>
|
|
@@ -46,8 +44,7 @@ const middlewares = [
|
|
|
46
44
|
rtkQueryErrorHandler,
|
|
47
45
|
errorMiddleware,
|
|
48
46
|
preOrderMiddleware,
|
|
49
|
-
contextListMiddleware
|
|
50
|
-
savedCardMiddleware
|
|
47
|
+
contextListMiddleware
|
|
51
48
|
];
|
|
52
49
|
|
|
53
50
|
export default middlewares;
|