clawsql 0.1.4 → 0.1.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.
package/dist/app.js CHANGED
@@ -90,7 +90,7 @@ ClawSQL provides comprehensive automation for MySQL cluster management:
90
90
  - Prometheus for metrics collection
91
91
  - Grafana for visualization
92
92
  `,
93
- version: '0.1.4',
93
+ version: '0.1.5',
94
94
  },
95
95
  servers: [
96
96
  { url: '/', description: 'Current server' },
@@ -115,7 +115,7 @@ ClawSQL provides comprehensive automation for MySQL cluster management:
115
115
  fastify.get('/', async () => {
116
116
  return {
117
117
  name: 'ClawSQL',
118
- version: '0.1.4',
118
+ version: '0.1.5',
119
119
  description: 'MySQL Cluster Automation and Operations Management',
120
120
  docs: '/docs',
121
121
  health: '/health',
@@ -94,7 +94,7 @@ const SyncSettingsSchema = zod_1.z.object({
94
94
  });
95
95
  const SettingsSchema = zod_1.z.object({
96
96
  appName: zod_1.z.string().default('ClawSQL'),
97
- appVersion: zod_1.z.string().default('0.1.4'),
97
+ appVersion: zod_1.z.string().default('0.1.5'),
98
98
  debug: zod_1.z.boolean().default(false),
99
99
  metadataDb: MetadataDBSettingsSchema,
100
100
  orchestrator: OrchestratorSettingsSchema,
@@ -8,7 +8,7 @@
8
8
 
9
9
  services:
10
10
  clawsql-allinone:
11
- image: clawsql/clawsql:allinone
11
+ image: kefan96/clawsql:allinone
12
12
  build:
13
13
  context: .
14
14
  dockerfile: docker/Dockerfile.allinone
@@ -15,7 +15,7 @@ services:
15
15
  # ClawSQL Application (Node.js)
16
16
  # =============================================================================
17
17
  clawsql:
18
- image: clawsql/clawsql:latest
18
+ image: kefan96/clawsql:latest
19
19
  build:
20
20
  context: .
21
21
  dockerfile: docker/Dockerfile.node
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clawsql",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "MySQL Cluster Automation and Operations Management System",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",