Skip to content

Commit af586d9

Browse files
authored
Release v1.1.6 (#1041)
Release v1.1.6 (#1041)
2 parents a5acb23 + 2f5c3d6 commit af586d9

4 files changed

Lines changed: 52 additions & 3 deletions

File tree

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ volumes/
4242
node_modules/
4343
npm-debug.log
4444
yarn-error.log
45+
package-lock.json
46+
bun.lock
47+
48+
# OpenCode generated artifacts
49+
.opencode/package-lock.json
50+
.opencode/bun.lock
4551

4652
# macOS
4753
.DS_Store

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ All notable changes to the AIXCL project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [v1.1.6] - 2026-05-05
8+
9+
### Configuration
10+
11+
- **OpenCode Schema Alignment**: Enhanced opencode.json with official schema features including shell, logLevel, snapshot, share, autoupdate, username, and watcher ignore patterns (Fixes #1041)
12+
- **Small Model Support**: Added small_model configuration for fast lightweight tasks like title generation
13+
- **Artifact Prevention**: Updated .gitignore to prevent accidental commits of npm artifacts (node_modules, package-lock.json, bun.lock)
14+
15+
### Documentation
16+
17+
- **README Access Points**: Added missing observability services to Access Points table (Loki port 3100, Alertmanager port 9093) and simplified Vault credentials notes (Fixes #1030)
18+
19+
### Related Issues
20+
21+
- Fixes #1041 - Release v1.1.6
22+
- Fixes #1030 - Refresh README service list and access points
23+
24+
---
25+
726
## [v1.1.5] - 2026-05-05
827

928
### Governance

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,10 +172,12 @@ curl http://localhost:11434/v1/chat/completions \
172172
| Service | URL | Login |
173173
|---------|-----|-------|
174174
| Open WebUI | http://localhost:8080 | First user = admin |
175-
| pgAdmin | http://localhost:5050 | Vault credentials (see below) |
176-
| Grafana | http://localhost:3000 | Vault credentials (see below) |
175+
| pgAdmin | http://localhost:5050 | Vault credentials |
176+
| Grafana | http://localhost:3000 | Vault credentials |
177177
| Vault UI | http://localhost:8200 | Token: `aixcl-dev-token` |
178178
| Prometheus | http://localhost:9090 | No auth (localhost only) |
179+
| Loki | http://localhost:3100 | No auth (localhost only) |
180+
| Alertmanager | http://localhost:9093 | No auth (localhost only) |
179181
| Ollama API | http://localhost:11434 | No auth (localhost only) |
180182

181183
Get current service credentials:

opencode.json

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
{
22
"$schema": "https://opencode.ai/config.json",
3+
"shell": "bash",
4+
"logLevel": "WARN",
5+
"snapshot": true,
6+
"share": "manual",
7+
"autoupdate": "notify",
8+
"username": "sbadakhc",
9+
"watcher": {
10+
"ignore": [
11+
"node_modules/",
12+
".git/",
13+
"*.log",
14+
"volumes/",
15+
"pgadmin-data/",
16+
"tests/test-results.md",
17+
"tests/*.backup",
18+
"*.tmp",
19+
"*.swp",
20+
"build/",
21+
"dist/"
22+
]
23+
},
324
"instructions": [
425
"AGENTS.md",
526
"DEVELOPMENT.md",
@@ -46,5 +67,6 @@
4667
}
4768
}
4869
},
49-
"model": "aixcl-local/Qwen/Qwen2.5-Coder-0.5B-Instruct"
70+
"model": "aixcl-local/Qwen/Qwen2.5-Coder-0.5B-Instruct",
71+
"small_model": "aixcl-local/Qwen/Qwen2.5-Coder-0.5B-Instruct"
5072
}

0 commit comments

Comments
 (0)