Skip to content

Commit dd1baeb

Browse files
committed
Merge branch 'refs/heads/master' into refactor-data-rule
# Conflicts: # backend/plugin/casbin/crud/crud_api.py
2 parents 138ea11 + 9b3425d commit dd1baeb

36 files changed

+112
-1149
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
<a id="v1.1.2"></a>
2+
# [v1.1.2](https://github.com/fastapi-practices/fastapi_best_architecture/releases/tag/v1.1.2) - 2025-04-23
3+
4+
## What's Changed
5+
* Update the changelog for v1.1.1 by [@wu-clan](https://github.com/wu-clan) in [#583](https://github.com/fastapi-practices/fastapi_best_architecture/pull/583)
6+
* Fix the condition to query menu by title by [@wu-clan](https://github.com/wu-clan) in [#584](https://github.com/fastapi-practices/fastapi_best_architecture/pull/584)
7+
* Fix cache cleanup when updating role menu by [@wu-clan](https://github.com/wu-clan) in [#585](https://github.com/fastapi-practices/fastapi_best_architecture/pull/585)
8+
* Optimize the userinfo cache cleaning logic by [@wu-clan](https://github.com/wu-clan) in [#586](https://github.com/fastapi-practices/fastapi_best_architecture/pull/586)
9+
* Bump fastapi pagination from 0.12.34 to 0.13.0 by [@wu-clan](https://github.com/wu-clan) in [#587](https://github.com/fastapi-practices/fastapi_best_architecture/pull/587)
10+
* Update the routing style of the task app by [@wu-clan](https://github.com/wu-clan) in [#588](https://github.com/fastapi-practices/fastapi_best_architecture/pull/588)
11+
12+
13+
**Full Changelog**: https://github.com/fastapi-practices/fastapi_best_architecture/compare/v1.1.1...v1.1.2
14+
15+
[Changes][v1.1.2]
16+
17+
118
<a id="v1.1.1"></a>
219
# [v1.1.1](https://github.com/fastapi-practices/fastapi_best_architecture/releases/tag/v1.1.1) - 2025-04-18
320

@@ -460,6 +477,7 @@
460477
[Changes][v1.0.0]
461478

462479

480+
[v1.1.2]: https://github.com/fastapi-practices/fastapi_best_architecture/compare/v1.1.1...v1.1.2
463481
[v1.1.1]: https://github.com/fastapi-practices/fastapi_best_architecture/compare/v1.1.0...v1.1.1
464482
[v1.1.0]: https://github.com/fastapi-practices/fastapi_best_architecture/compare/v1.0.5...v1.1.0
465483
[v1.0.5]: https://github.com/fastapi-practices/fastapi_best_architecture/compare/v1.0.4...v1.0.5

backend/core/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class Settings(BaseSettings):
7777
JWT_USER_REDIS_EXPIRE_SECONDS: int = 60 * 60 * 24 * 7 # 7 天
7878

7979
# RBAC
80-
RBAC_ROLE_MENU_MODE: bool = False
80+
RBAC_ROLE_MENU_MODE: bool = True
8181
RBAC_ROLE_MENU_EXCLUDE: list[str] = [
8282
'sys:monitor:redis',
8383
'sys:monitor:server',

backend/plugin/casbin/__init__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

backend/plugin/casbin/api/__init__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

backend/plugin/casbin/api/v1/__init__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

backend/plugin/casbin/api/v1/sys/__init__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

backend/plugin/casbin/api/v1/sys/api.py

Lines changed: 0 additions & 91 deletions
This file was deleted.

backend/plugin/casbin/api/v1/sys/casbin.py

Lines changed: 0 additions & 218 deletions
This file was deleted.

backend/plugin/casbin/conf.py

Lines changed: 0 additions & 26 deletions
This file was deleted.

backend/plugin/casbin/crud/__init__.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)