Skip to content

Commit

Permalink
Merge branch '3.x' of github.com:lara-zeus/sky into 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi committed Sep 12, 2023
2 parents 41daeaf + daa2bbc commit a5a6fba
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/fix-php-code-style-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main

Expand Down
45 changes: 43 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 :)
```
<img width="1165" alt="Screenshot 2023-07-14 at 6 26 23 PM" src="https://github.com/lara-zeus/sky/assets/1952412/5b62af0f-ac6b-46c7-ae29-af01975a9976">
### 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
Expand Down

0 comments on commit a5a6fba

Please sign in to comment.