Skip to content

Bump the mix group with 7 updates - #12

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/hex/mix-8f6030c202
Closed

Bump the mix group with 7 updates#12
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/hex/mix-8f6030c202

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the mix group with 7 updates:

Package From To
doctor 0.22.0 0.23.0
ex_doc 0.40.2 0.40.3
jump_credo_checks 0.2.0 0.3.0
plug 1.19.1 1.19.2
quokka 2.12.1 2.13.1
req 0.5.17 0.5.18
tesla 1.17.0 1.18.2

Updates doctor from 0.22.0 to 0.23.0

Release notes

Sourced from doctor's releases.

0.23.0

[0.23.0] - 2025-05-15

Changed

  • Updated to Decimal 3.1
Changelog

Sourced from doctor's changelog.

[0.23.0] - 2025-05-15

Changed

  • Updated to Decimal 3.1
Commits

Updates ex_doc from 0.40.2 to 0.40.3

Changelog

Sourced from ex_doc's changelog.

v0.40.3 (2026-05-21)

  • Enhancements
    • Add autolinking for Erlang/OTP 29 native records
Commits

Updates jump_credo_checks from 0.2.0 to 0.3.0

Release notes

Sourced from jump_credo_checks's releases.

v0.3.0

Changelog

Sourced from jump_credo_checks's changelog.

v0.3.0

