diff --git a/.changeset/avatax-logs-date-range-validation.md b/.changeset/avatax-logs-date-range-validation.md deleted file mode 100644 index 3f5fded32..000000000 --- a/.changeset/avatax-logs-date-range-validation.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"saleor-app-avatax": patch ---- - -Fixed Client Logs date filter showing an opaque error when the "From" date was after the "To" date. Before, the request was sent and DynamoDB rejected it with a generic validation error. Now the form skips the request and shows a clear inline message, and the API rejects inverted ranges with a 400 response. diff --git a/.changeset/jwt-verification-401-no-sentry.md b/.changeset/jwt-verification-401-no-sentry.md deleted file mode 100644 index d3ed9c3a6..000000000 --- a/.changeset/jwt-verification-401-no-sentry.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -"saleor-app-avatax": patch -"saleor-app-cms": patch -"saleor-app-payment-np-atobarai": patch -"saleor-app-products-feed": patch -"saleor-app-search": patch -"saleor-app-segment": patch -"saleor-app-smtp": patch -"saleor-app-payment-stripe": patch ---- - -Failed JWT verification in tRPC procedures no longer reports to Sentry as an error. Before, an expired or invalid token raised a 500 (or 403) and produced an error in monitoring even though it was a normal client-side auth failure. Now it logs a warning and returns 401, so dashboards stay clean and the client can react to the auth state correctly. diff --git a/apps/avatax/CHANGELOG.md b/apps/avatax/CHANGELOG.md index aa634cce1..16a6c680a 100644 --- a/apps/avatax/CHANGELOG.md +++ b/apps/avatax/CHANGELOG.md @@ -1,5 +1,12 @@ # saleor-app-avatax +## 1.22.8 + +### Patch Changes + +- 9265c47: Fixed Client Logs date filter showing an opaque error when the "From" date was after the "To" date. Before, the request was sent and DynamoDB rejected it with a generic validation error. Now the form skips the request and shows a clear inline message, and the API rejects inverted ranges with a 400 response. +- 4af78c1: Failed JWT verification in tRPC procedures no longer reports to Sentry as an error. Before, an expired or invalid token raised a 500 (or 403) and produced an error in monitoring even though it was a normal client-side auth failure. Now it logs a warning and returns 401, so dashboards stay clean and the client can react to the auth state correctly. + ## 1.22.7 ### Patch Changes diff --git a/apps/avatax/package.json b/apps/avatax/package.json index 628629b91..4c55b7e91 100644 --- a/apps/avatax/package.json +++ b/apps/avatax/package.json @@ -1,6 +1,6 @@ { "name": "saleor-app-avatax", - "version": "1.22.7", + "version": "1.22.8", "private": true, "type": "module", "scripts": { diff --git a/apps/cms/CHANGELOG.md b/apps/cms/CHANGELOG.md index f7e5f9d11..bb412eed7 100644 --- a/apps/cms/CHANGELOG.md +++ b/apps/cms/CHANGELOG.md @@ -1,5 +1,11 @@ # saleor-app-cms +## 2.15.6 + +### Patch Changes + +- 4af78c1: Failed JWT verification in tRPC procedures no longer reports to Sentry as an error. Before, an expired or invalid token raised a 500 (or 403) and produced an error in monitoring even though it was a normal client-side auth failure. Now it logs a warning and returns 401, so dashboards stay clean and the client can react to the auth state correctly. + ## 2.15.5 ### Patch Changes diff --git a/apps/cms/package.json b/apps/cms/package.json index 6d4e5f2c3..3aa338227 100644 --- a/apps/cms/package.json +++ b/apps/cms/package.json @@ -1,6 +1,6 @@ { "name": "saleor-app-cms", - "version": "2.15.5", + "version": "2.15.6", "private": true, "type": "module", "scripts": { diff --git a/apps/np-atobarai/CHANGELOG.md b/apps/np-atobarai/CHANGELOG.md index 3ddfd4ccd..b751b1e38 100644 --- a/apps/np-atobarai/CHANGELOG.md +++ b/apps/np-atobarai/CHANGELOG.md @@ -1,5 +1,11 @@ # saleor-app-payment-np-atobarai +## 1.4.8 + +### Patch Changes + +- 4af78c1: Failed JWT verification in tRPC procedures no longer reports to Sentry as an error. Before, an expired or invalid token raised a 500 (or 403) and produced an error in monitoring even though it was a normal client-side auth failure. Now it logs a warning and returns 401, so dashboards stay clean and the client can react to the auth state correctly. + ## 1.4.7 ### Patch Changes diff --git a/apps/np-atobarai/package.json b/apps/np-atobarai/package.json index 2d489e3b0..2b7bb7057 100644 --- a/apps/np-atobarai/package.json +++ b/apps/np-atobarai/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "saleor-app-payment-np-atobarai", - "version": "1.4.7", + "version": "1.4.8", "private": true, "type": "module", "scripts": { diff --git a/apps/products-feed/CHANGELOG.md b/apps/products-feed/CHANGELOG.md index b81f6c023..279165cb6 100644 --- a/apps/products-feed/CHANGELOG.md +++ b/apps/products-feed/CHANGELOG.md @@ -1,5 +1,11 @@ # saleor-app-products-feed +## 3.0.6 + +### Patch Changes + +- 4af78c1: Failed JWT verification in tRPC procedures no longer reports to Sentry as an error. Before, an expired or invalid token raised a 500 (or 403) and produced an error in monitoring even though it was a normal client-side auth failure. Now it logs a warning and returns 401, so dashboards stay clean and the client can react to the auth state correctly. + ## 3.0.5 ### Patch Changes diff --git a/apps/products-feed/package.json b/apps/products-feed/package.json index 397245ac1..fe0964be2 100644 --- a/apps/products-feed/package.json +++ b/apps/products-feed/package.json @@ -1,6 +1,6 @@ { "name": "saleor-app-products-feed", - "version": "3.0.5", + "version": "3.0.6", "private": true, "type": "module", "scripts": { diff --git a/apps/search/CHANGELOG.md b/apps/search/CHANGELOG.md index dec3f54d6..56067ef5d 100644 --- a/apps/search/CHANGELOG.md +++ b/apps/search/CHANGELOG.md @@ -1,5 +1,11 @@ # saleor-app-search +## 1.29.3 + +### Patch Changes + +- 4af78c1: Failed JWT verification in tRPC procedures no longer reports to Sentry as an error. Before, an expired or invalid token raised a 500 (or 403) and produced an error in monitoring even though it was a normal client-side auth failure. Now it logs a warning and returns 401, so dashboards stay clean and the client can react to the auth state correctly. + ## 1.29.2 ### Patch Changes diff --git a/apps/search/package.json b/apps/search/package.json index 66a5a5eda..2bf21db67 100644 --- a/apps/search/package.json +++ b/apps/search/package.json @@ -1,6 +1,6 @@ { "name": "saleor-app-search", - "version": "1.29.2", + "version": "1.29.3", "private": true, "type": "module", "scripts": { diff --git a/apps/segment/CHANGELOG.md b/apps/segment/CHANGELOG.md index 23e4c190a..257038aad 100644 --- a/apps/segment/CHANGELOG.md +++ b/apps/segment/CHANGELOG.md @@ -1,5 +1,11 @@ # saleor-app-segment +## 2.3.6 + +### Patch Changes + +- 4af78c1: Failed JWT verification in tRPC procedures no longer reports to Sentry as an error. Before, an expired or invalid token raised a 500 (or 403) and produced an error in monitoring even though it was a normal client-side auth failure. Now it logs a warning and returns 401, so dashboards stay clean and the client can react to the auth state correctly. + ## 2.3.5 ### Patch Changes diff --git a/apps/segment/package.json b/apps/segment/package.json index 3739ebd7c..350151df7 100644 --- a/apps/segment/package.json +++ b/apps/segment/package.json @@ -1,6 +1,6 @@ { "name": "saleor-app-segment", - "version": "2.3.5", + "version": "2.3.6", "private": true, "type": "module", "scripts": { diff --git a/apps/smtp/CHANGELOG.md b/apps/smtp/CHANGELOG.md index 9d4f69ef6..70a66fc11 100644 --- a/apps/smtp/CHANGELOG.md +++ b/apps/smtp/CHANGELOG.md @@ -1,5 +1,11 @@ # saleor-app-smtp +## 2.3.3 + +### Patch Changes + +- 4af78c1: Failed JWT verification in tRPC procedures no longer reports to Sentry as an error. Before, an expired or invalid token raised a 500 (or 403) and produced an error in monitoring even though it was a normal client-side auth failure. Now it logs a warning and returns 401, so dashboards stay clean and the client can react to the auth state correctly. + ## 2.3.2 ### Patch Changes diff --git a/apps/smtp/package.json b/apps/smtp/package.json index 3bd1d2db0..bfed87cbe 100644 --- a/apps/smtp/package.json +++ b/apps/smtp/package.json @@ -1,6 +1,6 @@ { "name": "saleor-app-smtp", - "version": "2.3.2", + "version": "2.3.3", "private": true, "type": "module", "scripts": { diff --git a/apps/stripe/CHANGELOG.md b/apps/stripe/CHANGELOG.md index 4847e05d8..c9cb581f2 100644 --- a/apps/stripe/CHANGELOG.md +++ b/apps/stripe/CHANGELOG.md @@ -1,5 +1,11 @@ # saleor-app-payment-stripe +## 2.6.6 + +### Patch Changes + +- 4af78c1: Failed JWT verification in tRPC procedures no longer reports to Sentry as an error. Before, an expired or invalid token raised a 500 (or 403) and produced an error in monitoring even though it was a normal client-side auth failure. Now it logs a warning and returns 401, so dashboards stay clean and the client can react to the auth state correctly. + ## 2.6.5 ### Patch Changes diff --git a/apps/stripe/package.json b/apps/stripe/package.json index a84fbe227..c7a30235b 100644 --- a/apps/stripe/package.json +++ b/apps/stripe/package.json @@ -1,7 +1,7 @@ { "$schema": "https://json.schemastore.org/package.json", "name": "saleor-app-payment-stripe", - "version": "2.6.5", + "version": "2.6.6", "private": true, "type": "module", "scripts": {