Releases: Arnavion/k8s-openapi
v0.8.0
-
BREAKING CHANGE: Support for v1.8, v1.9 and v1.10 API servers has been dropped. These versions became hard to test with
kubectlandkindare are not supported by major cloud providers. -
BREAKING CHANGE:
k8s_openapi::apiextensions_apiserver::pkg::apis::apiextensions::v1::JSONSchemaPropsOrArray,JSONSchemaPropsOrBoolandJSONSchemaPropsOrStringArraytypes now wrap thev1::JSONSchemaPropstype. Previously they incorrectly wrapped thev1beta1::JSONSchemaPropstype. -
BREAKING CHANGE: Turning the
apifeature off now also disables thek8s_openapi::{http,percent_encoding,url}re-exports, thek8s_openapi::percent_encoding2module, thek8s_openapi::{RequestError,ResponseError,ResponseBody}types, thek8s_openapi::Responsetrait, and thek8s_openapi::{Create,Delete,List,Patch,Replace,Watch}{Optional,Response}types. All of these were only used by the API functions which had been disabled by turning theapifeature off. -
BUGFIX:
k8s_openapi::apimachinery::pkg::apis::meta::v1::MicroTimeandTimeare now serialized with six and zero decimals in their seconds respectively, to match the API server's expectations. Previously they would be serialized with a variable number of decimals up to nine. -
FEATURE: Added support for Kubernetes 1.18 under the
v1_18feature. -
FEATURE:
k8s_openapi::ByteStringnow implsPartialOrdandOrd. -
FEATURE:
k8s_openapi::apimachinery::pkg::apis::meta::v1::MicroTimeandTimenow implEq,PartialOrdandOrd. -
FEATURE: If your crate has a dependency on
k8s-openapi, you can now use a build script to detect which version feature has been enabled on the crate. This is a more verbose but also more flexible alternative to using thek8s_if_*version detection macros in your crate code. -
FEATURE:
k8s-openapi-derive's#[derive(CustomResourceDefinition)]now supports emitting a subresources field in the generated CR type.
Corresponding Kubernetes API server versions:
- v1.11.10
- v1.12.10
- v1.13.12
- v1.14.10
- v1.15.11
- v1.16.9
- v1.17.5
- v1.18.2
v0.7.1
v0.7.0
-
BREAKING CHANGE: The
httpandbytesdependencies have been updated. They now match thetokio0.2 ecosystem. -
BREAKING CHANGE: The
Resourcetrait'sapi_version,group,kindandversionmethods are nowAPI_VERSION,GROUP,KINDandVERSIONassociated consts of&'static strtype. -
BREAKING CHANGE: The
*Listresource types likePodListandNodeListhave now been combined into a single generick8s_openapi::List<T>type. The API response types that contained these list types have been updated accordingly. -
BREAKING CHANGE: The optional parameters of create and replace operations are now emitted as a single common type -
k8s_openapi::CreateOptionalandk8s_openapi::ReplaceOptionalrespectively. -
BREAKING CHANGE: The response types of create, delete, delete-collection, list, patch, replace and watch operations have now been combined into generic
CreateResponse<T>,DeleteResponse<T>,DeleteResponse<List<T>>,ListResponse<T>,PatchResponse<T>,ReplaceResponse<T>andWatchResponse<T>types respectively. -
BUGFIX: v1.16's
k8s_openapi::apiextensions_apiserver::pkg::apis::apiextensions::v1::JSONSchemaPropsOrArray,JSONSchemaPropsOrBoolandJSONSchemaPropsOrStringArraytypes are now generated correctly, just like theirv1betacousins. -
FEATURE: Added support for Kubernetes 1.17 under the
v1_17feature. -
FEATURE: A new
k8s_openapi::ListableResourcetrait has been added to connect a resource type likePodto its corresponding list type likePodList. Currently the trait only has one member - an associated constLIST_KINDthat is the same as the list type'sResource::KIND.
Here are some demonstrative examples of the API changes:
Pod::delete_namespaced_podused to returnDeleteNamespacedPodResponse. It now returnsDeleteResponse<Self>.Pod::delete_collection_namespaced_podused to returnDeleteCollectionNamespacedPodResponse. It now returnsDeleteResponse<List<Self>>.Pod::list_namespaced_podused to returnListNamespacedPodResponsewhich had anOk(PodList)variant. It now returnsListResponse<Self>, which has anOk(List<Self>)variant.
Combining these response types has reduced the compile time and memory usage of the Rust compiler when compiling this crate. Notably, the compiler's memory usage now peaks at ~3 GiB from its earlier ~5 GiB, making it easier to use with environments limited to 4 GiB RAM, like CI VMs and Raspberry Pi's.
Corresponding Kubernetes API server versions:
- v1.8.15
- v1.9.11
- v1.10.13
- v1.11.10
- v1.12.10
- v1.13.12
- v1.14.10
- v1.15.9
- v1.16.6
- v1.17.2
v0.6.0
-
BREAKING CHANGE: Updated
urldependency, and thus the re-export, to v2. The re-export is only used internally by code-generated API functions and is not part of any public signatures, so it is only a breaking change for you if you were also using it for your own code. -
FEATURE: Added support for Kubernetes 1.16 under the
v1_16feature. -
FEATURE: The
k8s-openapi-derivecrate is now out of beta.
Corresponding Kubernetes API server versions:
- v1.8.15
- v1.9.11
- v1.10.13
- v1.11.10
- v1.12.10
- v1.13.12
- v1.14.8
- v1.15.5
- v1.16.2
v0.5.1
- FEATURE: The
k8s-openapicrate now has a default-enabled feature namedapi. If the feature is disabled, the library will only contain the resource types likeapi::core::v1::Podand not the associated operation functions likeapi::core::v1::Pod::read_namespaced_pod. The correspondingResponseandOptionaltypes will also not be accessible. If your crate does not need the operation functions, you can disable this feature to save on compile time and resources.
Corresponding Kubernetes API server versions:
- v1.8.15
- v1.9.11
- v1.10.13
- v1.11.10
- v1.12.10
- v1.13.10
- v1.14.6
- v1.15.3
v0.5.0
-
BREAKING CHANGE: The optional parameters of delete, list, patch and watch operations are now emitted as a single common type -
k8s_openapi::DeleteOptional,k8s_openapi::ListOptional,k8s_openapi::PatchOptionalandk8s_openapi::WatchOptionalrespectively. For example, where an operation likek8s_openapi::api::core::v1::Pod::list_namespaced_podused to have anoptional: k8s_openapi::api::core::v1::ListNamespacedPodOptional<'_>, it now has anoptional: k8s_openapi::ListOptional<'_>parameter instead.This is because these per-operation optional structs all had the same members.
Furthermore, delete-collection operations like
Pod::delete_collection_namespaced_podnow take two optional parameters, one of typek8s_openapi::ListOptionalthat determines which items will be selected for deletion, and the other of typek8s_openapi::DeleteOptionalwhich determines how the selected items will be deleted. -
BREAKING CHANGE: Most response types had an empty
Unauthorizedvariant, and did not have other useful variants likeForbiddenorConflict. To handle those variants, you would have had to match on the emptyOthervariant and manually parse the response body into a JSON value.Now these empty variants like
Unauthorizedare no longer emitted, and the previously emptyOthervariant is now emitted asOther(Result<Option<serde_json::Value>, Error>). If the response body is empty, the response will be parsed asOther(Ok(None)). Otherwise, it will be parsed as JSON intoOther(Ok(Some(response)))orOther(Err(err)). -
BREAKING CHANGE: The
apimachinery::pkg::apis::meta::v1::Patchtype used to be incorrectly emitted as an empty struct. It is now emitted as an enum with variants corresponding to the three types of patches supported by Kubernetes -Json(Vec<serde_json::Value>),Merge(serde_json::Value)andStrategicMerge(serde_json::Value). -
BREAKING CHANGE: The
apimachinery::pkg::apis::meta::v1::WatchEventtype used to be emitted as a struct containing a weakly-typedobjectand stringly-typedtype_fields. It is now generic on the type of object and is emitted asenum WatchEvent<T>withAdded(T),Deleted(T),Modified(T),ErrorStatus(metav1::Status)andErrorOther(RawExtension)members. For v1.15 and above, the enum also has aBookmark(T)variant. -
BREAKING CHANGE: The
apiextensions_apiserver::pkg::apis::apiextensions::v1beta1::CustomResourceSubresourceStatustype used to be incorrectly emitted as an empty struct. It is now emitted as a newtype aroundserde_json::Value -
BREAKING CHANGE: The connect and exec operations on
Node,PodandServiceno longer have a corresponding response type. The response types were bogus, and these operations are not HTTP requests but SPDY or WebSocket requests anyway. The functions still returnhttp::Request, and you will need to decompose these into types that your SPDY / WebSocket crate uses. -
BUGFIX: Operation parameters that were used as path components of the request URL (such as
namespace) are now correctly encoded instead of being used verbatim. -
FEATURE: The
http::Requestreturned by API operation functions now has theContent-Typeheader set if the request has a body. Particularly for patch operations, this sets the correctContent-Typeheader corresponding to the type of patch used. -
FEATURE: A new crate
k8s-openapi-deriveis now released. This crate contains a custom derive that can be used on a CRD spec type to generate the corresponding CRD type, itsk8s_openapi::Resourceandk8s_openapi::Metadataimpls, and CRUD operations. See that crate's docs for more details.
Corresponding Kubernetes API server versions:
- v1.8.15
- v1.9.11
- v1.10.13
- v1.11.10
- v1.12.10
- v1.13.8
- v1.14.4
- v1.15.1
v0.4.0
-
A new
Resourcetrait is implemented on all resource types to get their API version, group, kind and version properties. See docs for details.Since the API version and kind of resource types is statically associated with their Rust types, the
api_versionandkindfields have been removed from these types. The fields are serialized and deserialized automatically without needing to be set. -
A new
Metadatatrait is implemented on all resource types that have metadata (ObjectMetaorListMeta), and can be used to get access to this metadata. -
Fixed string responses like
ReadNamespacedPodLogResponseto returnResponseError::NeedMoreDatawhen given an empty slice, instead of returning an empty string. -
Fixed string responses like
ReadNamespacedPodLogResponseto return as much data as possible before an invalid utf-8 sequence in the input slice. In the previous release, the parser would returnErreven if there was valid utf-8 before the first invalid byte. It now only returnsErrif the first byte of the slice is invalid. -
A new
ResponseBody::advancefunction can be used to remove bytes from the front of theResponseBody's internal buffer. This is useful in cases like reading a pod's logs, where the parser indicates that some bytes in the beginning of the slice are invalid, and you want to skip over them and continue parsing.
There are many breaking changes in this release, as part of modifying the generated code to be easier and safer to use:
-
The crate no longer supports enabling multiple version features ('v1_8', 'v1_9', etc). One and only one version feature can be enabled.
As before, it's recommended that only application crates enable features of this crate in their
Cargo.toml, based on the version of Kubernetes they want to run against. Library crates should not enable specific features. If library crates need to emit different code based on the feature that gets enabled, they should continue to use the version detection macros (k8s_if_ge_1_8! { }, etc) around such code.The build script of this crate will panic and fail the build if it detects zero or more than one feature has been enabled.
-
In the previous release, every enabled version was represented by a top-level module, eg enabling the
v1_8feature granted access to thek8s_openapi::v1_8module and thek8s_openapi::v1_8::api::core::v1::Podtype. Since only one feature can be enabled now, the contents of this corresponding module are re-exported from the crate root, and the module itself is hidden. Thus enabling thev1_8feature allows access to v1.8'sPodtype through thek8s_openapi::api::core::v1::Podpath. This means crates that support multiple versions no longer need to write code like:k8s_if_1_8! { use k8s_openapi::v1_8::api::core::v1 as api; } k8s_if_1_9! { use k8s_openapi::v1_9::api::core::v1 as api; } k8s_if_1_10! { use k8s_openapi::v1_10::api::core::v1 as api; } ...
and can instead write:
use k8s_openapi::api::core::v1 as api;
-
Support for v1.7 API servers has been dropped. Its API structure was very different from the later versions (upstream rearranged the OpenAPI spec in v1.8). Continuing to support it would've required crates to continue using
k8s_if_1_7! { }andk8s_if_ge_1_7! { }. By dropping support for it, there is much less reason to use the version detection macros. -
API operation functions now have shorter names in many cases. For example
Pod::read_core_v1_namespaced_pod_logis now called justPod::read_namespaced_pod_log. The thing that is stripped from the name is a combination of the API kind ("core") and the API version ("v1"). In general, this means supporting different versions of API, like supportingDeployment::list_apps_v1beta2_namespaced_deploymenton v1.8 andDeployment::list_apps_v1_namespaced_deploymenton v1.9+ no longer requires version detection macros, since the function is now calledDeployment::list_namespaced_deploymentin both cases. -
API operations now take a single parameter for all optional parameters. This parameter implements
Defaultsuch that passing inDefault::default()for this parameter is equivalent to not passing any optional parameters.For example, the
api::core::v1::Pod::list_namespaced_podoperation has one required parameter for thenamespace, and the optional parameters are fields of theapi::core::v1::ListNamespacedPodOptionalstruct which is taken as the last parameter of the function. To set one or more of these optional parameters, use struct update syntax to set those parameters andDefaultthe rest. See the crate docs for details.This reduces the number of
Noneparameters that need to be passed to all operation functions. It also means that function that differed in the number of optional parameters between Kubernetes versions no longer need version detection macros if you don't want to set any of the optional parameters. For example,Job::create_namespaced_jobtakes one optional parameter in v1.11 and three in v1.12. With this release, it can be called asJob::create_namespaced_job("name", &spec, Default::default())regardless of the version. -
ResponseBodyis now generic on the response type at the type level. Previously only itsappend_slice_and_parsefunction was generic on the response type. -
ResponseBody::append_slice_and_parsehas been removed. This function gave the wrong impression that appending a slice would allow zero or one responses to be parsed from its buffer. In fact, more than one response can be parsed, say when parsing a sequence ofWatchEvents and the appended slice contains more than oneWatchEvent. Instead, there are now separateResponseBody::append_sliceandResponseBody::parsefunctions. You should callResponseBody::parsein a loop as long as it returnsOk(parsed_response). -
API operation functions now return two values in a tuple. The first value is the same
http::Request<Vec<u8>>that they used to return in the previous release - this is the HTTP request with the path, query string and request body filled out according to the API operation. The second value is a function with the signaturefn(http::StatusCode) -> ResponseBody<ResponseType>, whereResponseTypeis the type that should be used to parse the response. For example,Pod::list_namespaced_podreturns(http::Request<Vec<u8>>, fn(http::StatusCode) -> ResponseBody<ListNamespacedPodResponse>).In previous releases, you would've needed to read the docs to know that
ListNamespacedPodResponseis the type you should use to parse the response. With this change, you can use the constructor to let the type system enforce it. -
API operations that allowed you to list or watch in the same operation are now more strongly typed. For example, in the previous release,
Pod::list_core_v1_namespaced_pod's docs indicated that you should useListCoreV1NamespacedPodResponseto parse its response. However, this function has an optionalwatchparameter which can be used to get a stream ofWatchEventresponses instead and thus you would need to parse the response withWatchCoreV1NamespacedPodResponseinstead. ThisWatchCoreV1NamespacedPodResponsetype was the response type of the otherwise unrelatedPod::watch_core_v1_namespaced_podoperation.Furthermore, Kubernetes has deprecated many of these watch and watchlist operations, like
Pod::watch_core_v1_namespaced_podandPod::watch_core_v1_namespaced_pod_listrespectively, in favor of using thelistoperation with thewatchparameter set.With this release, both of these issues are solved.
The list function, like
Pod::list_namespaced_pod, no longer has awatchparameter. This function always returns a list response.The watch function, like
Pod::watch_namespaced_pod, is no longer generated from the (potentially deprecated) watch function in the OpenAPI spec. Instead, it has the same URL and parameters as thelistoperation. It too does not have awatchparameter, but it setswatch=truein the URL of the generatedhttp::Requestautomatically. This function always returns aWatchEventstream response.The watchlist function, if any, is no longer emitted. It is redundant with the watch function, since watching a single item for changes or multiple items for changes is determined by the specificity of the
field_selectorparameter.
Corresponding Kubernetes API server versions:
- v1.8.15
- v1.9.11
- v1.10.13
- v1.11.8
- v1.12.6
- v1.13.4
v0.3.0
v0.2.0
-
BREAKING CHANGE: Types that were previously emitted as type aliases are now emitted as newtypes. For example
io.k8s.apimachinery.pkg.api.resource.Quantitywas previous emitted aspub type Quantity = String;but is now emitted aspub struct Quantity(pub String); -
BREAKING CHANGE: The
IntOrStringenum in the crate root no longer exists. Previously each version'sio.k8s.apimachinery.pkg.util.intstr.IntOrStringwas emitted as a type alias for the root type -pub type IntOrString = ::IntOrString;. Now they are emitted as the enum themselvespub enum IntOrString { ... }. This bringsIntOrStringin line with other types likeRawExtensionthat have special replacement versions.
Corresponding Kubernetes API server versions:
- v1.7.16
- v1.8.14
- v1.9.9
- v1.10.5
- v1.11.0