Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
b187000ae4 | |||
c715adfd6c |
@@ -1,5 +1,13 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-08-15 - 1.17.2 - fix(ci-test-services)
|
||||||
|
Update CI/CD configurations, test settings, and Docker service for MongoDB.
|
||||||
|
|
||||||
|
- Add .claude/settings.local.json with updated permission settings
|
||||||
|
- Introduce new GitLab CI, VSCode launch and settings, and updated test configuration files (.gitignore, .npmrc, npmextra.json, package.json, qenv.yml, readme.md)
|
||||||
|
- Update test scripts in test/test and test/ts to improve project validation
|
||||||
|
- Fix MongoDB Docker container command by adding '--bind_ip_all' for proper network binding
|
||||||
|
|
||||||
## 2025-08-15 - 1.17.1 - fix(services)
|
## 2025-08-15 - 1.17.1 - fix(services)
|
||||||
Improve services module logging and enhance MongoDB Compass integration
|
Improve services module logging and enhance MongoDB Compass integration
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@git.zone/cli",
|
"name": "@git.zone/cli",
|
||||||
"private": false,
|
"private": false,
|
||||||
"version": "1.17.1",
|
"version": "1.17.2",
|
||||||
"description": "A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.",
|
"description": "A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.",
|
||||||
"main": "dist_ts/index.ts",
|
"main": "dist_ts/index.ts",
|
||||||
"typings": "dist_ts/index.d.ts",
|
"typings": "dist_ts/index.d.ts",
|
||||||
|
1
test
Submodule
1
test
Submodule
Submodule test added at 0b89443584
@@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@git.zone/cli',
|
name: '@git.zone/cli',
|
||||||
version: '1.16.10',
|
version: '1.17.2',
|
||||||
description: 'A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.'
|
description: 'A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.'
|
||||||
}
|
}
|
||||||
|
@@ -73,7 +73,8 @@ export class ServiceManager {
|
|||||||
MONGO_INITDB_ROOT_PASSWORD: config.MONGODB_PASS,
|
MONGO_INITDB_ROOT_PASSWORD: config.MONGODB_PASS,
|
||||||
MONGO_INITDB_DATABASE: config.MONGODB_NAME
|
MONGO_INITDB_DATABASE: config.MONGODB_NAME
|
||||||
},
|
},
|
||||||
restart: 'unless-stopped'
|
restart: 'unless-stopped',
|
||||||
|
command: '--bind_ip_all'
|
||||||
});
|
});
|
||||||
|
|
||||||
if (success) {
|
if (success) {
|
||||||
|
Reference in New Issue
Block a user