Skip to content

Commit a17d1ce

Browse files
chore(deps): bump ulid from 2.0.1 to 3.0.0 (#1303)
Co-authored-by: Dotan Simha <dotansimha@gmail.com> Signed-off-by: dependabot[bot] <support@github.com>
1 parent bcb5531 commit a17d1ce

5 files changed

Lines changed: 19 additions & 19 deletions

File tree

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ axum = "0.8.9"
9191
recloser = "1.3.1"
9292
notify = "8.2.0"
9393
ipnet = "2.12.0"
94-
ulid = "2.0.1"
94+
ulid = "3.0.0"
9595

9696
# Telemetry
9797
opentelemetry = "0.31.0"

bin/router/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ percent-encoding = "2.3.2"
8080
matchit = "0.9.2"
8181

8282
moka = { workspace = true }
83-
ulid = "2.0.1"
83+
ulid = { workspace = true }
8484
tokio-util = { workspace = true }
8585
cookie = "0.18.1"
8686
arc-swap = { workspace = true }

bin/router/src/pipeline/active_subscriptions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ impl ActiveSubscriptions {
4545
guard: Option<SharedRouterResponseGuard>,
4646
) -> (ProducerHandle, broadcast::Receiver<SubscriptionEvent>) {
4747
let (sender, receiver) = broadcast::channel(self.broadcast_capacity);
48-
let id = Ulid::gen().to_string();
48+
let id = Ulid::generate().to_string();
4949
self.map.insert(id.clone(), sender.clone());
5050

5151
let handle = ProducerHandle {

lib/executor/src/executors/http_callback.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,8 @@ impl SubgraphExecutor for HttpCallbackSubgraphExecutor {
172172
> {
173173
let custom_scalar_paths: Option<CustomScalarPaths> =
174174
execution_request.custom_scalar_paths.cloned();
175-
let subscription_id = Ulid::gen().to_string();
176-
let verifier = Ulid::gen().to_string();
175+
let subscription_id = Ulid::generate().to_string();
176+
let verifier = Ulid::generate().to_string();
177177

178178
let body = self.build_request_body(&mut execution_request, &subscription_id, &verifier)?;
179179

0 commit comments

Comments
 (0)