diff --git a/CHANGELOG.en_US.md b/CHANGELOG.en_US.md index a87606dec..4a4c69a45 100644 --- a/CHANGELOG.en_US.md +++ b/CHANGELOG.en_US.md @@ -1,3 +1,23 @@ +# 6.2.0 (2025-10-16) + +### 🎫 Features + +- Added full-screen `403`, `404`, and `500` error pages. These full-screen error pages are clear and secure, improving the user experience. + +### 🐞 Bug Fixes + +- Fixed an issue where the built-in homepage did not have a `name` configured, causing cache invalidation after setting the page cache. +- Fixed an issue where, in an embedded same-origin `iframe` page, when the `beforeunload` event was registered, right-clicking a tab and reloading it would cause the browser to prompt two confirmation blocks. +- Fixed an issue where pages with `keepAlive: true` set to cache invalidation when the initial load was slow. +- Fixed an issue where multiple tabs could be activated simultaneously when using the same parameters in different routes. +- Fixed an issue where the right-click menu on a tab displayed incorrectly when passing `params` parameters. + +### 🍏 Perf + +- Optimized the `nprogress` progress bar. It no longer displays when reloading a page or requesting an interface, improving the user experience. +- Optimized the timing of capturing all unmatched routes and redirecting to a full-screen `404` page. +- Explicitly configured the `Tailwind CSS` entry file path to improve the contextual recognition and prompting performance of the `Tailwind CSS IntelliSense` plugin + # 6.1.0 (2025-07-31) ### ✔️ Refactor diff --git a/CHANGELOG.md b/CHANGELOG.md index a87606dec..4a4c69a45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# 6.2.0 (2025-10-16) + +### 🎫 Features + +- Added full-screen `403`, `404`, and `500` error pages. These full-screen error pages are clear and secure, improving the user experience. + +### 🐞 Bug Fixes + +- Fixed an issue where the built-in homepage did not have a `name` configured, causing cache invalidation after setting the page cache. +- Fixed an issue where, in an embedded same-origin `iframe` page, when the `beforeunload` event was registered, right-clicking a tab and reloading it would cause the browser to prompt two confirmation blocks. +- Fixed an issue where pages with `keepAlive: true` set to cache invalidation when the initial load was slow. +- Fixed an issue where multiple tabs could be activated simultaneously when using the same parameters in different routes. +- Fixed an issue where the right-click menu on a tab displayed incorrectly when passing `params` parameters. + +### 🍏 Perf + +- Optimized the `nprogress` progress bar. It no longer displays when reloading a page or requesting an interface, improving the user experience. +- Optimized the timing of capturing all unmatched routes and redirecting to a full-screen `404` page. +- Explicitly configured the `Tailwind CSS` entry file path to improve the contextual recognition and prompting performance of the `Tailwind CSS IntelliSense` plugin + # 6.1.0 (2025-07-31) ### ✔️ Refactor diff --git a/CHANGELOG.zh_CN.md b/CHANGELOG.zh_CN.md index 2dfcae66d..93cfdb168 100644 --- a/CHANGELOG.zh_CN.md +++ b/CHANGELOG.zh_CN.md @@ -1,3 +1,23 @@ +# 6.2.0 (2025-10-16) + +### 🎫 Feat + +- 添加全屏`403`、`404`、`500`页面,全屏错误页面清晰且安全,提升用户体验 + +### 🐞 Bug fixes + +- 修复内置的首页未设置`name`导致设置页面缓存后缓存无效的问题 +- 修复在内嵌同源`iframe`页面中,当其注册了`beforeunload`事件时,右键标签页点击重新加载导致浏览器弹出两次确认拦截的问题 +- 修复设置了`keepAlive: true`的页面在初次加载缓慢的情况下出现的页面缓存失效的问题 +- 修复不同路由使用相同参数时,多个标签页会同时被激活的问题 +- 修复`params`传参模式下标签页右键菜单显示不正确的问题 + +### 🍏 Perf + +- 优化`nprogress`进度条,页面重进或接口请求时不再显示进度条,提升用户体验 +- 优化当捕获所有未匹配路由并跳转全屏`404`页面的时机 +- 显式配置`Tailwind CSS`入口文件路径,优化`Tailwind CSS IntelliSense`插件的上下文识别与提示性能 + # 6.1.0 (2025-07-31) ### ✔️ Refactor diff --git a/package.json b/package.json index c479bd085..2a50664bb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-pure-admin", - "version": "6.1.0", + "version": "6.2.0", "private": true, "type": "module", "scripts": { diff --git a/public/platform-config.json b/public/platform-config.json index 1d04a8aec..0e153f612 100644 --- a/public/platform-config.json +++ b/public/platform-config.json @@ -1,5 +1,5 @@ { - "Version": "6.1.0", + "Version": "6.2.0", "Title": "PureAdmin", "FixedHeader": true, "HiddenSideBar": false,