Skip to content

Commit

Permalink
Prep v0.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffutter committed Jan 30, 2023
1 parent b2ab1d7 commit 554a6e4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
27 changes: 25 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,32 @@
# Changelog

## 0.8.0 (Unreleased)
## 0.8.0 (2023-01-30)

## 0.7.0 (2022-08-10)
- Updates to the recent upstream `elixir-grpc` that includes Mint support [`f5f5fab4`](https://github.com/elixir-grpc/grpc/commit/f5f5fab412dcf37826e583980a61190e865e96be)

### Added `mint` client adapter

Now, when spawning your connections it is possible for developers to choose
which adapter to use.

```elixir
GRPC.Stub.connect("localhost:5001", adapter: GRPC.Client.Adapters.Mint)
# or (Gun is the current default adapter)
GRPC.Stub.connect("localhost:5001")
# the above is has the same effect as:
GRPC.Stub.connect("localhost:5001", adapter: GRPC.Client.Adapters.Gun)
```

### Why choose `mint` over `gun`?
Both clients will solve the same problems and recent load tests showed almost no
difference of performance between them.

The reason why the additional `Mint` adapter is introduced, is because we are
attempting to integrate with LaunchDarkly and their erlang client is
incompatible with the current version of Gun which `elixir-grpc` is using.
Using an adapter based on `Mint` resolves the `gun` version conflict.

## 0.7.0 (2022-08-10)
- Updates to the recent upstream release of `elixir-grpc` [`v0.5.0`](https://github.com/elixir-grpc/grpc/releases/tag/v0.5.0)

### Breaking Changes
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule GRPC.Mixfile do
use Mix.Project

@version "0.8.0-dev"
@version "0.8.0"

def project do
[
Expand Down

0 comments on commit 554a6e4

Please sign in to comment.