Skip to content

Commit

Permalink
Merge pull request #1093 from podium/main
Browse files Browse the repository at this point in the history
Fix us-west-1 and us-west-2 for pinpoint endpoints
  • Loading branch information
bernardd authored Oct 31, 2024
2 parents 49af67a + 6537552 commit 7e49c44
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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
[
Expand Down
5 changes: 4 additions & 1 deletion priv/endpoints.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down

0 comments on commit 7e49c44

Please sign in to comment.