Skip to content

Bump the production-dependencies group across 1 directory with 4 updates - #347

Open
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/hex/develop/production-dependencies-61aa6ce06d
Open

dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/hex/develop/production-dependencies-61aa6ce06d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 15, 2026

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 4 updates in the / directory: dialyxir, ex_doc, expression and tesla.

Updates dialyxir from 1.4.7 to 1.4.8

Release notes

Sourced from dialyxir's releases.

1.4.8

Added

  • Add support for the OTP 28 warnings :exact_compare, :opaque_compare, and :opaque_union.

Fixed

  • Handle line-and-column locations when matching line-specific warning ignores.

Changed

  • Update ExDoc to 0.40.3 to generate Markdown documentation and llms.txt.

Docs

  • Clarify the output and intended use of the ignore_file and ignore_file_strict formatters.
Changelog

Sourced from dialyxir's changelog.

Unreleased changes post [1.4.8]

[1.4.8] - 2026-09-05

Added

  • Add support for the OTP 28 warnings :exact_compare, :opaque_compare, and :opaque_union.

Fixed

  • Handle line-and-column locations when matching line-specific warning ignores.

Changed

  • Update ExDoc to 0.40.3 to generate Markdown documentation and llms.txt.

Docs

  • Clarify the output and intended use of the ignore_file and ignore_file_strict formatters.
