Skip to content

Commit a93533f

Browse files
authored
Merge pull request #151 from datum-cloud/feat/connectorclass-iroh-quic-tunnel
feat: default Connector connectorClassName to iroh-quic-tunnel
2 parents 9a3196b + 13deb0b commit a93533f

3 files changed

Lines changed: 24 additions & 20 deletions

File tree

Cargo.lock

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

lib/src/tunnels.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ use gateway_api::apis::standard::httproutes::{
3434
};
3535

3636
const DEFAULT_PCP_NAMESPACE: &str = "default";
37-
const DEFAULT_CONNECTOR_CLASS_NAME: &str = "datum-connect";
37+
const DEFAULT_CONNECTOR_CLASS_NAME: &str = "iroh-quic-tunnel";
3838
const CONNECTOR_SELECTOR_FIELD: &str = "status.connectionDetails.publicKey.id";
3939
const ADVERTISEMENT_CONNECTOR_FIELD: &str = "spec.connectorRef.name";
4040
const DISPLAY_NAME_ANNOTATION: &str = "app.kubernetes.io/name";

ui/Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,11 @@ data-encoding.workspace = true
3939
uuid.workspace = true
4040
n0-error.workspace = true
4141
rustls.workspace = true
42-
dioxus-primitives = { git = "https://github.com/DioxusLabs/components", version = "0.0.1", default-features = false }
42+
# Pinned to a known-good rev: the upstream repo is a moving 0.0.1 git dep
43+
# with no published versioning, and bundle CI runs `cargo generate-lockfile`,
44+
# so without a rev pin every CI run picks up upstream HEAD and breaks
45+
# whenever the Select/Props API drifts. Bump deliberately, never via auto-resolve.
46+
dioxus-primitives = { git = "https://github.com/DioxusLabs/components", rev = "ffbc750181ea2195e20736ae3ad0c24ad9684c41", version = "0.0.1", default-features = false }
4347
sentry.workspace = true
4448

4549
[features]

0 commit comments

Comments
 (0)