Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Oct 30, 2025

Bumps the dev-dependencies group with 10 updates:

Package From To
benchee 1.4.0 1.5.0
credo 1.7.12 1.7.13
dialyxir 1.4.5 1.4.6
ex_doc 0.38.2 0.39.1
git_ops 2.8.0 2.9.0
meck 0.9.2 1.1.0
mix_test_interactive 2.1.0 5.0.0
mix_test_watch 1.3.0 1.4.0
plug_cowboy 2.7.3 2.7.4
tidewave 0.1.7 0.5.0

Updates benchee from 1.4.0 to 1.5.0

Release notes

Sourced from benchee's releases.

1.5.0 (2025-10-21)

Finally max_sample_size is here to alleviate a variety of woes resulting from gathering too many samples! Also finally, Benchee lets you exclude outliers!

Features (User Facing)

  • Introduce max_sample_size which guides how many samples will be gathered at most for a given scenario. This avoids a variety of issues when scenarios gather too many samples (memory consumption, statistics taking long to calculate, formatters hanging/not working). Defaults to 1_000_000, setting it to nil gathers unlimited samples again (behavior before this version).
  • Introduce exclude_outliers option which when set to true will automatically exclude outliers from the samples gathered. Especially important for run time, you can remove samples caused by garbage collection or external factors. Defaults to false. Shout out to @​NickNeck who implemented this long wished for feature over in Statistex.
  • Display input_name entries in Livebook/Table.Reader protocol. Thanks @​madlep!

Bugfixes (User Facing)

  • fixed a bug where if times were supplied as 0 instead of 0.0 we'd sometimes gather a single measurement
  • elixir 1.19 compilation warnings have been fixed

Features (Plugins)

  • The %Benchee.Statistics{} struct now comes with values to accompany the outlier exclusion feature:
    • outliers - if outlier exclusion was enabled, may include any samples of outliers that were found, empty list otherwise
    • lower_outlier_bound - value below which values are considered an outlier
    • upper_outlier_bound - value above which values are considered an outlier
Changelog

Sourced from benchee's changelog.

1.5.0 (2025-10-21)

Finally max_sample_size is here to alleviate a variety of woes resulting from gathering too many samples! Also finally, Benchee lets you exclude outliers!

Features (User Facing)

  • Introduce max_sample_size which guides how many samples will be gathered at most for a given scenario. This avoids a variety of issues when scenarios gather too many samples (memory consumption, statistics taking long to calculate, formatters hanging/not working). Defaults to 1_000_000, setting it to nil gathers unlimited samples again (behavior before this version).
  • Introduce exclude_outliers option which when set to true will automatically exclude outliers from the samples gathered. Especially important for run time, you can remove samples caused by garbage collection or external factors. Defaults to false. Shout out to @​NickNeck who implemented this long wished for feature over in Statistex.
  • Display input_name entries in Livebook/Table.Reader protocol. Thanks @​madlep!

Bugfixes (User Facing)

  • fixed a bug where if times were supplied as 0 instead of 0.0 we'd sometimes gather a single measurement
  • elixir 1.19 compilation warnings have been fixed

Features (Plugins)

  • The %Benchee.Statistics{} struct now comes with values to accompany the outlier exclusion feature:
    • outliers - if outlier exclusion was enabled, may include any samples of outliers that were found, empty list otherwise
    • lower_outlier_bound - value below which values are considered an outlier
    • upper_outlier_bound - value above which values are considered an outlier
Commits
  • 95c4808 prep 1.5.0 release
  • 0edd4ca run type checks and lints on newest elixir & erlang
  • f11ca4b Also ignore formatters from duplicated code for now, fixing them is... a long...
  • bdbdeb0 Exclude tests from duplicated code check
  • 38913ca Use fully released elixir 1.19 in CI
  • 60d5dcd Add changelog entry for Table.Reader fix
  • 56ff581 Fix scenario typo
  • 376a981 Actually use name instead of job_name, which my past self says is the cor...
  • ad343fe Be more explicit about no_input handling
  • c05fcb3 include input_name in Table.Reader fields
  • Additional commits viewable in compare view

Updates credo from 1.7.12 to 1.7.13

