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
12 changes: 0 additions & 12 deletions .changeset/bootstrap-harness-override.md

This file was deleted.

13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# @smooai/library-template

## 6.8.0

### Minor Changes

- 23e6577: `bootstrapFetch` now honors a `SMOOAI_HARNESS_<KEY>` env override (e.g.
`SMOOAI_HARNESS_DATABASE_URL`, `SMOOAI_HARNESS_RLS_DATABASE_URL`) that
short-circuits the HTTP fetch entirely — the same §15 escape hatch
`packages/db` `drizzleClient.resolveDbUrl` already honors at runtime. This makes
the prod-script override work uniformly across ALL cold-start config consumers
(db-migrate and friends), not just the runtime drizzle client. Previously
`bootstrapFetch` ignored the override and fell through to `env='development'`
when no SST stage was set, silently fetching the wrong environment's value.

## 6.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion dotnet/src/SmooAI.Config/SmooAI.Config.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<PropertyGroup>
<PackageId>SmooAI.Config</PackageId>
<Version>6.7.0</Version>
<Version>6.8.0</Version>
<Authors>SmooAI</Authors>
<Company>SmooAI</Company>
<Product>SmooAI.Config</Product>
Expand Down
2 changes: 1 addition & 1 deletion go/config/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package config

// Version is the current version of the smooai-config Go package.
const Version = "6.7.0"
const Version = "6.8.0"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@smooai/config",
"version": "6.7.0",
"version": "6.8.0",
"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": {
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "smooai-config"
version = "6.7.0"
version = "6.8.0"
description = "Smoo AI Configuration Management Library"
requires-python = ">=3.13"
dependencies = ["pydantic>=2.0.0", "httpx>=0.27.0", "cryptography>=42.0.0"]
Expand Down
2 changes: 1 addition & 1 deletion python/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading