Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.24] - 2026-06-22

### Fixed

- Added missing `kind` field to NodePool creation example

Comment thread
coderabbitai[bot] marked this conversation as resolved.
## [1.0.23] - 2026-06-11

### Removed
Expand Down Expand Up @@ -85,8 +91,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `hyperfleet` npm dependency for importing shared models and services from the core repository

<!-- Links -->

[Unreleased]: https://github.com/openshift-hyperfleet/hyperfleet-api-spec-template/compare/v1.0.23...HEAD
[Unreleased]: https://github.com/openshift-hyperfleet/hyperfleet-api-spec-template/compare/v1.0.24...HEAD
[1.0.24]: https://github.com/openshift-hyperfleet/hyperfleet-api-spec-template/compare/v1.0.23...v1.0.24
[1.0.23]: https://github.com/openshift-hyperfleet/hyperfleet-api-spec-template/compare/v1.0.22...v1.0.23
[1.0.22]: https://github.com/openshift-hyperfleet/hyperfleet-api-spec-template/compare/v1.0.21...v1.0.22
[1.0.21]: https://github.com/openshift-hyperfleet/hyperfleet-api-spec-template/compare/v1.0.20...v1.0.21
Expand Down
2 changes: 1 addition & 1 deletion main.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ using OpenAPI;
*/
@service(#{ title: "HyperFleet API" })
@info(#{
version: "1.0.23",
version: "1.0.24",
contact: #{
name: "HyperFleet Team",
url: "https://github.com/openshift-hyperfleet",
Expand Down
1 change: 1 addition & 0 deletions models/nodepool/example_post.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import "./model.tsp";
import "hyperfleet/shared/models/nodepools/model.tsp";

const exampleNodePoolCreateRequest: NodePoolCreateRequest = #{
kind: "NodePool",
name: "worker-pool-1",
labels: #{ environment: "production", pooltype: "worker" },
spec: #{
Expand Down
3 changes: 2 additions & 1 deletion schemas/template/openapi.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.0
info:
title: HyperFleet API
version: 1.0.23
version: 1.0.24
contact:
name: HyperFleet Team
url: https://github.com/openshift-hyperfleet
Expand Down Expand Up @@ -2166,6 +2166,7 @@ components:
spec:
$ref: '#/components/schemas/NodePoolSpec'
example:
kind: NodePool
name: worker-pool-1
labels:
environment: production
Expand Down
3 changes: 2 additions & 1 deletion schemas/template/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ info:
name: Apache 2.0
url: 'https://www.apache.org/licenses/LICENSE-2.0'
title: HyperFleet API
version: 1.0.23
version: 1.0.24
host: hyperfleet.redhat.com
basePath: /
schemes:
Expand Down Expand Up @@ -2214,6 +2214,7 @@ definitions:
type: object
NodePoolCreateRequest:
example:
kind: NodePool
labels:
environment: production
pooltype: worker
Expand Down