variety of premium plugins

Learn More
Sky Releases Notes

Sky Releases Notes

Changelogs and Releases Notes for Sky: Simple Filamentphp CMS for your website. it includes posts, pages, tags, categories, and more. <br> With a frontend scaffolding. easy to customize and match your branding..

Running Lara Zeus packages and the website doesn't come for free. You can help support us by checking out relevant sponsors from the banner above.

v3.4.9

What's Changed

  • Update InstallCommand.php

v3.4.8

What's Changed

  • Bump dependabot/fetch-metadata from 1.6.0 to 2.0.0 by @dependabot
  • fix url nav render

v3.4.7

What's Changed

  • fix: evaluate potential closure value before renderg navigation component by @mallardduck

v3.4.6

What's Changed

  • Bump ramsey/composer-stall from 2 to 3 by @dependabot
  • Fix page/post count bug by @mallardduck
    ⚠️ This PR also removes the published_at from posts and page scope, if your are usg these scopes, please add ->whereDate('published_at', '<=', now()) where needed.

New Contributors

  • @mallardduck made their first contribution

v3.4.5

What's Changed

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

v3.4.4

What's Changed

  • Update PageResource.php by @HeartlandTechie

v3.4.3

What's Changed

  • add support LDAPRecord by @HeartlandTechie
  • add docs for override the models

New Contributors

  • @HeartlandTechie made their first contribution

v3.4.2

What's Changed

  • fix published at and make it required

v3.4.1

What's Changed

  • use the new Toggle Buttons

v3.4.0

What's Changed

  • Bump aglipanci/laravel-pt-action from 2.3.0 to 2.3.1 by @dependabot
  • update to filament v3.1

v3.3.6

What's Changed

  • update class custom to primary

v3.3.5

What's Changed

  • fix actions

v3.3.4

What's Changed

  • fix short lk url

v3.3.3

What's Changed

  • add get short url action

v3.3.2

What's Changed

  • fix image for pages

v3.3.1

What's Changed

  • allow to hide Resources from Navigation

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

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

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

for more check out the docs:

v3.3.0

What's Changed

  • add navigation
  • Add nav

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

to upgrade:

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

if you published the config file, add this

'models' => [
        //...
        'Navigation' => \LaraZeus\Sky\Models\Navigation::class,
    ],

v3.2.5

What's Changed

  • Add ckb translation by @RawanD201

New Contributors

  • @RawanD201 made their first contribution

v3.2.4

What's Changed

  • fix config key for search skipper

v3.2.3

What's Changed

  • allow to configure a doma
  • allow to hide tag resource
  • fix get page image and multiple panels

v3.2.2

What's Changed

  • Bump stefanzweifel/git-auto-commit-action from 4 to 5 by @dependabot
  • Update composer.lock

v3.2.1

What's Changed

  • add make Editor Command

v3.2.0

What's Changed

  • separate frontend and panel configuration

upgrade to v3.2

In v3.2, I refactored the configuration to separate the frontend configuration from filament-related ones. This causes some issues when havg multiple panels.

  1. First, publish the config file by runng the command:
php artisan vendor:publish --tag="zeus-sky-config" --force
  1. move your configuration from your panel provider to the zeus-sky config file.

So these are the deprecated configuration methods:


->skyPrefix()
->skyMiddleware()
->uriPrefix()
->skyModels()
->editor()
->parsers()
->recentPostsLimit()
->searchResultHighlightCssClass()
->skipHighlightgTerms()
->defaultFeaturedImage()

v3.1.4

What's Changed

  • Cached translation support for LibraryTypes and TagTypes. by @BurakBoz

New Contributors

  • @BurakBoz made their first contribution

v3.1.3

What's Changed

  • remove beta version

v3.1.2

What's Changed

  • add config for upload to posts, pages and libraries
    now you can pass the disk and dir:
SkyPlug::make()
    ->uploadDisk('s3')
    ->uploadDirectory('sky') // will be used for all: pages, posts and libraries

v3.1.1

What's Changed

  • Bump actions/checkout from 3 to 4 by @dependabot
  • fix library factory
  • fix tag not found

v3.1.0

stable version:

Sce tiptap editor still beta, I decided to make MarkdownEditor the default editor, if you want to use other one you can set it 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

  • Add tiptap editor
  • Update TipTapEditor.php
  • refactor-editors
  • Breadcrumbs and update SEO
  • Update configuration.md
  • remove config from PublishCommand
  • improve queries
  • fix duplicated breadcrumbs
  • push filament styles when embeddg a form
  • update Render Nav Item class to clude libraries items
  • Update MarkdownEditor.php by @albertobenavides
  • refactor configuration model
  • add RichEditor and update MarkdownEditor

New Contributors

  • @albertobenavides made their first contribution

v3.0.0-beta28

What's Changed

  • update Render Nav Item class to clude libraries items

v3.0.0-beta27

What's Changed

  • fix duplicated breadcrumbs
  • push filament styles when embeddg a form