Skip to content

Releases: roelofjan-elsinga/aloia-cms

4.3.0

10 Aug 14:22
3d6bbe1
Compare
Choose a tag to compare
  • Laravel 10 support

4.2.3

19 May 12:12
a5b4d79
Compare
Choose a tag to compare
  • Trim leading \r\n when storing content to the filesystem

4.2.2

18 May 13:50
60c9906
Compare
Choose a tag to compare
  • The base model no longer attempts to store the model to a file if there have been no changes to the model

4.2.1

18 May 13:27
a0a12e5
Compare
Choose a tag to compare
  • Improve frontmatter writer: Always have only 1 blank line between the frontmatter and content body

4.2.0

26 Oct 18:17
48d1070
Compare
Choose a tag to compare
  • Added dynamic folder guessing for a less verbose model class (#41) Thanks @juliomotol! 🎉
  • Added setter method on model for more convenient and cleaner code (#44)
  • Set the default test runner to PestPHP for more expressive tests (#43)

4.1.3

10 Jun 09:17
b3ada73
Compare
Choose a tag to compare

Fixed issue with content block get function signature

4.1.2

10 Jun 09:02
d2923d6
Compare
Choose a tag to compare
  • Added default value parameter to the get() method on a model

This allows for a more concise usage of default values in your code:

Before:

$model->get("somevalue") ?? "a string"

After:

$model->get("somevalue", "a string")

4.1.1

10 May 17:32
de1180a
Compare
Choose a tag to compare
  • Added an empty check for dates in the Postable + Updatable traits

4.1.0

06 May 14:49
171fd73
Compare
Choose a tag to compare
  • Added sitemap generator for flat file models

4.0.2

30 Apr 18:22
165e222
Compare
Choose a tag to compare
  • Removed unused authentication block in config file