Skip to content

Commit 75a76f6

Browse files
authored
v0.14.0 (#82)
Updates dev to v42.
1 parent a4be132 commit 75a76f6

File tree

9 files changed

+19
-19
lines changed

9 files changed

+19
-19
lines changed

.devcontainer/devcontainer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",
@@ -26,4 +26,4 @@
2626
"type": "bind"
2727
}
2828
]
29-
}
29+
}

.github/workflows/actions.yml

+2-2
Original file line numberDiff line numberDiff 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

.github/workflows/integration.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
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

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
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

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
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
@@ -55,7 +55,7 @@ jobs:
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
@@ -80,7 +80,7 @@ jobs:
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 == ''

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ members = [".", "integration"]
33

44
[package]
55
name = "k8s-gateway-api"
6-
version = "0.13.0"
6+
version = "0.14.0"
77
edition = "2021"
88
license = "Apache-2.0"
99
repository = "https://github.com/linkerd/k8s-gateway-api-rs"
10-
rust-version = "1.60"
10+
rust-version = "1.65"
1111
keywords = ["kubernetes", "gateway"]
1212
description = "Rust bindings for the Kubenetes Gateway API"
1313

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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

justfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ deny:
2323
cargo-deny --all-features check
2424

2525
docs:
26-
just-cargo doc --frozen --no-deps --features=k8s-openapi/v1_25
26+
just-cargo doc --frozen --no-deps --features=k8s-openapi/latest
2727

2828
test-build *flags:
2929
just-cargo test-build --frozen {{ flags }}
@@ -32,7 +32,7 @@ test *flags:
3232
just-cargo test --frozen {{ flags }}
3333

3434
publish *flags:
35-
cargo publish --features=k8s-openapi/v1_25 {{ flags }}
35+
cargo publish --features=k8s-openapi/latest {{ flags }}
3636

3737
action-lint:
3838
just-dev lint-actions

src/httproute.rs

+3-3
Original file line numberDiff line numberDiff 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")]

0 commit comments

Comments
 (0)