Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.1] - 2026-01-05

### Changed

- **Dependency Updates** - Major upgrade to latest secure versions:
- ESLint 8→9 with new flat config format
- 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

- Auto-delete branches on merge
- Dependabot auto-merge for patch/minor updates
- Weekly OpenAPI drift detection (monitors Coolify API changes)
- Claude Code review on PRs
- CONTRIBUTING.md with maintenance documentation

## [1.1.0] - 2026-01-05

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@masonator/coolify-mcp",
"scope": "@masonator",
"version": "1.1.0",
"version": "1.1.1",
"description": "MCP server implementation for Coolify",
"type": "module",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/mcp-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import {
} from './coolify-client.js';
import type { CoolifyConfig } from '../types/coolify.js';

const VERSION = '1.1.0';
const VERSION = '1.1.1';

/** Wrap tool handler with consistent error handling */
function wrapHandler<T>(
Expand Down
Loading