Skip to content

Bump the elixir-deps group with 28 updates#76

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/hex/elixir-deps-f22272b0bf
Open

Bump the elixir-deps group with 28 updates#76
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/hex/elixir-deps-f22272b0bf

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 11, 2026

Bumps the elixir-deps group with 28 updates:

Package From To
bandit 1.7.0 1.11.0
claude 0.2.4 0.5.3
credo 1.7.12 1.7.18
dialyxir 1.4.5 1.4.7
ecto_sql 3.13.2 3.13.5
ex_aws 2.5.10 2.6.1
ex_aws_s3 2.5.7 2.5.9
finch 0.20.0 0.21.0
gettext 0.26.2 1.0.2
heroicons v2.1.1 v2.2.0
igniter 0.6.28 0.8.0
jason 1.4.4 1.4.5
lazy_html 0.1.5 0.1.11
nebulex 2.6.5 3.0.4
phoenix 1.8.0 1.8.7
phoenix_ecto 4.6.5 4.7.0
phoenix_html 4.2.1 4.3.0
phoenix_live_reload 1.6.0 1.6.2
phoenix_live_view 1.1.3 1.1.30
postgrex 0.20.0 0.22.1
sobelow 0.14.0 0.14.1
styler 1.5.1 1.11.0
swoosh 1.19.5 1.25.1
tailwind 0.3.1 0.4.1
tidewave 0.4.1 0.5.6
tls_certificate_check 1.28.0 1.32.4
usage_rules 0.1.23 1.2.6
waffle 1.1.9 1.1.10

Updates bandit from 1.7.0 to 1.11.0

Changelog

Sourced from bandit's changelog.

1.11.0 (1 May 2026)

Fixes

Enhancements

  • Define a new max_inflate_ratio WebSocket configuration option that defines a maximum allowable decompression ratio to help mitigate inflate bombing. Defaults to 25:1
  • Define a new max_fragmented_message_size WebSocket configuration option which defines the maximum allowed WebSocket frame size (inclusive of continuation frames). Defaults to 8MB

Changes

  • The default value of the max_frame_size WebSocket option has changed from :infinity to 8MB
  • Zero length non-fin continuation frames are now disallowed (we now skip Autobahn 6.1.2 as a result)
  • Multiple content-length fields in an HTTP/1 request are now disallowed (CVE-2026-39805, commit f2ca636, thanks @​PJUllrich & @​maennchen!)
  • We now only use the underlying transport when determining scheme (CVE-2026-39807, commit 45feea2, thanks @​PJUllrich & @​maennchen!)

1.10.4 (25 Mar 2026)

Enhancements

1.10.3 (22 Feb 2026)

