chore: bump sdk to 0.4.0-beta.63

This commit is contained in:
Aiden McClelland
2026-03-22 14:13:28 -06:00
parent cb7618cb34
commit 6ed0afc75f
4 changed files with 16 additions and 4 deletions

View File

@@ -1,5 +1,17 @@
# Changelog
## 0.4.0-beta.63 — StartOS v0.4.0-alpha.22 (2026-03-22)
### Fixed
- Fixed `createTask` failing when input values are undefined
- Fixed daemon lifecycle cleanup and error logging improvements
- Replaced fire-and-forget restart loop in `Daemon` with tracked `AbortController`
- Fixed graceful shutdown for subcontainer daemons
- Fixed rsync progress regex never matching, spamming logs during backup
- Fixed rsync backup bugs and optimized flags for encrypted CIFS targets
- Fixed types in `inputSpecConstants`, `StartSdk`, and exports
## 0.4.0-beta.62 (2026-03-19)
### Fixed

View File

@@ -73,7 +73,7 @@ base/node_modules: base/package-lock.json
node_modules: package/node_modules base/node_modules
publish: bundle package/package.json README.md LICENSE CHANGELOG.md
cd dist && npm publish --access=public --tag=latest
cd dist && npm publish --access=public --tag=latest $(if $(OTP),--otp=$(OTP))
link: bundle
cd dist && npm link

View File

@@ -1,12 +1,12 @@
{
"name": "@start9labs/start-sdk",
"version": "0.4.0-beta.62",
"version": "0.4.0-beta.63",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@start9labs/start-sdk",
"version": "0.4.0-beta.62",
"version": "0.4.0-beta.63",
"license": "MIT",
"dependencies": {
"@iarna/toml": "^3.0.0",

View File

@@ -1,6 +1,6 @@
{
"name": "@start9labs/start-sdk",
"version": "0.4.0-beta.62",
"version": "0.4.0-beta.63",
"description": "Software development kit to facilitate packaging services for StartOS",
"main": "./package/lib/index.js",
"types": "./package/lib/index.d.ts",