Release notes

Sourced from credo's releases.

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.13

  • Fix compatibility & compiler warnings with Elixir 1.19
  • Credo.Check.Refactor.ABCSize fixed false positive
Commits
  • 40627c5 Bump version to 1.7.13
  • e47e4dc Update CHANGELOG
  • 9f31412 Revert "increase line number for nested alias check"
  • 84e41b2 Remove Stickler CI from README
  • 62bd7e4 Remove unused requires
  • db534be Add Elixir 1.19.0-rc.2 to GitHub actions
  • fdc365b Merge pull request #1214 from georgeguimaraes/patch-1
  • 22249b7 Remove SourceLevel mention on README
  • 1f601f1 Refactor StrictModuleLayout tests slightly
  • 684a353 Add more tests for StrictModuleLayout
  • Additional commits viewable in compare view

Updates dialyxir from 1.4.5 to 1.4.6

Release notes

Sourced from dialyxir's releases.

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.6]

[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
  • 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
  • c5da65f Merge pull request #564 from camatcode/master
  • 684f1bb Refactor OTP-28 clause to delegate to existing implementation
  • bea2032 Fix CallWithoutOpaque function clause error on OTP-28
  • 7352905 Docs: Fix dead hex doc links by including CI config docs in mix.exs 'docs'
  • Additional commits viewable in compare view

Updates ex_doc from 0.38.2 to 0.39.1

Changelog

Sourced from ex_doc's changelog.

v0.39.1 (2025-10-23)

  • Bug fixes
    • Improve box-shadow around autocompletion
    • Trim search engine selector on small screens
    • Fix admonition titles on small screens

v0.39.0 (2025-10-23)

  • Enhancements
    • Allow custom search engines to be configured with support for https://hexdocs.pm
    • Improve admonition blocks so they better integrate with the page flow
  • Bug fixes
    • Add .cheatmd to EPUB to avoid broken links
  • Backwards incompatible changes
    • Validate :extras fields: if you were previously setting them to unexpected values, you may now get an exception
    • Setting exdoc:full-text-search-url metadata is no longer supported, using the new search engines configuration

v0.38.4 (2025-09-09)

  • Bug fixes
    • Fix escaping of links when they have ampersand in them
    • Increase spacing of footers in pages
    • Align stale icon positioning

v0.38.3 (2025-08-17)

  • Enhancements
    • Allow configuring autocomplete limit, and default it to 10 instead of 8
    • Display description text in docs groups
    • Load discovered makeup apps for CLI
Commits
  • c0f0773 Release v0.39.1
  • 3ec9a23 Italics for autocompletion header to not confuse with results
  • f7d60a5 Fix admonition on small screens
  • 4c0fd35 Improve box shadow, minimize search button space
  • eb5362b Release v0.39.0
  • 8bcfd08 Search style
  • 1dcbd9e Tags are a list of atoms, closes #2159
  • b9d190e Update GitHub organization for Ecto in README (#2158)
  • d1c0c96 Support specifying packages under search
  • 868fa8b Validate extra fields
  • Additional commits viewable in compare view

Updates git_ops from 2.8.0 to 2.9.0

Changelog

Sourced from git_ops's changelog.

v2.9.0 (2025-08-30)

Features:

Performance Improvements:

Commits

Updates meck from 0.9.2 to 1.1.0

Release notes

Sourced from meck's releases.

v1.1.0

Added

  • Official support for Erlang 28
  • Support for mocked modules together with EDB (#254) (robertoaloi)

Removed

  • Support for Erlang 25

1.0.0

Added

  • Official support for Erlang 27.0
  • Reload modules that were loaded before mocking (#228)

Fixed

  • Fix misleading not_mocked errors when unloading a mock (#231)
  • Fix calling mocked modules from expectations fun (#232)
  • Fix spec of meck:raise/2
  • Increase meck_proc stop timeout to infinity to prevent confusing errors
  • Code coverage leak from temporary backup modules in Erlang.mk (#246)

Removed

  • Compatibility for Erlang versions below 22. Meck will follow the officially supported Erlang versions for future releases (latest major and two previous versions). Older versions might still work but there is no guarantee and no support.
Changelog

Sourced from meck's changelog.

[1.1.0] - 2025-09-12

Added

  • Official support for Erlang 28
  • Support for mocked modules together with EDB (#254) (robertoaloi)

Removed

  • Support for Erlang 25

[1.0.0] - 2024-06-28

Added

  • Official support for Erlang 27.0
  • Reload modules that were loaded before mocking (#228) (zsoci)

Fixed

  • Fix misleading not_mocked errors when unloading a mock (#231) (aronisstav)
  • Fix calling mocked modules from expectations fun (#232) (pergu)
  • Fix spec of meck:raise/2
  • Increase meck_proc stop timeout to infinity to prevent confusing errors
  • Code coverage leak from temporary backup modules in Erlang.mk (#246) (andrei-mihaila)

Removed

  • Compatibility for Erlang versions below 22. Meck will follow the officially supported Erlang versions for future releases (latest major and two previous versions). Older versions might still work but there is no guarantee and no support.
Commits
  • d573888 Version 1.1.0
  • 09fcb39 Make mecked modules debuggable by EDB (#254)
  • 05f0c70 Move Erlang support window to 26-28
  • ba647df Fix PR formatting and add missing attribution
  • 29360b2 Use ex_doc instead of edoc
  • 474651c Replace hardcoded version with Git tags
  • d755909 Version 1.0.0
  • 59d61d8 Fix an issue with the code coverage in Erlang.mk
  • dfb47c5 Support Erlang 27.0
  • aa278c1 Handle new OTP 27 compile options
  • Additional commits viewable in compare view

Updates mix_test_interactive from 2.1.0 to 5.0.0

Release notes

Sourced from mix_test_interactive's releases.

v5.0.0

💥 BREAKING CHANGE 💥

There are no actual breaking changes in the code itself, so as long as you're on Elixir 1.14 or later, you should have no problems upgrading to this version.

Updated

  • We address new deprecations and compiler warnings in Elixir 1.19. There are no user-visible changes. (#137 - Thanks @​frankdugan3 for contributing to the fixes!)

  • We upgrade to the newest version of ex_docs to get the latest improvements. (#137)

v4.3.0

Added

  • Add a new verbose configuration setting and command-line option, disabled by default. When enabled, mix test.interactive will print the command it is about to run just before running the tests. (#135)

v4.2.0

Fixed

  • On Unix-like system we no longer start the client application prematurely. Previously, we'd run (essentially) mix do run -e 'Application.put_env(:elixir, :ansi_enabled, true)', test in order to enable ANSI control codes/colors when running tests. However, mix run by default starts the application. Normally this would be fine, but in some cases it can cause problems. We now use mix do eval 'Application.put_env(:elixir, :ansi_enabled, true)', test instead, which delays starting the application until the mix test task runs. (#132)

  • Properly handle the --no-start option to mix test on Unix-like systems. Previously, we were using that option for the mix run -e command we were using to enable ANSI output, but not passing it through to mix test itself. (#132)

Added

  • We make the use of ANSI control code output configurable by adding the --(no-)ansi-enabled command-line option and ansi_enabled configuration setting. Previously, we'd enable ANSI output automatically on Unix-like systems and not on Windows. This is still the default, but now Windows users can opt into ANSI output. Since Windows 10, ANSI support has been available if the appropriate registry key is set. Additional, users on Unix-like systems can opt out of ANSI output if desired. (#133)

v4.1.2

Updated

  • Update README with instructions for running mix test.interactive as an independent script that doesn't require installing as a dependency in your application. (#127 - Thanks @​andyl!)

  • Allow process_tree versions v0.1.3 and v0.2.0 to provide more flexibility for upstream projects (#128)

v4.1.1

Fixed

  • Properly handle mix test.interactive <files_or_patterns...> case. The new command-line parsing added in v4.0 was not properly capturing the filenames/patterns and passing them on to mix test. (#123 - Thanks @​jfpedroza for finding and reporting the bug!)

v4.1.0 - More commands!

Added

... (truncated)

Changelog

Sourced from mix_test_interactive's changelog.

v5.0.0 - 2025-06-09

💥 BREAKING CHANGE 💥

There are no actual breaking changes in the code itself, so as long as you're on Elixir 1.14 or later, you should have no problems upgrading to this version.

Updated

  • We address new deprecations and compiler warnings in Elixir 1.19. There are no user-visible changes. (#137 - Thanks @​frankdugan3 for contributing to the fixes!)

  • We upgrade to the newest version of ex_docs to get the latest improvements. (#137)

v4.3.0 - 2025-03-21

Added

  • Add a new verbose configuration setting and command-line option, disabled by default. When enabled, mix test.interactive will print the command it is about to run just before running the tests. (#135)

v4.2.0 - 2025-03-19

Fixed

  • On Unix-like system we no longer start the client application prematurely. Previously, we'd run (essentially) mix do run -e 'Application.put_env(:elixir, :ansi_enabled, true)', test in order to enable ANSI control codes/colors when running tests. However, mix run by default starts the application. Normally this would be fine, but in some cases it can cause problems. We now use mix do eval 'Application.put_env(:elixir, :ansi_enabled, true)', test instead, which delays starting the application until the mix test task runs. (#132)

  • Properly handle the --no-start option to mix test on Unix-like systems. Previously, we were using that option for the mix run -e command we were using to enable ANSI output, but not passing it through to mix test itself. (#132)

Added

  • We make the use of ANSI control code output configurable by adding the --(no-)ansi-enabled command-line option and ansi_enabled configuration setting. Previously, we'd enable ANSI output automatically on Unix-like systems and not on Windows. This is still the default, but now Windows users can opt into ANSI output. Since Windows 10, ANSI support has been available if the appropriate registry key is set. Additional, users on Unix-like systems can opt out of ANSI output if desired. (#133)

v4.1.2 - 2024-12-14

Updated

  • Update README with instructions for running mix test.interactive as an independent script that doesn't require installing as a dependency in your application. (#127 - Thanks @​andyl!)

  • Allow process_tree versions v0.1.3 and v0.2.0 to provide more flexibility for upstream projects (#128)

v4.1.1 - 2024-09-28

Fixed

... (truncated)

Commits

Updates mix_test_watch from 1.3.0 to 1.4.0

Changelog

Sourced from mix_test_watch's changelog.

v1.4.0 - 2025-10-21

  • Updated for Elixir v1.19.
Commits
  • d66f705 v1.4.0
  • f7a4f0b Make tests compatible with OTP 28
  • 96e45a9 Add missing typespec MixTestWatch.Config.t()
  • 2afaec7 Use + instead of a comma to separate mix tasks in port runner
  • See full diff in compare view

Updates plug_cowboy from 2.7.3 to 2.7.4

Changelog

Sourced from plug_cowboy's changelog.

v2.7.4

Enhancements

  • Ensure errors from Ranch are correctly translated
Commits

Updates tidewave from 0.1.7 to 0.5.0

Changelog

Sourced from tidewave's changelog.

v0.5.0 (2025-09-08)

  • Enhancements
    • Add grep option to get_logs in favor of level
    • Bundle get_package_location into get_source_location
    • Support team configuration

0.4.2 (2025-09-01)

  • Enhancements
    • Raise if Tidewave is plugged after Phoenix.LiveReloader

0.4.1 (2025-08-22)

  • Enhancements
    • Allow same host by default in allowed_origins (similar to Phoenix)
    • Support wildcards at the beginning of allowed_origins
    • Support optional ports and schemes in allowed_origins

0.4.0 (2025-08-19)

  • Enhancements

    • Improve the experience if using outdated phoenix_live_reload
    • Improve the experience if Tidewave is plugged too late
    • Improve results for search_package_docs tool
    • Use new streamable HTTP MCP protocol
  • Backwards incompatible changes

    • Previously deprecated file system tools have been removed

Important: if you previously configured your editor using the SSE transport instead of using a proxy, you likely need to reconfigure the MCP connection using "HTTP" or "Streamable HTTP" instead.

0.3.2 (2025-08-13)

  • Bug fix
    • Fix shell endpoint on Windows

0.3.1 (2025-08-13)

  • Enhancements
    • Improve error messages when peer or origin is not allowed

0.3.0 (2025-08-05)

  • Enhancements
    • Return regular text in get_ecto_schema
    • Warn if git is not present
    • Support umbrella apps on Ecto tools
    • Support for upcoming Tidewave Web

... (truncated)

Commits

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 dev-dependencies group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [benchee](https://github.com/bencheeorg/benchee) | `1.4.0` | `1.5.0` |
| [credo](https://github.com/rrrene/credo) | `1.7.12` | `1.7.13` |
| [dialyxir](https://github.com/jeremyjh/dialyxir) | `1.4.5` | `1.4.6` |
| [ex_doc](https://github.com/elixir-lang/ex_doc) | `0.38.2` | `0.39.1` |
| [git_ops](https://github.com/zachdaniel/git_ops) | `2.8.0` | `2.9.0` |
| [meck](https://github.com/eproxus/meck) | `0.9.2` | `1.1.0` |
| [mix_test_interactive](https://github.com/randycoulman/mix_test_interactive) | `2.1.0` | `5.0.0` |
| [mix_test_watch](https://github.com/lpil/mix-test.watch) | `1.3.0` | `1.4.0` |
| [plug_cowboy](https://github.com/elixir-plug/plug_cowboy) | `2.7.3` | `2.7.4` |
| [tidewave](https://github.com/tidewave-ai/tidewave_phoenix) | `0.1.7` | `0.5.0` |


Updates `benchee` from 1.4.0 to 1.5.0
- [Release notes](https://github.com/bencheeorg/benchee/releases)
- [Changelog](https://github.com/bencheeorg/benchee/blob/main/CHANGELOG.md)
- [Commits](bencheeorg/benchee@1.4.0...1.5.0)

Updates `credo` from 1.7.12 to 1.7.13
- [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.13)

Updates `dialyxir` from 1.4.5 to 1.4.6
- [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.6)

Updates `ex_doc` from 0.38.2 to 0.39.1
- [Release notes](https://github.com/elixir-lang/ex_doc/releases)
- [Changelog](https://github.com/elixir-lang/ex_doc/blob/main/CHANGELOG.md)
- [Commits](elixir-lang/ex_doc@v0.38.2...v0.39.1)

Updates `git_ops` from 2.8.0 to 2.9.0
- [Changelog](https://github.com/zachdaniel/git_ops/blob/master/CHANGELOG.md)
- [Commits](zachdaniel/git_ops@v2.8.0...v2.9.0)

Updates `meck` from 0.9.2 to 1.1.0
- [Release notes](https://github.com/eproxus/meck/releases)
- [Changelog](https://github.com/eproxus/meck/blob/master/CHANGELOG.md)
- [Commits](eproxus/meck@0.9.2...v1.1.0)

Updates `mix_test_interactive` from 2.1.0 to 5.0.0
- [Release notes](https://github.com/randycoulman/mix_test_interactive/releases)
- [Changelog](https://github.com/randycoulman/mix_test_interactive/blob/main/CHANGELOG.md)
- [Commits](randycoulman/mix_test_interactive@v2.1.0...v5.0.0)

Updates `mix_test_watch` from 1.3.0 to 1.4.0
- [Changelog](https://github.com/lpil/mix-test.watch/blob/master/CHANGELOG.md)
- [Commits](lpil/mix-test.watch@v1.3.0...v1.4.0)

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

Updates `tidewave` from 0.1.7 to 0.5.0
- [Changelog](https://github.com/tidewave-ai/tidewave_phoenix/blob/main/CHANGELOG.md)
- [Commits](tidewave-ai/tidewave_phoenix@v0.1.7...v0.5.0)

---
updated-dependencies:
- dependency-name: benchee
  dependency-version: 1.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: credo
  dependency-version: 1.7.13
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: dialyxir
  dependency-version: 1.4.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: ex_doc
  dependency-version: 0.39.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: git_ops
  dependency-version: 2.9.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: meck
  dependency-version: 1.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: mix_test_interactive
  dependency-version: 5.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev-dependencies
- dependency-name: mix_test_watch
  dependency-version: 1.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: plug_cowboy
  dependency-version: 2.7.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tidewave
  dependency-version: 0.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev-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 Oct 30, 2025
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