Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the mix-patches group across 1 directory with 16 updates #1174

Merged
merged 2 commits into from
Mar 31, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 27, 2025

Bumps the mix-patches group with 11 updates in the / directory:

Package From To
csv 3.2.1 3.2.2
ecto_psql_extras 0.8.3 0.8.7
floki 0.37.0 0.37.1
httpoison 2.2.1 2.2.2
lcov_ex 0.3.3 0.3.4
live_select 1.5.2 1.5.4
sax_map 1.4.0 1.4.1
sweet_xml 0.7.4 0.7.5
tzdata 1.1.2 1.1.3
ueberauth_oidcc 0.4.0 0.4.1
wallaby 0.30.9 0.30.10

Updates csv from 3.2.1 to 3.2.2

Changelog

Sourced from csv's changelog.

Changelog

Commits

Updates ecto_psql_extras from 0.8.3 to 0.8.7

Commits

Updates floki from 0.37.0 to 0.37.1

Release notes

Sourced from floki's releases.

v0.37.1

Fixed

Move regex declaration from module tag to inside function. This is a fix to be compatible with the upcoming OTP 28.

Pull requests

Full Changelog: philss/floki@v0.37.0...v0.37.1

Changelog

Sourced from floki's changelog.

[0.37.1] - 2025-03-22

Fixed

  • Move regex declaration from module tag to inside function. This is a fix to be compatible with the upcoming OTP 28.
Commits

Updates httpoison from 2.2.1 to 2.2.2

Release notes

Sourced from httpoison's releases.

HTTPoison 2.2.2

What's Changed

New Contributors

Full Changelog: edgurgel/httpoison@v2.2.1...v2.2.2

Commits

Updates lcov_ex from 0.3.3 to 0.3.4

Release notes

Sourced from lcov_ex's releases.

v0.3.4

Features

  • Adds --fail-fast option to exit processing at the first failed test.
  • Allows running the mix lcov <app_name> task for any individual app from an umbrella project root.
Commits

Updates live_select from 1.5.2 to 1.5.4

Changelog

Sourced from live_select's changelog.

1.5.4 (2025-01-29)

  • Fix bug causing selection recovery to fail if Phoenix uses the built-in JSON module from Elixir 1.18

1.5.3 (2025-01-27)

  • Fix bug that causes selection recovery to fail when input_for is used to render the component
  • Remove dependency from Jason library
Commits
  • 26185b9 Version 1.5.4
  • 4c415be Merge pull request #99 from thoroai/fix/use-universal-encode-function
  • 966367b chore: dynamically select the json library
  • 9bf7400 fix: use common encode function across libraries
  • 0f97559 Version 1.5.3
  • ff1778a Merge pull request #97 from atcherry/fix-reconnected-pushto
  • a20ef98 update js assets
  • 4c63e3c Undo accidental formatting
  • 805b397 Push selection_recovery to element id
  • c491c9e Update CHANGELOG.md
  • Additional commits viewable in compare view

Updates phoenix from 1.7.18 to 1.7.20

Changelog

Sourced from phoenix's changelog.

1.7.20 (2025-02-20)

Enhancements

  • Add [:phoenix, :socket_drain] telemetry event to track socket draining and use it for logging
  • Address Elixir 1.18 warnings in phx.new
  • Add PHX_NEW_CACHE_DIR env var for cached phx.new builds

Bug fixes

  • Fix code reloader error when mix.lock is touched without its content changing

1.7.19 (2025-01-31)

Enhancements

  • [phx.new] - bind to 0.0.0.0 in dev.exs if phx.new is being run inside a docker container. This exposes the container's phoenix server to the host so that it is accessible over port forwarding.
