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
2 changes: 1 addition & 1 deletion dev-tools/openapi-manager/src/omicron.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ pub fn all_apis() -> Vec<ManagedApiConfig> {
ManagedApiConfig {
title: "Oxide Region API",
versions: Versions::new_lockstep(semver::Version::new(
20250730, 0, 0,
20251008, 0, 0,
)),
description: "API for interacting with the Oxide control plane",
boundary: ApiBoundary::External,
Expand Down
2 changes: 1 addition & 1 deletion dev-tools/releng/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ use crate::job::Jobs;
/// to as "v8", "version 8", or "release 8" to customers). The use of semantic
/// versioning is mostly to hedge for perhaps wanting something more granular in
/// the future.
const BASE_VERSION: Version = Version::new(16, 0, 0);
const BASE_VERSION: Version = Version::new(17, 0, 0);

const RETRY_ATTEMPTS: usize = 3;

Expand Down
2 changes: 1 addition & 1 deletion nexus/external-api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use omicron_common::api::external::{
use openapi_manager_types::ValidationContext;
use openapiv3::OpenAPI;

pub const API_VERSION: &str = "20250730.0.0";
pub const API_VERSION: &str = "20251008.0.0";

const MIB: usize = 1024 * 1024;
const GIB: usize = 1024 * MIB;
Expand Down
2 changes: 1 addition & 1 deletion openapi/nexus.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://oxide.computer",
"email": "api@oxide.computer"
},
"version": "20250730.0.0"
"version": "20251008.0.0"
},
"paths": {
"/device/auth": {
Expand Down
Loading