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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## [0.13.5] - 2026-01-09

### 🐛 Bug Fixes

- Set default plan_id field in app configuration struct
## [0.13.4] - 2026-01-06

### 🚀 Features
Expand Down Expand Up @@ -27,6 +32,7 @@

- Update wit hash to reflect latest changes
- Release
- Release
## [0.13.2] - 2025-11-04

### 🐛 Bug Fixes
Expand Down
16 changes: 8 additions & 8 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = ["crates/*"]
resolver = "2"

[workspace.package]
version = "0.13.4"
version = "0.13.5"
edition = "2021"
publish = false
authors = ["FastEdge Development Team"]
Expand Down
1 change: 1 addition & 0 deletions crates/runtime/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ pub struct App {
pub secrets: Vec<SecretOption>,
#[serde(default)]
pub kv_stores: Vec<KvStoreOption>,
#[serde(default)]
pub plan_id: u64,
}

Expand Down