@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 CHANGED
@@ -1,34 +1,14 @@
1
1
  # @akinon/next
2
2
 
3
- ## 1.69.0-rc.4
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
- ## 1.69.0-rc.0
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
 
@@ -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-rc.4",
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-rc.4",
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
@@ -28,7 +28,6 @@ declare module '@akinon/pz-saved-card' {
28
28
  export const savedCardReducer: any;
29
29
  export const SavedCardOption: any;
30
30
  export const savedCardReducer: any;
31
- export const savedCardMiddleware: any;
32
31
  }
33
32
 
34
33
  declare module '@akinon/pz-iyzico-saved-card' {
@@ -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;
package/with-pz-config.js CHANGED
@@ -61,6 +61,9 @@ const defaultConfig = {
61
61
  translations: false
62
62
  };
63
63
  return config;
64
+ },
65
+ sentry: {
66
+ hideSourceMaps: true
64
67
  }
65
68
  };
66
69