Skip to content

Latest commit

 

History

History
598 lines (316 loc) · 17.8 KB

CHANGELOG.md

File metadata and controls

598 lines (316 loc) · 17.8 KB

Changelog

All notable changes to sky will be documented in this file

v3.4.5 - 2024-02-19

What's Changed

  • add better support for libraries with URL item by @atmonshi in lara-zeus#190 and added new blade files: resources/views/themes/zeus/sky/addons/library-types/*-url.blade.php

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.4.4...v3.4.5

v3.4.4 - 2024-02-19

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.4.3...v3.4.4

v3.4.3 - 2024-02-17

What's Changed

New Contributors

  • @HeartlandTechie made their first contribution in lara-zeus#187

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.4.2...v3.4.3

v3.4.2 - 2024-02-09

What's Changed

  • fix published at and make it required by @atmonshi in lara-zeus#186

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.4.1...v3.4.2

v3.4.1 - 2024-01-20

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.4.0...v3.4.1

v3.4.0 - 2024-01-08

What's Changed

  • Bump aglipanci/laravel-pint-action from 2.3.0 to 2.3.1 by @dependabot in lara-zeus#183
  • update to filament v3.1 by @atmonshi in lara-zeus#184

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.3.6...v3.4.0

v3.3.6 - 2023-12-15

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.3.5...v3.3.6

v3.3.5 - 2023-12-03

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.3.4...v3.3.5

v3.3.4 - 2023-12-03

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.3.3...v3.3.4

v3.3.3 - 2023-12-03

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.3.2...v3.3.3

v3.3.2 - 2023-11-07

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.3.1...v3.3.2

v3.3.1 - 2023-11-06

What's Changed

  • allow to hide Resources from Navigation by @atmonshi in lara-zeus#176

Added a Small feature to allow to hide Resources from Navigation:

in your panel provider you can hide any resource from the side nav

->hideResources([
        FaqResource::class,
    ])










for more check out the docs: https://larazeus.com/docs/sky/v3/getting-started/configuration

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.3.0...v3.3.1

v3.3.0 - 2023-11-02

What's Changed

Thanks to ryangjchandler, who created the beautiful plugin filament-navigation. Now, Sky already includes a version of the plugin to upgrade and add more features easily.

to upgrade:

remove FilamentNavigation::make(), from your panel plugins.

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.2.5...v3.3.0

v3.2.5 - 2023-10-31

What's Changed

New Contributors

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.2.4...v3.2.5

v3.2.4 - 2023-10-20

What's Changed

  • fix config key for search skipper by @atmonshi in lara-zeus#172

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.2.3...v3.2.4

v3.2.3 - 2023-10-18

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.2.2...v3.2.3

v3.2.2 - 2023-10-10

What's Changed

  • Bump stefanzweifel/git-auto-commit-action from 4 to 5 by @dependabot in lara-zeus#166
  • Update composer.lock by @atmonshi in lara-zeus#168

Full Changelog: https://github.com/lara-zeus/sky/compare/v3.2.1...v3.2.2

v3.1.0 - 2023-09-12

stable version:

Since 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:

->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

New Contributors

  • @albertobenavides made their first contribution in lara-zeus#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

  • fix: show pages in the sidebar and no result for search by @atmonshi in lara-zeus#129
  • add Content parser by @atmonshi in lara-zeus#118

adding the ability to parse the content, by default: BoltParser is avaliable. lets you include or (embed) bolt form into any page with the syntax: <bolt>formSlug</bolt> This will be parsed to a livewire component to display the full form.

How to use:

Make sure to add this to your config:

'parsers' => [
    \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.

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 ### What's Changed - Allow to skip highlighting of search terms by @thyseus in lara-zeus#125 - fix when library is empty by @atmonshi in lara-zeus#126 - update composer by @atmonshi in lara-zeus#127 **Full Changelog**: https://github.com/lara-zeus/sky/compare/2.4.32...2.4.33 ## 2.4.32 - 2023-07-12 ### What's Changed - allow to upload multiple libraries and refactor the views by @atmonshi in lara-zeus#123 - update core by @atmonshi in lara-zeus#124 **Full Changelog**: https://github.com/lara-zeus/sky/compare/2.4.31...2.4.32 ## 2.4.31 - 2023-07-04 ### What's Changed - Bump dependabot/fetch-metadata from 1.5.1 to 1.6.0 by @dependabot in lara-zeus#121 - update all dependecies by @atmonshi in lara-zeus#122 **Full Changelog**: https://github.com/lara-zeus/sky/compare/2.4.30...2.4.31 ## 2.4.30 - 2023-07-02 ### What's Changed - allow to force delete and restore posts, and finally green phpstan by @atmonshi in lara-zeus#120 **Full Changelog**: https://github.com/lara-zeus/sky/compare/2.4.29...2.4.30 ## 2.4.2 - 2023-04-24

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.4.1...2.4.2

2.4.1 - 2023-04-10

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.4.0...2.4.1

2.4.0 - 2023-04-10

What's Changed

  • Bump dependabot/fetch-metadata from 1.3.5 to 1.3.6 by @dependabot in lara-zeus#65
  • Bump aglipanci/laravel-pint-action from 1.0.0 to 2.2.0 by @dependabot in lara-zeus#68
  • Bump ramsey/composer-install from 1 to 2 by @dependabot in lara-zeus#63
  • Added config for Navigation Group Label by @chahal26 in lara-zeus#66
  • support laravel 10 by @atmonshi in lara-zeus#69

New Contributors

Full Changelog: https://github.com/lara-zeus/sky/compare/2.3.7...2.4.0

2.3.7 - 2022-11-12

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.3.6...2.3.7

2.3.6 - 2022-11-12

What's Changed

New Contributors

Full Changelog: https://github.com/lara-zeus/sky/compare/2.3.5...2.3.6

2.3.5 - 2022-11-11

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.3.4...2.3.5

2.3.4 - 2022-11-08

What's Changed

  • Bump dependabot/fetch-metadata from 1.3.4 to 1.3.5 by @dependabot in lara-zeus#58
  • add unique() constraint to slug fields by @thyseus in lara-zeus#57
  • ensure only posts with status 'publish' are being shown in public by @thyseus in lara-zeus#56

Full Changelog: https://github.com/lara-zeus/sky/compare/2.3.3...2.3.4

2.3.3 - 2022-10-28

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.3.2...2.3.3

2.3.2 - 2022-10-04

What's Changed

  • Bump dependabot/fetch-metadata from 1.3.3 to 1.3.4 by @dependabot in lara-zeus#51
  • PostScope: also search in 'slug' column by @thyseus in lara-zeus#52

New Contributors

Full Changelog: https://github.com/lara-zeus/sky/compare/2.3.1...2.3.2

2.3.1 - 2022-09-18

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.3.0...2.3.1

2.3.0 - 2022-09-17

What's Changed

  • improve skeleton and add tests and dark mode
  • separate the CSS for frontend and filament
  • update .github workflows
  • add phpstan and pint

Full Changelog: https://github.com/lara-zeus/sky/compare/2.2.6...2.3.0

2.2.6 - 2022-09-16

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.2.5...2.2.6

2.2.5 - 2022-09-15

What's Changed

also checkout our roadmap: #46

Full Changelog: https://github.com/lara-zeus/sky/compare/2.2.4...2.2.5

2.2.4 - 2022-09-06

What's Changed

  • update core to fix lang switcher by @atmonshi in lara-zeus#40

Full Changelog: https://github.com/lara-zeus/sky/compare/2.2.3...2.2.4

2.2.3 - 2022-09-05

What's Changed

  • introduce the ability to filter posts by category by @thyseus in lara-zeus#35
  • add Scopes for search by @atmonshi in lara-zeus#36
  • update responsive design by @atmonshi in lara-zeus#38

Full Changelog: https://github.com/lara-zeus/sky/compare/2.2.2...2.2.3

2.2.2 - 2022-08-31

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.2.1...2.2.2

2.2.1 - 2022-08-24

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.2.0...2.2.1

2.1.7 - 2022-08-15

What's Changed

  • French Translation by @nicolasbaud in lara-zeus#27
  • refactor SEO and remove it form SkyServiceProvider by @atmonshi in lara-zeus#28

New Contributors

  • @nicolasbaud made their first contribution in lara-zeus#27

Full Changelog: https://github.com/lara-zeus/sky/compare/2.1.6...2.1.7

2.1.6 - 2022-07-10

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.1.5...2.1.6

2.1.5 - 2022-07-05

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.1.4...2.1.5

2.1.3 - 2022-06-21

update core version

Full Changelog: https://github.com/lara-zeus/sky/compare/2.1.2...2.1.3

2.1.2 - 2022-06-11

What's Changed

  • change translatable column types by @atmonshi in lara-zeus#21

Full Changelog: https://github.com/lara-zeus/sky/compare/2.1.1...2.1.2

2.1.1 - 2022-06-11

What's Changed

  • change namespace for Translatable by @atmonshi in lara-zeus#20

Full Changelog: https://github.com/lara-zeus/sky/compare/2.1.0...2.1.1

2.1.0 - 2022-06-11

What's Changed

New Contributors

Full Changelog: https://github.com/lara-zeus/sky/compare/2.0.5...2.1.0

2.0.5 - 2022-04-22

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.0.4...2.0.5

2.0.4 - 2022-04-22

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.0.3...2.0.4

2.0.3 - 2022-04-21

What's Changed

Full Changelog: https://github.com/lara-zeus/sky/compare/2.0.2...2.0.3

2.0.0 - 2022-04-19

  • the first stable release, and happy birthday to me :)