Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
443 changes: 377 additions & 66 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["gateway-api", "gateway-api/examples", "xtask"]
members = ["gateway-api", "gateway-api/examples", "xtask", "type-reducer"]
resolver = "2"

[workspace.package]
Expand Down
16 changes: 16 additions & 0 deletions gateway-api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

## 0.2.0

>[!IMPORTANT]
Breaking change

### Changed
The structure of APIs has changed to promote the re-use of types in the generated code. The APIs are still generated with Kopium in the first step, but there is a second stage where additional task is executed to reduce and rename the Kopium-generated types.
While with this approach we can significantly reduce the surface of exposed APIs, it is also a breaking change.
See [issue](https://github.com/kube-rs/gateway-api-rs/issues/38) for more context.

## 0.1.0

### Changed
Initial release. All types are generated with Kopium.
10 changes: 9 additions & 1 deletion gateway-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,13 @@ uuid.workspace = true
features = ["k8s-openapi/v1_32"]

[features]
default = []
default = ["standard", "experimental"]
standard = []
experimental = []


[lints.clippy]
derivable_impls = "allow"
doc_lazy_continuation = "allow"
tabs_in_doc_comments = "allow"
empty_line_after_doc_comments = "allow"
Loading
Loading