Releases: wotta/laravel-dashboard-sentry-tile
Releases · wotta/laravel-dashboard-sentry-tile
Upgraded versions
Removed sleep from code
The sleep function was removed from the SentryTileServiceProvider
.
Implemented team issues view
Version 3 changes
This release allows developers to display the issues for specific for a team.
Changes
- Added autoloading for livewire components.
- Moved the Livewire
Http\Livewire
- Added team component
How to use
<livewire:sentry-tile position="a1:a2" title="Issues" :showMeta="true" :refresh-interval-in-seconds="10" />
<livewire:sentry-tile position="b1:b2" title="Issues" :attributes="['project_name' => 'project-slug']" :showMeta="true" :refresh-interval-in-seconds="10" />
<livewire:sentry-team-issues position="c1:c2" title="Issues" :attributes="['team' => 'team-slug']" :showMeta="true" :refresh-interval-in-seconds="10" />
Implemented organization team sync.
This release allows you to sync the teams that belong to your organization.
It also has an option to sync the projects that belong to the teams.
To sync the teams you need to run the following command:
php artisan sentry:sync:organization:teams
If you want to include the project you need to run the following:
php artisan sentry:sync:organization:teams --with-projects
Update readme release. ( v1.0.1 )
Added new information in the readme.
- migration stub publish command.
dashboard.php
config documentation.Kernel.php
schedule documentation.
v1.0.0 release
This release includes the following:
- Issue model
- Project model
- Migrations that need to be published
- Command to sync the sentry issues.