Commits
  • 072fcef Release 1.7.20
  • 24ed7c8 Backport PHX_NEW_CACHE_DIR
  • 3ca973b use makeup_syntect instead of makeup_lexers
  • 477d2e9 set PHX_CI for integration tests
  • 2400164 update changelog
  • a31aa15 phx.new - Fix deprecation warning when using Elixir ~> 1.18 (#5940)
  • 668a973 fix unused clause warning in installer on Elixir 1.18 (#6088)
  • 315eeff revert code reloader changed file detection (#6085)
  • d9ef909 update changelog
  • 83f2f03 add [:phoenix, :socket_drain] telemetry event (#6070)
  • Additional commits viewable in compare view

Updates phoenix_html from 4.2.0 to 4.2.1

Changelog

Sourced from phoenix_html's changelog.

4.2.1 (2025-02-21)

  • Enhancements
    • Add type to Phoenix.HTML.FormField
    • Allow keyword lists in options to use nil as key/value
Commits

Updates phoenix_live_view from 1.0.1 to 1.0.9

Changelog

Sourced from phoenix_live_view's changelog.

1.0.9 (2025-03-26)

Bug fixes

  • Fix testing uploads inside nested LiveViews with LiveViewTest (#3732)

1.0.8 (2025-03-26)

Bug fixes

  • Regression: ensure _target is sent as ["undefined"] when an input has no name (#3727)
  • Fix stream items from disconnected render not being removed when rendered inside a nested stream (#3730)

Enhancements

  • Add Phoenix.LiveViewTest.refute_redirected/1 to assert that no redirect took place (#3729)

1.0.7 (2025-03-21)

Bug fixes

  • Fix _target parameter being sent incorrectly (#3719).

1.0.6 (2025-03-20)

Bug fixes

  • Fix race condition where patches were discarded when a new navigation was already pending (#3710)
  • Fix phx-debounce="blur" re-sending events for subsequent blurs (#3689)
  • Fix code_change callback not returning the new channel state (#3712)
  • Fix LiveViews not being able to reconnect without a full page reload after a deployment that changed the router (#3715)

Enhancements

  • Improve performance of large forms (#3696)
  • Ensure JS.push values are sent on form events (#3674)
  • Allow to skip persistent_id generation in Phoenix.Component.inputs_for/1 (#3677)
  • Delay phx-disconnected binding to prevent brief flash of "Attempting to reconnect" message for short disconnects (#3680). This can be configured by passing the disconnectedTimeout option to the LiveSocket constructor.

1.0.5 (2025-02-27)

Bug fixes

  • Fix JS.exec failing when a selector is passed (#3678)
  • Fix race conditions when testing a live upload that redirects in the progress callback (#3676)
  • Fix streams in sticky LiveView being reset under some circumstances when another LiveView also contains a stream (#3681)
  • Fix recursively locked elements not being correctly patched on unlock (#3684)
  • Fix JS.show/hide/toggle behavior while also fixing JS.focus() on Mobile Safari (#3692)

Enhancements

  • Detect infinite patch redirect loops and raise an error (#3670)

1.0.4 (2025-02-04)

Bug fixes

  • Fix elements with phx-remove inside sticky LiveViews being unintentionally removed on navigation (#3658)
  • Fix phx-click-loading not being removed from links in sticky LiveViews (#3656)

... (truncated)

Commits

Updates plug_cowboy from 2.7.2 to 2.7.3

Changelog

Sourced from plug_cowboy's changelog.

v2.7.3

Enhancements

  • Ensure errors from Cowboy 2.13 are correctly translated
Commits

Updates postgrex from 0.19.3 to 0.20.0

Changelog

Sourced from postgrex's changelog.

v0.20.0 (2025-02-05)

  • Deprecations

    • Deprecate :search_path and use :parameters option instead
  • Bug fixes

    • Ensure Duration type returns same units as Postgrex.Interval
    • Call disconnect on protocol when reconnecting in Postgrex.ReplicationConnection
    • Call disconnect only if there is protocol in Postgrex.SimpleConnection
Commits
  • c2af85d Release v0.20.0 (with Elixir v1.19 warnings fixed)
  • b50103a Release v0.20.0
  • 51ccbdd Update postgrex.ex
  • 34a57fe Deprecate :search_path and use :parameters option instead (#729)
  • 928e43a Have Duration return same units as Postgrex.Interval (#728)
  • a6f2020 Call disconnect on protocol when reconnecting in Replication connection (#726)
  • 9748fcb Update dependencies with warnings (#723)
  • c3097f4 More safety checks around comments (#722)
  • 6d9e2ca Minor link correction and moduledoc cleanup (#720)
  • cebb02f Disconnect only if there is a protocol
  • See full diff in compare view

Updates sax_map from 1.4.0 to 1.4.1

Commits

Updates sweet_xml from 0.7.4 to 0.7.5

Changelog

Sourced from sweet_xml's changelog.

[0.7.5] (2025-01-07)

A maintenance patch, with improvements made the the README, with up to date installation instructions from @​arcanemachine (#95) and typos fixed by @​kianmeng (#89).

Changed

Commits
  • 24bfac8 chore: bump version
  • c710956 chore: update ex_doc
  • 5b15415 Merge pull request #102 from elfenlaid/fix-charlist-warnings
  • 1a011b2 Fix charlist warnings for Elixir 1.17
  • 480441f Merge pull request #89 from kianmeng/fix-typos-and-prettify-md-yml-files
  • 7920a40 Fix typos
  • 27a193f Clean warnings (#96)
  • 4f73da7 Merge pull request #95 from arcanemachine/master
  • 250196d Update installation instructions to use newest version
  • See full diff in compare view

Updates tzdata from 1.1.2 to 1.1.3

Changelog

Sourced from tzdata's changelog.

[1.1.3] - 2025-03-05

Fixed

  • Fix Elixir compiler warnings for decreasing ranges without explicit steps (Christoph Grothaus)
  • Fix various Elixir compiler warnings (Thomas Cioppettini)

Changed

  • Now requires Elixir 1.9 or greater instead of 1.8 or greater.
  • tzdata release version shipped with this library is now 2025a instead of 2024b.
Commits

Updates ueberauth_oidcc from 0.4.0 to 0.4.1

Release notes

Sourced from ueberauth_oidcc's releases.

0.4.1

  • fix: handle errors returned via JARM
  • chore: update oidcc to 3.2.6
  • add support for Elixir 1.18
Changelog

Sourced from ueberauth_oidcc's changelog.

v0.4.1 - 2025-01-21

  • fix: handle errors returned via JARM
  • chore: update oidcc to 3.2.6
  • add support for Elixir 1.18
Commits
  • 6e6faab chore: add Elixir 1.17 and 1.18 to the build matrix
  • 54e70ee chore: updated oidcc to 3.2.6
  • d8996cc fix: handle errors returned via JARM
  • c2bff9d chore: prep 0.4.1
  • See full diff in compare view

Updates wallaby from 0.30.9 to 0.30.10

Release notes

Sourced from wallaby's releases.

v0.30.10

What's Changed

Full Changelog: elixir-wallaby/wallaby@v0.30.9...v0.30.10

Changelog

Sourced from wallaby's changelog.

v0.30.10

Commits
  • 70c9e84 chore: bump v0.30.10
  • 337485e chore: update flake.lock
  • 90c3ca5 chore: update tool versions
  • 368cd84 docs: add chromedriver issue tracker to readme
  • 79481d0 chore: add flake
  • 4e87275 Only spawn a browser when using the feature macro, not normal tests (#795)
  • See full diff in compare view

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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file elixir Pull requests that update Elixir code labels Mar 27, 2025
@dependabot dependabot bot force-pushed the dependabot/hex/mix-patches-0e53aa2f0a branch from 3751dda to 5276e28 Compare March 28, 2025 18:50
@cmaddox5
Copy link
Contributor

@dependabot rebase

…dates

Bumps the mix-patches group with 11 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [csv](https://github.com/beatrichartz/csv) | `3.2.1` | `3.2.2` |
| [ecto_psql_extras](https://github.com/pawurb/ecto_psql_extras) | `0.8.3` | `0.8.7` |
| [floki](https://github.com/philss/floki) | `0.37.0` | `0.37.1` |
| [httpoison](https://github.com/edgurgel/httpoison) | `2.2.1` | `2.2.2` |
| [lcov_ex](https://github.com/dariodf/lcov_ex) | `0.3.3` | `0.3.4` |
| [live_select](https://github.com/maxmarcon/live_select) | `1.5.2` | `1.5.4` |
| [sax_map](https://github.com/xinz/sax_map) | `1.4.0` | `1.4.1` |
| [sweet_xml](https://github.com/kbrw/sweet_xml) | `0.7.4` | `0.7.5` |
| [tzdata](https://github.com/lau/tzdata) | `1.1.2` | `1.1.3` |
| [ueberauth_oidcc](https://gitlab.com/paulswartz/ueberauth_oidcc) | `0.4.0` | `0.4.1` |
| [wallaby](https://github.com/elixir-wallaby/wallaby) | `0.30.9` | `0.30.10` |



Updates `csv` from 3.2.1 to 3.2.2
- [Changelog](https://github.com/beatrichartz/csv/blob/main/CHANGELOG.md)
- [Commits](beatrichartz/csv@v3.2.1...v3.2.2)

Updates `ecto_psql_extras` from 0.8.3 to 0.8.7
- [Commits](https://github.com/pawurb/ecto_psql_extras/commits)

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

Updates `httpoison` from 2.2.1 to 2.2.2
- [Release notes](https://github.com/edgurgel/httpoison/releases)
- [Commits](edgurgel/httpoison@v2.2.1...v2.2.2)

Updates `lcov_ex` from 0.3.3 to 0.3.4
- [Release notes](https://github.com/dariodf/lcov_ex/releases)
- [Commits](https://github.com/dariodf/lcov_ex/commits/v0.3.4)

Updates `live_select` from 1.5.2 to 1.5.4
- [Changelog](https://github.com/maxmarcon/live_select/blob/main/CHANGELOG.md)
- [Commits](maxmarcon/live_select@v1.5.2...v1.5.4)

Updates `phoenix` from 1.7.18 to 1.7.20
- [Release notes](https://github.com/phoenixframework/phoenix/releases)
- [Changelog](https://github.com/phoenixframework/phoenix/blob/v1.7.20/CHANGELOG.md)
- [Commits](phoenixframework/phoenix@v1.7.18...v1.7.20)

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

Updates `phoenix_live_view` from 1.0.1 to 1.0.9
- [Changelog](https://github.com/phoenixframework/phoenix_live_view/blob/v1.0.9/CHANGELOG.md)
- [Commits](phoenixframework/phoenix_live_view@v1.0.1...v1.0.9)

Updates `plug_cowboy` from 2.7.2 to 2.7.3
- [Changelog](https://github.com/elixir-plug/plug_cowboy/blob/master/CHANGELOG.md)
- [Commits](elixir-plug/plug_cowboy@v2.7.2...v2.7.3)

Updates `postgrex` from 0.19.3 to 0.20.0
- [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.19.3...v0.20.0)

Updates `sax_map` from 1.4.0 to 1.4.1
- [Commits](https://github.com/xinz/sax_map/commits)

Updates `sweet_xml` from 0.7.4 to 0.7.5
- [Changelog](https://github.com/kbrw/sweet_xml/blob/master/CHANGELOG.md)
- [Commits](kbrw/sweet_xml@v0.7.4...v0.7.5)

Updates `tzdata` from 1.1.2 to 1.1.3
- [Changelog](https://github.com/lau/tzdata/blob/master/CHANGELOG.md)
- [Commits](lau/tzdata@v1.1.2...v1.1.3)

Updates `ueberauth_oidcc` from 0.4.0 to 0.4.1
- [Release notes](https://gitlab.com/paulswartz/ueberauth_oidcc/tags)
- [Changelog](https://gitlab.com/paulswartz/ueberauth_oidcc/blob/main/CHANGELOG.md)
- [Commits](https://gitlab.com/paulswartz/ueberauth_oidcc/compare/0.4.0...0.4.1)

Updates `wallaby` from 0.30.9 to 0.30.10
- [Release notes](https://github.com/elixir-wallaby/wallaby/releases)
- [Changelog](https://github.com/elixir-wallaby/wallaby/blob/main/CHANGELOG.md)
- [Commits](elixir-wallaby/wallaby@v0.30.9...v0.30.10)

---
updated-dependencies:
- dependency-name: csv
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: ecto_psql_extras
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: floki
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: httpoison
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: lcov_ex
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: live_select
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: phoenix
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: phoenix_html
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: phoenix_live_view
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: plug_cowboy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: postgrex
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mix-patches
- dependency-name: sax_map
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: sweet_xml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: tzdata
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: ueberauth_oidcc
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix-patches
- dependency-name: wallaby
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: mix-patches
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/hex/mix-patches-0e53aa2f0a branch from 5276e28 to a23c4b7 Compare March 31, 2025 15:12
@cmaddox5 cmaddox5 merged commit 55819e6 into master Mar 31, 2025
12 checks passed
@cmaddox5 cmaddox5 deleted the dependabot/hex/mix-patches-0e53aa2f0a branch March 31, 2025 16:10
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