Releases: FOSSFORGE/uWestJS
Releases · FOSSFORGE/uWestJS
v2.0.1
v2.0.0
Introduction to HTTP stack
Added
- feat: Phase 0 & 1: Foundation for v2.0.0 HTTP Platform Support #10
- feat: implement HTTP request body parsing (Phase 2) #12
- feat: Implement Body Parsing and HTTP Response Enhancements #19
- feat: implement NestJS middleware pipeline #20
- feat: implement advanced HTTP features (multipart, static files, CORS, compression) #23
- refactor: migrate to domain-driven architecture separating HTTP and WebSocket concerns #26
- v2.0.0 HTTP Support for uWestJS #27
- add clarifying comments for two rejection callbacks in body-parser #149
- fix: avoid duplicate content-length on empty responses #148
- docs: add get assigned section to CONTRIBUTING.md #110
- docs: add JSDoc note about cookie serialization limitations #111
- Feat: Add proper documentation for both Websockets and HTTP capabilities #33
- chore: add .coderabbit.yaml to disable auto reviews #42
- feat: add comprehensive benchmark suite with CI/CD integration #45
- feat: export compression constants and auto-wrap ModuleRef #55
- Add Compression Benchmark Scenario #59
- Add streaming benchmark scenarios #66
- Feat: add e2e request body parsing test #98
- Test: Add req and res streaming e2e tests #106
- docs(body-parser): document flushBuffered exception behavior (#86) #101
- docs: update benchmark results in README.md #68
- Test: Add multipart file upload e2e test #108
- Include jest types for spec files #113
- shared frozen constant for empty JSON bodies #51
- Feat: add static-file serving e2e tests #115
- Add Missing response stream test #117
- feat: native HTTP response compression #121
- Feat: Add HTTP compression E2E test #123
- Feat: add CORS e2e test #127
- docs: add comprehensive keywords for discoverability #35 #46
- Create CONTRIBUTING.md #13
- Feat: add middleware execution e2e test #136
- Feat: add headers and cookies e2e tests #137
- Feat: add route matching e2e tests #141
- Feat: add error handling e2e tests #144
- Add HTTP method and connection handling e2e tests #166
- Feat: add NestJS DI e2e test #169
Fixed
- Fixes critical WebSocket configuration gaps and async route handler errors. #32
- fix(websocket): throw on ExecutionContext.switchToRpc() #93
- test(multipart): remove redundant jest.useRealTimers in async handlers test #92
- Fix: misleading example in etagFn documentation #91
- fix(cors): reject preflight immediately if any requested header is disallowed #88
- fix(multipart): prevent options.headers from overriding request headers #75
- Upgrade NodeJS engine to 24<=25 and upgrade @types/node to 24 #44
- fix(http): resolve instance handling #128 and misleading jsDOC issue #145
- Fix: Skip benchmarks for Dependabot PRs #50
- test(request): verify empty-body json() cache on the same request (#80) #156
- Fix duplicate Content-Length header in CompressionHandler.compressBuffer() #60
- fix: critical streaming bugs for request and response streaming #65
- Remove unsafe abort handler fallback in _initBodyParser #70
- test(routing): compute content-length dynamically in middleware specs #109
- Fix: Refactor streaming mode test to use modern async/await pattern #102
- Fix #94 Return proper status code for large responses and #95 Support decompression #97
- Fix Content-Length piping RFC violation + optimize chunked mode syscalls #107
- docs: Use compress for HttpOptions in Compression.md #125
- Fix: merge standalone req and res stream e2e tests into one #142
- Fix: _write() chunked mode defers callback when backpressure is active #164
- fix: support HTTP middleware metadata instances #130
- fix: add benchmarks and test directory to exclude from the build #174
- chore: update eslint ignore patterns to match in subdirectories #170
- fix: suppress false-positive ERROR log on client-abort in handleException #165
- refactor(middleware): use metadataTarget consistently in class decorator branches #161
- fix: suppress response body for HEAD requests #154
- fix: support HEAD requests for GET routes #152
- fix(response): make send() a no-op when response already finished (#134) #135
- test(uws-platform): assert HEAD route registration on static-asset single-call tests #116
Changed
v1.0.1
- Major
uWebSocketsJsDependency bump to release20.60.0 - Bumps of
DevDependencies - NodeJS support till 25
Test Release 1
Release v1.0.0: Initial stable release of uWestJS
This marks the first stable release of uWestJS, a high-performance WebSocket adapter for NestJS powered by uWebSockets.js.
Features:
- Full NestJS WebSocket decorator support
- Complete middleware support (Guards, Pipes, Filters, Interceptors)
- Room-based broadcasting with Socket.IO-compatible API
- Dependency injection support for middleware via
ModuleRef - Automatic backpressure handling and message queuing
- CORS configuration with flexible origin validation
- Lifecycle hooks (
afterInit,handleConnection,handleDisconnect) - Comprehensive test coverage (248 tests: 209 unit, 39 integration)
Documentation:
- Complete README with quick start and usage examples
- Comprehensive API reference documentation
- Migration guide from Socket.IO adapter
- Performance tips and troubleshooting guide