@akinon/projectzero 1.83.0 → 1.85.0-rc.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.
Files changed (30) hide show
  1. package/CHANGELOG.md +72 -3
  2. package/app-template/.gitignore +2 -0
  3. package/app-template/CHANGELOG.md +3637 -209
  4. package/app-template/next.config.mjs +4 -1
  5. package/app-template/package.json +18 -19
  6. package/app-template/public/locales/en/common.json +6 -0
  7. package/app-template/public/locales/tr/common.json +6 -0
  8. package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +9 -82
  9. package/app-template/src/app/[commerce]/[locale]/[currency]/error.tsx +12 -15
  10. package/app-template/src/settings.js +6 -1
  11. package/app-template/src/views/basket/basket-content.tsx +106 -0
  12. package/app-template/src/views/basket/basket-item.tsx +16 -13
  13. package/app-template/src/views/basket/summary.tsx +10 -7
  14. package/app-template/src/views/header/action-menu.tsx +6 -3
  15. package/app-template/src/views/header/mini-basket.tsx +6 -1
  16. package/app-template/src/views/otp-login/index.tsx +12 -14
  17. package/codemods/sentry-9/index.js +30 -0
  18. package/codemods/sentry-9/remove-sentry-configs.js +14 -0
  19. package/codemods/sentry-9/remove-sentry-dependency.js +25 -0
  20. package/codemods/sentry-9/replace-error-page.js +32 -0
  21. package/commands/codemod.ts +18 -0
  22. package/commands/index.ts +3 -1
  23. package/dist/codemods/sentry-9/templates/error.js +14 -0
  24. package/dist/commands/codemod.js +16 -0
  25. package/dist/commands/index.js +3 -1
  26. package/package.json +1 -1
  27. package/app-template/sentry.client.config.ts +0 -16
  28. package/app-template/sentry.edge.config.ts +0 -3
  29. package/app-template/sentry.properties +0 -4
  30. package/app-template/sentry.server.config.ts +0 -3
package/CHANGELOG.md CHANGED
@@ -1,14 +1,83 @@
1
1
  # @akinon/projectzero
2
2
 
3
+ ## 1.85.0-rc.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
8
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
9
+ - 33377cfd: ZERO-3267: Refactor import statement for ROUTES in error-page component
10
+ - e2583ac2: ZERO-3282: Switch to execSync for synchronous execution, enhance file checks, and add error page replacement script
11
+
12
+ ## 1.84.0
13
+
3
14
  ## 1.83.0
4
15
 
5
16
  ## 1.82.0
6
17
 
7
18
  ### Minor Changes
8
19
 
9
- - 7a1e1f7: ZERO-3138: Close the search input with the esc key
10
- - c82875b: ZERO-3140: Fix style layout size
11
- - 6c1dba7: ZERO-3174: update hash structure
20
+ - 33377cf: ZERO-3267: Refactor import statement for ROUTES in error-page component
21
+
22
+ ## 1.82.0-rc.18
23
+
24
+ ## 1.82.0-rc.17
25
+
26
+ ### Minor Changes
27
+
28
+ - e2583ac2: ZERO-3282: Switch to execSync for synchronous execution, enhance file checks, and add error page replacement script
29
+
30
+ ## 1.82.0-rc.16
31
+
32
+ ### Minor Changes
33
+
34
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
35
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
36
+
37
+ ## 1.82.0-rc.15
38
+
39
+ ## 1.82.0-rc.14
40
+
41
+ ## 1.82.0-rc.13
42
+
43
+ ## 1.82.0-rc.12
44
+
45
+ ## 1.82.0-rc.11
46
+
47
+ ## 1.82.0-rc.10
48
+
49
+ ## 1.82.0-rc.9
50
+
51
+ ## 1.82.0-rc.8
52
+
53
+ ## 1.82.0-rc.7
54
+
55
+ ## 1.82.0-rc.6
56
+
57
+ ## 1.82.0-rc.5
58
+
59
+ ## 1.82.0-rc.4
60
+
61
+ ## 1.82.0-rc.3
62
+
63
+ ## 1.82.0-rc.2
64
+
65
+ ### Minor Changes
66
+
67
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
68
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
69
+
70
+ ## 1.82.0-rc.1
71
+
72
+ ## 1.82.0-rc.0
73
+
74
+ ### Minor Changes
75
+
76
+ - 64699d3f: ZERO-2761: Fix invalid import for plugin module
77
+ - 7a1e1f73: ZERO-3138: Close the search input with the esc key
78
+ - 7727ae55: ZERO-3073: Refactor basket page to use server-side data fetching and simplify component structure
79
+ - c82875bc: ZERO-3140: Fix style layout size
80
+ - 6c1dba75: ZERO-3174: update hash structure
12
81
 
13
82
  ## 1.81.0
14
83
 
@@ -65,3 +65,5 @@ next.config.wizardcopy.js
65
65
 
66
66
  certificates
67
67
  public/locales/*/index.json
68
+
69
+ certificates