@openapi-typescript-infra/service 4.5.1 → 4.5.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/Makefile +3 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [4.5.3](https://github.com/openapi-typescript-infra/service/compare/v4.5.2...v4.5.3) (2023-10-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** get new confit for updated formatters ([d411d80](https://github.com/openapi-typescript-infra/service/commit/d411d808b7106ffac25464f09988ccedfc62b3c5))
|
|
7
|
+
|
|
8
|
+
## [4.5.2](https://github.com/openapi-typescript-infra/service/compare/v4.5.1...v4.5.2) (2023-10-20)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **make:** only build db when migrations change ([0bee073](https://github.com/openapi-typescript-infra/service/commit/0bee0737c84d8053f62e340f64715c1e2c4f69b3))
|
|
14
|
+
|
|
1
15
|
## [4.5.1](https://github.com/openapi-typescript-infra/service/compare/v4.5.0...v4.5.1) (2023-10-19)
|
|
2
16
|
|
|
3
17
|
|
package/Makefile
CHANGED
|
@@ -85,7 +85,9 @@ db-:
|
|
|
85
85
|
|
|
86
86
|
db-clean: db-drop db-ci
|
|
87
87
|
|
|
88
|
-
dbi:
|
|
88
|
+
dbi: src/generated/database.ts
|
|
89
|
+
|
|
90
|
+
src/generated/database.ts: $(wildcard migrations/* migrations/**/*)
|
|
89
91
|
echo "Generating database types"
|
|
90
92
|
DATABASE_URL=postgres://$(PGUSER):$(PGPASSWORD)@$(PGHOST)/$(DB_NAME) yarn kysely-codegen \
|
|
91
93
|
--dialect postgres --schema public \
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openapi-typescript-infra/service",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.3",
|
|
4
4
|
"description": "An opinionated framework for building configuration driven services - web, api, or ob. Uses OpenAPI, pino logging, express, confit, Typescript and vitest.",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"@opentelemetry/sdk-node": "^0.43.0",
|
|
81
81
|
"@opentelemetry/sdk-trace-base": "^1.17.1",
|
|
82
82
|
"@opentelemetry/semantic-conventions": "^1.17.1",
|
|
83
|
-
"@sesamecare-oss/confit": "^2.
|
|
83
|
+
"@sesamecare-oss/confit": "^2.1.1",
|
|
84
84
|
"@sesamecare-oss/opentelemetry-node-metrics": "^1.0.1",
|
|
85
85
|
"ajv": "^8.12.0",
|
|
86
86
|
"cookie-parser": "^1.4.6",
|