From 53f304fc6b39976d342c48ac15a971a986271ef5 Mon Sep 17 00:00:00 2001 From: Andrea Leopardi Date: Tue, 14 Nov 2023 10:14:57 +0100 Subject: [PATCH] Release v1.15.2 --- CHANGELOG.md | 10 ++++++++++ mix.exs | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 47abbcd8..01d5ab3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## v1.15.2 (2023-11-14) + +### Enhancements + + * Add `:assign_as` option to `Plug.RequestId` + * Improve performance of `Plug.RequestId` + * Avoid clashes between Plug nodes + * Add specs to `Plug.BasicAuth` + * Fix a bug with non-string `_method` body parameters in `Plug.MethodOverride` + ## v1.15.1 (2023-10-06) ### Enhancements diff --git a/mix.exs b/mix.exs index 75e41850..01423133 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Plug.MixProject do use Mix.Project - @version "1.15.1" + @version "1.15.2" @description "Compose web applications with functions" @xref_exclude [Plug.Cowboy, :ssl]