Skip to content

Commit

Permalink
Release v0.4.11
Browse files Browse the repository at this point in the history
  • Loading branch information
wojtekmach committed Feb 19, 2024
1 parent 18d9379 commit 908ac78
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v0.4.11 (2024-02-19)

* [`Req.Test.json/2`]: Don't crash compilation when Plug is not available

## v0.4.10 (2024-02-19)

* [`run_finch`]: Default to `connect_options: [protocols: [:http1, :http2]]`.
Expand Down Expand Up @@ -830,5 +834,7 @@ See "Adapter" section in `Req.Request` module documentation for more information
[`Req.Response.delete_header/2`]: https://hexdocs.pm/req/Req.Response.html#delete_header/2
[`Req.Response.update_private/4`]: https://hexdocs.pm/req/Req.Response.html#update_private/4

[`Req.Test.json/2`]: https://hexdocs.pm/req/Req.Test.html#json/2

[`Req.Steps`]: https://hexdocs.pm/req/Req.Steps.html
[`Collectable`]: https://hexdocs.pm/elixir/Collectable.html
6 changes: 4 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Req.MixProject do
use Mix.Project

@version "0.4.10"
@version "0.4.11"
@source_url "https://github.com/wojtekmach/req"

def project do
Expand All @@ -25,8 +25,10 @@ defmodule Req.MixProject do
exclude: [
NimbleCSV.RFC4180,
Plug.Test,
Plug.Conn,
:brotli,
:ezstd
:ezstd,
:aws_signature
]
]
]
Expand Down
4 changes: 2 additions & 2 deletions test/req/steps_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ defmodule Req.StepsTest do
AWS4-HMAC-SHA256 \
Credential=foo/20240101/us-east-1/s3/aws4_request,\
SignedHeaders=accept-encoding;host;user-agent;x-amz-content-sha256;x-amz-date,\
Signature=63ed3a83e644851643fc95f7633e4f0c40fcaf4f601b5550a7a1e4baee396d4e\
Signature=a7a27655988cf90a6d834c6544e8a5e1ef00308a64692f0e656167165d42ec4d\
"""
]

Expand Down Expand Up @@ -411,7 +411,7 @@ defmodule Req.StepsTest do
AWS4-HMAC-SHA256 \
Credential=foo/20240101/us-east-1/s3/aws4_request,\
SignedHeaders=accept-encoding;content-length;host;user-agent;x-amz-content-sha256;x-amz-date,\
Signature=60f249fe10f78886863fc610a0c836c749a322103a91088cca62ad418e33cbe4\
Signature=6d8d9e360bf82d48064ee93cc628133da813bfc9b587fe52f8792c2335b29312\
"""
]

Expand Down

0 comments on commit 908ac78

Please sign in to comment.