dwyl / phoenix-ecto-encryption-example

🔐 A detailed example for how to encrypt data in an Elixir (Phoenix v1.7) App before inserting into a database using Ecto Types
273 stars 20 forks source link

Bump argon2_elixir from 1.3.3 to 3.0.0 #50

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

Bumps argon2_elixir from 1.3.3 to 3.0.0.

Changelog

Sourced from argon2_elixir's changelog.

v3.0.0 (2021-01-20)

  • Enhancements
    • updated default memory cost and parallelism values
      • memory cost (m_cost) is now 16 (64 MiB) and parallelism is now 2
  • Changes
    • moved gen_salt to the Base module

v2.4.1 (2021-01-19)

  • Changes
    • updated documentation and README

v2.4.0 (2021-01-09)

  • Enhancements
    • updated Makefile to be more robust, especially for Nerves users

v2.3.0 (2020-03-01)

  • Changes
    • using Comeonin v5.3, which changes add_hash so that it does NOT set the password to nil

v2.2.0 (2020-01-15)

  • Enhancements
    • Updated documentation - in line with updates to Comeonin v5.2

v2.0.0 (2019-02-12)

  • Enhancements
    • Updated to use the Comeonin and Comeonin.PasswordHash behaviours (Comeonin v5.0)
    • Made Argon2id the default Argon2 type
    • Changed default t_cost, m_cost and parallelism values

v1.3.1 (2018-06-28)

  • Bug fixes
    • Added :erlang.nif_error for use with NIFs

v1.3 (2018-05-13)

  • Bug fixes
    • Fixed bug that was raising errors when used in releases

v1.2.4 (2018-12-09)

  • Enhancements
    • Improved Windows support by removing VLAs from nif code

... (truncated)

Commits
  • 75e487c Small formatting update
  • f026a6b reduced the default memory cost and parallelism and moved gen_salt to the Bas...
  • a13cfee Updated argon2 submodule
  • 821bdc4 Simplify README
  • c72586f updated .gitignore
  • 29650bd Merge pull request #50 from kianmeng/misc-doc-changes
  • b98edf9 Misc doc changes
  • 4a35c24 Updated CHANGELOG
  • 6530223 Updated makefile to make it more robust, especially on Nerves
  • 9cddf95 Updated argon2 submodule
  • 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 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)
nelsonic commented 2 years ago

This is the same issue we faced in fields a couple of days ago when updating. See: https://github.com/dwyl/fields/commit/1c2b128ebad06bb75ce87916abb0f336dbb29ebe#diff-251e14a1bbf2711146557145311826fbaddb308acab100c03038db9296a05daf

codecov[bot] commented 2 years ago

Codecov Report

Merging #50 (7468c43) into main (2808bc9) will not change coverage. The diff coverage is n/a.

@@            Coverage Diff            @@
##              main       #50   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files           11        11           
  Lines           65        65           
=========================================
  Hits            65        65           
Impacted Files Coverage Δ
lib/encryption/password_field.ex 100.00% <ø> (ø)

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 2808bc9...7468c43. Read the comment docs.