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
8 changes: 4 additions & 4 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"apps/docs": "0.0.1",
"apps/cyclist-profile": "1.0.0",
"apps/cyclist-counts": "1.0.0",
"apps/traffic-deaths": "0.1.0"
"apps/docs": "0.0.2",
"apps/cyclist-profile": "1.1.0",
"apps/cyclist-counts": "1.1.0",
"apps/traffic-deaths": "0.1.1"
}
33 changes: 33 additions & 0 deletions apps/cyclist-counts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Changelog

## [1.1.0](https://github.com/Ameciclo/atlas/compare/cyclist-counts-v1.0.0...cyclist-counts-v1.1.0) (2025-11-08)


### Features

* add SSL/TLS support with CA certificate validation ([7c9d7d6](https://github.com/Ameciclo/atlas/commit/7c9d7d6fbd054976a2be861339fe2c0e7cc73511))
* Cyclist Counts API with shared database architecture and improved tooling ([2702074](https://github.com/Ameciclo/atlas/commit/27020749a0983f0403ea62a39265cf42eecb7122))
* **cyclist-counts:** add cyclist-counts API app with locations endpoint ([ff7001d](https://github.com/Ameciclo/atlas/commit/ff7001de16fcd64518863a7f4c0c06aa7ad993bd))
* **cyclist-counts:** add events and sessions API endpoints ([06b13a3](https://github.com/Ameciclo/atlas/commit/06b13a363641eb536386196ee738c0255ca874a1))
* implement comprehensive seed system with idempotency ([17f3f2f](https://github.com/Ameciclo/atlas/commit/17f3f2f61bea00d178701f6c79d913982c0c2f48))


### Bug Fixes

* copy seed-data to Docker images ([7973f4e](https://github.com/Ameciclo/atlas/commit/7973f4e7a5f402876c9dbdeb563c3cbed956aa66))
* **cyclist-counts:** add database package to Docker build ([5084a6d](https://github.com/Ameciclo/atlas/commit/5084a6d993e79cba142fd580f220da5c1b5601f9))
* **cyclist-counts:** add OpenAPI spec to docs app ([264bd91](https://github.com/Ameciclo/atlas/commit/264bd91a5f3816ac40da8227702afd3b13354d65))
* **cyclist-counts:** copy migrations from database package ([5d781e0](https://github.com/Ameciclo/atlas/commit/5d781e00216122d31c5f6f3bb1cf797e9e667f17))
* use getSSLConfig() in both apps for proper SSL handling ([2e90f87](https://github.com/Ameciclo/atlas/commit/2e90f8791aaf268147cb5f44ce871e89f14899ab))


### Styles

* apply biome formatting fixes ([ad8eedf](https://github.com/Ameciclo/atlas/commit/ad8eedfdc0abd7a2ab99cfd68decdf2788e262df))


### Code Refactoring

* centralize SSL configuration in database package ([3f499f2](https://github.com/Ameciclo/atlas/commit/3f499f28ee1b0c0f8cc65e5e902618de537f98b9))
* consolidate docker configuration and update app structure ([732a8e3](https://github.com/Ameciclo/atlas/commit/732a8e3df363efc2aebee571b70a0aee317523ec))
* simplify SSL configuration logic ([58036e3](https://github.com/Ameciclo/atlas/commit/58036e39f312d011b94fbe4d7212fd998cae6019))
2 changes: 1 addition & 1 deletion apps/cyclist-counts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@atlas/cyclist-counts",
"version": "1.0.0",
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
Expand Down
46 changes: 46 additions & 0 deletions apps/cyclist-profile/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Changelog

## [1.1.0](https://github.com/Ameciclo/atlas/compare/cyclist-profile-v1.0.0...cyclist-profile-v1.1.0) (2025-11-08)


### Features

* add environment variable documentation and remove act configuration ([ce3fcee](https://github.com/Ameciclo/atlas/commit/ce3fcee5672cea7495057d5aa459607dc3ba52ee))
* add health endpoint to cyclist-profile ([7df0e74](https://github.com/Ameciclo/atlas/commit/7df0e7438abca6e384ba43a076d7f2faa4376f92))
* add SSL/TLS support with CA certificate validation ([7c9d7d6](https://github.com/Ameciclo/atlas/commit/7c9d7d6fbd054976a2be861339fe2c0e7cc73511))
* configure production API URL in OpenAPI specs ([fc32ce2](https://github.com/Ameciclo/atlas/commit/fc32ce2325ac4e451a0399d1743888d3885ffced))
* **deployment:** add Portainer webhook-based deployment strategy ([9aee9c2](https://github.com/Ameciclo/atlas/commit/9aee9c251b2871d54203d6f366384a5329402aa7))
* implement comprehensive seed system with idempotency ([17f3f2f](https://github.com/Ameciclo/atlas/commit/17f3f2f61bea00d178701f6c79d913982c0c2f48))
* **openapi:** implement industry best practices for spec management ([d88a343](https://github.com/Ameciclo/atlas/commit/d88a343881dbd9aa7fdd758af6557ecf7ba625a0))


### Bug Fixes

* biome format & lint issues ([0fef111](https://github.com/Ameciclo/atlas/commit/0fef1115ece15faf8a1d717ee7ce2a3efc94fd94))
* biome issues ([5efb8eb](https://github.com/Ameciclo/atlas/commit/5efb8eb8ac5c279de89dbacd64a5705042f9a0b0))
* **biome:** apply formatting fixes to package.json and validation script ([d53e2ac](https://github.com/Ameciclo/atlas/commit/d53e2ac1dafd6648e495dbf540a78271afbc1b45))
* build issue tsconfig ([42fee7b](https://github.com/Ameciclo/atlas/commit/42fee7b861c6013a14be2827f7ef2e512c91721c))
* build issues ([f7d657b](https://github.com/Ameciclo/atlas/commit/f7d657b1f797fd8519f169604484f51ddc552cba))
* copy seed-data to Docker images ([7973f4e](https://github.com/Ameciclo/atlas/commit/7973f4e7a5f402876c9dbdeb563c3cbed956aa66))
* correct cyclist-profile start command path ([368115c](https://github.com/Ameciclo/atlas/commit/368115c902a5ebc0e86ebaa1de224d127c56e957))
* **cyclist-profile:** add DATABASE_URL to vitest config ([ed4043b](https://github.com/Ameciclo/atlas/commit/ed4043b2ae5cb5330d8d949dd91a68c41cd19552))
* **cyclist-profile:** implement lazy database connection for OpenAPI generation ([89949f2](https://github.com/Ameciclo/atlas/commit/89949f2686495253fb816a9c29501ea90dfeaa31))
* fixed type issues ([224983b](https://github.com/Ameciclo/atlas/commit/224983b65c79f2b42d6d3797a336dcce7499ad59))
* format ([c9dfd56](https://github.com/Ameciclo/atlas/commit/c9dfd5697c88f1ab361c54f43a3a32002e6dd89b))
* more ci fix ([2fbd10d](https://github.com/Ameciclo/atlas/commit/2fbd10d5b8dbc2c59f50db92fc9d446599405b81))
* seed and migration script ([e7e45d1](https://github.com/Ameciclo/atlas/commit/e7e45d12987fc167ca7983ba2c2a8f12fc7392d4))
* use getSSLConfig() in both apps for proper SSL handling ([2e90f87](https://github.com/Ameciclo/atlas/commit/2e90f8791aaf268147cb5f44ce871e89f14899ab))


### Styles

* fix biome formatting and linting issues ([2c850e8](https://github.com/Ameciclo/atlas/commit/2c850e8469bd5241cda397f1c2681220ec2b906a))


### Code Refactoring

* centralize SSL configuration in database package ([3f499f2](https://github.com/Ameciclo/atlas/commit/3f499f28ee1b0c0f8cc65e5e902618de537f98b9))
* consolidate docker configuration and update app structure ([732a8e3](https://github.com/Ameciclo/atlas/commit/732a8e3df363efc2aebee571b70a0aee317523ec))
* **cyclist-profile:** clean separation of concerns for OpenAPI generation ([347b25e](https://github.com/Ameciclo/atlas/commit/347b25ecfd5c0d9e0abdd26cb9ad8aae1df13de4))
* **cyclist-profile:** migrate to shared database package ([282b8b3](https://github.com/Ameciclo/atlas/commit/282b8b3209885ac36f78c2dc0c87501d7f9017a4))
* simplify SSL configuration logic ([58036e3](https://github.com/Ameciclo/atlas/commit/58036e39f312d011b94fbe4d7212fd998cae6019))
2 changes: 1 addition & 1 deletion apps/cyclist-profile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@atlas/cyclist-profile",
"version": "1.0.0",
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
Expand Down
48 changes: 48 additions & 0 deletions apps/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Changelog

## [0.0.2](https://github.com/Ameciclo/atlas/compare/docs-v0.0.1...docs-v0.0.2) (2025-11-08)


### Features

* add traffic-deaths API with summary endpoint ([a25fc81](https://github.com/Ameciclo/atlas/commit/a25fc81efd6cbbe28b28ea0647d5b0796fe9d528))
* add traffic-deaths API with summary endpoint ([777c822](https://github.com/Ameciclo/atlas/commit/777c822af655410008826e9c8dc613312312fa34))
* configure production API URL in OpenAPI specs ([fc32ce2](https://github.com/Ameciclo/atlas/commit/fc32ce2325ac4e451a0399d1743888d3885ffced))
* **create-turbo:** create basic ([5193a4a](https://github.com/Ameciclo/atlas/commit/5193a4aa2b8bb03d26825439eb1f63f37b9c7dc5))
* Cyclist Counts API with shared database architecture and improved tooling ([2702074](https://github.com/Ameciclo/atlas/commit/27020749a0983f0403ea62a39265cf42eecb7122))
* **docs:** add package description for better identification ([c421bed](https://github.com/Ameciclo/atlas/commit/c421bed5a8830c94896d4f2cad1c4d2b6e0becff))
* **docs:** add version display to documentation interface ([242426d](https://github.com/Ameciclo/atlas/commit/242426d152b1fc8e761c1fa260a135092aa31c0e))
* implement comprehensive seed system with idempotency ([17f3f2f](https://github.com/Ameciclo/atlas/commit/17f3f2f61bea00d178701f6c79d913982c0c2f48))


### Bug Fixes

* biome format & lint issues ([0fef111](https://github.com/Ameciclo/atlas/commit/0fef1115ece15faf8a1d717ee7ce2a3efc94fd94))
* biome issues ([5efb8eb](https://github.com/Ameciclo/atlas/commit/5efb8eb8ac5c279de89dbacd64a5705042f9a0b0))
* build issues ([f7d657b](https://github.com/Ameciclo/atlas/commit/f7d657b1f797fd8519f169604484f51ddc552cba))
* **ci,docs:** generate all OpenAPI specs when building docs image and fix healthcheck ([ef9d5bc](https://github.com/Ameciclo/atlas/commit/ef9d5bc552b4c16299215b6d9a8afe883c2e3c99))
* **cyclist-counts:** add OpenAPI spec to docs app ([264bd91](https://github.com/Ameciclo/atlas/commit/264bd91a5f3816ac40da8227702afd3b13354d65))
* **docs:** apply biome formatting to index.json ([239fed3](https://github.com/Ameciclo/atlas/commit/239fed356b2158daf542f36acbd372610c1f15b5))
* removed openapi specs ([2250cde](https://github.com/Ameciclo/atlas/commit/2250cde16a7fa5f665d7ecdeb770cfd1a67a4d01))


### Documentation

* **docs:** enhance README with feature highlights ([5fc913c](https://github.com/Ameciclo/atlas/commit/5fc913c658edceb52894a86a027d32b871f2a3c1))


### Styles

* **docs:** fix biome formatting for version display code ([cc9bff5](https://github.com/Ameciclo/atlas/commit/cc9bff56f11b730908668d7b96144d77adbb280f))
* fix biome formatting and linting issues ([2c850e8](https://github.com/Ameciclo/atlas/commit/2c850e8469bd5241cda397f1c2681220ec2b906a))


### Code Refactoring

* consolidate docker configuration and update app structure ([732a8e3](https://github.com/Ameciclo/atlas/commit/732a8e3df363efc2aebee571b70a0aee317523ec))
* **docs:** remove version display elements from UI ([bf80036](https://github.com/Ameciclo/atlas/commit/bf80036eceaa6c8001376c8dfd3f878719909fa9))


### Continuous Integration

* move OpenAPI generation to CI/CD pipeline ([b493ca9](https://github.com/Ameciclo/atlas/commit/b493ca94bbef6055c829b0b56e0c3147496a35c4))
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@atlas/docs",
"private": true,
"version": "0.0.1",
"version": "0.0.2",
"description": "Unified API documentation interface for Atlas microservices",
"type": "module",
"scripts": {
Expand Down
37 changes: 37 additions & 0 deletions apps/traffic-deaths/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Changelog

## [0.1.1](https://github.com/Ameciclo/atlas/compare/traffic-deaths-v0.1.0...traffic-deaths-v0.1.1) (2025-11-08)


### Features

* add cyclist deaths endpoint with CID-10 filtering ([1cb14e4](https://github.com/Ameciclo/atlas/commit/1cb14e42c3241f706756b5d87dfb1f0f4eabdc70))
* add database migration and seed script for traffic deaths data ([199c1d3](https://github.com/Ameciclo/atlas/commit/199c1d3d0af5e5d66c22dd484af11104eac9c014))
* add traffic-deaths API with summary endpoint ([a25fc81](https://github.com/Ameciclo/atlas/commit/a25fc81efd6cbbe28b28ea0647d5b0796fe9d528))
* add traffic-deaths API with summary endpoint ([777c822](https://github.com/Ameciclo/atlas/commit/777c822af655410008826e9c8dc613312312fa34))
* implement comprehensive seed system with idempotency ([17f3f2f](https://github.com/Ameciclo/atlas/commit/17f3f2f61bea00d178701f6c79d913982c0c2f48))
* implement real database queries for summary endpoint ([427b504](https://github.com/Ameciclo/atlas/commit/427b504a463117a38acdc82fe4659f479e380038))


### Bug Fixes

* add typescript-config dependency and fix type safety issues ([3804f44](https://github.com/Ameciclo/atlas/commit/3804f443b29806c3e12b254b69137f663a988f47))
* configure traffic-deaths app to use shared atlas_dev database ([5b2bc27](https://github.com/Ameciclo/atlas/commit/5b2bc2772b6dfc3b3152817bd9ce912aee6a90a8))
* make CSV directory configurable for seed script ([8dd74db](https://github.com/Ameciclo/atlas/commit/8dd74db03cdd57885a69c0bdd8104ecd4fe4b067))
* update traffic-deaths OpenAPI generation to copy spec to docs ([325df71](https://github.com/Ameciclo/atlas/commit/325df7113b916ce1189b1eaec637a17f397fe8f6))


### Styles

* fix biome linting and formatting issues ([dd3f532](https://github.com/Ameciclo/atlas/commit/dd3f5320f32a95a8aa5cfd46dc900aa11bf22b6c))


### Code Refactoring

* consolidate docker configuration and update app structure ([732a8e3](https://github.com/Ameciclo/atlas/commit/732a8e3df363efc2aebee571b70a0aee317523ec))
* improve query patterns and optimize by-transport-mode endpoint ([0ea4947](https://github.com/Ameciclo/atlas/commit/0ea4947356f1cf27268114c8680376cb829e9302))


### Tests

* fix health check test by mocking db.execute ([14cf798](https://github.com/Ameciclo/atlas/commit/14cf7988014424d4bdd233d244d4ce5c0a2962d3))
2 changes: 1 addition & 1 deletion apps/traffic-deaths/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@atlas/traffic-deaths",
"version": "0.1.0",
"version": "0.1.1",
"description": "API service for managing traffic deaths data from DATASUS",
"type": "module",
"main": "./dist/index.js",
Expand Down