Skip to content

Commit

Permalink
v16.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nfroidure committed Feb 27, 2024
1 parent 140c13d commit 5f8f732
Show file tree
Hide file tree
Showing 19 changed files with 140 additions and 119 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
# [16.0.0](https://github.com/nfroidure/whook/compare/v15.0.0...v16.0.0) (2024-02-27)


### Bug Fixes

* **build:** fix AWS Lambdas and GCP Functions builds ([140c13d](https://github.com/nfroidure/whook/commit/140c13d17cff835f09779bb1813cabc724ef80d1))


### Code Refactoring

* **build:** move most of the code to ESM ([ae80d51](https://github.com/nfroidure/whook/commit/ae80d514c068aaee318719a4ab21c58bdccd0377)), closes [#102](https://github.com/nfroidure/whook/issues/102)


### BREAKING CHANGES

* **build:** Will require Node 20 since it relies on its ESM support. Also, the `PROJECT_SRC`
constant is removed and the `INITIALIZER_PATHS_MAP` constant is now supposed to have well designed
paths in it.



# [15.0.0](https://github.com/nfroidure/whook/compare/v14.0.0...v15.0.0) (2024-02-20)


Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"packages": [
"packages/*"
],
"version": "15.0.0",
"version": "16.0.0",
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
}
102 changes: 51 additions & 51 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions packages/whook-authorization/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}
},
"name": "@whook/authorization",
"version": "15.0.0",
"version": "16.0.0",
"description": "A wrapper to provide authorization support to a Whook server",
"type": "module",
"main": "dist/index.js",
Expand Down Expand Up @@ -53,7 +53,7 @@
},
"homepage": "https://github.com/nfroidure/whook",
"dependencies": {
"@whook/whook": "^15.0.0",
"@whook/whook": "^16.0.0",
"common-services": "^16.0.1",
"http-auth-utils": "^6.0.0",
"knifecycle": "^17.0.1",
Expand Down Expand Up @@ -166,4 +166,4 @@
"test": "npm run jest",
"type-check": "tsc --pretty --noEmit"
}
}
}
12 changes: 6 additions & 6 deletions packages/whook-aws-lambda/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}
},
"name": "@whook/aws-lambda",
"version": "15.0.0",
"version": "16.0.0",
"description": "Build and deploy to AWS Lambda with Whook.",
"type": "module",
"main": "dist/index.js",
Expand All @@ -45,10 +45,10 @@
"dependencies": {
"@types/aws-lambda": "^8.10.134",
"@types/bytes": "^3.1.4",
"@whook/cors": "^15.0.0",
"@whook/http-router": "^15.0.0",
"@whook/http-transaction": "^15.0.0",
"@whook/whook": "^15.0.0",
"@whook/cors": "^16.0.0",
"@whook/http-router": "^16.0.0",
"@whook/http-transaction": "^16.0.0",
"@whook/whook": "^16.0.0",
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"application-services": "^6.0.0",
Expand Down Expand Up @@ -173,4 +173,4 @@
"test": "npm run jest",
"type-check": "tsc --pretty --noEmit"
}
}
}
8 changes: 4 additions & 4 deletions packages/whook-cors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}
},
"name": "@whook/cors",
"version": "15.0.0",
"version": "16.0.0",
"description": "A wrapper to provide CORS support to a Whook server",
"type": "module",
"main": "dist/index.js",
Expand Down Expand Up @@ -53,8 +53,8 @@
"homepage": "https://github.com/nfroidure/whook",
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@whook/http-router": "^15.0.0",
"@whook/whook": "^15.0.0",
"@whook/http-router": "^16.0.0",
"@whook/whook": "^16.0.0",
"knifecycle": "^17.0.1",
"openapi-types": "^12.1.3",
"yhttperror": "^8.0.0"
Expand Down Expand Up @@ -165,4 +165,4 @@
"test": "npm run jest",
"type-check": "tsc --pretty --noEmit"
}
}
}

0 comments on commit 5f8f732

Please sign in to comment.