From b61dd872c2837d598845c8fbe4104029213d808a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Sun, 1 Oct 2023 20:32:51 +0200 Subject: [PATCH] Release v1.15.0 --- CHANGELOG.md | 6 ++++-- mix.exs | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dc27a6a..72523278 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # Changelog -## v1.15.0-dev +## v1.15.0 (2023-10-01) ### Enhancements + * Add `Plug.Conn.get_session/3` for default value + * Allow `Plug.SSL.configure/1` to accept all :ssl options * Optimize query decoding by 15% to 45% - this removes the previously deprecated `:limit` MFA and `:include_unnamed_parts_at` from MULTIPART ## v1.14.2 (2023-03-23) @@ -216,7 +218,7 @@ Require Elixir v1.10+. * [Plug.Parsers] Add option to skip utf8 validation * [Plug.Parsers] Make multipart support MFA for `:length` limit * [Plug.Static] Accept MFA for `:header` option - + ### Notes * When implementing the `Plug.Exception` protocol, if the new `actions` function is not implemented, a warning will printed during compilation. diff --git a/mix.exs b/mix.exs index c5a38498..85739f1a 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Plug.MixProject do use Mix.Project - @version "1.14.2" + @version "1.15.0" @description "Compose web applications with functions" @xref_exclude [Plug.Cowboy, :ssl]