Skip to content

Releases: wotta/laravel-dashboard-sentry-tile

Upgraded versions

02 Oct 19:55
bcd2e41
Compare
Choose a tag to compare

chore(composer.json): Removed some text from description.
chore(composer.json): Updated Guzzle version number for require-dev
chore(composer.json): Updated orchestra/testbench version.

Removed sleep from code

12 Mar 12:26
56bb262
Compare
Choose a tag to compare

The sleep function was removed from the SentryTileServiceProvider.

Implemented team issues view

26 Feb 15:02
bfa1ced
Compare
Choose a tag to compare

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.

15 Feb 20:49
Compare
Choose a tag to compare

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 )

11 Dec 23:03
Compare
Choose a tag to compare

Added new information in the readme.

  • migration stub publish command.
  • dashboard.php config documentation.
  • Kernel.php schedule documentation.

v1.0.0 release

11 Dec 22:22
Compare
Choose a tag to compare

This release includes the following:

  • Issue model
  • Project model
  • Migrations that need to be published
  • Command to sync the sentry issues.