Skip to content
Closed
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: 10 additions & 0 deletions crates/canopy-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.3](https://github.com/beyondessential/canopy/compare/bes-canopy-api-v1.0.2...bes-canopy-api-v1.0.3) - 2026-09-23

### Other

- parse and format what the generator emits
- keep the payload plumbing in the crate
- refuse a path value that resolves a segment away
- refuse a path value that would change which request is made
- carry binary and text bodies in the generated client

## [1.0.2](https://github.com/beyondessential/canopy/compare/bes-canopy-api-v1.0.1...bes-canopy-api-v1.0.2) - 2026-09-20

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/canopy-api/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/canopy-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[package]
publish = true
name = "bes-canopy-api"
version = "1.0.2"
version = "1.0.3"
edition = "2024"
resolver = "3"
license = "GPL-3.0-or-later"
Expand Down
4 changes: 2 additions & 2 deletions crates/canopy-api/src/generated.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

/// Version of the OpenAPI document this source was generated from, which is also
/// this crate's own version.
pub const OPENAPI_VERSION: &str = "1.0.2";
pub const OPENAPI_VERSION: &str = "1.0.3";

/// BLAKE3 digest of that document, so a document that changed without the
/// version moving with it can be told from one that did not.
pub const OPENAPI_BLAKE3: &str = "4bb0d3f1bed1536de19744f6ad368771aa486479771fc520dbaa695faac7c6d5";
pub const OPENAPI_BLAKE3: &str = "eb5c2ec24ac2c5c371f9ad8a7c00e23d9cc5ec2017f9419422a4eeb905d77d04";

/// Error types.
pub mod error {
Expand Down
2 changes: 1 addition & 1 deletion crates/public-server/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"license": {
"name": "GPL-3.0-or-later"
},
"version": "1.0.2"
"version": "1.0.3"
},
"paths": {
"/applications": {
Expand Down
2 changes: 1 addition & 1 deletion crates/public-server/src/openapi.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use utoipa::{Modify, OpenApi, openapi::security::SecurityScheme};
#[openapi(
info(
title = "canopy public-server",
version = "1.0.2",
version = "1.0.3",
description = "Internet-facing API for the canopy fleet. Device-authenticated endpoints require an mTLS client certificate.\n\nRequest bodies may be sent compressed, and this is recommended for large payloads: the server transparently decodes `Content-Encoding: gzip`, `br`, `deflate`, or `zstd`. The accepted encodings are also listed structurally in the `x-request-compression` extension.",
contact(name = "BES Developers", email = "contact@bes.au"),
license(name = "GPL-3.0-or-later"),
Expand Down
Loading