From 185cacd0f641cae57dd35691218ae835680729e9 Mon Sep 17 00:00:00 2001 From: daogrady <103028279+daogrady@users.noreply.github.com> Date: Tue, 16 Dec 2025 09:10:42 +0000 Subject: [PATCH 1/2] chore/release-1.3.0 --- CHANGELOG.md | 9 +++++++++ package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2029935..ce68522 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). ## [Unreleased] +### Added +### Changed +### Deprecated +### Removed +### Fixed +### Security + +## [1.3.0] - 2025-12-16 + ### Added - Util to regenerate OpenAPI test snapshots - Calling `cds compile -2 openapi` now emits events: `compile.to.openapi` with an object parameter, containing the source model and the compilation options before the compilation takes place. `after:compile.to.openapi` carries the same parameter with an additional `result` property, containing the output of the compilation process. diff --git a/package.json b/package.json index 26006e1..4bdc719 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@cap-js/openapi", - "version": "1.2.3", + "version": "1.3.0", "description": "CAP tool for OpenAPI", "repository": { "type": "git", From 5492811e2ee53b136cf6c3fedbabc61fdab62cfa Mon Sep 17 00:00:00 2001 From: Daniel O'Grady Date: Tue, 16 Dec 2025 10:12:58 +0100 Subject: [PATCH 2/2] Merge two 'Changed' sections in changelog --- CHANGELOG.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce68522..50303ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,16 +23,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). - Operations: `@Core.Description` maps to `summary`, `@Core.LongDescription` maps to `description` - Parameters and schema properties: use `@Core.LongDescription` with fallback to `@Core.Description` - Service info: use `@Core.LongDescription` with fallback to `@Core.Description` - +- Acronyms in names are now preserved and not split in description fields. +- Tags now display with spaces instead of underscores, and camelCase tags are automatically converted to space-separated words (e.g., "camelCase" becomes "camel Case"). ### Fixed - Reading json from project root - Correctly handle `@Core.Immutable` properties in PATCH requests. - Actions without parameters now include `requestBody` with `Content-Type: application/json` in OpenAPI spec to prevent 415 errors -### Changed -- Acronyms in names are now preserved and not split in description fields. -- Tags now display with spaces instead of underscores, and camelCase tags are automatically converted to space-separated words (e.g., "camelCase" becomes "camel Case"). ## Version 1.2.3 - 28.05.2025