Skip to content

Commit aa2faa7

Browse files
chore(master): release 2.1.0 (#141)
1 parent 1247cd3 commit aa2faa7

File tree

6 files changed

+40
-14
lines changed

6 files changed

+40
-14
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.0.7"
2+
".": "2.1.0"
33
}

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
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.1.0](https://github.com/MapColonies/config-server/compare/v2.0.7...v2.1.0) (2026-02-02)
6+
7+
8+
### Features
9+
10+
* add lock mechanism MAPCO-9472 ([#144](https://github.com/MapColonies/config-server/issues/144)) ([8aef090](https://github.com/MapColonies/config-server/commit/8aef0904b0caf9f7fe5070ebe75b78241d025149))
11+
* add support for hashing and not modified requests MAPCO-9471 ([#142](https://github.com/MapColonies/config-server/issues/142)) ([553efe3](https://github.com/MapColonies/config-server/commit/553efe39563b2cd7348a8473557e96d4450e0c53))
12+
* new schema endpoints ([#145](https://github.com/MapColonies/config-server/issues/145)) ([1247cd3](https://github.com/MapColonies/config-server/commit/1247cd34ed2c48ac4e139c518f8fbeb78c1713f7))
13+
* updated with the newest version of map-colonies packages ([#140](https://github.com/MapColonies/config-server/issues/140)) ([158a010](https://github.com/MapColonies/config-server/commit/158a01069f5e8f36d8f1ab3fe118494c3442269f))
14+
15+
16+
### Bug Fixes
17+
18+
* add DB connection check to liveness route MAPCO-8134 ([#143](https://github.com/MapColonies/config-server/issues/143)) ([7abcce5](https://github.com/MapColonies/config-server/commit/7abcce57b08f5b4a6c50a6cccf8cbe5f5754eb39))
19+
* delete unnecessary pluses ([7abcce5](https://github.com/MapColonies/config-server/commit/7abcce57b08f5b4a6c50a6cccf8cbe5f5754eb39))
20+
521
## [2.0.7](https://github.com/MapColonies/config-server/compare/v2.0.6...v2.0.7) (2026-01-19)
622

723

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.0.7
6-
appVersion: 2.0.7
5+
version: 2.1.0
6+
appVersion: 2.1.0
77
dependencies:
88
- name: mclabels
99
version: 1.0.1

openapi3.yaml

Lines changed: 18 additions & 8 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.0.7
10+
version: 2.1.0
1111
license:
1212
name: MIT
1313
url: https://opensource.org/licenses/MIT
@@ -109,7 +109,9 @@ paths:
109109
schema:
110110
$ref: '#/components/schemas/config'
111111
'304':
112-
description: Not Modified - Config has not changed since the ETag provided in If-None-Match header
112+
description: >-
113+
Not Modified - Config has not changed since the ETag provided in
114+
If-None-Match header
113115
'400':
114116
$ref: '#/components/responses/400BadRequest'
115117
'404':
@@ -164,7 +166,9 @@ paths:
164166
get:
165167
operationId: getSchemasIndex
166168
summary: Get searchable index of all schemas
167-
description: Returns metadata for all schemas. Frontend can build client-side search index from this data.
169+
description: >-
170+
Returns metadata for all schemas. Frontend can build client-side search
171+
index from this data.
168172
responses:
169173
'200':
170174
description: OK
@@ -271,12 +275,16 @@ paths:
271275
type: array
272276
items:
273277
$ref: '#/components/schemas/schemaReference'
274-
description: All parent schemas that reference this schema (nested tree structure)
278+
description: >-
279+
All parent schemas that reference this schema (nested
280+
tree structure)
275281
children:
276282
type: array
277283
items:
278284
$ref: '#/components/schemas/schemaReference'
279-
description: All child schemas referenced by this schema (nested tree structure)
285+
description: >-
286+
All child schemas referenced by this schema (nested
287+
tree structure)
280288
envVars:
281289
type: array
282290
items:
@@ -308,7 +316,9 @@ paths:
308316
refLink:
309317
type: string
310318
format: uri
311-
description: External schema reference if this env var comes from a $ref
319+
description: >-
320+
External schema reference if this env var comes from
321+
a $ref
312322
'400':
313323
$ref: '#/components/responses/400BadRequest'
314324
'404':
@@ -362,6 +372,8 @@ paths:
362372
responses:
363373
'200':
364374
description: Lock acquired or renewed successfully
375+
'400':
376+
$ref: '#/components/responses/400BadRequest'
365377
'423':
366378
description: Locked - Concurrency limit reached
367379
headers:
@@ -373,8 +385,6 @@ paths:
373385
application/json:
374386
schema:
375387
$ref: '#/components/schemas/error'
376-
'400':
377-
$ref: '#/components/responses/400BadRequest'
378388
'500':
379389
$ref: '#/components/responses/500InternalServerError'
380390
/locks/{key}/{callerId}:

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.0.7",
3+
"version": "2.1.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)