diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index f74ee0f316..d45370c713 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -- **Last updated**: 2025-01-29T16:25:48Z +- **Last updated**: 2025-01-30T15:45:22Z - **Generator**: [thi.ng/monopub](https://thi.ng/monopub) All notable changes to this project will be documented in this file. @@ -11,6 +11,22 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes and/or version bumps of transitive dependencies. +## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/server@0.2.0) (2025-01-30) + +#### 🚀 Features + +- add generics, various other updates ([a340f65](https://github.com/thi-ng/umbrella/commit/a340f65)) + - add generics to most main types/interfaces + - refactor `SessionInterceptor` as class w/ pluggable storage + - add `ISessionStore` and `InMemorySessionStore` impl + - update ServerOpts to allow augmenting request context object + - add default HTTP OPTIONS handler + - update Server cookie parsing + - add StaticOpts.auth flag + - update logRequest() interceptor + - update pkg exports + - update tests + ## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/server@0.1.0) (2025-01-29) #### 🚀 Features diff --git a/packages/server/package.json b/packages/server/package.json index 4cbcbcfc17..78bbd9ca3d 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@thi.ng/server", - "version": "0.1.0", + "version": "0.2.0", "description": "Minimal HTTP server with declarative routing, static file serving and freely extensible via pre/post interceptors", "type": "module", "module": "./index.js",