From ad027599ca41d4b5e6d23be00163f412dd8c1108 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 8 Jul 2026 23:06:46 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A6=8B=20New=20version=20release?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/eso-refresher-keepalive.md | 5 ----- CHANGELOG.md | 6 ++++++ dotnet/src/SmooAI.Config/SmooAI.Config.csproj | 2 +- go/config/version.go | 2 +- package.json | 2 +- python/pyproject.toml | 2 +- python/uv.lock | 2 +- rust/config/Cargo.lock | 2 +- rust/config/Cargo.toml | 2 +- 9 files changed, 13 insertions(+), 12 deletions(-) delete mode 100644 .changeset/eso-refresher-keepalive.md diff --git a/.changeset/eso-refresher-keepalive.md b/.changeset/eso-refresher-keepalive.md deleted file mode 100644 index 8cbca4e..0000000 --- a/.changeset/eso-refresher-keepalive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@smooai/config': patch ---- - -SMOODEV-1527: Fix the eso-refresher exiting immediately after its initial mint (it `unref()`'d the interval timer, and a pending `await new Promise(() => {})` doesn't hold Node's event loop open — so the process exited 0 → CrashLoopBackOff). The production interval now keeps the daemon alive; tests inject their own scheduler so they're unaffected. diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b096be..0389595 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # @smooai/library-template +## 6.11.3 + +### Patch Changes + +- 4aed829: SMOODEV-1527: Fix the eso-refresher exiting immediately after its initial mint (it `unref()`'d the interval timer, and a pending `await new Promise(() => {})` doesn't hold Node's event loop open — so the process exited 0 → CrashLoopBackOff). The production interval now keeps the daemon alive; tests inject their own scheduler so they're unaffected. + ## 6.11.2 ### Patch Changes diff --git a/dotnet/src/SmooAI.Config/SmooAI.Config.csproj b/dotnet/src/SmooAI.Config/SmooAI.Config.csproj index d7db0b4..75aca07 100644 --- a/dotnet/src/SmooAI.Config/SmooAI.Config.csproj +++ b/dotnet/src/SmooAI.Config/SmooAI.Config.csproj @@ -12,7 +12,7 @@ SmooAI.Config - 6.11.2 + 6.11.3 SmooAI SmooAI SmooAI.Config diff --git a/go/config/version.go b/go/config/version.go index e1a14f7..f10cee1 100644 --- a/go/config/version.go +++ b/go/config/version.go @@ -1,4 +1,4 @@ package config // Version is the current version of the smooai-config Go package. -const Version = "6.11.2" +const Version = "6.11.3" diff --git a/package.json b/package.json index ebde3fe..96d097b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@smooai/config", - "version": "6.11.2", + "version": "6.11.3", "description": "Type-safe multi-language configuration management with schema validation, three-tier config (public, secret, feature flags), and runtime client support for TypeScript, Python, Rust, and Go.", "homepage": "https://github.com/SmooAI/config#readme", "bugs": { diff --git a/python/pyproject.toml b/python/pyproject.toml index 1938199..42e0fd0 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "smooai-config" -version = "6.11.2" +version = "6.11.3" description = "Smoo AI Configuration Management Library" requires-python = ">=3.13" dependencies = ["pydantic>=2.0.0", "httpx>=0.27.0", "cryptography>=42.0.0"] diff --git a/python/uv.lock b/python/uv.lock index afa46c7..e7bc39e 100644 --- a/python/uv.lock +++ b/python/uv.lock @@ -427,7 +427,7 @@ wheels = [ [[package]] name = "smooai-config" -version = "6.11.2" +version = "6.11.3" source = { editable = "." } dependencies = [ { name = "cryptography" }, diff --git a/rust/config/Cargo.lock b/rust/config/Cargo.lock index 57bfc7e..26fea3c 100644 --- a/rust/config/Cargo.lock +++ b/rust/config/Cargo.lock @@ -1247,7 +1247,7 @@ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" [[package]] name = "smooai-config" -version = "6.11.2" +version = "6.11.3" dependencies = [ "aes-gcm", "base64", diff --git a/rust/config/Cargo.toml b/rust/config/Cargo.toml index bdd0f0d..a22a143 100644 --- a/rust/config/Cargo.toml +++ b/rust/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smooai-config" -version = "6.11.2" +version = "6.11.3" edition = "2021" description = "Type-safe three-tier configuration management (public, secret, feature flags) with schema validation and a runtime client for the Smoo AI config platform." license = "MIT"