Changelog
*Sourced from [credo's changelog](https://github.com/rrrene/credo/blob/master/CHANGELOG.md).*
> ## 1.0.5
>
> - Fix bug due to commented-out heredocs
> - Fix variable explanation for `VariableRebinding` check
> - Add `MultiAlias` check to experimental checks
>
> ## 1.0.4
>
> - Ignore heredocs in `RedundantBlankLines`
> - Fix bug in `StringSigils`
> - Minor refactorings
>
> ## 1.0.3
>
> - Fix bug in `Name.full/1`
> - Fix bug in `UI.truncate/2`
> - Disable `LazyLogging` for Elixir >= 1.7
> - Add UnnecessaryAliasExpansion check to experimental checks
>
> ## 1.0.2
>
> - Fix false positive in `MapInto`
> - Disable `MapInto` for Elixir 1.8 and higher
> - Ensure issues are sorted by filename, line number and column number
> - Warn about ineffective check filter patterns
> - Add `ModuleDependencies` check to experimental checks
>
> ## 1.0.1
>
> - Compilation warnings for Elixir 1.8
> - Fix `StringSigils` to not crash with strings containing non-UTF8 characters
>
> ## 1.0.0
>
> - Improve documentation
> - Add error handling for malformed config files
> - Write all warnings to `:stderr`
> - Fix false positive for charlists in PipeChainStart
> - Remove deprecated --one-line switch
> - Deactivate checks `DuplicatedCode` and `DoubleBooleanNegation` by default
>
> ### BREAKING CHANGES
>
> These changes concern people writing their own checks for Credo.
>
> - `Credo.Check.CodeHelper` was removed. Please use the corresponding functions inside the `Credo.Code` namespace.
>
> ## 0.10.2
>
> - Fix bug in AliasOrder
> ... (truncated)
Commits
- [`3118d96`](https://github.com/rrrene/credo/commit/3118d96fa53ee0ea983c68d4f9a355a7b8a39763) Bump version to 1.0.5
- [`425b3e3`](https://github.com/rrrene/credo/commit/425b3e34ee3ef693472b695d4eb45510cda5f462) Update CHANGELOG
- [`ce7a3eb`](https://github.com/rrrene/credo/commit/ce7a3ebaff57aef387c008656598f5e56efde901) Merge pull request [#644](https://github-redirect.dependabot.com/rrrene/credo/issues/644) from asummers/multi-alias
- [`9376544`](https://github.com/rrrene/credo/commit/93765447fb892c412a20628dfcf01550697269d9) Merge pull request [#647](https://github-redirect.dependabot.com/rrrene/credo/issues/647) from SpaceEEC/variable_binding_params
- [`f23c16f`](https://github.com/rrrene/credo/commit/f23c16fdf4d09c9a33dabe87b8d3bb38ef923397) add :allow_bang :params to @ explanation of VariableRebinding check
- [`f9d5ee4`](https://github.com/rrrene/credo/commit/f9d5ee4e1345981e0b323ae6b04c2ff351779620) Fix behaviour of StringSigils
- [`f2a30e1`](https://github.com/rrrene/credo/commit/f2a30e1e050960642a370004393891a84cf2372b) Add comment handling to Heredocs
- [`dd0d568`](https://github.com/rrrene/credo/commit/dd0d5681cd16de084c3e5ced355b58bdbd20668c) Add test reproducing [#646](https://github-redirect.dependabot.com/rrrene/credo/issues/646)
- [`024ffff`](https://github.com/rrrene/credo/commit/024ffff4c462ea2141534663b44a9e914d309a20) Fix bug when parsing heredocs in Strings
- [`26afbaa`](https://github.com/rrrene/credo/commit/26afbaad9590db41b46d20252809db9a1d1590a4) Bump version to 1.0.4
- Additional commits viewable in [compare view](https://github.com/rrrene/credo/compare/v0.9.2...v1.0.5)
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 ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Coverage decreased (-82.4%) to 4.054% when pulling d237cb80326487b2cd34ae12bfe1283e62264a41 on dependabot/hex/credo-1.0.5 into 9c75e72b4b53dfeab7c97207f1cd6a62204709d0 on master.
Bumps credo from 0.9.2 to 1.0.5.
Changelog
*Sourced from [credo's changelog](https://github.com/rrrene/credo/blob/master/CHANGELOG.md).* > ## 1.0.5 > > - Fix bug due to commented-out heredocs > - Fix variable explanation for `VariableRebinding` check > - Add `MultiAlias` check to experimental checks > > ## 1.0.4 > > - Ignore heredocs in `RedundantBlankLines` > - Fix bug in `StringSigils` > - Minor refactorings > > ## 1.0.3 > > - Fix bug in `Name.full/1` > - Fix bug in `UI.truncate/2` > - Disable `LazyLogging` for Elixir >= 1.7 > - Add UnnecessaryAliasExpansion check to experimental checks > > ## 1.0.2 > > - Fix false positive in `MapInto` > - Disable `MapInto` for Elixir 1.8 and higher > - Ensure issues are sorted by filename, line number and column number > - Warn about ineffective check filter patterns > - Add `ModuleDependencies` check to experimental checks > > ## 1.0.1 > > - Compilation warnings for Elixir 1.8 > - Fix `StringSigils` to not crash with strings containing non-UTF8 characters > > ## 1.0.0 > > - Improve documentation > - Add error handling for malformed config files > - Write all warnings to `:stderr` > - Fix false positive for charlists in PipeChainStart > - Remove deprecated --one-line switch > - Deactivate checks `DuplicatedCode` and `DoubleBooleanNegation` by default > > ### BREAKING CHANGES > > These changes concern people writing their own checks for Credo. > > - `Credo.Check.CodeHelper` was removed. Please use the corresponding functions inside the `Credo.Code` namespace. > > ## 0.10.2 > > - Fix bug in AliasOrder > ... (truncated)Commits
- [`3118d96`](https://github.com/rrrene/credo/commit/3118d96fa53ee0ea983c68d4f9a355a7b8a39763) Bump version to 1.0.5 - [`425b3e3`](https://github.com/rrrene/credo/commit/425b3e34ee3ef693472b695d4eb45510cda5f462) Update CHANGELOG - [`ce7a3eb`](https://github.com/rrrene/credo/commit/ce7a3ebaff57aef387c008656598f5e56efde901) Merge pull request [#644](https://github-redirect.dependabot.com/rrrene/credo/issues/644) from asummers/multi-alias - [`9376544`](https://github.com/rrrene/credo/commit/93765447fb892c412a20628dfcf01550697269d9) Merge pull request [#647](https://github-redirect.dependabot.com/rrrene/credo/issues/647) from SpaceEEC/variable_binding_params - [`f23c16f`](https://github.com/rrrene/credo/commit/f23c16fdf4d09c9a33dabe87b8d3bb38ef923397) add :allow_bang :params to @ explanation of VariableRebinding check - [`f9d5ee4`](https://github.com/rrrene/credo/commit/f9d5ee4e1345981e0b323ae6b04c2ff351779620) Fix behaviour of StringSigils - [`f2a30e1`](https://github.com/rrrene/credo/commit/f2a30e1e050960642a370004393891a84cf2372b) Add comment handling to Heredocs - [`dd0d568`](https://github.com/rrrene/credo/commit/dd0d5681cd16de084c3e5ced355b58bdbd20668c) Add test reproducing [#646](https://github-redirect.dependabot.com/rrrene/credo/issues/646) - [`024ffff`](https://github.com/rrrene/credo/commit/024ffff4c462ea2141534663b44a9e914d309a20) Fix bug when parsing heredocs in Strings - [`26afbaa`](https://github.com/rrrene/credo/commit/26afbaad9590db41b46d20252809db9a1d1590a4) Bump version to 1.0.4 - Additional commits viewable in [compare view](https://github.com/rrrene/credo/compare/v0.9.2...v1.0.5)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 ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.