Conversation
added 2 commits
June 13, 2026 21:13
- webfiori/http: v5.0.* -> v6.0.* - webfiori/file: v2.0.* -> v2.1.* - webfiori/jsonx: v4.0.* -> v5.0.* - webfiori/cli: v2.1.* -> v2.2.* - webfiori/mailer: v2.1.* -> v2.2.* - Add #[SingleInstance] attribute to CLI commands (cli 2.2) - Update HelpCommandTest for new grouped help output format
- Move down/up to 'maintenance' group - Move help/v to 'other' group - Update HelpCommandTest to match new output
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #393 +/- ##
============================================
+ Coverage 83.37% 83.67% +0.30%
- Complexity 3062 3067 +5
============================================
Files 103 103
Lines 9004 9018 +14
============================================
+ Hits 7507 7546 +39
+ Misses 1497 1472 -25
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
added 5 commits
June 13, 2026 22:32
When a browser sends a session cookie but storage has been cleared, the framework now reuses the existing cookie ID for the new session instead of generating a new one. This prevents the infinite new-session loop where the browser perpetually sends the old cookie. - Session::start() only regenerates ID when status is KILLED - SessionManager::start() passes cookie ID to new session Closes #389 Closes #388
Allows stepping through pending migrations one at a time with Apply/Skip/Quit prompts. Shows SQL preview for each migration before prompting for action. Closes #387
added 4 commits
June 14, 2026 00:25
- Use App::getRequest() instead of static Request::getUri()/getAuthHeader() - Pass required storage path to FileStorage constructor - Add tests for StartSessionMiddleware and CacheMiddleware Closes #289
Assert isRunning() instead of exact SessionStatus::NEW to avoid test ordering dependency in CI.
…Test PHP 8.3 caches file_exists() results via realpath_cache, causing the autoloader to not see newly created class files. clearstatcache() forces a fresh filesystem check.
Register the test theme explicitly instead of relying on pre-registered themes from bootstrap. Fixes skip in CI.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Update all webfiori/* dependencies to their latest versions, fix bugs, and add new features for v3 stable.
Motivation
Prepare the framework for v3 stable release — update deps, fix session bugs, add health check features, add migrations:step command, fix middleware compatibility, and improve test reliability.
Changes
webfiori/http: v5.0.* → v6.0.*webfiori/file: v2.0.* → v2.1.*webfiori/jsonx: v4.0.* → v5.0.*webfiori/cli: v2.1.* → v2.2.*webfiori/mailer: v2.1.* → v2.2.*#[SingleInstance]attribute to CLI commands (cli 2.2)#[Group]attribute for command categorizationHealthCheck::getChecks()introspection (feat(health): Add getChecks() introspection method to HealthCheck #392)HealthCheck::afterAll()lifecycle hook (feat(health): Add afterAll() lifecycle hook to HealthCheck #391)migrations:stepinteractive command (feat(migrations): add migrations:step command for interactive one-at-a-time execution #387)How to Test / Verify
All 994 tests pass across PHP 8.1–8.5. Run
vendor/bin/phpunit --configuration tests/phpunit10.xml.Breaking Changes and Migration Steps
None. All changes are backward compatible.
Checklist
composer fix-cs)Related issues
Closes #387
Closes #388
Closes #389
Closes #391
Closes #392