Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## Unreleased
## v0.5.0 (2026-06-22)

### Enhancements

Expand All @@ -9,6 +9,7 @@
### Internal

- Drop the obsolete `start_supervised({GRPC.Client.Supervisor, []})` calls from the test support — `grpc` 1.0 starts the client supervisor automatically via its application, and the module is no longer a valid child spec. Add `gun` as a test-only dependency since the HTTP client adapters are now optional in `grpc` 1.0.
- updated to protobuf 0.17.0 and regenerated pb files

## v0.4.0 (2026-05-05)

Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule GrpcReflection.MixProject do
use Mix.Project

@version "0.4.0"
@version "0.5.0"
@source_url "https://github.com/elixir-grpc/grpc-reflection"
@description "gRPC reflection server for Elixir"

Expand Down Expand Up @@ -65,7 +65,7 @@ defmodule GrpcReflection.MixProject do
# grpc 1.0 made the HTTP client adapters optional; the test suite connects
# real stubs to the in-process server, so it needs an adapter (Gun).
{:gun, "~> 2.0", only: :test},
{:protobuf, "~> 0.15"}
{:protobuf, "~> 0.17"}
]
end

Expand Down
Loading