File tree Expand file tree Collapse file tree 9 files changed +19
-19
lines changed Expand file tree Collapse file tree 9 files changed +19
-19
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " k8s-gateway-api" ,
3- "image" : " ghcr.io/linkerd/dev:v39 " ,
3+ "image" : " ghcr.io/linkerd/dev:v42 " ,
44 "extensions" : [
55 " DavidAnson.vscode-markdownlint" ,
66 " kokakiwi.vscode-just" ,
2626 "type" : " bind"
2727 }
2828 ]
29- }
29+ }
Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ jobs:
1515 timeout-minutes : 10
1616 steps :
1717 - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
18- - uses : linkerd/dev/actions/setup-tools@v39
18+ - uses : linkerd/dev/actions/setup-tools@v42
1919 - run : just-dev lint-actions
2020
2121 devcontainer-versions :
2222 runs-on : ubuntu-latest
2323 steps :
2424 - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
25- - uses : linkerd/dev/actions/setup-tools@v39
25+ - uses : linkerd/dev/actions/setup-tools@v42
2626 - run : just-dev check-action-images
Original file line number Diff line number Diff line change 3333 K8S_CHANNEL : ${{ matrix.k8s }}
3434 steps :
3535 # Install just* tooling
36- - uses : linkerd/dev/actions/setup-tools@v39
36+ - uses : linkerd/dev/actions/setup-tools@v42
3737 # Configure the default Rust toolchain
38- - uses : linkerd/dev/actions/setup-rust@v39
38+ - uses : linkerd/dev/actions/setup-rust@v42
3939 # Setup a cluster
4040 - run : curl --proto =https --tlsv1.3 -fLsSv "https://raw.githubusercontent.com/k3d-io/k3d/${K3D_VERSION}/install.sh" | bash
4141 - run : k3d --version
Original file line number Diff line number Diff line change 1919 lint :
2020 timeout-minutes : 20
2121 runs-on : ubuntu-latest
22- container : docker://ghcr.io/linkerd/dev:v39 -rust
22+ container : docker://ghcr.io/linkerd/dev:v42 -rust
2323 steps :
2424 - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
2525 - run : just fetch
Original file line number Diff line number Diff line change 4141 test :
4242 timeout-minutes : 5
4343 runs-on : ubuntu-latest
44- container : docker://ghcr.io/linkerd/dev:v39 -rust
44+ container : docker://ghcr.io/linkerd/dev:v42 -rust
4545 steps :
4646 - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
4747 - run : just fetch
5555 contents : write
5656 timeout-minutes : 5
5757 runs-on : ubuntu-latest
58- container : docker://ghcr.io/linkerd/dev:v39 -rust
58+ container : docker://ghcr.io/linkerd/dev:v42 -rust
5959 steps :
6060 - if : needs.meta.outputs.publish
6161 uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
8080 needs : [meta, release]
8181 timeout-minutes : 10
8282 runs-on : ubuntu-latest
83- container : docker://ghcr.io/linkerd/dev:v39 -rust
83+ container : docker://ghcr.io/linkerd/dev:v42 -rust
8484 steps :
8585 - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
8686 - if : needs.meta.outputs.publish == ''
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ members = [".", "integration"]
33
44[package ]
55name = " k8s-gateway-api"
6- version = " 0.13 .0"
6+ version = " 0.14 .0"
77edition = " 2021"
88license = " Apache-2.0"
99repository = " https://github.com/linkerd/k8s-gateway-api-rs"
10- rust-version = " 1.60 "
10+ rust-version = " 1.65 "
1111keywords = [" kubernetes" , " gateway" ]
1212description = " Rust bindings for the Kubenetes Gateway API"
1313
Original file line number Diff line number Diff line change 22
33(Unofficial) Rust bindings for the [ Kubernetes Gateway API] [ site ] .
44
5- Based on [ gateway-api-v0.5.0-rc1 ] .
5+ Based on [ gateway-api-v1.0.0 ] .
66
77[ ![ Crates.io] [ crate-badge ]] [ crate-url ]
88[ ![ Documentation] [ docs-badge ]] [ docs-url ]
@@ -20,7 +20,7 @@ the *v1alpha2* types when the `experimental` feature is enabled.
2020* Express validation constraints
2121* Rustify/Linkify documentation
2222
23- [ gateway-api-v0.5.0-rc1 ] : https://github.com/kubernetes-sigs/gateway-api/tree/4f86f0bd65173b04dadb558f63fbbd53330736d2
23+ [ gateway-api-v1.0.0 ] : https://github.com/kubernetes-sigs/gateway-api/tree/a0684982eddeb0360e215e0de322c3210ac49bb9
2424[ site ] : https://gateway-api.sigs.k8s.io/
2525[ crate-badge ] : https://img.shields.io/crates/v/k8s-gateway-api.svg
2626[ crate-url ] : https://crates.io/crates/k8s-gateway-api
Original file line number Diff line number Diff line change 2323 cargo-deny --all-features check
2424
2525docs :
26- just-cargo doc --frozen --no-deps --features=k8s-openapi/ v1_2 5
26+ just-cargo doc --frozen --no-deps --features=k8s-openapi/ latest
2727
2828test-build * flags :
2929 just-cargo test-build --frozen {{ flags }}
@@ -32,7 +32,7 @@ test *flags:
3232 just-cargo test --frozen {{ flags }}
3333
3434publish * flags :
35- cargo publish --features=k8s-openapi/ v1_2 5 {{ flags }}
35+ cargo publish --features=k8s-openapi/ latest {{ flags }}
3636
3737action-lint :
3838 just-dev lint-actions
Original file line number Diff line number Diff line change @@ -609,9 +609,9 @@ pub enum HttpPathModifier {
609609 /// /foo/bar | /foo/ | /xyz/ | /xyz/bar
610610 /// /foo | /foo | /xyz | /xyz
611611 /// /foo/ | /foo | /xyz | /xyz/
612- /// /foo/bar | /foo | <empty string> | /bar
613- /// /foo/ | /foo | <empty string> | /
614- /// /foo | /foo | <empty string> | /
612+ /// /foo/bar | /foo | _empty string_ | /bar
613+ /// /foo/ | /foo | _empty string_ | /
614+ /// /foo | /foo | _empty string_ | /
615615 /// /foo/ | /foo | / | /
616616 /// /foo | /foo | / | /
617617 #[ serde( rename_all = "camelCase" ) ]
You can’t perform that action at this time.
0 commit comments