-
Notifications
You must be signed in to change notification settings - Fork 2
feat: coming closer to a first 1.0 release version #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
dgoerdes
commented
Jan 26, 2026
- switches from Oak to Hono
- build in observability
- clean up and focus on the important parts
- better docs
As it conflicts the status code 204 we do not respond with any data anymore
…tten to then update our read models
… patter as eventBus
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This is a significant refactoring PR that prepares the Nimbus framework for a 1.0 release. The main changes include:
Changes:
- Switches HTTP adapter from Oak to Hono for better performance and broader runtime support
- Introduces built-in observability with OpenTelemetry tracing and metrics throughout the framework
- Simplifies core architecture by removing complex router patterns and introducing cleaner message-based APIs
- Updates dependency versions (MongoDB 7.0.0, Zod 4.3.5) and refactors exception naming
Reviewed changes
Copilot reviewed 154 out of 156 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| packages/oak/* | Complete removal of Oak HTTP framework integration |
| packages/hono/* | New Hono adapter with correlation ID, logger middleware, and error handler |
| packages/mongodb/src/lib/tracing.ts | New OpenTelemetry tracing wrapper for MongoDB operations |
| packages/mongodb/src/lib/crud/* | All CRUD operations now wrapped with tracing spans |
| packages/core/src/lib/message/* | New simplified Command, Query, Event types following CloudEvents spec |
| packages/core/src/lib/eventBus/eventBus.ts | Rewritten EventBus with exponential backoff and observability |
| packages/core/src/lib/message/router.ts | New MessageRouter replacing old router implementation |
| packages/core/src/lib/exception/* | Exception name changes (e.g., NOT_FOUND_EXCEPTION → NOT_FOUND) |
| examples/the-expense/* | Complete removal of old example application |
| examples/hono-demo/* | New comprehensive example using Hono and new architecture |
| docs/* | Extensive documentation updates covering all new features |
Files not reviewed (1)
- docs/package-lock.json: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
|
||
| state = addUser(state, command); | ||
|
|
||
| if (state) { |
Copilot
AI
Jan 26, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This use of variable 'state' always evaluates to true.
|


