@seekrit/cli 1.2.1 → 1.2.2

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.
Files changed (2) hide show
  1. package/dist/index.js +6 -6
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -5051,7 +5051,7 @@ async function createAgentTaskToken() {
5051
5051
  }
5052
5052
  //#endregion
5053
5053
  //#region package.json
5054
- var version = "1.2.1";
5054
+ var version = "1.2.2";
5055
5055
  //#endregion
5056
5056
  //#region ../../packages/api-client/src/index.ts
5057
5057
  var SeekritApiError = class extends Error {
@@ -12165,7 +12165,7 @@ function collect$2(value, acc) {
12165
12165
  * release-please-config.json), so the pin follows the crate without anyone
12166
12166
  * remembering to move it.
12167
12167
  */
12168
- const PROXY_VERSION = "0.10.0";
12168
+ const PROXY_VERSION = "0.10.2";
12169
12169
  const BIN = "seekrit-proxy";
12170
12170
  /**
12171
12171
  * Host → Rust target triple.
@@ -12201,7 +12201,7 @@ function versionPrefix(version) {
12201
12201
  return version.startsWith("v") ? version : `v${version}`;
12202
12202
  }
12203
12203
  function resolveVersion(explicit) {
12204
- return explicit ?? process.env.SEEKRIT_PROXY_VERSION ?? "0.10.0";
12204
+ return explicit ?? process.env.SEEKRIT_PROXY_VERSION ?? "0.10.2";
12205
12205
  }
12206
12206
  function resolveBaseUrl(explicit) {
12207
12207
  return (explicit ?? process.env.SEEKRIT_PROXY_BASE_URL ?? "https://proxy.seekrit.dev").replace(/\/+$/, "");
@@ -12553,10 +12553,10 @@ Next:
12553
12553
  });
12554
12554
  console.log(path);
12555
12555
  const { target } = detectTarget();
12556
- process.stderr.write(`seekrit-proxy ${versionPrefix(options.proxyVersion ?? "0.10.0")} (${target})\n`);
12556
+ process.stderr.write(`seekrit-proxy ${versionPrefix(options.proxyVersion ?? "0.10.2")} (${target})\n`);
12557
12557
  });
12558
12558
  proxy.command("where").description("show which binary `seekrit proxy run` would use, without fetching it").option("--proxy-version <version>", `version to report (default: ${PROXY_VERSION})`).option("--json", "machine-readable output").action((options) => {
12559
- const version = options.proxyVersion ?? process.env.SEEKRIT_PROXY_VERSION ?? "0.10.0";
12559
+ const version = options.proxyVersion ?? process.env.SEEKRIT_PROXY_VERSION ?? "0.10.2";
12560
12560
  const override = process.env.SEEKRIT_PROXY_BIN;
12561
12561
  const { target, exe } = detectTarget();
12562
12562
  const path = override ?? proxyBinaryPath(version, target, exe);
@@ -12577,7 +12577,7 @@ Next:
12577
12577
  process.stdout.write(renderComposeSnippet(plan, {
12578
12578
  service: options.service,
12579
12579
  workload: options.workload,
12580
- image: options.image ?? `seekritdev/proxy:0.10.0`,
12580
+ image: options.image ?? `seekritdev/proxy:0.10.2`,
12581
12581
  publish: Boolean(options.publish)
12582
12582
  }));
12583
12583
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seekrit/cli",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "End-to-end encrypted secrets manager CLI — inject decrypted secrets into any command.",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -22,14 +22,14 @@
22
22
  "node": ">=20"
23
23
  },
24
24
  "dependencies": {
25
- "@modelcontextprotocol/sdk": "^1.29.0",
25
+ "@modelcontextprotocol/sdk": "^1.30.0",
26
26
  "commander": "^15.0.0",
27
- "zod": "^4.4.3"
27
+ "zod": "^4.5.4"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "^26.1.0",
31
31
  "tsdown": "^0.22.3",
32
- "vitest": "^4.1.9",
32
+ "vitest": "^4.1.11",
33
33
  "@seekrit/api-client": "0.0.1",
34
34
  "@seekrit/core": "0.0.1",
35
35
  "@seekrit/crypto": "0.0.1"