@akinon/projectzero 1.103.0-snapshot-ZERO-3648-20251002191321 → 1.103.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 +1 -1
- package/app-template/CHANGELOG.md +31 -0
- package/app-template/docs/sentry-usage.md +35 -0
- package/app-template/package.json +18 -18
- package/app-template/src/components/currency-select.tsx +1 -0
- package/app-template/src/views/header/action-menu.tsx +1 -1
- package/commands/plugins.ts +0 -4
- package/dist/commands/plugins.js +0 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# projectzeronext
|
|
2
2
|
|
|
3
|
+
## 1.103.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9ff2ea2: ZERO-3338: Add documentation for Sentry usage
|
|
8
|
+
- d600c05: ZERO-3389: Add data-testid attributes for testing in CurrencySelect and ActionMenu components
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [d0853b3]
|
|
13
|
+
- Updated dependencies [ad0bec9]
|
|
14
|
+
- Updated dependencies [310556e]
|
|
15
|
+
- Updated dependencies [b31333e]
|
|
16
|
+
- Updated dependencies [b16a370]
|
|
17
|
+
- @akinon/pz-pay-on-delivery@1.103.0
|
|
18
|
+
- @akinon/pz-masterpass@1.103.0
|
|
19
|
+
- @akinon/pz-credit-payment@1.103.0
|
|
20
|
+
- @akinon/pz-click-collect@1.103.0
|
|
21
|
+
- @akinon/next@1.103.0
|
|
22
|
+
- @akinon/pz-akifast@1.103.0
|
|
23
|
+
- @akinon/pz-b2b@1.103.0
|
|
24
|
+
- @akinon/pz-basket-gift-pack@1.103.0
|
|
25
|
+
- @akinon/pz-bkm@1.103.0
|
|
26
|
+
- @akinon/pz-checkout-gift-pack@1.103.0
|
|
27
|
+
- @akinon/pz-gpay@1.103.0
|
|
28
|
+
- @akinon/pz-one-click-checkout@1.103.0
|
|
29
|
+
- @akinon/pz-otp@1.103.0
|
|
30
|
+
- @akinon/pz-saved-card@1.103.0
|
|
31
|
+
- @akinon/pz-tabby-extension@1.103.0
|
|
32
|
+
- @akinon/pz-tamara-extension@1.103.0
|
|
33
|
+
|
|
3
34
|
## 1.102.0
|
|
4
35
|
|
|
5
36
|
### Minor Changes
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
title: Sentry Usage
|
|
3
|
+
sidebar_label: Sentry Usage
|
|
4
|
+
slug: sentry-usage
|
|
5
|
+
custom_edit_url: null
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
Sentry is a powerful tool for monitoring and debugging applications. In the context of the Project Zero Next application, it can be used to track errors, performance issues, and other important metrics. This document provides guidelines on how to effectively use Sentry for the Project Zero Next application.
|
|
9
|
+
|
|
10
|
+
## Filtering PZ Next Errors and Warnings
|
|
11
|
+
|
|
12
|
+
To filter out errors and warnings that are specific to the PZ Next application, you can use the following tag:
|
|
13
|
+
|
|
14
|
+
APP_TYPE = ProjectZeroNext
|
|
15
|
+
|
|
16
|
+
## Filtering Only Client-Side Errors
|
|
17
|
+
|
|
18
|
+
To filter out client-side errors, you can use the following tag:
|
|
19
|
+
|
|
20
|
+
TYPE = client
|
|
21
|
+
|
|
22
|
+
## Filtering Only Server-Side Errors
|
|
23
|
+
|
|
24
|
+
To filter out server-side errors, you can use the following tag:
|
|
25
|
+
|
|
26
|
+
TYPE = server
|
|
27
|
+
|
|
28
|
+
## Filtering Client-Side 500 Error Pages
|
|
29
|
+
|
|
30
|
+
To filter out 500 error pages caused by the client-side code, you can use the following tags:
|
|
31
|
+
|
|
32
|
+
TYPE = Client
|
|
33
|
+
LOG_TYPE = UNCAUGHT_ERROR_PAGE
|
|
34
|
+
|
|
35
|
+
You can use the **"Breadcrumbs"** feature in Sentry to track the navigation path that led to the error. This can help you understand how users arrived at the error page and what actions they took before encountering the issue.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "projectzeronext",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.103.0",
|
|
4
4
|
"private": true,
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"scripts": {
|
|
@@ -24,22 +24,22 @@
|
|
|
24
24
|
"test:middleware": "jest middleware-matcher.test.ts --bail"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@akinon/next": "1.
|
|
28
|
-
"@akinon/pz-akifast": "1.
|
|
29
|
-
"@akinon/pz-b2b": "1.
|
|
30
|
-
"@akinon/pz-basket-gift-pack": "1.
|
|
31
|
-
"@akinon/pz-bkm": "1.
|
|
32
|
-
"@akinon/pz-checkout-gift-pack": "1.
|
|
33
|
-
"@akinon/pz-click-collect": "1.
|
|
34
|
-
"@akinon/pz-credit-payment": "1.
|
|
35
|
-
"@akinon/pz-gpay": "1.
|
|
36
|
-
"@akinon/pz-masterpass": "1.
|
|
37
|
-
"@akinon/pz-one-click-checkout": "1.
|
|
38
|
-
"@akinon/pz-otp": "1.
|
|
39
|
-
"@akinon/pz-pay-on-delivery": "1.
|
|
40
|
-
"@akinon/pz-saved-card": "1.
|
|
41
|
-
"@akinon/pz-tabby-extension": "1.
|
|
42
|
-
"@akinon/pz-tamara-extension": "1.
|
|
27
|
+
"@akinon/next": "1.103.0",
|
|
28
|
+
"@akinon/pz-akifast": "1.103.0",
|
|
29
|
+
"@akinon/pz-b2b": "1.103.0",
|
|
30
|
+
"@akinon/pz-basket-gift-pack": "1.103.0",
|
|
31
|
+
"@akinon/pz-bkm": "1.103.0",
|
|
32
|
+
"@akinon/pz-checkout-gift-pack": "1.103.0",
|
|
33
|
+
"@akinon/pz-click-collect": "1.103.0",
|
|
34
|
+
"@akinon/pz-credit-payment": "1.103.0",
|
|
35
|
+
"@akinon/pz-gpay": "1.103.0",
|
|
36
|
+
"@akinon/pz-masterpass": "1.103.0",
|
|
37
|
+
"@akinon/pz-one-click-checkout": "1.103.0",
|
|
38
|
+
"@akinon/pz-otp": "1.103.0",
|
|
39
|
+
"@akinon/pz-pay-on-delivery": "1.103.0",
|
|
40
|
+
"@akinon/pz-saved-card": "1.103.0",
|
|
41
|
+
"@akinon/pz-tabby-extension": "1.103.0",
|
|
42
|
+
"@akinon/pz-tamara-extension": "1.103.0",
|
|
43
43
|
"@hookform/resolvers": "2.9.0",
|
|
44
44
|
"@next/third-parties": "14.1.0",
|
|
45
45
|
"@react-google-maps/api": "2.17.1",
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"yup": "0.32.11"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@akinon/eslint-plugin-projectzero": "1.
|
|
65
|
+
"@akinon/eslint-plugin-projectzero": "1.103.0",
|
|
66
66
|
"@semantic-release/changelog": "6.0.2",
|
|
67
67
|
"@semantic-release/exec": "6.0.3",
|
|
68
68
|
"@semantic-release/git": "10.0.1",
|
|
@@ -70,6 +70,7 @@ export const CurrencySelect = (props: CurrencySelectProps) => {
|
|
|
70
70
|
onClick={confirmModalHandleClick}
|
|
71
71
|
appearance="filled"
|
|
72
72
|
className="font-medium px-10 py-4 h-12"
|
|
73
|
+
data-testid="currency-modal-confirm"
|
|
73
74
|
>
|
|
74
75
|
{t('common.currency_modal.continue')}
|
|
75
76
|
</Button>
|
package/commands/plugins.ts
CHANGED
package/dist/commands/plugins.js
CHANGED