All Versions
27
Latest Version
Avg Release Cycle
64 days
Latest Release
397 days ago
Changelog History
Page 1
Changelog History
Page 1
-
v1.14.0 Changes
October 31, 2022Require Elixir v1.10+.
โจ Enhancements
- Add
Plug.Conn.prepend_req_headers/2
andPlug.Conn.merge_req_headers/2
- Support adapter upgrades with
Plug.Conn.upgrade_adapter/3
- Add "Copy to Markdown" button in exception page
- Support exclusive use of tlsv1.3
๐ Bug fixes
- Make sure last parameter works within maps
๐ Deprecations
- Deprecate server pushes as they are no longer supported by browsers
- Add
-
v1.13.6 Changes
April 14, 2022๐ Bug fixes
- Fix compile-time dependencies in Plug.Builder
-
v1.13.5 Changes
April 11, 2022โจ Enhancements
- Support
:via
inPlug.Router.forward/2
๐ Bug fixes
- Fix compile-time deps in Plug.Builder
- Do not require routes to be compile-time binaries in
Plug.Router.forward/2
- Support
-
v1.13.4 Changes
March 10, 2022๐ Bug fixes
- Improve deprecation warnings
-
v1.13.3 Changes
February 12, 2022โจ Enhancements
- [Plug.Builder] Introduce
:copy_opts_to_assign
instead ofbuilder_opts/0
- [Plug.Router] Do not introduce compile-time dependencies in
Plug.Router
- [Plug.Builder] Introduce
-
v1.13.2 Changes
February 04, 2022๐ Bug fixes
- [Plug.Router] Properly fix regression on Plug.Router helper function accidentally renamed
-
v1.13.1 Changes
February 03, 2022๐ Bug fixes
- [Plug.Router] Fix regression on Plug.Router helper function accidentally renamed
-
v1.13.0 Changes
February 02, 2022โจ Enhancements
- [Plug.Builder] Do not add compile-time deps to literal options in function plugs
- [Plug.Parsers.MULTIPART] Allow custom conversion of multipart to parameters
- [Plug.Router] Allow suffix matches in the router (such as
/feeds/:name.atom
) - [Plug.Session] Allow a list of
:rotating_options
for rotating session cookies - [Plug.Static] Allow a list of
:encodings
to be given for handling static assets - [Plug.Test] Raise an error when providing path not starting with "/"
๐ Bug fixes
- [Plug.Upload] Normalize paths coming from environment variables
๐ Deprecations
- [Plug.Router] Mixing prefix matches with globs is deprecated
- [Plug.Parsers.MULTIPART] Deprecate
:include_unnamed_parts_at
-
v1.12.1 Changes
August 01, 2021๐ Bug fixes
- [Plug] Make sure module plugs are compile time dependencies if init mode is compile-time
-
v1.12.0 Changes
July 22, 2021โจ Enhancements
- [Plug] Accept mime v2.0
- [Plug] Accept telemetry v1.0
- [Plug.Conn] Improve performance of UTF-8 validation
- [Plug.Conn.Adapter] Add API for creating a connection
- [Plug.Static] Allow MFA in
:from