@inkeep/create-agents 0.70.4 → 0.70.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.
@@ -115,7 +115,7 @@ describe('create-agents quickstart e2e', () => {
115
115
  timeout: 120000, // 2 min: SpiceDB schema write retries up to 30x at 1s each
116
116
  env: {
117
117
  INKEEP_AGENTS_MANAGE_UI_USERNAME: 'admin@example.com',
118
- INKEEP_AGENTS_MANAGE_UI_PASSWORD: 'adminADMIN!@12',
118
+ INKEEP_AGENTS_MANAGE_UI_PASSWORD: 'Str0ngTest!@Pass4242',
119
119
  BETTER_AUTH_SECRET: 'test-secret-key-for-ci',
120
120
  SPICEDB_PRESHARED_KEY: 'dev-secret-key',
121
121
  // Explicit DB URLs in case process.env doesn't carry them
@@ -180,7 +180,7 @@ describe('create-agents quickstart e2e', () => {
180
180
  headers: { 'Content-Type': 'application/json', Origin: dashboardApiUrl },
181
181
  body: JSON.stringify({
182
182
  email: 'admin@example.com',
183
- password: 'adminADMIN!@12',
183
+ password: 'Str0ngTest!@Pass4242',
184
184
  name: 'admin',
185
185
  }),
186
186
  });
@@ -224,7 +224,7 @@ describe('create-agents quickstart e2e', () => {
224
224
  headers: { 'Content-Type': 'application/json', Origin: dashboardApiUrl },
225
225
  body: JSON.stringify({
226
226
  email: 'admin@example.com',
227
- password: 'adminADMIN!@12',
227
+ password: 'Str0ngTest!@Pass4242',
228
228
  }),
229
229
  });
230
230
  const loginBody = await loginTestRes.text().catch(() => '');
@@ -62,7 +62,7 @@ const mockEnvExample = [
62
62
  'SIGNOZ_URL=http://localhost:3080',
63
63
  'OTEL_EXPORTER_OTLP_TRACES_ENDPOINT=',
64
64
  'INKEEP_AGENTS_MANAGE_UI_USERNAME=admin@example.com',
65
- 'INKEEP_AGENTS_MANAGE_UI_PASSWORD=adminADMIN!@12',
65
+ 'INKEEP_AGENTS_MANAGE_UI_PASSWORD=change-me-Pass!@1234',
66
66
  'BETTER_AUTH_SECRET=your-secret-key-change-in-production',
67
67
  'SPICEDB_ENDPOINT=localhost:50051',
68
68
  'SPICEDB_PRESHARED_KEY=dev-secret-key',
@@ -420,7 +420,7 @@ describe('createAgents - Template and Project ID Logic', () => {
420
420
  const envWriteCall = vi.mocked(fs.writeFile).mock.calls.find((call) => call[0] === '.env');
421
421
  const envContent = envWriteCall?.[1];
422
422
  expect(envContent).toContain('BETTER_AUTH_SECRET=your-secret-key-change-in-production');
423
- expect(envContent).toContain('INKEEP_AGENTS_MANAGE_UI_PASSWORD=adminADMIN!@12');
423
+ expect(envContent).toContain('INKEEP_AGENTS_MANAGE_UI_PASSWORD=change-me-Pass!@1234');
424
424
  expect(envContent).toContain('# INKEEP_AGENTS_JWT_SIGNING_SECRET=');
425
425
  });
426
426
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inkeep/create-agents",
3
- "version": "0.70.4",
3
+ "version": "0.70.5",
4
4
  "description": "Create an Inkeep Agent Framework project",
5
5
  "type": "module",
6
6
  "bin": {
@@ -33,7 +33,7 @@
33
33
  "degit": "^2.8.4",
34
34
  "fs-extra": "^11.0.0",
35
35
  "picocolors": "^1.0.0",
36
- "@inkeep/agents-core": "0.70.4"
36
+ "@inkeep/agents-core": "0.70.5"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/degit": "^2.8.6",