Current section

57 Versions

Jump to

Compare versions

4 files changed
+9 additions
-2 deletions
  @@ -1,5 +1,9 @@
1 1 # CHANGELOG
2 2
3 + ## v0.6.3 (2026-07-16)
4 +
5 + * Fix bug when `Req.Test.__fetch_plug__/1` called after mode set to shared
6 +
3 7 ## v0.6.2 (2026-06-19)
4 8
5 9 * Use finch ~> 0.21.
  @@ -2,7 +2,7 @@
2 2 [{<<"Changelog">>,<<"https://hexdocs.pm/req/changelog.html">>},
3 3 {<<"GitHub">>,<<"https://github.com/wojtekmach/req">>}]}.
4 4 {<<"name">>,<<"req">>}.
5 - {<<"version">>,<<"0.6.2">>}.
5 + {<<"version">>,<<"0.6.3">>}.
6 6 {<<"description">>,<<"Req is a batteries-included HTTP client for Elixir.">>}.
7 7 {<<"elixir">>,<<"~> 1.14">>}.
8 8 {<<"files">>,
  @@ -478,6 +478,9 @@ defmodule Req.Test do
478 478
479 479 %{expectations: []} = map ->
480 480 {{:error, :no_expectations_and_no_stub}, map}
481 +
482 + nil ->
483 + {{:error, :no_expectations_and_no_stub}, %{}}
481 484 end)
482 485
483 486 case result do
  @@ -1,7 +1,7 @@
1 1 defmodule Req.MixProject do
2 2 use Mix.Project
3 3
4 - @version "0.6.2"
4 + @version "0.6.3"
5 5 @source_url "https://github.com/wojtekmach/req"
6 6
7 7 def project do