chore(deps): update dependency jekyll-contentblocks to v2 - #6530
Open
renovate[bot] wants to merge 1 commit into
Open
chore(deps): update dependency jekyll-contentblocks to v2#6530renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
✅ Deploy Preview for kongdeveloper ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
renovate
Bot
force-pushed
the
renovate/jekyll-contentblocks-2.x-lockfile
branch
11 times, most recently
from
August 3, 2026 20:05
435cbd8 to
18b6365
Compare
renovate
Bot
force-pushed
the
renovate/jekyll-contentblocks-2.x-lockfile
branch
from
August 4, 2026 09:53
18b6365 to
4b2c84a
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.2.0→2.0.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
rustygeldmacher/jekyll-contentblocks (jekyll-contentblocks)
v2.0.0Compare Source
A major modernization release: full Jekyll 4 support, powerful new
contentblocks.<name>capabilities (repeatable blocks with front matter, and content-aware conditionals), and dropping the long-obsolete Jekyll 1.x/2.x line.✨ New features
Repeatable content blocks with front matter. You can now use the same block name more than once on a page and loop over the blocks individually in your layout via
contentblocks.<name>. Each block can carry its own YAML front matter (exposed asdata), with its Markdown rendered intocontent— great for lists like testimonials, team members, or cards:{% contentfor testimonial %} --- author: Ada Lovelace --- A **delightful** plugin. {% endcontentfor %}{% for t in contentblocks.testimonial %} <li>{{ t.content }} — <cite>{{ t.data.author }}</cite></li> {% endfor %}The existing
{% contentblock %}/{% ifhascontent %}tags are unchanged.Content-aware conditionals. Every block name is now exposed as a Liquid variable, so you can branch on whether a block was filled — including in compound conditions, which
ifhascontentcan't express:{% if contentblocks.sidebar %} {% contentblock sidebar %} {% else %} <div>Default sidebar</div> {% endif %} {% if contentblocks.sidebar or page.force_sidebar %} ... {% endif %}This is usually cleaner than
{% ifhascontent %}/{% ifnothascontent %}, which remain available (they specifically test for non-empty content, whereascontentblocks.<name>is truthy whenever the block was defined).Jekyll 4 support. The plugin now works across the entire Jekyll 3.0 → 4.4 range.
Broader Ruby support — tested on Ruby 2.7 through 4.0.
💥 Breaking changes
jekyll >= 3.0, < 5.0. Compatibility:required_ruby_version >= 2.7.0, so it won't install on older Rubies (1.2.0 declared no floor).---YAML block are now parsed as front matter. If an existingcontentforblock's content starts with a full---…---block, it's now interpreted as that block'sdatarather than rendered literally. (Narrow edge case, but worth flagging.)🔧 Under the hood
mise.toml).Thanks to @stellarpower (#24, repeatable blocks) and @NikkyAI (#21, conditionals) for the ideas behind these features.
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.