All Versions
21
Latest Version
Avg Release Cycle
95 days
Latest Release
1597 days ago

Changelog History
Page 1

  • v0.11.3 Changes

    December 10, 2019
    • ⚠ (Enhancement) Fix warnings in Ecto 3.2 for custom types
  • v0.11.2 Changes

    May 18, 2019
    • (Dependency Relax) Require ecto >= 2.1.0
    • (Enhancement) Add allow_urls as an an alternative to allow_paths for fetching remote files
    • 🛠 (Bugfix) updated_at timestamps now truncate to the second
    • 🛠 (Bugfix) Fix Dialyzer warning
    • 🛠 (Bugfix) Add missing Dialyzer type
  • v0.11.1 Changes

    November 18, 2018
    • ⚡️ (Dependency Update) Require ecto ~> 2.1 or ~> 3.0
  • v0.11.0 Changes

    October 04, 2018
    • ⚡️ (Dependency Update) Require arc ~> 0.11.0
  • v0.10.0 Changes

    June 19, 2018
    • ⚡️ (Dependency Update) Require arc ~> 0.10.0
  • v0.9.0 Changes

    June 19, 2018
    • ⚡️ (Dependency Update) Require arc ~> 0.9.0
  • v0.8.0 Changes

    May 10, 2018
    • (Enhancement) Use NaiveDateTime instead of Ecto.DateTime.
    • ⚡️ (Dependency Update) Require ecto ~> 2.1
  • v0.7.0 Changes

    March 10, 2017
    • (Enhancement) Add delete override to the ArcEcto module.
    • ⚡️ (Dependency Update) Require arc ~> 0.8.0
  • v0.6.0 Changes

    March 10, 2017
    • ⚡️ (Dependency Update) Require arc ~> 0.7.0
  • v0.5.0 Changes

    December 19, 2016
    • ⚡️ (Dependency Update) Require arc ~> 0.6.0
    • 🔒 (Behavior Change) Only allow casting a %Plug.Upload{} by default. If you would like to cast local paths (take caution), you may pass in allow_paths: true. Note: This should be used with caution, as there are security implications with uploading local paths from a user-submitted form.

    Example:

    params = "/path/to/my/file.png"
    cast_attachments(%User{}, params, ~w(avatar), allow_paths: true)