Leantime
Goal-focused project management system for non-project managers
Alternative to: trello, asana, jira, clickup, monday.com
About
Versions (100)
v3.3.1
2024-11-18Changes in this Release
- Fix for BASE_URL/APP_URL issue
- Fix for configuration.php support (also now officially deprecated)
- Fix for open basedir restriction issue on avatar creation
- Fix for cache prefixes on cluster mode
History from v3.3.0 to @
Commits
- b667cc56e [Changelog CI] Add Changelog for Version 3.3.1
- 9285883d0 Update StringableMacros.php
- 138de0e81 update comments for phpstan
- 671794ba6 mixin updates
- ab23d1195 Adding comments for phpstan
- 4eabdb19e Resolving open basedir restrictions with font files in avatar generation scripts
- c4032e009 Version bump
- 1875f07c9 code style fixes
- 8ad64a64c Update .gitignore
- 99357d001 Deprecate configuration.php file and create backward support
- cbc8affd3 Ensure current project is selected for new sprints
- 6da255a38 Fix debug calls in ldap service
- e1f8943b7 code style fixes
- 9aa3ffb1d code style fixes
- ded3cac47 Fix constant url handling
- 60ed1c16a Move BASE_URL set to config bootstrap to fix mixed url issue #2787
- beccd6c1e Fixing cache pre-fix issues when using redis cluster
- 93359df9f [Changelog CI] Add Changelog for Version 3.3.0
Contributors
- Marcel Folaron (16 commits)
Files
.gitignore | 1 +
.idea/php.xml | 63 ++++++++
CHANGELOG.md | 167 ++++++++++++++++++++++
app/Core/Bootstrap/LoadConfig.php | 42 ++++++
app/Core/Configuration/AppSettings.php | 2 +-
app/Core/Configuration/Environment.php | 7 +
app/Core/Configuration/laravelConfig.php | 58 ++++----
app/Core/Db/Db.php | 2 +-
app/Core/Fileupload.php | 13 +-
app/Core/Http/HttpKernel.php | 2 +-
app/Core/Http/IncomingRequest.php | 35 +----
app/Core/Middleware/LoadPlugins.php | 15 +-
app/Core/Middleware/StartSession.php | 2 +
app/Core/Providers/Cache.php | 7 +-
app/Core/Providers/LoadMacros.php | 26 ++++
app/Core/Providers/Redis.php | 41 ++++--
app/Core/Support/StringableMacros.php | 36 +++++
app/Domain/Api/Controllers/Projects.php | 2 +-
app/Domain/Api/Controllers/Users.php | 2 +-
app/Domain/Auth/Templates/userInvite.tpl.php | 111 --------------
app/Domain/Ideas/Repositories/Ideas.php | 4 +
app/Domain/Ldap/Services/Ldap.php | 18 +--
app/Domain/Plugins/Services/Registration.php | 8 +-
app/Domain/Projects/Repositories/Projects.php | 17 ++-
app/Domain/Sprints/Templates/sprintdialog.tpl.php | 21 +--
app/Domain/Users/Repositories/Users.php | 18 ++-
app/helpers.php | 70 +++++++++
composer.json | 2 +-
composer.lock | 2 +-
config/configuration.sample.php | 6 +-
config/sample.env | 2 +-
makefile | 2 +-
package.json | 2 +-
public/dist/mix-manifest.json | 30 ++--
tests/Unit/app/Core/ApplicationUrlTest.php | 111 ++++++++++++++
35 files changed, 686 insertions(+), 261 deletions(-)