Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiogc9 committed Aug 9, 2023
1 parent f3a1c8a commit 8a80019
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.1.0](https://github.com/sergiogc9/nodejs-server/compare/v1.0.1...v1.1.0) (2023-08-09)

### Features

- Add compatibily with HTTPS and SSL certificates for different domains ([db9ec61](https://github.com/sergiogc9/nodejs-server/commit/db9ec61d629a035f8a90a43d04823129b0584a22))
- Add httpAuthMiddleware middleware in utils package ([f084487](https://github.com/sergiogc9/nodejs-server/commit/f084487ede2adb4059aa70ea530dfc671155fec1))
- Add option to enable HTTPAuth in each route in StaticServer ([af98ce5](https://github.com/sergiogc9/nodejs-server/commit/af98ce5e59baa866096e123857758c8e27053b71))
- Use SHA512 hashed passwords when using HTTP authentication middleware ([715c967](https://github.com/sergiogc9/nodejs-server/commit/715c967eb678b7e4d06420f6f692622a59de2640))

# [0.3.0](https://github.com/sergiogc9/nodejs-server/compare/v0.2.3...v0.3.0) (2023-01-22)

### Features
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.0.1",
"version": "1.1.0",
"useWorkspaces": true,
"npmClient": "yarn",
"packages": ["packages/*"]
Expand Down
9 changes: 9 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.1.0](https://github.com/sergiogc9/nodejs-server/compare/v1.0.1...v1.1.0) (2023-08-09)

### Features

- Add compatibily with HTTPS and SSL certificates for different domains ([db9ec61](https://github.com/sergiogc9/nodejs-server/commit/db9ec61d629a035f8a90a43d04823129b0584a22))
- Add httpAuthMiddleware middleware in utils package ([f084487](https://github.com/sergiogc9/nodejs-server/commit/f084487ede2adb4059aa70ea530dfc671155fec1))
- Add option to enable HTTPAuth in each route in StaticServer ([af98ce5](https://github.com/sergiogc9/nodejs-server/commit/af98ce5e59baa866096e123857758c8e27053b71))
- Use SHA512 hashed passwords when using HTTP authentication middleware ([715c967](https://github.com/sergiogc9/nodejs-server/commit/715c967eb678b7e4d06420f6f692622a59de2640))

# [0.3.0](https://github.com/sergiogc9/nodejs-server/compare/v0.2.3...v0.3.0) (2023-01-22)

### Features
Expand Down
4 changes: 2 additions & 2 deletions packages/server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sergiogc9/nodejs-server",
"version": "1.0.1",
"version": "1.1.0",
"description": "NodeJS Typescript Server",
"author": "Sergio Gómez Cosgaya ([email protected])",
"repository": "git://github.com/sergiogc9/nodejs-server.git",
Expand All @@ -27,7 +27,7 @@
},
"dependencies": {
"@moebius/http-graceful-shutdown": "^1.1.0",
"@sergiogc9/nodejs-utils": "^1.0.1",
"@sergiogc9/nodejs-utils": "^1.1.0",
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
Expand Down
8 changes: 8 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.1.0](https://github.com/sergiogc9/nodejs-server/compare/v1.0.1...v1.1.0) (2023-08-09)

### Features

- Add httpAuthMiddleware middleware in utils package ([f084487](https://github.com/sergiogc9/nodejs-server/commit/f084487ede2adb4059aa70ea530dfc671155fec1))
- Add option to enable HTTPAuth in each route in StaticServer ([af98ce5](https://github.com/sergiogc9/nodejs-server/commit/af98ce5e59baa866096e123857758c8e27053b71))
- Use SHA512 hashed passwords when using HTTP authentication middleware ([715c967](https://github.com/sergiogc9/nodejs-server/commit/715c967eb678b7e4d06420f6f692622a59de2640))

# [0.3.0](https://github.com/sergiogc9/nodejs-server/compare/v0.2.3...v0.3.0) (2023-01-22)

**Note:** Version bump only for package @sergiogc9/nodejs-utils
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sergiogc9/nodejs-utils",
"version": "1.0.1",
"version": "1.1.0",
"description": "NodeJS TypeScript utils",
"author": "Sergio Gómez Cosgaya ([email protected])",
"repository": "git://github.com/sergiogc9/nodejs-server.git",
Expand Down

0 comments on commit 8a80019

Please sign in to comment.