From 6537552fa8839c188d6748e5946d1a0a1c6c5c30 Mon Sep 17 00:00:00 2001 From: Jhonathan Viudes Date: Mon, 21 Oct 2024 16:01:14 -0300 Subject: [PATCH] Fix us-west-1 and us-west-2 for pinpoint endpoints --- CHANGELOG.md | 3 +++ mix.exs | 2 +- priv/endpoints.exs | 5 ++++- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab2abae9..f32bfbe8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +v2.5.6 (2024-10-21) +- Fix Pinpoint Endpoints + v2.5.5 (2024-09-10) - Endpoint updates - Drop support for Elixir 1.12 diff --git a/mix.exs b/mix.exs index 730734b4..0ead28b5 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule ExAws.Mixfile do use Mix.Project @source_url "https://github.com/ex-aws/ex_aws" - @version "2.5.5" + @version "2.5.6" def project do [ diff --git a/priv/endpoints.exs b/priv/endpoints.exs index e6190641..c285a167 100644 --- a/priv/endpoints.exs +++ b/priv/endpoints.exs @@ -288,9 +288,12 @@ chime_voice_regions = [ "us-east-2" => %{ "hostname" => "pinpoint.us-east-2.amazonaws.com" }, - "us-west-2" => %{ + "us-west-1" => %{ "hostname" => "pinpoint.us-west-1.amazonaws.com" }, + "us-west-2" => %{ + "hostname" => "pinpoint.us-west-2.amazonaws.com" + }, "ap-south-1" => %{ "hostname" => "pinpoint.ap-south-1.amazonaws.com" },