-
Notifications
You must be signed in to change notification settings - Fork 26
merge: v1.16.5 #87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
merge: v1.16.5 #87
Conversation
* chore: Upgrade framework to v1.16.3 (auto) * upgrade postgres v1.4.1 * optimize
* upgrade: v1.16.4 * upgrade: v1.16.4 * update mod
* fix: [#807] queue.Shutdown doesn't stop the queue as expected * upgrade: v1.16.5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR removes support for Cloudinary as a filesystem driver, updates package versions from @master to @v1.4.x, improves the queue worker lifecycle management, and restructures validation requests. The changes include:
- Removal of Cloudinary filesystem driver integration
- Update of package installation/uninstallation test commands to use versioned packages
- Addition of worker shutdown handling in the main application
- Separation of validation concerns by creating a dedicated
ValidationCreaterequest - Enhancement of the User model with JSON field support for tags
Reviewed Changes
Copilot reviewed 13 out of 15 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| tests/feature/filesystem_test.go | Removed Cloudinary driver test setup |
| package_test.go | Updated package versions from @master to @v1.4.x for all driver tests |
| main.go | Added worker shutdown handling in graceful shutdown flow |
| go.sum | Updated dependency checksums for various packages |
| go.mod | Removed Cloudinary dependency, updated package versions and toolchain |
| database/migrations/20210101000001_create_users_table.go | Added JSON tags field to users table |
| config/filesystems.go | Removed Cloudinary filesystem configuration |
| config/app.go | Removed Cloudinary service provider registration |
| app/models/user.go | Added Tags field with custom JSON serialization methods |
| app/http/requests/validation_create.go | New validation request with comprehensive validation rules |
| app/http/requests/user_create.go | Simplified user creation request focused on user fields |
| app/http/controllers/validation_controller.go | Updated to use new ValidationCreate request |
| app/http/controllers/user_controller.go | Added validation logic and expanded user creation |
| .github/workflows/test.yml | Removed Cloudinary environment variables |
| goravel | SQLite database file (binary, should be ignored) |
π‘ Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
π Description
Merge v1.16.5
β Checks