From bf2d0e8be89d7c5f70b5f24dcd8383a7adf48bb2 Mon Sep 17 00:00:00 2001 From: atmonshi Date: Tue, 12 Sep 2023 12:02:04 +0000 Subject: [PATCH 1/2] Update CHANGELOG --- CHANGELOG.md | 45 +++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6feed8..033ed2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,46 @@ All notable changes to `sky` will be documented in this file +## v3.1.0 - 2023-09-12 + +### stable version: + +Since [tiptap editor](https://github.com/awcodes/filament-tiptap-editor) still in beta, I decided to make `MarkdownEditor` the default editor, if you want to use other one you can set it in the panel configuration. + +#### ⚠️⚠️ the configuration for models has been changed to: + +```php +->skyModels([ + 'Faq' => \LaraZeus\Sky\Models\Faq::class, + 'Post' => \LaraZeus\Sky\Models\Post::class, + 'PostStatus' => \LaraZeus\Sky\Models\PostStatus::class, + 'Tag' => \LaraZeus\Sky\Models\Tag::class, + 'Library' => \LaraZeus\Sky\Models\Library::class, + ]) + +``` +#### What's Changed + +- Add tiptap editor by @atmonshi in https://github.com/lara-zeus/sky/pull/131 +- Update TipTapEditor.php by @atmonshi in https://github.com/lara-zeus/sky/pull/133 +- refactor-editors by @atmonshi in https://github.com/lara-zeus/sky/pull/135 +- Breadcrumbs and update SEO by @atmonshi in https://github.com/lara-zeus/sky/pull/141 +- Update configuration.md by @atmonshi in https://github.com/lara-zeus/sky/pull/142 +- remove config from `PublishCommand` by @atmonshi in https://github.com/lara-zeus/sky/pull/143 +- improve queries by @atmonshi in https://github.com/lara-zeus/sky/pull/144 +- fix duplicated breadcrumbs by @atmonshi in https://github.com/lara-zeus/sky/pull/145 +- push filament styles when embedding a form by @atmonshi in https://github.com/lara-zeus/sky/pull/146 +- update Render Nav Item class to include libraries items by @atmonshi in https://github.com/lara-zeus/sky/pull/148 +- Update MarkdownEditor.php by @albertobenavides in https://github.com/lara-zeus/sky/pull/149 +- refactor configuration model by @atmonshi in https://github.com/lara-zeus/sky/pull/151 +- add RichEditor and update MarkdownEditor by @atmonshi in https://github.com/lara-zeus/sky/pull/152 + +#### New Contributors + +- @albertobenavides made their first contribution in https://github.com/lara-zeus/sky/pull/149 + +**Full Changelog**: https://github.com/lara-zeus/sky/compare/2.4.34...v3.1.0 + ## 2.4.34 - 2023-07-14 ### What's Changed @@ -22,15 +62,16 @@ Make sure to add this to your config: \LaraZeus\Sky\Classes\BoltParser::class, ], + ``` You can copy that class and create your own parser, too, then add it to the array, and Sky will loop them all. -```I also added a tab in forms to let users copy and paste. +```I Of course, it will be visible only if you install Sky with Bolt :) + ``` Screenshot 2023-07-14 at 6 26 23 PM ### Remember to update your views. - **Full Changelog**: https://github.com/lara-zeus/sky/compare/2.4.33...2.4.34 ## 2.4.33 - 2023-07-12 From d655b13f76e74ded3d2fc74146b00b9c4dfdb198 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Sep 2023 12:02:51 +0000 Subject: [PATCH 2/2] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/fix-php-code-style-issues.yml | 2 +- .github/workflows/phpstan.yml | 2 +- .github/workflows/run-tests.yml | 2 +- .github/workflows/update-changelog.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/fix-php-code-style-issues.yml b/.github/workflows/fix-php-code-style-issues.yml index d9db47b..992754a 100644 --- a/.github/workflows/fix-php-code-style-issues.yml +++ b/.github/workflows/fix-php-code-style-issues.yml @@ -8,7 +8,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index e897c13..1479294 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -11,7 +11,7 @@ jobs: name: phpstan runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 3efc226..91d1357 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/.github/workflows/update-changelog.yml b/.github/workflows/update-changelog.yml index f0a2264..958340f 100644 --- a/.github/workflows/update-changelog.yml +++ b/.github/workflows/update-changelog.yml @@ -10,7 +10,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: main