Skip to content

Commit

Permalink
Bump the janus group with 3 updates (#1129)
Browse files Browse the repository at this point in the history
* Bump the janus group with 3 updates

Bumps the janus group with 3 updates: [janus_messages](https://github.com/divviup/janus), [janus_client](https://github.com/divviup/janus) and [janus_collector](https://github.com/divviup/janus).

Updates `janus_messages` from 0.7.19 to 0.7.20
- [Release notes](https://github.com/divviup/janus/releases)
- [Commits](divviup/janus@0.7.19...0.7.20)

Updates `janus_client` from 0.7.19 to 0.7.20
- [Release notes](https://github.com/divviup/janus/releases)
- [Commits](divviup/janus@0.7.19...0.7.20)

Updates `janus_collector` from 0.7.19 to 0.7.20
- [Release notes](https://github.com/divviup/janus/releases)
- [Commits](divviup/janus@0.7.19...0.7.20)

---
updated-dependencies:
- dependency-name: janus_messages
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: janus
- dependency-name: janus_client
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: janus
- dependency-name: janus_collector
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: janus
...

Signed-off-by: dependabot[bot] <support@github.com>

* install TLS crypto provider in test

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Tim Geoghegan <timg@divviup.org>
  • Loading branch information
dependabot[bot] and tgeoghegan committed Jun 24, 2024
1 parent 8ecae20 commit 44f8549
Show file tree
Hide file tree
Showing 5 changed files with 84 additions and 38 deletions.
107 changes: 74 additions & 33 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ email_address = "0.2.4"
fastrand = "2.1.0"
futures-lite = "2.3.0"
git-version = "0.3.9"
janus_messages = "0.7.19"
janus_messages = "0.7.20"
log = "0.4.21"
opentelemetry = { version = "0.23.0", features = ["metrics", "logs"] }
opentelemetry-prometheus = { version = "0.16.0", features = [
Expand Down
6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ colored = "2.1.0"
const_format = "0.2.32"
hpke-dispatch = { version = "0.5.1", features = ["serde"], optional = true }
rand = { version = "0.8.5", optional = true }
janus_client = "0.7.19"
janus_collector = "0.7.19"
janus_client = "0.7.20"
janus_collector = "0.7.20"
url = "2.5.2"
janus_messages = "0.7.19"
janus_messages = "0.7.20"
prio = "0.16.3"
tokio = { version = "1.37.0" }
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ uuid = { version = "1.9.0", features = ["v4", "fast-rng", "serde"] }
time = { version = "0.3.36", features = ["serde", "serde-well-known"] }
log = "0.4.21"
pad-adapter = "0.1.1"
janus_messages = "0.7.19"
janus_messages = "0.7.20"

[dev-dependencies]
divviup-api.workspace = true
Expand Down
5 changes: 5 additions & 0 deletions tests/integration/tls_smoke_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ use trillium_tokio::ClientConfig;

#[tokio::test]
async fn https_connection() {
// Choose aws-lc-rs as the default rustls crypto provider. This is what's currently enabled by
// the default Cargo feature. Specifying a default provider here prevents runtime errors if
// another dependency also enables the ring feature.
let _ = trillium_rustls::rustls::crypto::aws_lc_rs::default_provider().install_default();

let self_signed = generate_simple_self_signed(["localhost".into()]).unwrap();

let stopper = Stopper::new();
Expand Down

0 comments on commit 44f8549

Please sign in to comment.