@carllee1983/dbcli 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to dbcli are documented here.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.2.1] - 2026-03-31
9
+
10
+ ### Fixed
11
+
12
+ - **Config Loader**: Fixed variable naming in `loadConnectionEnv` call, ensuring correct env files are loaded during connection resolution.
13
+
8
14
  ## [1.2.0] - 2026-03-31
9
15
 
10
16
  ### Added
package/dist/cli.mjs CHANGED
@@ -46864,7 +46864,7 @@ var {
46864
46864
  // package.json
46865
46865
  var package_default = {
46866
46866
  name: "@carllee1983/dbcli",
46867
- version: "1.2.0",
46867
+ version: "1.2.1",
46868
46868
  description: "Database CLI for AI agents",
46869
46869
  type: "module",
46870
46870
  publishConfig: {
@@ -47714,7 +47714,7 @@ var configModule = {
47714
47714
  if (detectConfigVersion(config) === 2) {
47715
47715
  const v2Config = DbcliConfigV2Schema.parse(config);
47716
47716
  const resolved = resolveConnection(v2Config, effectiveConnectionName);
47717
- await loadConnectionEnv(resolved, configPath);
47717
+ await loadConnectionEnv(resolved, path);
47718
47718
  const envLocalPath = join2(path, ".env.local");
47719
47719
  const envLocalFile = Bun.file(envLocalPath);
47720
47720
  let legacyPassword = null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carllee1983/dbcli",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Database CLI for AI agents",
5
5
  "type": "module",
6
6
  "publishConfig": {