Skip to content

Commit f44eacc

Browse files
StuMasonclaude
andauthored
chore: bump version to 1.1.1 (#50)
Dependency updates release: - ESLint 8→9 with flat config - zod 3→4 - @types/node 20→25 - dotenv 16→17 - lint-staged 15→16 - eslint-config-prettier 9→10 - @typescript-eslint packages 7→8 Added maintenance automation: - Auto-delete branches on merge - Dependabot auto-merge for patch/minor - Weekly OpenAPI drift detection - Claude Code PR reviews - CONTRIBUTING.md documentation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
1 parent fff550f commit f44eacc

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.1] - 2026-01-05
9+
10+
### Changed
11+
12+
- **Dependency Updates** - Major upgrade to latest secure versions:
13+
- ESLint 8→9 with new flat config format
14+
- zod 3→4
15+
- @types/node 20→25
16+
- dotenv 16→17
17+
- lint-staged 15→16
18+
- eslint-config-prettier 9→10
19+
- @typescript-eslint packages 7→8
20+
21+
### Added
22+
23+
- Auto-delete branches on merge
24+
- Dependabot auto-merge for patch/minor updates
25+
- Weekly OpenAPI drift detection (monitors Coolify API changes)
26+
- Claude Code review on PRs
27+
- CONTRIBUTING.md with maintenance documentation
28+
829
## [1.1.0] - 2026-01-05
930

1031
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@masonator/coolify-mcp",
33
"scope": "@masonator",
4-
"version": "1.1.0",
4+
"version": "1.1.1",
55
"description": "MCP server implementation for Coolify",
66
"type": "module",
77
"main": "./dist/index.js",

src/lib/mcp-server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import {
3131
} from './coolify-client.js';
3232
import type { CoolifyConfig } from '../types/coolify.js';
3333

34-
const VERSION = '1.1.0';
34+
const VERSION = '1.1.1';
3535

3636
/** Wrap tool handler with consistent error handling */
3737
function wrapHandler<T>(

0 commit comments

Comments
 (0)