Commits
  • ee991df Prep v0.3.0 release (#12)
  • 2781eef feat: Add UnusedLiveViewAssign rule (#9)
  • 7316da6 Bump quokka from 2.12.1 to 2.13.1 (#10)
  • 15a10d2 Bump ex_doc from 0.40.2 to 0.40.3 (#11)
  • 00afff7 Bump igniter from 0.7.9 to 0.8.0 (#8)
  • 00554a0 Merge pull request #7 from Jump-App/dependabot/hex/ex_doc-0.40.2
  • 3028b8a Bump ex_doc from 0.40.1 to 0.40.2
  • 2b2e085 Merge pull request #6 from Jump-App/ty/fix-5
  • b9cb25b fix (LiveViewFormCanBeRehydrated): Don't warn about missing phx-change on for...
  • See full diff in compare view

Updates plug from 1.19.1 to 1.19.2

Changelog

Sourced from plug's changelog.

v1.19.2 (2026-05-14)

Security

  • [Plug.Parsers.MULTIPART] Consider overall length when decoding multipart headers
Commits

Updates quokka from 2.12.1 to 2.13.1

Release notes

Sourced from quokka's releases.

v2.13.1

Fixes

  • Fix Enum.reduce/3 in a pipe being incorrectly rewritten to a nonexistent two-argument Enum.sum call. Piped lhs |> Enum.reduce(acc, reducer) was styled as Enum.reduce/2 and could emit invalid Enum.sum(acc) when the reducer was a simple sum. Fixes #160.
  • Fix autosort stealing comments from earlier in the module when sorting multi-line maps. Comments such as # credo:disable-for-next-line in unrelated code could be detached from the lines they suppress. Fixes #161.

v2.13.0

Breaking Changes

  • Sorting is now split into two independent mechanisms. See Autosort for the full comparison.
    • Config autosort (maps, defstructs, schemas): controlled by autosort: [...] and the :autosort style in :only or :exclude.
    • # quokka:sort (per-value, opt-in): always runs; not affected by :only, :exclude, or exclude: [:autosort].
  • If you use :only or :exclude to limit which styles run, replace :comment_directives with :autosort to control config-driven sorting. The autosort: [...] option is unchanged.

Improvements

  • Added support for plugins; see Quokka.Plugin docs for details on creating your own formatting rules.
  • Overhaul config-driven autosort: extracted into a dedicated style with its own docs. Maps with comments are now autosorted (comments stay with their keys). Use # quokka:skip-sort on the line above a value to opt out.
  • Support # quokka:sort for struct field keys in @type definitions (e.g. @type t :: %__MODULE__{...}).
  • Respect Credo's Credo.Check.Readability.OnePipePerLine — breaks pipe chains so each |> is on its own line when the check is enabled.
  • Respect Credo's Credo.Check.Refactor.CondStatements configuration. Set the check to false to disable cond simplification.
  • Module directive skip comments (# quokka:skip-module-directives, # quokka:skip-module-directive-reordering, etc.) now work inside defimpl blocks. Module directives in defimpl and defprotocol are reordered when no skip comment is present.
  • Respect Credo's Credo.Check.Readability.StrictModuleLayout ignore_module_attributes and ignore: [:module_attribute] options. When a module contains an ignored module attribute, Quokka preserves the original directive order for that module rather than hoisting directives above the attribute (which could be referenced by an earlier-ordered directive such as @moduledoc). Fixes #137.
  • Rewrite Enum.reduce/2,3 calls that simply sum their two arguments to Enum.sum/1 (part of inefficient function rewrites).
  • Rewrite Enum.drop/2 + Enum.take/2 to Enum.slice/3 when both arguments are non-negative integer literals (part of inefficient function rewrites).

Fixes

  • Fix alias duplication in # quokka:skip-module-directive-reordering mode when an existing alias was also referenced from non-alias content.
  • Fix crash when formatting empty modules (e.g. a defmodule with no body inside a quote block).
  • Fix autosort so comments above map keys are preserved correctly after sorting.

Deprecations

  • :comment_directives is no longer a valid :only or :exclude style. Use :autosort to control config-driven sorting instead. # quokka:sort always runs and cannot be disabled. exclude: [:comment_directives] has no effect and logs a warning; only: [:comment_directives] no longer enables config autosort — add :autosort if you need it.
Changelog

Sourced from quokka's changelog.

[2.13.1] - 2026-05-19

Fixes

  • Fix Enum.reduce/3 in a pipe being incorrectly rewritten to a nonexistent two-argument Enum.sum call. Piped lhs |> Enum.reduce(acc, reducer) was styled as Enum.reduce/2 and could emit invalid Enum.sum(acc) when the reducer was a simple sum. Fixes #160.
  • Fix autosort stealing comments from earlier in the module when sorting multi-line maps. Comments such as # credo:disable-for-next-line in unrelated code could be detached from the lines they suppress. Fixes #161.

[2.13.0] - 2026-05-18

Breaking Changes

  • Sorting is now split into two independent mechanisms. See Autosort for the full comparison.
    • Config autosort (maps, defstructs, schemas): controlled by autosort: [...] and the :autosort style in :only or :exclude.
    • # quokka:sort (per-value, opt-in): always runs; not affected by :only, :exclude, or exclude: [:autosort].
  • If you use :only or :exclude to limit which styles run, replace :comment_directives with :autosort to control config-driven sorting. The autosort: [...] option is unchanged.

Improvements

  • Added support for plugins; see Quokka.Plugin docs for details on creating your own formatting rules.
  • Overhaul config-driven autosort: extracted into a dedicated style with its own docs. Maps with comments are now autosorted (comments stay with their keys). Use # quokka:skip-sort on the line above a value to opt out.
  • Support # quokka:sort for struct field keys in @type definitions (e.g. @type t :: %__MODULE__{...}).
  • Respect Credo's Credo.Check.Readability.OnePipePerLine — breaks pipe chains so each |> is on its own line when the check is enabled.
  • Respect Credo's Credo.Check.Refactor.CondStatements configuration. Set the check to false to disable cond simplification.
  • Module directive skip comments (# quokka:skip-module-directives, # quokka:skip-module-directive-reordering, etc.) now work inside defimpl blocks. Module directives in defimpl and defprotocol are reordered when no skip comment is present.
  • Respect Credo's Credo.Check.Readability.StrictModuleLayout ignore_module_attributes and ignore: [:module_attribute] options. When a module contains an ignored module attribute, Quokka preserves the original directive order for that module rather than hoisting directives above the attribute (which could be referenced by an earlier-ordered directive such as @moduledoc). Fixes #137.
  • Rewrite Enum.reduce/2,3 calls that simply sum their two arguments to Enum.sum/1 (part of inefficient function rewrites).
  • Rewrite Enum.drop/2 + Enum.take/2 to Enum.slice/3 when both arguments are non-negative integer literals (part of inefficient function rewrites).

Fixes

  • Fix alias duplication in # quokka:skip-module-directive-reordering mode when an existing alias was also referenced from non-alias content.
  • Fix crash when formatting empty modules (e.g. a defmodule with no body inside a quote block).
  • Fix autosort so comments above map keys are preserved correctly after sorting.

Deprecations

  • :comment_directives is no longer a valid :only or :exclude style. Use :autosort to control config-driven sorting instead. # quokka:sort always runs and cannot be disabled. exclude: [:comment_directives] has no effect and logs a warning; only: [:comment_directives] no longer enables config autosort — add :autosort if you need it.
Commits

Updates req from 0.5.17 to 0.5.18

Changelog

Sourced from req's changelog.

v0.5.18 (2026-05-20)

  • [run_finch]: Allow :finch option with IPv6 URLs.

  • [run_finch]: Normalize Finch.TransportError and Finch.HTTPError (introduced in Finch v0.22.0) into Req.TransportError and Req.HTTPError.

  • [retry]: Automatically retry on :pool_not_available.

  • Require Finch ~> 0.21.0 or ~> 0.22.0.

Commits

Updates tesla from 1.17.0 to 1.18.2

Release notes

Sourced from tesla's releases.

v1.18.2

1.18.2 (2026-05-15)

Bug Fixes

  • builder: include :assigns and :private in request option type (#876) (f5834c1)

v1.18.1

1.18.1 (2026-05-14)

Bug Fixes

  • path-params: raise on missing required path parameter values (#874) (a1dd44b)

v1.18.0

1.18.0 (2026-05-14)

Features

  • openapi: add response wrapper macro (#872) (f824d67)
  • openapi: split header and cookie params (#865) (898bd1a)
  • path-params: separate definitions from values (#860) (3639c9a)
  • path-params: support precompiled path templates (#859) (a8878a0)
  • query-params: separate definitions from values (#862) (08f4d87)
  • query: support API-specific query serialization (#843) (9b95efb)
  • support OpenAPI-friendly cookie params (#857) (25bcf3c)
  • support OpenAPI-friendly header params (#853) (2ec5539)
  • support OpenAPI-friendly path params (#851) (0837672)
  • support OpenAPI-friendly query params (#852) (7a1b582)
  • support OpenAPI-friendly query strings (#858) (a979142)

Bug Fixes

  • gun: keep timeout-wrapped streams readable (#847) (8a8ba74)
  • mint: avoid crashes on HTTP/2 request resets (#846) (6a42469)
Changelog

Sourced from tesla's changelog.

1.18.2 (2026-05-15)

Bug Fixes

  • builder: include :assigns and :private in request option type (#876) (f5834c1)

1.18.1 (2026-05-14)

Bug Fixes

  • path-params: raise on missing required path parameter values (#874) (a1dd44b)

1.18.0 (2026-05-14)

Features

  • openapi: add response wrapper macro (#872) (f824d67)
  • openapi: split header and cookie params (#865) (898bd1a)
  • path-params: separate definitions from values (#860) (3639c9a)
  • path-params: support precompiled path templates (#859) (a8878a0)
  • query-params: separate definitions from values (#862) (08f4d87)
  • query: support API-specific query serialization (#843) (9b95efb)
  • support OpenAPI-friendly cookie params (#857) (25bcf3c)
  • support OpenAPI-friendly header params (#853) (2ec5539)
  • support OpenAPI-friendly path params (#851) (0837672)
  • support OpenAPI-friendly query params (#852) (7a1b582)
  • support OpenAPI-friendly query strings (#858) (a979142)

Bug Fixes

  • gun: keep timeout-wrapped streams readable (#847) (8a8ba74)
  • mint: avoid crashes on HTTP/2 request resets (#846) (6a42469)
Commits
  • 7150fdf chore(master): release 1.18.2 (#877)
  • f5834c1 fix(builder): include :assigns and :private in request option type (#876)
  • 5145c09 chore(master): release 1.18.1 (#875)
  • a1dd44b fix(path-params): raise on missing required path parameter values (#874)
  • cfae193 chore(master): release 1.18.0 (#844)
  • d5d417b chore(openapi): clarify generated metadata ownership (#873)
  • f824d67 feat(openapi): add response wrapper macro (#872)
  • 6eea2d7 chore(openapi): hide query string error fields (#870)
  • 3894942 chore(mock): mark module deprecated (#871)
  • a5b5649 chore(openapi): clarify value object docs (#869)
  • Additional commits viewable 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 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 mix group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [doctor](https://github.com/akoutmos/doctor) | `0.22.0` | `0.23.0` |
| [ex_doc](https://github.com/elixir-lang/ex_doc) | `0.40.2` | `0.40.3` |
| [jump_credo_checks](https://github.com/Jump-App/credo_checks) | `0.2.0` | `0.3.0` |
| [plug](https://github.com/elixir-plug/plug) | `1.19.1` | `1.19.2` |
| [quokka](https://github.com/smartrent/quokka) | `2.12.1` | `2.13.1` |
| [req](https://github.com/wojtekmach/req) | `0.5.17` | `0.5.18` |
| [tesla](https://github.com/elixir-tesla/tesla) | `1.17.0` | `1.18.2` |


Updates `doctor` from 0.22.0 to 0.23.0
- [Release notes](https://github.com/akoutmos/doctor/releases)
- [Changelog](https://github.com/akoutmos/doctor/blob/master/CHANGELOG.md)
- [Commits](akoutmos/doctor@0.22.0...0.23.0)

Updates `ex_doc` from 0.40.2 to 0.40.3
- [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.40.2...v0.40.3)

Updates `jump_credo_checks` from 0.2.0 to 0.3.0
- [Release notes](https://github.com/Jump-App/credo_checks/releases)
- [Changelog](https://github.com/Jump-App/credo_checks/blob/main/CHANGELOG.md)
- [Commits](Jump-App/credo_checks@v0.2.0...v0.3.0)

Updates `plug` from 1.19.1 to 1.19.2
- [Changelog](https://github.com/elixir-plug/plug/blob/main/CHANGELOG.md)
- [Commits](elixir-plug/plug@v1.19.1...v1.19.2)

Updates `quokka` from 2.12.1 to 2.13.1
- [Release notes](https://github.com/smartrent/quokka/releases)
- [Changelog](https://github.com/emkguts/quokka/blob/main/CHANGELOG.md)
- [Commits](emkguts/quokka@v2.12.1...v2.13.1)

Updates `req` from 0.5.17 to 0.5.18
- [Release notes](https://github.com/wojtekmach/req/releases)
- [Changelog](https://github.com/wojtekmach/req/blob/main/CHANGELOG.md)
- [Commits](wojtekmach/req@v0.5.17...v0.5.18)

Updates `tesla` from 1.17.0 to 1.18.2
- [Release notes](https://github.com/elixir-tesla/tesla/releases)
- [Changelog](https://github.com/elixir-tesla/tesla/blob/master/CHANGELOG.md)
- [Commits](elixir-tesla/tesla@v1.17.0...v1.18.2)

---
updated-dependencies:
- dependency-name: doctor
  dependency-version: 0.23.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: mix
- dependency-name: ex_doc
  dependency-version: 0.40.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: mix
- dependency-name: jump_credo_checks
  dependency-version: 0.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: mix
- dependency-name: plug
  dependency-version: 1.19.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: mix
- dependency-name: quokka
  dependency-version: 2.13.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: mix
- dependency-name: req
  dependency-version: 0.5.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: mix
- dependency-name: tesla
  dependency-version: 1.18.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: mix
...

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 Jun 1, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 10, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jun 10, 2026
@dependabot
dependabot Bot deleted the dependabot/hex/mix-8f6030c202 branch June 10, 2026 21:35
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