Skip to content
Open
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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.2.1"
".": "0.3.0"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,20 @@
* update vulnerable runtime dependencies, constrain patched transitives, and audit the complete graph during validation
* share production image layers, refresh and retry registry pulls, and allow bounded cold ARM pulls to finish

## [0.3.0](https://github.com/Open-Syria/datasets-api/compare/v0.2.1...v0.3.0) (2026-07-25)


### Features

* expose telecom dataset endpoints ([da3f06c](https://github.com/Open-Syria/datasets-api/commit/da3f06c25992cfad26caa27f00dc22233154897c))


### Bug Fixes

* enforce pinned dataset deployment integrity ([48bedb7](https://github.com/Open-Syria/datasets-api/commit/48bedb72fcb3f5bd64e5fe9ecb4d3466c22b45a5))
* make production image pulls resilient ([2225f73](https://github.com/Open-Syria/datasets-api/commit/2225f730c256d82bfe674bb1bf457fe7764e2c1e))
* pin geography dataset v0.1.5 ([28ba890](https://github.com/Open-Syria/datasets-api/commit/28ba890ba5aa307211d9fda4ec235ae0ab39b1d5))

## [0.2.1](https://github.com/Open-Syria/datasets-api/compare/v0.2.0...v0.2.1) (2026-07-08)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@opensyria/datasets-api",
"version": "0.2.1",
"version": "0.3.0",
"description": "Read-only datasets API for OpenSyria.",
"author": "OpenSyria",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/tools/swagger/swagger.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ export async function setupSwagger(app: NestFastifyApplication, appConfig: AppCo
const documentConfig = new DocumentBuilder()
.setTitle(API_DOCUMENT_TITLE)
.setDescription(API_DOCUMENT_DESCRIPTION)
.setVersion('0.2.1') // x-release-please-version
.setVersion('0.3.0') // x-release-please-version
.setOpenAPIVersion('3.1.0')
.addServer(appConfig.url);

Expand Down