Skip to content

Update dependency liquid to v5#146

Open
renovate[bot] wants to merge 1 commit into
sourcefrom
renovate/liquid-5.x
Open

Update dependency liquid to v5#146
renovate[bot] wants to merge 1 commit into
sourcefrom
renovate/liquid-5.x

Conversation

@renovate

@renovate renovate Bot commented Dec 18, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
liquid (source) '4.0.4''5.12.0' age confidence

Release Notes

Shopify/liquid (liquid)

v5.12.0

Compare Source

What's Changed

New Contributors

Full Changelog: Shopify/liquid@v5.11.0...v5.12.0

v5.11.0

Compare Source

  • Revert the Inline Snippets tag (#​2001), treat its inclusion in the latest Liquid release as a bug, and allow for feedback on RFC#1916 to better support Liquid developers [Guilherme Carreiro]
  • Rename the :rigid error mode to :strict2 and display a warning when users attempt to use the :rigid mode [Guilherme Carreiro]

v5.10.0

Compare Source

  • Introduce support for Inline Snippets [Julia Boutin]

v5.9.0

Compare Source

  • Introduce :rigid error mode for stricter, safer parsing of all tags [CP Clermont, Guilherme Carreiro]

v5.8.7

Compare Source

  • Expose body content in the Doc tag [James Meng]

v5.8.6

Compare Source

What's Changed

Full Changelog: Shopify/liquid@v5.8.5...v5.8.6

v5.8.5

Compare Source

What's Changed

Full Changelog: Shopify/liquid@v5.8.4...v5.8.5

v5.8.4

Compare Source

What's Changed

Full Changelog: Shopify/liquid@v5.8.3...v5.8.4

v5.8.3

Compare Source

What's Changed

  • Update snippet URLs in documentation links to point to newly created snippet page by @​jamesmengo in #​1940
  • Fix regression when using empty/nil properties with array filters by @​ianks in #​1944

Full Changelog: Shopify/liquid@v5.8.2...v5.8.3

v5.8.2

Compare Source

What's Changed

New Contributors

Full Changelog: Shopify/liquid@v5.8.1...v5.8.2

v5.8.1

Compare Source

  • Fix {% doc %} tag to be visitable [Guilherme Carreiro]

v5.8.0

Compare Source

  • Introduce the new {% doc %} tag [Guilherme Carreiro]

v5.7.3

Compare Source

  • Raise Liquid::SyntaxError when parsing invalidly encoded strings [Chris AtLee]

v5.7.2

Compare Source

  • Fix array filters to not support nested properties [Guilherme Carreiro]

v5.7.1

Compare Source

  • Fix the find and find_indexfilters to return nil when filtering empty arrays [Guilherme Carreiro]
  • Fix the has filter to return false when filtering empty arrays [Guilherme Carreiro]

v5.7.0

Compare Source

Features
  • Add find, find_index, has, and reject filters to arrays [Guilherme Carreiro]
  • Compatibility with Ruby 3.4 [Ian Ker-Seymer]

v5.6.4

Compare Source

Fixes
  • Add a default string_scanner to avoid errors with Liquid::VariableLookup.parse("foo.bar") [Ian Ker-Seymer]

v5.6.3

Compare Source

  • Remove lru_redux dependency [Michael Go]

v5.6.2

Compare Source

Fixes
  • Preserve the old behavior of requiring floats to start with a digit [Michael Go]

v5.6.1

Compare Source

Performance improvements
  • Faster Expression parser / Tokenizer with StringScanner [Michael Go]

v5.6.0

Compare Source

Architectural changes
  • Added new Environment class to manage configuration and state that was previously stored in Template [Ian Ker-Seymer]
  • Moved tag registration from Template to Environment [Ian Ker-Seymer]
  • Removed StrainerFactory in favor of Environment-based strainer creation [Ian Ker-Seymer]
  • Consolidated standard tags into a new Tags module with STANDARD_TAGS constant [Ian Ker-Seymer]
Performance improvements
  • Optimized Lexer with a new Lexer2 implementation using jump tables for faster tokenization, requires Ruby 3.4 [Ian Ker-Seymer]
  • Improved variable rendering with specialized handling for different types [Michael Go]
  • Reduced array allocations by using frozen empty constants [Michael Go]
API changes
  • Deprecated several Template class methods in favor of Environment methods [Ian Ker-Seymer]
  • Added deprecation warnings system [Ian Ker-Seymer]
  • Changed how filters and tags are registered to use Environment [Ian Ker-Seymer]
Fixes
  • Fixed table row handling of break interrupts [Alex Coco]
  • Improved variable output handling for arrays [Ian Ker-Seymer]
  • Fix Tokenizer to handle null source value (#​1873) [Bahar Pourazar]

v5.5.1

Compare Source

Full Changelog: Shopify/liquid@v5.5.1...v5.5.1

What's Changed

New Contributors

Full Changelog: Shopify/liquid@v5.5.0...v5.5.1

v5.5.0

Compare Source

Please reference the GitHub release for more information.

v5.4.0

Compare Source

Breaking Changes
  • Drop support for end-of-life Ruby versions (2.5 and 2.6) (#​1578) [Andy Waite]
Features
  • Allow # to be used as an inline comment tag (#​1498) [CP Clermont]
Fixes
  • PartialCache now shares snippet cache with subcontexts by default (#​1553) [Chris AtLee]
  • Hash registers no longer leak into subcontexts as static registers (#​1564) [Chris AtLee]
  • Fix ParseTreeVisitor for with variable expressions in Render tag (#​1596) [CP Clermont]
Changed
  • Liquid::Context#registers now always returns a Liquid::Registers object, though supports the most used Hash functions for compatibility (#​1553)

v5.3.0

Compare Source

Fixes
  • StandardFilter: Fix missing @​context on iterations (#​1525) [Thierry Joyal]
  • Fix warning about block and default value in static_registers.rb (#​1531) [Peter Zhu]
Deprecation
  • Condition#evaluate to require mandatory context argument in Liquid 6.0.0 (#​1527) [Thierry Joyal]

v5.2.0

Compare Source

Features
  • Add remove_last, and replace_last filters (#​1422) [Anders Hagbard]
  • Eagerly cache global filters (#​1524) [Jean Boussier]
Fixes
  • Fix some internal errors in filters from invalid input (#​1476) [Dylan Thacker-Smith]
  • Allow dash in filter kwarg name for consistency with Liquid::C (#​1518) [CP Clermont]

v5.1.0

Compare Source

Features
  • Add base64_encode, base64_decode, base64_url_safe_encode, and base64_url_safe_decode filters (#​1450) [Daniel Insley]
  • Introduce to_liquid_value in Liquid::Drop (#​1441) [Michael Go]
Fixes
  • Fix support for using a String subclass for the liquid source (#​1421) [Dylan Thacker-Smith]
  • Add ParseTreeVisitor to RangeLookup (#​1470) [CP Clermont]
  • Translate RangeError to Liquid::Error for truncatewords with large int (#​1431) [Dylan Thacker-Smith]

v5.0.1

Compare Source

Fixes
  • Add ParseTreeVisitor to Echo tag (#​1414) [CP Clermont]
  • Test with ruby 3.0 as the latest ruby version (#​1398) [Dylan Thacker-Smith]
  • Handle carriage return in newlines_to_br (#​1391) [Unending]
Performance Improvements
  • Use split limit in truncatewords (#​1361) [Dylan Thacker-Smith]

v5.0.0

Compare Source

Features
  • Add new {% render %} tag (#​1122) [Samuel Doiron]
  • Add support for as in {% render %} and {% include %} (#​1181) [Mike Angell]
  • Add {% liquid %} and {% echo %} tags (#​1086) [Justin Li]
  • Add usage tracking [Mike Angell]
  • Add Tag.disable_tags for disabling tags that prepend Tag::Disableable at render time (#​1162, #​1274, #​1275) [Mike Angell]
  • Support using a profiler for multiple renders (#​1365, #​1366) [Dylan Thacker-Smith]
Fixes
  • Fix catastrophic backtracking in RANGES_REGEX regular expression (#​1357) [Dylan Thacker-Smith]
  • Make sure the for tag's limit and offset are integers (#​1094) [David Cornu]
  • Invokable methods for enumerable reject include (#​1151) [Thierry Joyal]
  • Allow default filter to handle false as value (#​1144) [Mike Angell]
  • Fix render length resource limit so it doesn't multiply nested output (#​1285) [Dylan Thacker-Smith]
  • Fix duplication of text in raw tags (#​1304) [Peter Zhu]
  • Fix strict parsing of find variable with a name expression (#​1317) [Dylan Thacker-Smith]
  • Use monotonic time to measure durations in Liquid::Profiler (#​1362) [Dylan Thacker-Smith]
Breaking Changes
  • Require Ruby >= 2.5 (#​1131, #​1310) [Mike Angell, Dylan Thacker-Smith]
  • Remove support for taint checking (#​1268) [Dylan Thacker-Smith]
  • Split Strainer class into StrainerFactory and StrainerTemplate (#​1208) [Thierry Joyal]
  • Remove handling of a nil context in the Strainer class (#​1218) [Thierry Joyal]
  • Handle BlockBody#blank? at parse time (#​1287) [Dylan Thacker-Smith]
  • Pass the tag markup and tokenizer to Document#unknown_tag (#​1290) [Dylan Thacker-Smith]
  • And several internal changes
Performance Improvements

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate

renovate Bot commented Dec 18, 2024

Copy link
Copy Markdown
Contributor Author

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: Gemfile.lock

/opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/lib/bundler/vendor/thor/lib/thor/error.rb:105:in '<class:Thor>': uninitialized constant DidYouMean::SPELL_CHECKERS (NameError)

    DidYouMean::SPELL_CHECKERS.merge!(
              ^^^^^^^^^^^^^^^^
Did you mean?  DidYouMean::SpellChecker
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/lib/bundler/vendor/thor/lib/thor/error.rb:1:in '<top (required)>'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/lib/bundler/vendor/thor/lib/thor/base.rb:3:in 'Kernel#require_relative'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/lib/bundler/vendor/thor/lib/thor/base.rb:3:in '<top (required)>'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/lib/bundler/vendor/thor/lib/thor.rb:1:in 'Kernel#require_relative'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/lib/bundler/vendor/thor/lib/thor.rb:1:in '<top (required)>'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/lib/bundler/vendored_thor.rb:8:in 'Kernel#require_relative'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/lib/bundler/vendored_thor.rb:8:in '<top (required)>'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/lib/bundler/friendly_errors.rb:3:in 'Kernel#require_relative'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/lib/bundler/friendly_errors.rb:3:in '<top (required)>'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/exe/bundle:32:in 'Kernel#require_relative'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/exe/bundle:32:in '<top (required)>'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/exe/bundler:4:in 'Kernel#load'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/gems/bundler-2.2.25/exe/bundler:4:in '<top (required)>'
	from /opt/containerbase/tools/ruby/4.0.4/lib/ruby/4.0.0/rubygems.rb:305:in 'Kernel#load'
	from /opt/containerbase/tools/ruby/4.0.4/lib/ruby/4.0.0/rubygems.rb:305:in 'Gem.activate_and_load_bin_path'
	from /opt/containerbase/tools/bundler/2.2.25/4.0.4/bin/bundler:25:in '<main>'

@renovate renovate Bot force-pushed the renovate/liquid-5.x branch from c52489d to d617503 Compare December 19, 2024 20:30
@renovate renovate Bot force-pushed the renovate/liquid-5.x branch 4 times, most recently from 26a2f56 to 0f2e104 Compare January 17, 2025 13:32
@renovate renovate Bot force-pushed the renovate/liquid-5.x branch from 0f2e104 to aac81da Compare January 24, 2025 14:22
@renovate renovate Bot force-pushed the renovate/liquid-5.x branch from aac81da to aeda330 Compare February 1, 2025 21:12
@renovate renovate Bot force-pushed the renovate/liquid-5.x branch 3 times, most recently from f0880ac to b9ff781 Compare February 26, 2025 14:39
@renovate renovate Bot force-pushed the renovate/liquid-5.x branch from b9ff781 to 87545fb Compare March 19, 2025 19:01
@renovate renovate Bot force-pushed the renovate/liquid-5.x branch 2 times, most recently from 41a8243 to a6cf073 Compare April 9, 2025 21:47
@renovate renovate Bot force-pushed the renovate/liquid-5.x branch from a6cf073 to 9370d60 Compare April 14, 2025 19:59
@renovate renovate Bot force-pushed the renovate/liquid-5.x branch from 9370d60 to 246f884 Compare June 9, 2025 22:06
@renovate renovate Bot force-pushed the renovate/liquid-5.x branch 2 times, most recently from cbdbae8 to 19832c0 Compare October 30, 2025 12:53
@renovate renovate Bot force-pushed the renovate/liquid-5.x branch 2 times, most recently from a197737 to 8d1eb3e Compare November 19, 2025 17:51
@renovate renovate Bot force-pushed the renovate/liquid-5.x branch from 8d1eb3e to c626211 Compare March 18, 2026 17:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants