Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 19, 2026

Bumps the production-dependencies group with 10 updates:

Package From To
beacon c496ae8 236da4b
ecto 3.12.5 3.13.5
esbuild 0.9.0 0.10.0
floki 0.37.1 0.38.0
igniter 0.5.43 0.7.0
live_svelte 0.15.0 0.16.0
phoenix 1.7.21 1.8.3
phoenix_html 4.2.1 4.3.0
phoenix_live_view 1.0.9 1.1.20
tailwind 0.3.1 0.4.1

Updates beacon from c496ae8 to 236da4b

Commits

Updates ecto from 3.12.5 to 3.13.5

Changelog

Sourced from ecto's changelog.

v3.13.5 (2025-11-09)

Enhancements

  • [Ecto.Query] Support selecting a subset of a subquery as a struct

v3.13.4 (2025-10-24)

Bug fixes

  • [Ecto.Changeset] Ensure empty binaries are trimmed
  • [Ecto.Repo] Ensure rollback applies to dynamic repos
  • [Ecto.Type] Properly format :in composite types

v3.13.3 (2025-09-19)

Enhancements

  • [Ecto.Query] Accept a list of things to exclude in exclude

Bug fixes

  • [Ecto.Query] Allow 2-arity functions as preload function in query
  • [Ecto.Query] Remove soft deprecated literal warning
  • [Ecto.Schema] Do not consider space and newlines as empty for binary types

v3.13.2 (2025-06-24)

Bug fixes

  • [Ecto.Query] Fix regression which made queries with multiple joins expensive to compile
  • [Ecto.Repo] Fix detection of missing primary key on associations with only nil entries
  • [Ecto.Query] Fix macro expansion in over clause's order_by

v3.13.1 (2025-06-19)

Bug fixes

  • [Ecto.Repo] Do not automatically apply HOT updates on upsert with replace. It is the user responsibility to make sure they do not overlap

v3.13.0 (2025-06-18)

Requires Elixir v1.14+.

Enhancements

  • [Ecto] Support Elixir's built-in JSON
  • [Ecto.Enum] Add Ecto.Enum.cast_value/3
  • [Ecto.Query] Allow schema to be used for values list types
  • [Ecto.Query] Allow strings in field/2

... (truncated)

Commits

Updates esbuild from 0.9.0 to 0.10.0

Changelog

Sourced from esbuild's changelog.

v0.10.0 (2025-05-27)

  • Automatically join environment variables specified as lists using the correct PATH separator. For example:
    config :esbuild,
      my_profile: [
        ...
        env: %{
          "NODE_PATH" => [Path.expand("../deps", __DIR__), Mix.Project.build_path()]
        }
      ]
Commits

Updates floki from 0.37.1 to 0.38.0

Release notes

Sourced from floki's releases.

v0.38.0

Added

  • This version adds initial support for the :has pseudo-selector. It is a great addition that enables finding elements containing matching children.

    Examples for selectors:

    • "div:has(h1)"
    • "div:has(h1, p, span)"
    • "div:has(p.foo)"
    • "div:has(img[src='https://example.com'])"
    • "tr:has(*:fl-contains('TEST'))"

    Note that combinators like ">" are not allowed yet.

    Thank you @​bvobart for this feature!

Fixed

  • Add :style option documentation to Floki.text/2. Thanks @​s3cur3 for the fix.

  • Fix deprecation warnings for upcoming Elixir 1.19.

  • Prevent from crashing when selector is an empty string.

Removed

  • Remove support for Elixir 1.14 and OTP 23.

  • Remove deprecated functions and function clauses that were accepting strings (binaries).

    Affected functions:

    • parse/1 - removed function
    • map/2 - removed function
    • attr/4 - removed clause
    • find/2 - removed clause
    • text/3 - removed clause
    • text/3 - removed clause
    • attribute/2 - removed clause
    • filter_out/2 - removed clause

    HTML must be parsed before searching. Functions like Floki.find/2, Floki.attribute/2, and other HTML manipulation functions no longer work directly with HTML strings. The HTML must be parsed first using Floki.parse_fragment/2 or Floki.parse_document/2.

... (truncated)

Changelog

Sourced from floki's changelog.

[0.38.0] - 2025-06-14

Added

  • This version adds initial support for the :has pseudo-selector. It is a great addition that enables finding elements containing matching children.

    Examples for selectors:

    • "div:has(h1)"
    • "div:has(h1, p, span)"
    • "div:has(p.foo)"
    • "div:has(img[src='https://example.com'])"
    • "tr:has(*:fl-contains('TEST'))"

    Note that combinators like ">" are not allowed yet.

    Thank you @​bvobart for this feature!

Fixed

  • Add :style option documentation to Floki.text/2. Thanks @​s3cur3 for the fix.

  • Fix deprecation warnings for upcoming Elixir 1.19.

  • Prevent from crashing when selector is an empty string.

Removed

  • Remove support for Elixir 1.14 and OTP 23.

  • Remove deprecated functions and function clauses that were accepting strings (binaries).

    Affected functions:

    • parse/1 - removed function
    • map/2 - removed function
    • attr/4 - removed clause
    • find/2 - removed clause
    • text/3 - removed clause
    • text/3 - removed clause
    • attribute/2 - removed clause
    • filter_out/2 - removed clause
  • HTML must be parsed before searching. Functions like Floki.find/2, Floki.attribute/2, and other HTML manipulation functions no longer work directly with HTML strings. The HTML must be parsed first using

... (truncated)

Commits

Updates igniter from 0.5.43 to 0.7.0

Release notes

Sourced from igniter's releases.

v0.7.0

Features:

  • Add support for SiteEncrypt.Phoenix.Endpoint detection (#339) by Herman verschooten

Bug Fixes:

  • put_in_map/set_map_key not setting keys properly (#348) by Nick Krichevsky

  • don't pass --no-git onto installers by Zach Daniel

  • modify_config_code twice with keyword values (#332) by grzuy

v0.6.30

Bug Fixes:

  • don't silently ignore certain errors during spinners by Zach Daniel

  • don't display "temporarily adding igniter" when we aren't by Zach Daniel

v0.6.25

Bug Fixes:

  • remove another enumeration of the rewrite by Zach Daniel

v0.6.24

Bug Fixes:

  • iterate over sources, not rewrite, in one more place by Zach Daniel

v0.6.23

... (truncated)

Changelog

Sourced from igniter's changelog.

v0.7.0 (2025-11-05)

Features:

  • Add support for SiteEncrypt.Phoenix.Endpoint detection (#339) by Herman verschooten

Bug Fixes:

  • put_in_map/set_map_key not setting keys properly (#348) by Nick Krichevsky

  • don't pass --no-git onto installers by Zach Daniel

  • modify_config_code twice with keyword values (#332) by grzuy

v0.6.30 (2025-09-25)

Bug Fixes:

  • don't silently ignore certain errors during spinners by Zach Daniel

  • don't display "temporarily adding igniter" when we aren't by Zach Daniel

v0.6.29 (2025-09-20)

Bug Fixes:

  • prevent duplicate 'live' directories for modules with Live namespace (#330) by Matthew Sinclair

  • prevent duplicate 'live' directories for modules with Live namespace by Matthew Sinclair

Improvements:

  • add delay_task to run tasks at the end by Zach Daniel

v0.6.28 (2025-08-21)

Bug Fixes:

... (truncated)

Commits
  • e41f7e0 chore: release version v0.7.0
  • 1cb6f21 build(deps-dev): bump the dev-dependencies group with 3 updates (#350)
  • 4930cd4 Fix: put_in_map/set_map_key not setting keys properly (#348)
  • bd2b582 doc: fix type link (#346)
  • d90eb60 docs: Update docs to indicate behavior of List.map/2, add tests (#345)
  • 5c43202 docs: Clarify Elixir version requirements (#344)
  • 6153ea0 feat: Add support for SiteEncrypt.Phoenix.Endpoint detection (#339)
  • 435cde1 chore: Fix REUSE license attribution
  • 0127832 build(deps): bump rewrite in the production-dependencies group (#342)
  • a866ab5 chore: Fix failing test (#340)
  • Additional commits viewable in compare view

Updates live_svelte from 0.15.0 to 0.16.0

Release notes

Sourced from live_svelte's releases.

v0.16.0

What's Changed

New Contributors

Full Changelog: woutdp/live_svelte@v0.15.0...v0.16.0

Changelog

Sourced from live_svelte's changelog.

0.16.0 - 2025-04-18

Added

Fixed

  • Documentation tweaks that refer to adding the socket when not using SSR
Commits
  • 08ecd4d Update changelog
  • 23f64b2 Bump version 0.15.0 -> 0.160
  • b1f6845 Add TV labs and remore territoriez
  • 1d811a7 Add to changelog
  • ec1923c Update README.md fallback content
  • 26fd898 Add documentation for loading slot
  • 649a99a Edit warning message ssr + loading
  • 7fd90a5 Add example loading slot
  • 640dd6e Add warning if ssr and loading slot is being used together
  • a3615e4 feat: <:loading /> slot for server-rendered markup
  • Additional commits viewable in compare view

Updates phoenix from 1.7.21 to 1.8.3

Changelog

Sourced from phoenix's changelog.

1.8.3 (2025-12-8)

Enhancements

  • Add top-level phoenix config: sort_verified_routes_query_params to enable sorting query params in verified routes during tests

Bug fixes

  • Fix endpoint port config in an umbrella application. (#6549)
  • Drop incoming channel messages with stale join refs

1.8.2 (2025-11-26)

Bug fixes

  • [phoenix.js] fix issue where LongPoll can cause "unmatched topic" errors (observed on iOS only) (#6538)
  • [phx.gen.live] fix tests when schema and table names are equal (#6477)
  • [Verified Routes] do not add path prefixes for static routes
  • [Phoenix.Endpoint] fix LongPoll being active by default since 1.8.0 (#6487)

Enhancements

  • [phoenix.js] socket now stops reconnection attempts while the page is hidden (#6534)
  • [phx.new] (re-)add <.input field={@form[:foo]} type="hidden" /> support in core components
  • [phx.new] set force_ssl in prod.exs by default (#6435)
  • [phx.new] change --docker base image to debian trixie (#6521)
  • [Phoenix.Socket.assign/2] allow passing a function as second argument assign(socket, fn _existing_assigns -> %{this_gets: "merged"} end) (#6530)
  • [Phoenix.Controller.assign/2] allow passing a function as second argument (#6542)
  • [Phoenix.Controller.assign/2] support keyword lists and maps as second argument similar to LiveView (#6513)
  • [Presence] support custom dispatcher for presence_diff broadcast (#6500)
  • [AGENTS.md] add short test guidelines to usage rules

1.8.1 (2025-08-28)

Bug fixes

  • [phx.new] Fix AGENTS.md failing to include CSS and JavaScript sections

1.8.0 (2025-08-05)

Bug fixes

  • [phx.new] Don't include node_modules override in generated tsconfig.json

Enhancements

  • [phx.gen.live|html|json] - Make context argument optional. Defaults to the plural name.
  • [phx.new] Add mix precommit alias
  • [phx.new] Add AGENTS.md generation compatible with usage_rules
  • [phx.new] Add usage_rules folder to installer, allowing to sync generic Phoenix rules into new projects
  • [phx.new] Use LiveView 1.1 release in generated code
  • [phx.new] Ensure theme selector and flash closing works without LiveView

1.8.0-rc.4 (2025-07-14)

Bug Fixes

  • Fix phx.gen.presence PubSub server name for umbrella apps

... (truncated)

Commits

Updates phoenix_html from 4.2.1 to 4.3.0

Changelog

Sourced from phoenix_html's changelog.

4.3.0 (2025-09-28)

  • Enhancements

    • Implement Phoenix.HTML.Safe for Duration
    • Add function head for argument names of normalize_value/2 to improve documentation
    • Allow custom tags in options_for_select
    • Allow datetime as form option values
  • Bug fixes

    • Avoid false positive warnings on Elixir v1.19
Commits

Updates phoenix_live_view from 1.0.9 to 1.1.20

Changelog

Sourced from phoenix_live_view's changelog.

v1.1.20 (2026-01-14)

Bug fixes

  • Fix redirect in handle_params for client-initiated patches causing a JS exception (#4094)
  • Fix events initiated from elements teleported outside of a LiveComponent being sent to the LiveView instead of the LiveComponent (#4101)
  • Ensure HooksOptions accepts non-default typed hooks (#4099)
  • Prevent portal content from disappearing in rare cases (#4095)
  • Fix <form> submission to a controller from inside a portal not working (#4107)
  • Prevent JS crash when debouncing inputs attached to a form with the form="..." attribute (#4102)
  • Fix UploadClient (from LiveViewTest) crashing when receiving a :socket_close message (#4079)
  • Allow live_file_input to update attributes (#4078)
  • Fix invalid HTML when setting LiveView :container option to :body (#3932)

v1.1.19 (2025-12-12)

Bug fixes

  • Ensure stale token redirect uses the correct URL (#4068)
  • Ignore events from elements that are not connected to the DOM (#4066)
  • Skip phx-click-away if clicked element is hidden (#4070)

Enhancements

  • Allow disabling symlink warning for colocated js (#4057)

v1.1.18 (2025-11-25)

Bug fixes

  • Fix boolean attributes not being properly ignored when using JS.ignore_attributes (#4049)

Enhancements

  • [Phoenix.Component.assign/2] allow passing a function as second argument assign(socket, fn _existing_assigns -> %{this_gets: "merged"} end) (#4051)
  • Annotate phx-drop-target elements with the phx-drop-target-active class when items are being dropped (#4012)
  • Add onDocumentPatch dom callback and allow specifying the event dispatch phase (#4043) This allows users to use view transitions, see the linked gist in the PR.
  • Warn in createHook if passed element has no ID (#4010)
  • Allow Phoenix.Component.portal/1 to be nested (#4048)
  • Add phx-viewport-overrun-target to make infinitely scrolled tables easier to implement (#4053) (Example)
  • Allow to disable the symlink warning for colocated js (#4057)

v1.1.17 (2025-11-04)

Bug fixes

  • noop in empty live reloader config

v1.1.16 (2025-10-22)

... (truncated)

Commits
  • b146b33 release v1.1.20
  • b7f2e12 Update assets
  • 32b3925 Bump morphom. Closes #3932
  • fa54735 Allow live_file_input to sync attributes except value (#4112)
  • 82e50cd add warning about bypassing form validation (#4115)
  • 75c5320 Fix incorrect test name for teleported external form submission (#4113)
  • dad5d1f add note about setting properties to JS.set_attribute/1 (#3826)
  • f8f9fb6 Add documentation example for Phoenix.LiveView.render_with/2 (#4063)
  • dd29392 fix: add handle_info for :socket_close on UploadClient (#4080)
  • a2c0b8f fix external form submission for teleported form (#4111)
  • Additional commits viewable in compare view

Updates tailwind from 0.3.1 to 0.4.1

Changelog

Sourced from tailwind's changelog.

v0.4.1 (2025-10-17)

  • Ignore ANSI escape codes when checking version

v0.4.0 (2025-09-10)

  • No longer copy assets in mix tailwind.install
  • Discard empty proxy env vars
  • Ensure watcher picks up rule changes on Windows
Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
beacon [>= 1.a, < 2]

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production-dependencies group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [beacon](https://github.com/BeaconCMS/beacon) | ``c496ae8`` | ``236da4b`` |
| [ecto](https://github.com/elixir-ecto/ecto) | `3.12.5` | `3.13.5` |
| [esbuild](https://github.com/phoenixframework/esbuild) | `0.9.0` | `0.10.0` |
| [floki](https://github.com/philss/floki) | `0.37.1` | `0.38.0` |
| [igniter](https://github.com/ash-project/igniter) | `0.5.43` | `0.7.0` |
| [live_svelte](https://github.com/woutdp/live_svelte) | `0.15.0` | `0.16.0` |
| [phoenix](https://github.com/phoenixframework/phoenix) | `1.7.21` | `1.8.3` |
| [phoenix_html](https://github.com/phoenixframework/phoenix_html) | `4.2.1` | `4.3.0` |
| [phoenix_live_view](https://github.com/phoenixframework/phoenix_live_view) | `1.0.9` | `1.1.20` |
| [tailwind](https://github.com/phoenixframework/tailwind) | `0.3.1` | `0.4.1` |


Updates `beacon` from `c496ae8` to `236da4b`
- [Release notes](https://github.com/BeaconCMS/beacon/releases)
- [Commits](BeaconCMS/beacon@c496ae8...236da4b)

Updates `ecto` from 3.12.5 to 3.13.5
- [Release notes](https://github.com/elixir-ecto/ecto/releases)
- [Changelog](https://github.com/elixir-ecto/ecto/blob/master/CHANGELOG.md)
- [Commits](elixir-ecto/ecto@v3.12.5...v3.13.5)

Updates `esbuild` from 0.9.0 to 0.10.0
- [Changelog](https://github.com/phoenixframework/esbuild/blob/main/CHANGELOG.md)
- [Commits](phoenixframework/esbuild@v0.9.0...v0.10.0)

Updates `floki` from 0.37.1 to 0.38.0
- [Release notes](https://github.com/philss/floki/releases)
- [Changelog](https://github.com/philss/floki/blob/main/CHANGELOG.md)
- [Commits](philss/floki@v0.37.1...v0.38.0)

Updates `igniter` from 0.5.43 to 0.7.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.5.43...v0.7.0)

Updates `live_svelte` from 0.15.0 to 0.16.0
- [Release notes](https://github.com/woutdp/live_svelte/releases)
- [Changelog](https://github.com/woutdp/live_svelte/blob/master/CHANGELOG.md)
- [Commits](woutdp/live_svelte@v0.15.0...v0.16.0)

Updates `phoenix` from 1.7.21 to 1.8.3
- [Release notes](https://github.com/phoenixframework/phoenix/releases)
- [Changelog](https://github.com/phoenixframework/phoenix/blob/main/CHANGELOG.md)
- [Commits](phoenixframework/phoenix@v1.7.21...v1.8.3)

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_view` from 1.0.9 to 1.1.20
- [Changelog](https://github.com/phoenixframework/phoenix_live_view/blob/v1.1.20/CHANGELOG.md)
- [Commits](phoenixframework/phoenix_live_view@v1.0.9...v1.1.20)

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)

---
updated-dependencies:
- dependency-name: beacon
  dependency-version: 236da4b187fe9498a2d9bd1c7e0e4a7704e73c0d
  dependency-type: direct:production
  dependency-group: production-dependencies
- dependency-name: ecto
  dependency-version: 3.13.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: esbuild
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: floki
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: igniter
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: live_svelte
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: phoenix
  dependency-version: 1.8.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: phoenix_html
  dependency-version: 4.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: phoenix_live_view
  dependency-version: 1.1.20
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: tailwind
  dependency-version: 0.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

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 Jan 19, 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