Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps jfmengels/elm-review-unused from 1.2.4 to 1.2.6.

Changelog

Sourced from jfmengels/elm-review-unused's changelog.

[1.2.6] - 2026-01-08

  • Fixed an issue with [NoUnused.Parameters] where the automatic fix would incorrectly remove arguments of functions of the same name in other let expressions.

[1.2.5] - 2025-12-30

  • [NoUnused.Parameters] provides automatic fixes for removing unused arguments (foo unused used = ... -> ) including in its call locations (foo 1 2 -> foo 2). This also works for unused record fields or tuple values.
  • [NoUnused.Parameters] provides automatic fixes for removing unused aliases (foo ({x} as unused)).
  • Fixed an issue for [NoUnused.Exports] where a custom type did not get reported when one of its constructors was named like another type. Example, where type Unused was incorrectly considered as used:
type alias T = ()
type Unused = T
value : T
value = ()
  • [NoUnused.Exports] now reports (and fixes) unnecessary exposing of a custom type's variants in a module's exposing list.
-module A exposing (Type(..))
+module A exposing (Type)
  • [NoUnused.Variables] now reports (and fixes) unnecessary imports to functions/types available by default (Basics, List, etc.)
  • [NoUnused.Dependencies] now doesn't report elm/json as an unused dependency for applications (as not depending on it yields compiler errors).
  • [NoUnused.CustomTypeConstructor] now gives a hint on how to not have phantom errors reported.
Commits
  • 44f6f16 1.2.6
  • 69061d1 Fix edit removing arguments of functions of the same name in other let expres...
  • dcaf634 Inline parts of errorsForValue
  • 96da750 Use destructuring
  • a759a98 Explicit configuration argument
  • 21111ac Bump elm-review dependencies
  • e620b93 1.2.5
  • 7d07572 NoUnused.Parameters: Support autofix removing parameters in declaration and f...
  • e7c9e48 Improve test to one that should compile
  • 20481b5 Provide fixes for unused parameter aliases
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [jfmengels/elm-review-unused](https://github.com/jfmengels/elm-review-unused) from 1.2.4 to 1.2.6.
- [Release notes](https://github.com/jfmengels/elm-review-unused/releases)
- [Changelog](https://github.com/jfmengels/elm-review-unused/blob/main/CHANGELOG.md)
- [Commits](jfmengels/elm-review-unused@1.2.4...1.2.6)

---
updated-dependencies:
- dependency-name: jfmengels/elm-review-unused
  dependency-version: 1.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jan 17, 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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants