Skip to content

Commit bc19c24

Browse files
chore(master): release 2.2.0
1 parent f8b67ea commit bc19c24

File tree

6 files changed

+29
-10
lines changed

6 files changed

+29
-10
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "2.1.0"
2+
".": "2.2.0"
33
}

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [2.2.0](https://github.com/MapColonies/config-server/compare/v2.1.0...v2.2.0) (2026-02-10)
6+
7+
8+
### Features
9+
10+
* config full endpoint ([#146](https://github.com/MapColonies/config-server/issues/146)) ([f8b67ea](https://github.com/MapColonies/config-server/commit/f8b67ea0960e5c2f39c08ab6cc2fa768ca1fb992))
11+
12+
13+
### Helm Changes
14+
15+
* update mclabels structure in values.yaml ([#149](https://github.com/MapColonies/config-server/issues/149)) ([7c0fe6f](https://github.com/MapColonies/config-server/commit/7c0fe6f15261c53ac18c2276548e085c7a82d99d))
16+
517
## [2.1.0](https://github.com/MapColonies/config-server/compare/v2.0.7...v2.1.0) (2026-02-02)
618

719

helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: config-server
33
description: A Helm chart for config-server service
44
type: application
5-
version: 2.1.0
6-
appVersion: 2.1.0
5+
version: 2.2.0
6+
appVersion: 2.2.0
77
dependencies:
88
- name: mclabels
99
version: 1.0.1

openapi3.yaml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ info:
77
description: >-
88
This is a config server that provides the means to manage all the
99
configurations
10-
version: 2.1.0
10+
version: 2.2.0
1111
license:
1212
name: MIT
1313
url: https://opensource.org/licenses/MIT
@@ -139,7 +139,10 @@ paths:
139139
get:
140140
operationId: getFullConfig
141141
summary: Get comprehensive config metadata for inspector page
142-
description: Returns all data needed for config inspector including raw/resolved/defaults config, dependencies, versions, env vars, and stats. Single endpoint replaces multiple API calls.
142+
description: >-
143+
Returns all data needed for config inspector including
144+
raw/resolved/defaults config, dependencies, versions, env vars, and
145+
stats. Single endpoint replaces multiple API calls.
143146
responses:
144147
'200':
145148
description: OK
@@ -771,15 +774,19 @@ components:
771774
rawConfig:
772775
type: object
773776
additionalProperties: true
774-
description: Config with $refs intact (as stored) - same as 'config' field from base schema
777+
description: >-
778+
Config with $refs intact (as stored) - same as 'config' field from
779+
base schema
775780
resolvedConfig:
776781
type: object
777782
additionalProperties: true
778783
description: Config with all $refs dereferenced
779784
configWithDefaults:
780785
type: object
781786
additionalProperties: true
782-
description: Config with $refs resolved AND schema defaults applied (actual runtime values)
787+
description: >-
788+
Config with $refs resolved AND schema defaults applied (actual
789+
runtime values)
783790
schema:
784791
type: object
785792
description: Lightweight schema metadata

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "config-server",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "This is a api server that serves and modifies configuration",
55
"main": "./src/index.ts",
66
"scripts": {

0 commit comments

Comments
 (0)