Enhancements

  • Support authority form requests for CONNECT requests (#571)
  • Narrow acceptance of asterisk form requests to OPTIONS requests (#571)
  • Detect client disconnect on timeout in ensure_completed (#566, thanks @​pepicrft!)
  • Improve http2 sendfile streaming (#565, thanks @​elibosley!)

1.10.2 (22 Jan 2026)

Enhancements

  • Distinguish client disconnects from genuine body read timeouts (#564, thanks @​pepicrft!)

1.10.1 (5 Jan 2026)

Changes

  • Change default preference order for compression methods to be 'zstd (if present), gzip, deflate' (#562)

... (truncated)

Commits

Updates claude from 0.2.4 to 0.5.3

Changelog

Sourced from claude's changelog.

[0.5.3] - 2025-09-10

Removed

  • Deprecated RelatedFiles hook removed to resolve compilation errors (#141)

[0.5.2] - 2025-08-27

Fixed

  • Updated Tidewave MCP configuration to use HTTP streaming transport ("http") instead of SSE for compatibility with Tidewave 0.4+ (#106)
  • Updated Tidewave dependency requirement from "> 0.2" to "> 0.4" to ensure compatibility with HTTP streaming transport

[0.5.1] - 2025-08-22

Added

  • @​reference system with URL caching for documentation references in nested memories

Changed

  • Stop and subagent_stop hooks now use blocking?: false by default to prevent infinite loops
  • When compilation or formatting fails in stop hooks, they now provide informational feedback without blocking Claude
  • This prevents situations where Claude gets stuck trying to fix issues repeatedly

Why This Change

Stop hooks with blocking errors (exit code 2) could cause Claude to loop infinitely when trying to fix compilation errors. The new defaults keep users informed while preventing loops. Users can still override with blocking?: true if needed, but should be aware of the loop risk.

[0.5.0] - 2025-08-19

Changed

BREAKING CHANGE: Root CLAUDE.md now uses reference links to usage rules instead of inlining content

  • Previously was a little overzealous pulling in all context into CLAUDE.md which resulted in this error: ⚠ Large CLAUDE.md will impact performance (...k chars > 40.0k)
  • Root CLAUDE.md now contains links to usage rules in deps/ instead of inlining full content
  • Nested memory CLAUDE.md files continue to inline usage rules for focused context-specific guidance
  • Existing projects will get the optimized format on next mix claude.install

[0.4.0] - 2025-08-18

Added

  • New :output option for hooks to control output verbosity (defaults to :none)
  • Nested memories support for distributing CLAUDE.md files across different directories (#98)
  • Webhook reporter (experimental) for hook events with configurable HTTP endpoints (#97)
  • Bundled slash commands for common Elixir development tasks (#101)
  • GitHub Actions CI workflow for automated testing across Elixir/OTP versions (#95)
  • Hook wrapper system for improved dependency management during hook execution
  • Auto-installation of dependencies when auto_install_deps? is configured (false by default)

Changed

  • Usage rules documentation now embedded directly in CLAUDE.md for better LLM context (#96)

Fixed

... (truncated)

Commits

Updates credo from 1.7.12 to 1.7.18

Release notes

Sourced from credo's releases.

v1.7.18

Check it out on Hex: https://hex.pm/packages/credo/1.7.18

  • Fix compatibility & compiler warnings with Elixir 1.20.0-rc.4
  • Fix problem with transitive deps in umbrella apps
  • Credo.Check.Warning.UnusedMapOperation fix false positives

v1.7.17

Check it out on Hex: https://hex.pm/packages/credo/1.7.17

  • Credo.Check.Readability.ModuleDoc add new param :ignore_modules_using (defaults to [Credo.Check, Ecto.Schema, Phoenix.LiveView, ~r/\.Web$/])
  • Credo.Check.Warning.UnusedOperation update :modules param: instead of a list of functions to check, :all can be given to check all functions in a module
  • New Check: Credo.Check.Refactor.CondInsteadOfIfElse
  • New Check: Credo.Check.Warning.WrongTestFilename

v1.7.16

Check it out on Hex: https://hex.pm/packages/credo/1.7.16

  • Fix compatibility & compiler warnings with Elixir 1.20.0-rc.1
  • Credo.Check.Refactor.PassAsyncInTestCases add new param :force_comment_on_explicit_false (defaults to false)
  • Credo.Check.Warning.Dbg add new param :allow_captures (defaults to false)
  • New Check: Credo.Check.Warning.UnusedMapOperation
  • New Check: Credo.Check.Warning.UnusedOperation

v1.7.15

Check it out on Hex: https://hex.pm/packages/credo/1.7.15

  • Improve performance on large projects
  • Parse token_metadata for source files
  • Credo.Check.Warning.ExpensiveEmptyEnumCheck have better issue messages
  • Credo.Check.Refactor.MatchInCondition add new param :allow_operators
  • Credo.Check.Refactor.MatchInCondition fix false positive
  • Credo.Check.Readability.AliasOrder fix false positive
  • Credo.Check.Readability.FunctionNames fix false positive
  • Credo.Check.Readability.SinglePipe add new param :allow_blocks (defaults to true)
  • Credo.Check.Refactor.ModuleDependencies fix false positive

v1.7.14

Check it out on Hex: https://hex.pm/packages/credo/1.7.14

  • Fixed regression for DuplicatedCode
  • Expanded Credo.Check.Warning.ExpensiveEmptyEnumCheck to cover less obvious cases
  • New Check: Credo.Check.Warning.StructFieldAmount

1.7.13

Check it out on Hex: https://hex.pm/packages/credo/1.7.13

  • Fix compatibility & compiler warnings with Elixir 1.19
  • Credo.Check.Refactor.ABCSize fixed false positive
Changelog

Sourced from credo's changelog.

1.7.18

  • Fix compatibility & compiler warnings with Elixir 1.20.0-rc.4
  • Fix problem with transitive deps in umbrella apps
  • Credo.Check.Warning.UnusedMapOperation fix false positives

1.7.17

  • Credo.Check.Readability.ModuleDoc add new param :ignore_modules_using (defaults to [Credo.Check, Ecto.Schema, Phoenix.LiveView, ~r/\.Web$/])
  • Credo.Check.Warning.UnusedOperation update :modules param: instead of a list of functions to check, :all can be given to check all functions in a module
  • New Check: Credo.Check.Refactor.CondInsteadOfIfElse
  • New Check: Credo.Check.Warning.WrongTestFilename

1.7.16

  • Fix compatibility & compiler warnings with Elixir 1.20.0-rc.1
  • Credo.Check.Refactor.PassAsyncInTestCases add new param :force_comment_on_explicit_false (defaults to false)
  • Credo.Check.Warning.Dbg add new param :allow_captures (defaults to false)
  • New Check: Credo.Check.Warning.UnusedMapOperation
  • New Check: Credo.Check.Warning.UnusedOperation

1.7.15

  • Improve performance on large projects
  • Parse token_metadata for source files
  • Credo.Check.Warning.ExpensiveEmptyEnumCheck have better issue messages
  • Credo.Check.Refactor.MatchInCondition add new param :allow_operators
  • Credo.Check.Refactor.MatchInCondition fix false positive
  • Credo.Check.Readability.AliasOrder fix false positive
  • Credo.Check.Readability.FunctionNames fix false positive
  • Credo.Check.Readability.SinglePipe add new param :allow_blocks (defaults to true)
  • Credo.Check.Refactor.ModuleDependencies fix false positive

1.7.14

  • Fix regression for DuplicatedCode
  • Expand Credo.Check.Warning.ExpensiveEmptyEnumCheck to cover less obvious cases
  • New Check: Credo.Check.Warning.StructFieldAmount

1.7.13

  • Fix compatibility & compiler warnings with Elixir 1.19
  • Credo.Check.Refactor.ABCSize fixed false positive
Commits
  • 63d9bf4 Bump version to 1.7.18
  • e5f7956 Update CHANGELOG
  • da4f401 Fix false positives for UnusedMapOperation
  • 288a1b1 Update Elixir to 1.20.0-rc.4
  • 474b769 Fix errors due to new token format
  • a03f6bd Fix error raised by new sigil token format
  • aea4b77 Fix compiler warnings for 1.20.0-rc.2
  • 1169b69 Add requirements "loadpaths" to Mix task.
  • f0d654f Add experimental JSONL output to suggest command
  • 068fcc7 Bump version to 1.7.17
  • Additional commits viewable in compare view

Updates dialyxir from 1.4.5 to 1.4.7

Release notes

Sourced from dialyxir's releases.

1.4.7

[1.4.7] - 2025-11-05

Changed

  • Bump Erlex to 0.2.8, fixes #574.

1.4.6

Fixed

  • CallWithoutOpaque function clause error on OTP-28
  • invalid_contract warning showed spec twice instead of success typing

Changed

  • Update ex_doc to the latest version for an improved UI

Docs

  • Add a note about the :unknown flag to the "Default Flags" section in the README
  • Fix dead hex doc links by including CI config docs in mix.exs's :docs
  • Fix a typo in the README

CI

  • Update the Ubuntu version used in CI to 24.04
Changelog

Sourced from dialyxir's changelog.

Unreleased changes post [1.4.7]

[1.4.7] - 2025-11-05

Changed

  • Bump Erlex to 0.2.8, fixes #574.

[1.4.6] - 2025-08-09

Fixed

  • CallWithoutOpaque function clause error on OTP-28
  • invalid_contract warning showed spec twice instead of success typing

Changed

  • Update ex_doc to the latest version for an improved UI

Docs

  • Add a note about the :unknown flag to the "Default Flags" section in the README
  • Fix dead hex doc links by including CI config docs in mix.exs's :docs
  • Fix a typo in the README

CI

  • Update the Ubuntu version used in CI to 24.04
Commits
  • b57d69f Release version 1.4.7
  • 608b355 Bump Erlex (#583)
  • ab9bd59 Fix issue template.
  • 9e73fa8 Fixup changelog.
  • a0e4cf9 Bump version to 1.4.6
  • 51266a5 Merge pull request #569 from dvic/fix/call-without-opaque-otp28-issue-561
  • c564806 Merge branch 'master' into fix/call-without-opaque-otp28-issue-561
  • bf06a92 Merge pull request #570 from pwcsquared/ci-fix-ubuntu-ver
  • d3776d2 Update ubuntu version used in CI to 24.04 (currently supported)
  • 431f6c9 Merge branch 'master' into fix/call-without-opaque-otp28-issue-561
  • Additional commits viewable in compare view

Updates ecto_sql from 3.13.2 to 3.13.5

Changelog

Sourced from ecto_sql's changelog.

v3.13.5 (2026-03-03)

  • [postgrex] Map :restrict_violation to :foreign_key constraint (required by PostgreSQL 18)

v3.13.4 (2025-12-27)

Bug fixes

  • [mysql] Do not crash mix ecto.load with large dumped databases

v3.13.3 (2025-12-08)

Enhancements

  • [sql] Tag generated functions as :generated
  • [sql] Add :wrap_in_transaction option to explain

Bug fixes

  • [mysql] Fix structure_load/2 for MySQL 9.4+
Commits

Updates ex_aws from 2.5.10 to 2.6.1

Changelog

Sourced from ex_aws's changelog.

v2.6.1 (2025-12-09)

  • Endpoint updates
  • Document security_token configuration requirement for instance roles

v2.6.0 (2025-10-03)

  • Endpoint updates
  • Update to support OTP 28
  • Fix geo operations for geo-places and geo-routes services
  • Hide warning while running tests
  • Fix bucket_as_host with virtual_host causing double bucket in URLs
  • Add HTTP method to debug log for requests
  • Add EKS pod identity credential provider

v2.5.11 (2025-08-12)

  • Endpoint updates
Commits
  • 06f3d50 Bump version and update CHANGELOG v2.6.1
  • 496d810 Merge pull request #1186 from ex-aws/dependabot/hex/ex_doc-0.39.2
  • f8d38a0 Merge pull request #1183 from SageDigital/k1bs/add-transfer-endpoints
  • c3d7a59 Bump ex_doc from 0.38.4 to 0.39.2
  • 605d2bc Merge pull request #1178 from patrickriemer/add-ap-southeast-4-5-regions
  • 6788710 Merge pull request #1182 from st3llaris/patch-1
  • fa15774 Merge pull request #1184 from EddyLane/add-eu-central-2-to-eks-endpoints
  • f8841f7 Merge pull request #1181 from ex-aws/dependabot/hex/req-0.5.16
  • 334b2a7 Merge pull request #1179 from ex-aws/dependabot/hex/dialyxir-1.4.7
  • 895546e Added 'eu-central-2' to eks endpoints
  • Additional commits viewable in compare view

Updates ex_aws_s3 from 2.5.7 to 2.5.9

Changelog

Sourced from ex_aws_s3's changelog.

v2.5.9 (2025-12-09)

  • Implement bucket configuration operations put_bucket_logging/2, put_bucket_notification/2, put_bucket_request_payment/2, and put_bucket_website/2.
  • Fix put_object typespec
  • Remove deprecated Owner DisplayName field. This was removed by AWS on November 21, 2025.
  • Add integration tests for MinIO
  • Add streaming support for list_object_versions/3

v2.5.8 (2025-08-12)

  • Rename get_bucket_object_versions to list_object_versions
Commits
  • dbe09dd Update version and changelog. v2.5.9
  • 654d97a Merge pull request #323 from velimir/stream-get-bucket-object-versions
  • 39c2129 Merge pull request #325 from ex-aws/dependabot/hex/ex_doc-0.39.2
  • c83c055 Bump ex_doc from 0.39.1 to 0.39.2
  • fd1c852 Merge pull request #322 from ex-aws/dependabot/hex/dialyxir-1.4.7
  • 2efb3d2 Merge pull request #321 from ex-aws/dependabot/hex/ex_doc-0.39.1
  • b76739d make syntax formatter happy
  • 712ec50 add tests for list_object_versions streaming functionality
  • 85080c1 add streaming support for list_object_versions
  • 722964c Bump dialyxir from 1.4.6 to 1.4.7
  • Additional commits viewable in compare view

Updates finch from 0.20.0 to 0.21.0

Changelog

Sourced from finch's changelog.

v0.21.0 (2026-01-22)

Enhancements

  • Add support for querying default pool metrics via Finch.get_pool_status/2 #329
  • Add more details on Finch.request/3 docs #327

Bug Fixes

  • Prevent idle HTTP/1 pools from being terminated while connections are in use #292
  • Disable unsupported HTTP/2 server push responses to avoid crashes #333
  • Drop :cacerts from defaults for HTTP connections to avoid breaking plain HTTP pools #333
  • Only track default pool metrics when start_pool_metrics? is enabled #329

Other

  • Elixir 1.19 compatibility updates for HTTP/1 pool state handling #331
  • CI: update test matrix and x509/deps for Elixir 1.19 #330
  • Add ALPN large-body regression test coverage (issue #265) #332
Commits
  • f95c2e1 Merge pull request #339 from sneako/release-0.21.0
  • 20941ba prepare v0.21.0
  • 3053a16 Merge pull request #337 from oliveigah/main
  • 685e4ef feat: ets based default shp tracking
  • 6d1d6f1 Merge pull request #332 from neilberkman/main
  • 3c60899 Merge pull request #333 from TheOneric/fix-config-defaults
  • 173f88a Drop :cacerts from defaults for HTTP connections
  • ad478de Always disable unsupported server push responses
  • 75d06a8 Fix Credo readability warning for large number formatting
  • a38a401 Add test case for issue #265 (ALPN + large body bug)
  • Additional commits viewable in compare view

Updates gettext from 0.26.2 to 1.0.2

Changelog

Sourced from gettext's changelog.

v1.0.2

  • Only skip manifest removal on Elixir v1.19.3+

v1.0.1 (retired)

  • Remove unnecessary cleaning of Elixir manifests

v1.0.0

This is the first 1.0 release of Gettext, a silly 10 years (and 6 months) after we started working on it. There are very few changes from the latest 0.26 release, and none of them are breaking.

Here are the new goodies:

  • Add support for concatenating sigils if all parts are known at compile time (such as "Hello " <> ~s(world)).
  • Significantly increase the timeout for mix gettext.extract to two minutes.
  • Add Gettext.put_locale!/2.

Happy 10+ years of Elixir translations everyone! 🎉

Previous versions

See the CHANGELOG for versions before v1.0.

Commits
  • e3180f1 Release v1.0.2
  • ec2f9c1 Erase manifest unless on upcoming Elixir (#425)
  • 4960e49 Revert "Removed unnecessary cleaning of Elixir manifests (#423)"
  • 8844a32 Trim CHANGELOG
  • 7fe2dc7 Release v1.0.1
  • 30bf87d Removed unnecessary cleaning of Elixir manifests (#423)
  • d33d745 Bump actions/checkout from 4.2.2 to 5.0.0 (#422)
  • 7443953 Use ubuntu-latest in the publish-to-hex.yml workflow
  • d1a8c86 Release v1.0.0
  • e1df334 Update Elixir/Erlang versions in CI
  • Additional commits viewable in compare view

Updates heroicons from v2.1.1 to v2.2.0

Release notes

Sourced from heroicons's releases.

v2.2.0

Added

  • Add React 19 support (#1247)

Fixed

  • Removed unnecessary clipping path from solid/arrow-left-circle (#1211)

v2.1.5

Added

  • Add new icons (arrow-turn-*, bold, calendar-date-range, divide, document-currency-*, equals, h1, h2, h3, italic, link-slash, numbered-list, percent-badge, slash, strikethrough, underline)

v2.1.4

Fixed

  • Improve tree-shakability of React package (#1192)

v2.1.3

  • Improve project READMEs (#1152)

v2.1.2

  • Include license file with published packages (#1151)
Changelog

Sourced from heroicons's changelog.

[2.2.0] - 2024-11-18

Added

  • Add React 19 support (#1247)

Fixed

  • Removed unnecessary clipping path from solid/arrow-left-circle (#1211)

[2.1.5] - 2024-07-10

Added

  • Add new icons (arrow-turn-*, bold, calendar-date-range, divide, document-currency-*, equals, h1, h2, h3, italic, link-slash, numbered-list, percent-badge, slash, strikethrough, underline)

[2.1.4] - 2024-06-17

Fixed

  • Improve tree-shakability of React package (#1192)

[2.1.3] - 2024-03-22

  • Improve project READMEs (#1152)

[2.1.2] - 2024-03-22

  • Include license file with published packages (#1151)
Commits

Updates igniter from 0.6.28 to 0.8.0

Release notes

Sourced from igniter's releases.

v0.8.0

Features:

  • add Igniter.Code.Pattern for ExAST-powered pattern matching (#375) by Danila Poyarkov

Bug Fixes:

  • tolerate 3-tuple dep entries in recursively_compose_schema (#372) by Matt Pruitt

v0.7.9

Bug Fixes:

  • use beam index not private manifest to initialize module index by Zach Daniel

v0.7.8

Improvements:

  • check compiled manifest and simple defmodule patterns early by Zach Daniel

  • add and manage a module index cache by Zach Daniel

v0.7.7

Bug Fixes:

  • handle children = [...] ++ expr in add_new_child (#368) by James Harton

v0.7.6

Bug Fixes:

  • run tasks with Mix.shell().cmd/1 to avoid state issues by Zach Daniel

... (truncated)

Changelog

Sourced from igniter's changelog.

v0.8.0 (2026-05-09)

Features:

  • add Igniter.Code.Pattern for ExAST-powered pattern matching (#375) by Danila Poyarkov

Bug Fixes:

  • tolerate 3-tuple dep entries in recursively_compose_schema (#372) by Matt Pruitt

v0.7.9 (2026-04-11)

Bug Fixes:

  • use beam index not private manifest to initialize module index by Zach Daniel

v0.7.8 (2026-04-11)

Improvements:

  • check compiled manifest and simple defmodule patterns early by Zach Daniel

  • add and manage a module index cache by Zach Daniel

v0.7.7 (2026-03-24)

Bug Fixes:

  • handle children = [...] ++ expr in add_new_child (#368) by James Harton

v0.7.6 (2026-03-15)

Bug Fixes:

  • run tasks with Mix.shell().cmd/1 to avoid state issues by Zach Daniel

... (truncated)

Commits
  • 8c9c4be chore: release version v0.8.0
  • 4bbdb82 fix: don't drop --key=value flags when value contains a dot (#377)
  • 427b2da build(deps): bump the production-dependencies group with 2 updates (#376)
  • 0e433e6 feat: add Igniter.Code.Pattern for ExAST-powered pattern matching (#375)
  • 3ca42d6 improvement: add rename_module/4 and mix igniter.refactor.rename_modu… (#374)
  • 601d010 fix: tolerate 3-tuple dep entries in recursively_compose_schema (#372)
  • 5b7a312 chore: release version v0.7.9
  • 37ef106 fix: use beam index not private manifest to initialize module index
  • 96daddd chore: release version v0.7.8
  • c8089e6 chore: format
  • Additional commits viewable in compare view

Updates jason from 1.4.4 to 1.4.5

Changelog

Sourced from jason's changelog.

1.4.5 (05.05.2026)

  • Add support for Decimal 3.0
Commits
  • 4ede428 Bump v1.4.5
  • b8c2185 Fix dialyzer job
  • a363975 Modernise CI to currently supported versions
  • 243c8a8 Allow decimal 3.0
  • c8e8d05 Revert the experimental 1.5 branch and jason_native experiment
  • 0e7a3e2 Add example/doctest for Jason.OrderedObject.new/1
  • 984bc07 fix broken link
  • f775592 Raise if trying to decode decimals without decimal
  • 79d59df Remove unneeded workarounds for xref warnings
  • baac78e Fix warnings by conditionally compiling Decimal support
  • Additional commits viewable in compare view

Updates lazy_html from 0.1.5 to 0.1.11

Release notes

Sourced from lazy_html's releases.

v0.1.11

Added

  • Added :separator option to LazyHTML.text/1 (#33)

v0.1.10

Fixed

  • LazyHTML.query/2 and LazyHTML.query_by_id/2 returning duplicate nodes (#31)

v0.1.9

Added

  • LazyHTML.parent_node/1 and LazyHTML.nth_child/1 (#25)

Fixed

  • Segmentation fault when calling LazyHTML.from_tree/1 with highly nested trees (#30)

v0.1.8

Added

  • Precompiled artifacts for musl

v0.1.7

Updated

  • Updated Lexbor version (#21)

v0.1.6

Fixed

  • Fixed regression in LazyHTML.Tree.to_html/1 memory usage (#19)
Changelog

Sourced from lazy_html's changelog.

v0.1.11 (2026-04-02)

Added

  • Added :separator option to LazyHTML.text/1 (#33)

v0.1.10 (2026-02-09)

Fixed

  • LazyHTML.query/2 and LazyHTML.query_by_id/2 returning duplicate nodes (#31)

v0.1.9 (2026-02-09)

Added

  • LazyHTML.parent_node/1 and LazyHTML.nth_child/1 (#25)

Fixed

  • Segmentation fault when calling LazyHTML.from_tree/1 with highly nested trees (#30)

v0.1.8 (2025-09-15)

Added

  • Precompiled artifacts for musl

v0.1.7 (2025-08-29)

Updated

  • Updated Lexbor version (#21)

v0.1.6 (2025-08-07)

Fixed

  • Fixed regression in LazyHTML.Tree.to_html/1 memory usage (#19)
Commits

Updates nebulex from 2.6.5 to 3.0.4

Release notes

Sourced from nebulex's releases.

v3.0.4

To see what's new, check the CHANGELOG

v3.0.3

To see what's new, check the CHANGELOG

v3.0.2

To see what's new, check the CHANGELOG

v3.0.1

To see what's new, check the CHANGELOG

v3.0.0

To see what's new, check the CHANGELOG

v3.0.0-rc.2

To see what's new, check the CHANGELOG

v3.0.0-rc.1

To see what's new, check the CHANGELOG

v2.6.6

To see what's new, check the CHANGELOG

Changelog

Sourced from nebulex's changelog.

v3.0.4 (2026-05-03)

Full Changelog

Documentation

  • Added usage-rules/architecture.md covering Nebulex's layer boundaries, key design decisions, and non-negotiable contribution rules. Used to bootstrap agent-assisted development sessions.
  • Tightened and reconciled the agent rule files: unified Rule Index and Rule Precedence in workflow.md, aligned CHANGELOG policy with CONTRIBUTING.md, clarified validation commands, and fixed a number of consistency issues surfaced by cold-session simulations.

v3.0.3 (2026-03-27)

Full Changelog

Adapter changes

  • [nebulex_distributed] Added new Nebulex....

    Description has been truncated

Bumps the elixir-deps group with 28 updates:

| Package | From | To |
| --- | --- | --- |
| [bandit](https://github.com/mtrudel/bandit) | `1.7.0` | `1.11.0` |
| [claude](https://github.com/bradleygolden/claude) | `0.2.4` | `0.5.3` |
| [credo](https://github.com/rrrene/credo) | `1.7.12` | `1.7.18` |
| [dialyxir](https://github.com/jeremyjh/dialyxir) | `1.4.5` | `1.4.7` |
| [ecto_sql](https://github.com/elixir-ecto/ecto_sql) | `3.13.2` | `3.13.5` |
| [ex_aws](https://github.com/ex-aws/ex_aws) | `2.5.10` | `2.6.1` |
| [ex_aws_s3](https://github.com/ex-aws/ex_aws_s3) | `2.5.7` | `2.5.9` |
| [finch](https://github.com/sneako/finch) | `0.20.0` | `0.21.0` |
| [gettext](https://github.com/elixir-gettext/gettext) | `0.26.2` | `1.0.2` |
| [heroicons](https://github.com/tailwindlabs/heroicons) | `v2.1.1` | `v2.2.0` |
| [igniter](https://github.com/ash-project/igniter) | `0.6.28` | `0.8.0` |
| [jason](https://github.com/michalmuskala/jason) | `1.4.4` | `1.4.5` |
| [lazy_html](https://github.com/dashbitco/lazy_html) | `0.1.5` | `0.1.11` |
| [nebulex](https://github.com/elixir-nebulex/nebulex) | `2.6.5` | `3.0.4` |
| [phoenix](https://github.com/phoenixframework/phoenix) | `1.8.0` | `1.8.7` |
| [phoenix_ecto](https://github.com/phoenixframework/phoenix_ecto) | `4.6.5` | `4.7.0` |
| [phoenix_html](https://github.com/phoenixframework/phoenix_html) | `4.2.1` | `4.3.0` |
| [phoenix_live_reload](https://github.com/phoenixframework/phoenix_live_reload) | `1.6.0` | `1.6.2` |
| [phoenix_live_view](https://github.com/phoenixframework/phoenix_live_view) | `1.1.3` | `1.1.30` |
| [postgrex](https://github.com/elixir-ecto/postgrex) | `0.20.0` | `0.22.1` |
| [sobelow](https://github.com/sobelow/sobelow) | `0.14.0` | `0.14.1` |
| [styler](https://github.com/adobe/elixir-styler) | `1.5.1` | `1.11.0` |
| [swoosh](https://github.com/swoosh/swoosh) | `1.19.5` | `1.25.1` |
| [tailwind](https://github.com/phoenixframework/tailwind) | `0.3.1` | `0.4.1` |
| [tidewave](https://github.com/tidewave-ai/tidewave_phoenix) | `0.4.1` | `0.5.6` |
| [tls_certificate_check](https://github.com/g-andrade/tls_certificate_check) | `1.28.0` | `1.32.4` |
| [usage_rules](https://github.com/ash-project/usage_rules) | `0.1.23` | `1.2.6` |
| [waffle](https://github.com/elixir-waffle/waffle) | `1.1.9` | `1.1.10` |


Updates `bandit` from 1.7.0 to 1.11.0
- [Changelog](https://github.com/mtrudel/bandit/blob/main/CHANGELOG.md)
- [Commits](mtrudel/bandit@1.7.0...1.11.0)

Updates `claude` from 0.2.4 to 0.5.3
- [Release notes](https://github.com/bradleygolden/claude/releases)
- [Changelog](https://github.com/bradleygolden/claude-marketplace-elixir/blob/v0.5.3/CHANGELOG.md)
- [Commits](bradleygolden/claude-marketplace-elixir@v0.2.4...v0.5.3)

Updates `credo` from 1.7.12 to 1.7.18
- [Release notes](https://github.com/rrrene/credo/releases)
- [Changelog](https://github.com/rrrene/credo/blob/master/CHANGELOG.md)
- [Commits](rrrene/credo@v1.7.12...v1.7.18)

Updates `dialyxir` from 1.4.5 to 1.4.7
- [Release notes](https://github.com/jeremyjh/dialyxir/releases)
- [Changelog](https://github.com/jeremyjh/dialyxir/blob/master/CHANGELOG.md)
- [Commits](jeremyjh/dialyxir@1.4.5...1.4.7)

Updates `ecto_sql` from 3.13.2 to 3.13.5
- [Changelog](https://github.com/elixir-ecto/ecto_sql/blob/master/CHANGELOG.md)
- [Commits](elixir-ecto/ecto_sql@v3.13.2...v3.13.5)

Updates `ex_aws` from 2.5.10 to 2.6.1
- [Release notes](https://github.com/ex-aws/ex_aws/releases)
- [Changelog](https://github.com/ex-aws/ex_aws/blob/main/CHANGELOG.md)
- [Commits](ex-aws/ex_aws@v2.5.10...v2.6.1)

Updates `ex_aws_s3` from 2.5.7 to 2.5.9
- [Changelog](https://github.com/ex-aws/ex_aws_s3/blob/main/CHANGELOG.md)
- [Commits](ex-aws/ex_aws_s3@v2.5.7...v2.5.9)

Updates `finch` from 0.20.0 to 0.21.0
- [Changelog](https://github.com/sneako/finch/blob/main/CHANGELOG.md)
- [Commits](sneako/finch@v0.20.0...v0.21.0)

Updates `gettext` from 0.26.2 to 1.0.2
- [Changelog](https://github.com/elixir-gettext/gettext/blob/main/CHANGELOG.md)
- [Commits](elixir-gettext/gettext@v0.26.2...v1.0.2)

Updates `heroicons` from v2.1.1 to v2.2.0
- [Release notes](https://github.com/tailwindlabs/heroicons/releases)
- [Changelog](https://github.com/tailwindlabs/heroicons/blob/master/CHANGELOG.md)
- [Commits](tailwindlabs/heroicons@88ab3a0...0435d4c)

Updates `igniter` from 0.6.28 to 0.8.0
- [Release notes](https://github.com/ash-project/igniter/releases)
- [Changelog](https://github.com/ash-project/igniter/blob/main/CHANGELOG.md)
- [Commits](ash-project/igniter@v0.6.28...v0.8.0)

Updates `jason` from 1.4.4 to 1.4.5
- [Release notes](https://github.com/michalmuskala/jason/releases)
- [Changelog](https://github.com/michalmuskala/jason/blob/master/CHANGELOG.md)
- [Commits](michalmuskala/jason@v1.4.4...v1.4.5)

Updates `lazy_html` from 0.1.5 to 0.1.11
- [Release notes](https://github.com/dashbitco/lazy_html/releases)
- [Changelog](https://github.com/dashbitco/lazy_html/blob/main/CHANGELOG.md)
- [Commits](dashbitco/lazy_html@v0.1.5...v0.1.11)

Updates `nebulex` from 2.6.5 to 3.0.4
- [Release notes](https://github.com/elixir-nebulex/nebulex/releases)
- [Changelog](https://github.com/elixir-nebulex/nebulex/blob/main/CHANGELOG.md)
- [Commits](elixir-nebulex/nebulex@v2.6.5...v3.0.4)

Updates `phoenix` from 1.8.0 to 1.8.7
- [Release notes](https://github.com/phoenixframework/phoenix/releases)
- [Changelog](https://github.com/phoenixframework/phoenix/blob/main/CHANGELOG.md)
- [Commits](phoenixframework/phoenix@v1.8.0...v1.8.7)

Updates `phoenix_ecto` from 4.6.5 to 4.7.0
- [Changelog](https://github.com/phoenixframework/phoenix_ecto/blob/main/CHANGELOG.md)
- [Commits](phoenixframework/phoenix_ecto@v4.6.5...v4.7.0)

Updates `phoenix_html` from 4.2.1 to 4.3.0
- [Changelog](https://github.com/phoenixframework/phoenix_html/blob/main/CHANGELOG.md)
- [Commits](phoenixframework/phoenix_html@v4.2.1...v4.3.0)

Updates `phoenix_live_reload` from 1.6.0 to 1.6.2
- [Changelog](https://github.com/phoenixframework/phoenix_live_reload/blob/main/CHANGELOG.md)
- [Commits](phoenixframework/phoenix_live_reload@v1.6.0...v1.6.2)

Updates `phoenix_live_view` from 1.1.3 to 1.1.30
- [Release notes](https://github.com/phoenixframework/phoenix_live_view/releases)
- [Changelog](https://github.com/phoenixframework/phoenix_live_view/blob/v1.1.30/CHANGELOG.md)
- [Commits](phoenixframework/phoenix_live_view@v1.1.3...v1.1.30)

Updates `postgrex` from 0.20.0 to 0.22.1
- [Release notes](https://github.com/elixir-ecto/postgrex/releases)
- [Changelog](https://github.com/elixir-ecto/postgrex/blob/master/CHANGELOG.md)
- [Commits](elixir-ecto/postgrex@v0.20.0...v0.22.1)

Updates `sobelow` from 0.14.0 to 0.14.1
- [Release notes](https://github.com/sobelow/sobelow/releases)
- [Changelog](https://github.com/sobelow/sobelow/blob/main/CHANGELOG.md)
- [Commits](sobelow/sobelow@v0.14.0...v0.14.1)

Updates `styler` from 1.5.1 to 1.11.0
- [Release notes](https://github.com/adobe/elixir-styler/releases)
- [Changelog](https://github.com/adobe/elixir-styler/blob/main/CHANGELOG.md)
- [Commits](adobe/elixir-styler@v1.5.1...v1.11.0)

Updates `swoosh` from 1.19.5 to 1.25.1
- [Release notes](https://github.com/swoosh/swoosh/releases)
- [Changelog](https://github.com/swoosh/swoosh/blob/main/CHANGELOG.md)
- [Commits](swoosh/swoosh@v1.19.5...v1.25.1)

Updates `tailwind` from 0.3.1 to 0.4.1
- [Changelog](https://github.com/phoenixframework/tailwind/blob/main/CHANGELOG.md)
- [Commits](phoenixframework/tailwind@v0.3.1...v0.4.1)

Updates `tidewave` from 0.4.1 to 0.5.6
- [Changelog](https://github.com/tidewave-ai/tidewave_phoenix/blob/main/CHANGELOG.md)
- [Commits](tidewave-ai/tidewave_phoenix@v0.4.1...v0.5.6)

Updates `tls_certificate_check` from 1.28.0 to 1.32.4
- [Release notes](https://github.com/g-andrade/tls_certificate_check/releases)
- [Changelog](https://github.com/g-andrade/tls_certificate_check/blob/main/CHANGELOG.md)
- [Commits](g-andrade/tls_certificate_check@1.28.0...1.32.4)

Updates `usage_rules` from 0.1.23 to 1.2.6
- [Release notes](https://github.com/ash-project/usage_rules/releases)
- [Changelog](https://github.com/ash-project/usage_rules/blob/main/CHANGELOG.md)
- [Commits](ash-project/usage_rules@v0.1.23...v1.2.6)

Updates `waffle` from 1.1.9 to 1.1.10
- [Changelog](https://github.com/elixir-waffle/waffle/blob/master/CHANGELOG.md)
- [Commits](elixir-waffle/waffle@v1.1.9...v1.1.10)

---
updated-dependencies:
- dependency-name: bandit
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: claude
  dependency-version: 0.5.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: credo
  dependency-version: 1.7.18
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: elixir-deps
- dependency-name: dialyxir
  dependency-version: 1.4.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: elixir-deps
- dependency-name: ecto_sql
  dependency-version: 3.13.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: elixir-deps
- dependency-name: ex_aws
  dependency-version: 2.6.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: ex_aws_s3
  dependency-version: 2.5.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: elixir-deps
- dependency-name: finch
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: gettext
  dependency-version: 1.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: elixir-deps
- dependency-name: heroicons
  dependency-version: 0435d4ca364a608cc75e2f8683d374e55abbae26
  dependency-type: direct:production
  dependency-group: elixir-deps
- dependency-name: igniter
  dependency-version: 0.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: jason
  dependency-version: 1.4.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: elixir-deps
- dependency-name: lazy_html
  dependency-version: 0.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: elixir-deps
- dependency-name: nebulex
  dependency-version: 3.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: elixir-deps
- dependency-name: phoenix
  dependency-version: 1.8.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: elixir-deps
- dependency-name: phoenix_ecto
  dependency-version: 4.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: phoenix_html
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: phoenix_live_reload
  dependency-version: 1.6.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: elixir-deps
- dependency-name: phoenix_live_view
  dependency-version: 1.1.30
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: elixir-deps
- dependency-name: postgrex
  dependency-version: 0.22.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: sobelow
  dependency-version: 0.14.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: elixir-deps
- dependency-name: styler
  dependency-version: 1.11.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: swoosh
  dependency-version: 1.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: tailwind
  dependency-version: 0.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: tidewave
  dependency-version: 0.5.6
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: tls_certificate_check
  dependency-version: 1.32.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: elixir-deps
- dependency-name: usage_rules
  dependency-version: 1.2.6
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: elixir-deps
- dependency-name: waffle
  dependency-version: 1.1.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: elixir-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file elixir Pull requests that update elixir code labels May 11, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file elixir Pull requests that update elixir code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant