From f3a55aaaefc738613c5c0b5b38e7c352c9916adb Mon Sep 17 00:00:00 2001 From: Joel Butcher Date: Wed, 6 Jan 2021 15:06:13 +0000 Subject: [PATCH 1/5] Update .styleci.yml --- .styleci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.styleci.yml b/.styleci.yml index 0b4bc584..f9bb722e 100644 --- a/.styleci.yml +++ b/.styleci.yml @@ -1,3 +1,6 @@ -preset: laravel -disabled: - - no_unused_imports \ No newline at end of file +php: + preset: laravel + disabled: + - no_unused_imports + +js: true From bff50b806d9067c530d08d7d0789f4cfcc248967 Mon Sep 17 00:00:00 2001 From: Joel Butcher Date: Wed, 6 Jan 2021 15:06:13 +0000 Subject: [PATCH 2/5] Update .styleci.yml --- .styleci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.styleci.yml b/.styleci.yml index 0b4bc584..f9bb722e 100644 --- a/.styleci.yml +++ b/.styleci.yml @@ -1,3 +1,6 @@ -preset: laravel -disabled: - - no_unused_imports \ No newline at end of file +php: + preset: laravel + disabled: + - no_unused_imports + +js: true From 5535148dfc0df99f217a85f39bff96e792fcdb04 Mon Sep 17 00:00:00 2001 From: Joel Butcher Date: Wed, 6 Jan 2021 17:48:11 +0000 Subject: [PATCH 3/5] branch alias --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 2e7731f8..8a20e258 100644 --- a/composer.json +++ b/composer.json @@ -40,7 +40,7 @@ }, "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "3.x-dev" }, "laravel": { "providers": [ From 2175a96cdd2c8066f92b98824d9651091a2f2cb5 Mon Sep 17 00:00:00 2001 From: Joel Butcher Date: Fri, 8 Jan 2021 09:35:59 +0000 Subject: [PATCH 4/5] Remove loadViewFrom --- src/SocialstreamServiceProvider.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/SocialstreamServiceProvider.php b/src/SocialstreamServiceProvider.php index 85d007d1..aac27077 100644 --- a/src/SocialstreamServiceProvider.php +++ b/src/SocialstreamServiceProvider.php @@ -38,8 +38,6 @@ public function register() */ public function boot() { - $this->loadViewsFrom(__DIR__.'/../resources/views', 'socialstream'); - $this->configurePublishing(); $this->configureRoutes(); $this->configureCommands(); From f030f3dd46dd764166c08f456c162462096879a1 Mon Sep 17 00:00:00 2001 From: Joel Butcher Date: Fri, 8 Jan 2021 09:52:37 +0000 Subject: [PATCH 5/5] Update CHANGELOG.md --- CHANGELOG.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c46e647..ac82a883 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,29 @@ This changelog follows [the Keep a Changelog standard](https://keepachangelog.co ## [Unreleased](https://github.com/joelbutcher/socialstream/compare/v1.0.0...1.x) -## [v1.0.1 (2020-12-29)](https://github.com/joelbutcher/socialstream/compare/v1.0.0...v1.0.1) +## [v1.1.2 (2021-01-08)](https://github.com/joelbutcher/socialstream/compare/v1.1.1...v1.1.2) +### Fixed +- Fixed an issue with `view:clear` throwing DirectoryNotFound (#33) + +## [v1.1.1 (2021-01-06)](https://github.com/joelbutcher/socialstream/compare/v1.1.0...v1.1.1) + +### Fixed +- Fixed config name in service provider + +### Removed +- Removed resource / view publishing from service provider `boot` method ### Fixed - Fixed `Show.vue` showing the delete account form if a password hasn't been set. +## [v1.1.0 (2020-12-28)](https://github.com/joelbutcher/socialstream/compare/v1.0.0...v1.1.0) + +### Fixed +- Fixed `ActionLink.vue` to use an anchor tag rather than inertia-link to avoid CORS issue. (#22) + +### Removed +- Removed the duplicate method `getAccountForProvider` in `ConnectedAccountsForm.vue` (#20) + ## [v1.0.0 (2020-12-28)](https://github.com/joelbutcher/socialstream/compare/v0.0.4...v1.0.0) ## [v0.0.4 (2020-12-28)](https://github.com/joelbutcher/socialstream/compare/v0.0.3...v0.0.4)