Skip to content

Releases: cobalt-org/cobalt.rs

v0.15.0

28 Dec 18:46
Compare
Choose a tag to compare
v0.15.0

v0.14.0

18 Nov 04:30
Compare
Choose a tag to compare
v0.14.0

v0.13.2

05 Oct 21:03
Compare
Choose a tag to compare
v0.13.2

v0.13.1

05 Oct 17:43
Compare
Choose a tag to compare
v0.13.1

v0.13.0

04 Oct 14:12
Compare
Choose a tag to compare
v0.13.0

v0.12.2: SASS

21 Jul 23:57
Compare
Choose a tag to compare
v0.12.2

v0.12.1

24 Mar 20:14
Compare
Choose a tag to compare
N/A

v0.12.0: 0.12.0: Sub-command and liquid improvements

23 Mar 04:00
Compare
Choose a tag to compare

This release drops support for migrating from pre-0.11. Please use 0.11 to migrate first.

Performance

  • layouts: Switch from lazy to eager loading (b2cbe13a)

Features

Breaking Changes

  • migrate: Removing migration support (20b29932)
  • import: import is self-contained (4e0be270, closes #394)
  • layouts: Switch from lazy to eager (b2cbe13a)
  • liquid:

Bug Fixes

  • clean: Don't error on double-clean (a380fd15)
  • import: import is self-contained (4e0be270, closes #394)
  • new:
    • Dont assume dirs are files (35bed0c5, closes #401)
    • Error if file isn't a part of a collection (99a0d017)
  • serve: Fix site.base_url by adding http:// (1a3ae383)
  • slug: Dont ignore non-ascii in slug (08f0621c, closes #383)
  • liquid:
    • date_in_tz correctly parse date strings (8fca4340)
    • Improve value coercion (8fca4340)
    • if can do existence check again (0ed5247)
  • config: Bug fixes with ignore (0ed5247)

v0.11.1

10 Jan 03:20
Compare
Choose a tag to compare

Features

  • liquid: Support contains operator (668f4726)

v0.11.0: Focus: Minimize breaking changes in the future

09 Jan 14:15
Compare
Choose a tag to compare

This release focused on unleashing a lot of breaking changes that have been
stacking up for a while which also expose a lot of features that have been
inaccessible. The hope is that from now on, breaking changes will be minor
(like small changes to config) rather than sweeping changes to every file like
this.

Bug Fixes

  • Reducing logging noise (a7acd2c8)
  • rss: Don't error if the RSS folder doesn't exist. (357cb4b8)
  • watch: Don't stop on error (3c4d086b, closes #347)

Features

  • Migrate support for changing _layouts to _includes (28ae870d)
  • config:
  • front:
    • Stablize fronmatter format (9089c721, closes #257, breaks #)
    • Change date to YYYY-MM-DD (1e19ae07, closes #349, breaks #)
    • Change permalink variable names (e78b806c, breaks #)
    • Change permalink to well-defined format (c6c4d7ac, breaks #)
    • Standardize permalink behavior (6730eb68, breaks #)
  • excerpt: Better define non-existent behavior (129c5747)
  • page:
  • serve:
    • Adjust base_url for localhost (e75e1398, breaks #)
    • Merge serve and watch (d2f22d51, breaks #)
  • debug:

Breaking Changes

cobalt migrate was created to help mitigate the cost of most of these breaking changes.

  • config: Stablize the format (34e9d545, closes #199, breaks #, #)
  • debug: Generalize debug commands (087d9919, breaks #)
  • front:
    • Change date to YYYY-MM-DD (1e19ae07, closes #349, breaks #)
    • Change permalink variable names (e78b806c, breaks #)
    • Change permalink to well-defined format (c6c4d7ac, breaks #)
    • Standardize permalink behavior (6730eb68, breaks #)
    • Stablize fronmatter format (9089c721, closes #257, breaks #)
  • page:
    • Liquid errors on undefined variables (2ec3f24b)
    • This was done to help catch migration problems and to move us in the direction of easier debugging of problems
    • The restriction might be loosened in some cases (like {% if var %}).
    • Generalize is_post / posts (d280a353, closes #323, breaks #)
    • Make page variables future-proof (6f62dea8, breaks #)
  • serve:
    • Adjust base_url for localhost (e75e1398, breaks #)
    • Merge serve and watch (d2f22d51, breaks #)

Performance

  • serve: Reduce duplicate rebuilds (8f2679ce)