Skip to content
Open
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
9 changes: 9 additions & 0 deletions apps/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# bralecli

## 0.3.0

### Minor Changes

- Refresh the generated CLI for the Brale OpenAPI contract fetched on 2026-09-19
(SHA-256: `fd1edeaad80666809e719034c20042c7ed26c3fb13e9c05828e27ed8367c0857`).
- Propose a conservative pre-1.0 minor release because upstream contract changes may be breaking.
Maintainers review the contract diff and may adjust this version and release note before merging.

## 0.2.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion apps/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bralecli",
"version": "0.2.0",
"version": "0.3.0",
"private": true,
"bin": {
"bralecli": "./src/bin.ts"
Expand Down
2 changes: 1 addition & 1 deletion packages/brale/openapi/brale.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions packages/brale/src/spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ export const SPEC_SOURCE_URL: string = 'https://api.brale.xyz/openapi'
* compares against this so a no-op refresh is visibly a no-op.
*/
export const SPEC_SHA256: string =
'9c74b137981b0a98efedcc72ea3bb08acd2ab6bab6012e60ff83b98e826503fb'
'fd1edeaad80666809e719034c20042c7ed26c3fb13e9c05828e27ed8367c0857'

/** When `SPEC_SHA256` was observed at `SPEC_SOURCE_URL`. */
export const SPEC_FETCHED_AT: string = '2026-09-09'
export const SPEC_FETCHED_AT: string = '2026-09-19'

/** The single server the document advertises, and the only API host this CLI talks to. */
export const BRALE_API_BASE_URL: string = 'https://api.brale.xyz'
Expand Down