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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.1](https://github.com/TrueLayer/ginepro/compare/ginepro-v0.9.1...ginepro-v0.9.0) - 2026-05-04

### Other
- Update to **hickory-resolver** 0.26 ([#72](https://github.com/TrueLayer/ginepro/pull/72))

## [0.9.0](https://github.com/TrueLayer/ginepro/compare/ginepro-v0.8.2...ginepro-v0.8.1) - 2025-07-24

### Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions ginepro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ginepro"
version = "0.9.0"
version = "0.9.1"
edition = "2021"
description = "A client-side gRPC channel implementation for tonic"
repository = "https://github.com/TrueLayer/ginepro"
Expand All @@ -18,7 +18,7 @@ tokio = { version = "1", features = ["full"] }
tonic = { version = "0.13", features = ["tls-ring"] }
tower = { version = "0.5", default-features = false, features = ["discover"] }
tracing = "0.1"
hickory-resolver = { version = "0.25", features = ["tokio"] }
hickory-resolver = { version = "0.26", features = ["tokio"] }

[dev-dependencies]
proptest = "1"
Expand Down
2 changes: 1 addition & 1 deletion ginepro/src/dns_resolver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ impl DnsResolver {
opts.cache_size = 0;

Ok(Self {
dns: builder.build(),
dns: builder.build()?,
})
}
}
Expand Down
2 changes: 1 addition & 1 deletion ginepro/src/lookup_service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use crate::ServiceDefinition;
#[async_trait::async_trait]
pub trait LookupService {
/// Return a list of unique [`SocketAddr`] associated with the provided
/// [`ServiceDefinition`](crate::ServiceDefinition) containing the `hostname` `port` of the service.
/// [`ServiceDefinition`] containing the `hostname` `port` of the service.
/// If no ip addresses were resolved, an empty HashSet is returned.
async fn resolve_service_endpoints(
&self,
Expand Down
2 changes: 1 addition & 1 deletion ginepro/src/service_definition.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ impl ServiceDefinition {
pub fn from_parts<T: ToString>(hostname: T, port: u16) -> Result<Self, anyhow::Error> {
let hostname = hostname.to_string();

hickory_resolver::Name::from_ascii(&hostname)
hickory_resolver::proto::rr::Name::from_ascii(&hostname)
.map_err(anyhow::Error::from)
.context("invalid 'hostname'")?;

Expand Down
Loading