Skip to content

Commit f057c15

Browse files
committed
Fix for #1102
1 parent d35dfa8 commit f057c15

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [v4.3.4]
9+
10+
### Fixed
11+
- Allows `userfrosting/cache` 4.4.x as a fix for [#1102].
12+
813
## [v4.3.3]
914

1015
### Fixed
@@ -786,7 +791,7 @@ See [http://learn.userfrosting.com/upgrading/40-to-41](Upgrading 4.0.x to 4.1.x
786791
- Implemented DB-driven home pages for groups. Upon login, a user will be redirected to the `home_page` for their primary group.
787792
- Implemented templated menus. Every group has a corresponding menu template in `models/menu-templates`. Upon login, the menu for a user's primary group is automatically loaded and rendered.
788793
- Implemented function-level user authorization. Whenever a function in `secure_functions` is called, the `user_action_permits` table is checked to see whether or not that user has access to the function (the `action` column), conditional on the boolean functions specified in the `permits` column.
789-
- Organized pages into four categories: account pages, API pages, form pages, and public pages. Public pages reside in the root directory and can be accessed by anyone. Account pages are in the `account` directory and are only accessible after logging in. API pages are in the `api` directory, and consist of all the pages that process or fetch data from the DB and interact with the frontend via AJAX/JSON. They are accessible by any logged in user, but will only perform a function if the user is authorized. Form pages are in the `forms` directory, and consist of pages that generate forms (for creating/updating users, groups, etc.)
794+
- Organized pages into four categories: account pages, API pages, form pages, and public pages. Public pages reside in the root directory and can be accessed by anyone. Account pages are in the `account` directory and are only accessible after logging in. API pages are in the `api` directory, and consist of all the pages that process or fetch data from the DB and interact with the frontend via AJAX/JSON. They are accessible by any logged in user, but will only perform a function if the user is authorized. Form pages are in the `forms` directory, and consist of pages that generate forms (for creating/updating users, groups, etc.)
790795
- Converted registration page to AJAX.
791796
- Improved installer with site configuration.
792797

@@ -890,6 +895,7 @@ See [http://learn.userfrosting.com/upgrading/40-to-41](Upgrading 4.0.x to 4.1.x
890895
[#1042]: https://github.com/userfrosting/UserFrosting/issues/1042
891896
[#1045]: https://github.com/userfrosting/UserFrosting/issues/1045
892897
[#1050]: https://github.com/userfrosting/UserFrosting/issues/1050
898+
[#1102]: https://github.com/userfrosting/UserFrosting/issues/1102
893899

894900
[v4.2.0]: https://github.com/userfrosting/UserFrosting/compare/v4.1.22...v4.2.0
895901
[v4.2.1]: https://github.com/userfrosting/UserFrosting/compare/v4.2.0...v.4.2.1

app/sprinkles/core/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"twig/twig": "^2.11",
4646
"userfrosting/assets": "^6.0.0",
4747
"userfrosting/config": "~4.3.0",
48-
"userfrosting/cache": "~4.3.0",
48+
"userfrosting/cache": "~4.3.0 | ~4.4.0",
4949
"userfrosting/fortress": "~4.3.0",
5050
"userfrosting/i18n": "~4.3.0",
5151
"userfrosting/session": "~4.3.0",

0 commit comments

Comments
 (0)