lsh-framework 2.2.4 → 2.2.5

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.
@@ -221,7 +221,8 @@ export class SecretsManager {
221
221
  updatedAt: new Date(),
222
222
  }));
223
223
  // Store on IPFS
224
- const cid = await this.storage.push(secrets, effectiveEnv, this.encryptionKey, this.gitInfo?.repoName, this.gitInfo?.currentBranch);
224
+ const cid = await this.storage.push(secrets, environment, // Use raw environment, storage will apply repo-aware naming
225
+ this.encryptionKey, this.gitInfo?.repoName, this.gitInfo?.currentBranch);
225
226
  logger.info(`✅ Pushed ${secrets.length} secrets from ${filename} to IPFS`);
226
227
  console.log(`📦 IPFS CID: ${cid}`);
227
228
  // Log to IPFS for immutable audit record
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lsh-framework",
3
- "version": "2.2.4",
3
+ "version": "2.2.5",
4
4
  "description": "Simple, cross-platform encrypted secrets manager with automatic sync, IPFS audit logs, and multi-environment support. Just run lsh sync and start managing your secrets.",
5
5
  "main": "dist/app.js",
6
6
  "bin": {