Conversation
- Introduced ActivityLog module for activity logging using spatie/laravel-activitylog. - Added configuration file for ActivityLog settings. - Created migration for activity_log table. - Implemented ActivityLogServiceProvider to handle module bootstrapping. - Added views for displaying activity logs in the backend. - Updated ModuleManagerServiceProvider to include default module status for ActivityLog. - Updated Post model to use new LogOptions method. - Added changelog and upgrade guide for version 7.0.0.
- Add intervention/image 4.2.0 to lock file - Update nasirkhan/laravel-jodit from v1.7.0 to v2.0.0 - Add spatie/laravel-activitylog 5.0.0 to lock file
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.
This pull request introduces version 7.0.0 of the
nasirkhan/module-managerpackage, focusing on improved dependency management and the addition of a modular activity logging system. The most significant changes are the addition of thespatie/laravel-activitylogandintervention/image-laravelpackages as direct dependencies, the creation of a new Activity Log module, and related code and documentation updates.Dependency Management and Breaking Changes:
spatie/laravel-activitylog(for activity logging) andintervention/image-laravel(for image manipulation) as direct dependencies incomposer.json. Applications using these can now remove them from their owncomposer.jsonfiles. (composer.json,CHANGELOG.md,UPGRADE.md) [1] [2] [3]UPGRADE.md,CHANGELOG.md) [1] [2]Activity Log Module Addition:
ActivityLogmodule, including service provider, configuration, migration, views, and module manifest. This module integratesspatie/laravel-activitylogfor tracking model changes. (src/Modules/ActivityLog/*) [1] [2] [3] [4] [5]ActivityLogmodule as enabled by default in the module manager. (src/ModuleManagerServiceProvider.php)Code Quality and Maintenance:
Postmodel to use the correct traits and methods fromspatie/laravel-activitylog, reflecting changes in the dependency's API. (src/Modules/Post/Models/Post.php) [1] [2]src/ModuleManagerServiceProvider.php)These changes streamline dependency management, introduce modular activity logging, and improve maintainability for future development.