@rebilly/revel 12.28.0 → 12.30.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 +2 -2
- package/dist/revel.mjs +1 -0
- package/dist/revel.umd.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [12.
|
|
1
|
+
## [12.30.0](https://github.com/Rebilly/rebilly/compare/revel-v12.29.0...revel-v12.30.0) (2026-04-27)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Features
|
|
5
5
|
|
|
6
|
-
* **
|
|
6
|
+
* **revel:** Add 403 status case to revel toast DefaultErrorHandler ([#20725](https://github.com/Rebilly/rebilly/issues/20725)) ([2e194d0](https://github.com/Rebilly/rebilly/commit/2e194d0a2f2d07c0ddfc6a79728a11ea77dba8e5))
|
package/dist/revel.mjs
CHANGED
|
@@ -12625,6 +12625,7 @@ class GW {
|
|
|
12625
12625
|
if (b && b.status)
|
|
12626
12626
|
switch (b.status) {
|
|
12627
12627
|
case 401:
|
|
12628
|
+
case 403:
|
|
12628
12629
|
case 404:
|
|
12629
12630
|
case 409:
|
|
12630
12631
|
case 400:
|