Commits
  • 13bcb7d Release 1.4.8
  • 4a2b6d7 Merge pull request #584 from lud-wj/fix/ignoring-by-line
  • a2a4361 Merge branch 'master' into fix/ignoring-by-line
  • 31a4cd8 Merge pull request #601 from BobbieBarker/docs/exdoc-0.40
  • 6ba7b38 Update ExDoc to 0.40.3
  • 3553678 Add OTP 28 warning support: exact_compare, opaque_compare, opaque_union (#591)
  • 19dd690 Merge pull request #597 from dl-alexandre/codex/clarify-ignore-file-format
  • f12db01 clarify ignore file formatter docs
  • cdcea96 fix: Fixed dialyzer ignore by line for warnings with line/col
  • 9fbbaf5 update changelog
  • See full diff in compare view

Updates ex_doc from 0.40.3 to 0.40.4

Changelog

Sourced from ex_doc's changelog.

v0.40.4 (2026-09-03)

  • Enhancements

    • Add :api_reference_noindex option to keep search engines from indexing api-reference.html
    • Generate reproducible HTML and EPUB output
    • Link HexDocs packages through their per-package subdomains
  • Bug fixes

    • Preserve in-page anchors during Swup navigation and fully reload navigation between ExDoc builds
    • Format Elixir specs consistently regardless of their source line numbers
    • Autolink the Erlang/OTP 29 built-in record/0 type
    • Fix focus outline positioning for top-content heading action icons
Commits
  • 80270f3 Release v0.40.4
  • 934cf54 Reference to missing section (#2264)
  • b5679af Add license information for remixicon font (#2263)
  • 850f709 Bump brace-expansion from 1.1.12 to 1.1.18 in /assets (#2261)
  • 873e03e Bump postcss from 8.5.15 to 8.5.26 in /assets (#2259)
  • 27660d3 Bump js-yaml from 4.2.0 to 4.3.1 in /assets (#2260)
  • ffec214 Bump postcss from 8.5.6 to 8.5.15 in /assets (#2241)
  • 23cbd23 epub: Honor SOURCE_DATE_EPOCH for dcterms:modified and dc:identifier (#2256)
  • a37128a Use a fixed makeup group_prefix for reproducible HTML output (#2255)
  • 01f4763 Update earmark_parser dependency version -> 1.4.46 (#2254)
  • Additional commits viewable in compare view

Updates expression from 3.0.0-rc.1 to 3.0.0-rc.3

Release notes

Sourced from expression's releases.

3.0.0-rc.3

What's Changed

Full Changelog: turnhub/expression@3.0.0-rc.2...3.0.0-rc.3

3.0.0-rc.2

What's Changed

Full Changelog: turnhub/expression@3.0.0-rc.1...3.0.0-rc.2

Changelog

Sourced from expression's changelog.

v3.0.0-rc.3

Fixed

  • Identifiers may now start with underscores, so attribute access on WhatsApp webhook vendor keys such as @event.message._vnd.v1.chat parses fully instead of stopping at the underscore. A bare _ is still not an identifier: @(_) remains literal text, and unresolved variables like @_missing render back as-is.

v3.0.0-rc.0

This is the first release candidate for v3.0.0. It contains the breaking changes intended for the major version. Cut to allow downstream CI runs to surface migration work before the final v3.0.0 tag.

Breaking changes

  • Context.new/2 no longer normalizes by default. Both lowercase_keys and coerce_strings now default to false. Original key casing is preserved (variable lookup remains case-insensitive at evaluation time via Eval.case_insensitive_get/2), and string values pass through untouched. Callers that need v2 behavior must opt in explicitly: Context.new(ctx, lowercase_keys: true, coerce_strings: true).
  • :skip_context_evaluation? option has been removed. Use coerce_strings: false instead.
  • Expression.error/1 has been removed. Use Expression.error_map/1 to produce the legacy error map shape, or raise Expression.Error for new code.
  • The entire V2 parser/evaluator has been removed. All modules under lib/expression/v2/ (Expression.V2, Expression.V2.Parser, Expression.V2.Compile, Expression.V2.Context, Expression.V2.Eval, Expression.V2.Callbacks, Expression.V2.Callbacks.Standard, Expression.V2.Autodoc) and Expression.V2.Compat are gone. Consumers using V2 for static analysis (Expression.V2.parse_block/1, Expression.V2.Compile.to_quoted/1) will need to migrate to V1's AST surface or build their own analysis layer.

Added

  • v2-compat mode on all evaluation entry points. evaluate!/4, evaluate/4, evaluate_block!/4, evaluate_block/4, evaluate_as_string!/4, evaluate_as_boolean!/4 and evaluate_template!/4 accept a trailing options list. mode: :v2 expands to lowercase_keys: true, coerce_strings: true, restoring the v2 context normalization per evaluation; explicitly passed flags win over the expansion. This lets a consumer run v2- and v3-semantics evaluations side by side in the same VM.

Migration

... (truncated)

Commits
  • 1e1d5e6 Merge pull request #371 from turnhub/fix/leading-underscore-identifiers-v2
  • ad792c7 fix: parse identifiers with leading underscores
  • b64e710 Merge pull request #370 from turnhub/prod-6381-basic-comparison-error-in-then...
  • 0c50d69 chore: bump version to 3.0.0-rc.2
  • 7d6747c fix: underscored number literals losing leading zeros of digit groups
  • See full diff in compare view

Updates tesla from 1.21.0 to 1.21.3

Release notes

Sourced from tesla's releases.

v1.21.3

1.21.3 (2026-08-31)

Bug Fixes

  • adapter: Send the final chunk of a request body stream that halts (#923) (1758793)
  • gun-adapter: Send socks proxy credentials gun can accept (#934) (4c3ec65)
  • httpc-adapter: Let the multipart content type win over the request one (#935) (813dfee)
  • mint: Avoid failing large HTTP/2 uploads (#842) (b9d31ab)
  • retry: Ignore Retry-After values that are not valid delay-seconds (#920) (d2e255d)

v1.21.2

1.21.2 (2026-08-19)

Bug Fixes

  • form-urlencoded: Do not claim a content-type it did not encode (#914) (b250b50)

v1.21.1

1.21.1 (2026-08-17)

Bug Fixes

  • finch-adapter: Surface the reason a streamed response stopped (#913) (e1f6051)
  • finch: Unwrap error structs introduced by finch 0.22 (#902) (a833717)
Changelog

Sourced from tesla's changelog.

1.21.3 (2026-08-31)

Bug Fixes

  • adapter: Send the final chunk of a request body stream that halts (#923) (1758793)
  • gun-adapter: Send socks proxy credentials gun can accept (#934) (4c3ec65)
  • httpc-adapter: Let the multipart content type win over the request one (#935) (813dfee)
  • mint: Avoid failing large HTTP/2 uploads (#842) (b9d31ab)
  • retry: Ignore Retry-After values that are not valid delay-seconds (#920) (d2e255d)

1.21.2 (2026-08-19)

Bug Fixes

  • form-urlencoded: Do not claim a content-type it did not encode (#914) (b250b50)

1.21.1 (2026-08-17)

Bug Fixes

  • finch-adapter: Surface the reason a streamed response stopped (#913) (e1f6051)
  • finch: Unwrap error structs introduced by finch 0.22 (#902) (a833717)
Commits
  • 5572413 chore(master): release 1.21.3 (#921)
  • 50bf870 chore: harden coverage reporting (#938)
  • d01ce01 chore: restore coverage reporting (#937)
  • 7bcfd50 chore: close the remaining coverage gaps (#936)
  • 1c79381 chore(coverage): close every reachable coverage gap in lib (#933)
  • 4c3ec65 fix(gun-adapter): send socks proxy credentials gun can accept (#934)
  • 813dfee fix(httpc-adapter): let the multipart content type win over the request one (...
  • 4dcdf53 chore(open-api): pin cookie and path template behavior that mutation testing ...
  • 2f4b7f3 chore(open-api): close the last coverage gaps (#931)
  • 3113871 chore(logger): cover the otel attribute fallbacks (#930)
  • 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 production-dependencies group with 4 updates in the / directory: [dialyxir](https://github.com/jeremyjh/dialyxir), [ex_doc](https://github.com/elixir-lang/ex_doc), [expression](https://github.com/turnhub/expression) and [tesla](https://github.com/elixir-tesla/tesla).


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

Updates `ex_doc` from 0.40.3 to 0.40.4
- [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.3...v0.40.4)

Updates `expression` from 3.0.0-rc.1 to 3.0.0-rc.3
- [Release notes](https://github.com/turnhub/expression/releases)
- [Changelog](https://github.com/turnhub/expression/blob/develop/CHANGELOG.md)
- [Commits](turnhub/expression@3.0.0-rc.1...3.0.0-rc.3)

Updates `tesla` from 1.21.0 to 1.21.3
- [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.21.0...v1.21.3)

---
updated-dependencies:
- dependency-name: dialyxir
  dependency-version: 1.4.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: ex_doc
  dependency-version: 0.40.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: expression
  dependency-version: 3.0.0-rc.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tesla
  dependency-version: 1.21.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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 Sep 15, 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.

0 participants