From c2268e309fbbde0c91f1d7b0b57c1252751c0f2c Mon Sep 17 00:00:00 2001 From: Bernard Duggan Date: Tue, 10 Sep 2024 16:27:42 +1000 Subject: [PATCH] Update CHANGELOG, bump version to v2.5.4 --- CHANGELOG.md | 12 ++++++++++++ mix.exs | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a29b746..bb53b2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +v2.5.4 (2024-09-10) + +- Add empty value checks for `delete_object` +- Handle errors in `parse_complete_multipart_upload` +- Add `newer_concurrent_versions` option to put lifecycle +- Show changelog link on hex info page +- Add missing `meta` opts from the upload type spec +- Add `newer_noncurrent_versions` to `put_bucket_lifecycle` +- Clarify in docs that presigned URLs are generated locally +- Document the :expires_in type +- Add checksum header when hash is not MD5 + v2.5.3 (2024-01-11) - Add option to get auth from AuthCache on every request when uploading to S3 in a stream diff --git a/mix.exs b/mix.exs index 01328cc..115f002 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule ExAws.S3.Mixfile do use Mix.Project - @version "2.5.3" + @version "2.5.4" @service "s3" @url "https://github.com/ex-aws/ex_aws_#{@service}" @name __MODULE__ |> Module.split() |> Enum.take(2) |> Enum.join(".") @@ -10,7 +10,7 @@ defmodule ExAws.S3.Mixfile do [ app: :ex_aws_s3, version: @version, - elixir: "~> 1.11", + elixir: "~> 1.13", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, deps: deps(),