Skip to content

Commit 6aba68b

Browse files
authored
chore: bump 1.0.0-alpha-6 (#24)
1 parent a6d45c4 commit 6aba68b

File tree

6 files changed

+82
-4
lines changed

6 files changed

+82
-4
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
],
55
"useWorkspaces": true,
66
"npmClient": "yarn",
7-
"version": "1.0.0-alpha.5"
7+
"version": "1.0.0-alpha.6"
88
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "root",
3-
"version": "1.0.0-alpha.5",
3+
"version": "1.0.0-alpha.6",
44
"license": "BSD-3-Clause",
55
"private": true,
66
"workspaces": {

packages/rockets-server-auth/CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,45 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77
and this project adheres to
88
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [1.0.0-alpha.6] - 2026-02-19
11+
12+
### Changed
13+
14+
- **NestJS 11 upgrade**: Bumped all `@nestjs/*` dependencies
15+
to v11 (`@nestjs/common`, `@nestjs/core`, `@nestjs/swagger`,
16+
`@nestjs/jwt`, `@nestjs/passport`, `@nestjs/config`,
17+
`@nestjs/throttler`, `@nestjs/testing`, `@nestjs/typeorm`,
18+
`@nestjs/platform-express`) and updated `@concepta/*`
19+
packages from `7.0.0-alpha.8` to `7.0.0-alpha.10`.
20+
- **Invitation acceptance module**: Simplified and
21+
consolidated module definition; reduced boilerplate in
22+
`invitation-acceptance-data.interface` and acceptance
23+
controller.
24+
- **Admin module**: Refactored `RocketsAuthAdminModule` for
25+
consistency; added CRUD relations support for roles in
26+
`RocketsAuthRoleAdminModule`.
27+
- **Options interfaces**: Trimmed verbose JSDoc in
28+
`rockets-auth-options-extras.interface` and
29+
`rockets-auth-options.interface` to concise descriptions.
30+
- **Module definition**: Simplified `rockets-auth.module-definition`
31+
configuration and provider setup.
32+
- **Fixture imports**: Replaced deep `dist/` imports with
33+
root package imports for `auth-jwt`, `auth-refresh`, and
34+
`authentication` service fixtures.
35+
- **Swagger generation**: Added `stripTopLevelResponseSchemas`
36+
cleanup pass, set contact and license metadata, and
37+
updated generated `swagger.json`.
38+
39+
### Added
40+
41+
- **Compatibility shim**: New
42+
`shared/compat/concepta-internals.ts` centralizes all
43+
deep `@concepta/*/dist` imports to minimize churn when
44+
upstream packages update exports.
45+
- **Admin relations e2e tests**: New
46+
`rockets-auth-admin.relations.e2e-spec.ts` covering
47+
user-role CRUD relation endpoints.
48+
1049
## [1.0.0-alpha.5] - 2026-02-03
1150

1251
### Added
@@ -178,6 +217,7 @@ and this project adheres to
178217
`class-validator`, `rxjs`
179218
- BSD-3-Clause license
180219

220+
[1.0.0-alpha.6]: https://github.com/btwld/rockets/releases/tag/v1.0.0-alpha.6
181221
[1.0.0-alpha.5]: https://github.com/btwld/rockets/releases/tag/v1.0.0-alpha.5
182222
[1.0.0-alpha.4]: https://github.com/btwld/rockets/releases/tag/v1.0.0-alpha.4
183223
[1.0.0-alpha.3]: https://github.com/btwld/rockets/releases/tag/v1.0.0-alpha.3

packages/rockets-server-auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitwild/rockets-auth",
3-
"version": "1.0.0-alpha.5",
3+
"version": "1.0.0-alpha.6",
44
"description": "Rockets Auth - Complete authentication and authorization solution for NestJS with JWT, OAuth, OTP, role-based access control, and more",
55
"author": "Thiago Ramalho <thiago.ramalho@concepta.com>",
66
"license": "BSD-3-Clause",

packages/rockets-server/CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,43 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77
and this project adheres to
88
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
99

10+
## [1.0.0-alpha.6] - 2026-02-19
11+
12+
### Changed
13+
14+
- **NestJS 11 upgrade**: Bumped all `@nestjs/*` dependencies
15+
to v11 (`@nestjs/common`, `@nestjs/core`, `@nestjs/swagger`,
16+
`@nestjs/config`, `@nestjs/testing`, `@nestjs/typeorm`,
17+
`@nestjs/platform-express`) and updated `@concepta/*`
18+
packages from `7.0.0-alpha.8` to `7.0.0-alpha.10`.
19+
- **User metadata model service**: `getUserMetadataByUserId`
20+
now returns `null` instead of throwing `NotFoundException`
21+
when no metadata exists, simplifying consumer code.
22+
- **Me controller**: Removed redundant try/catch and error
23+
logging; relies on the model service for error handling.
24+
- **User DTOs**: Added `additionalProperties: true` to
25+
Swagger `userMetadata` schemas for flexible metadata
26+
payloads.
27+
- **Module definition**: `createRocketsControllers` now
28+
respects `extras.controllers` for custom controller
29+
overrides.
30+
- **Options extras interface**: Trimmed verbose JSDoc to
31+
concise descriptions.
32+
- **Error handling**: Exception catch blocks now rethrow
33+
`HttpException` subclasses alongside `RuntimeException`.
34+
35+
### Added
36+
37+
- **User metadata model service unit tests**: Comprehensive
38+
spec covering exception mapping, CRUD operations,
39+
`createOrUpdate`, and `hasUserMetadata`.
40+
41+
### Fixed
42+
43+
- **TypeScript strict mode**: Added definite assignment
44+
assertions (`!`) to DTO properties in e2e specs and
45+
`UserResponseDto`.
46+
1047
## [1.0.0-alpha.5] - 2026-02-03
1148

1249
### Added
@@ -103,6 +140,7 @@ and this project adheres to
103140
- Compatible with NestJS 10.x
104141
- BSD-3-Clause license
105142

143+
[1.0.0-alpha.6]: https://github.com/btwld/rockets/releases/tag/v1.0.0-alpha.6
106144
[1.0.0-alpha.5]: https://github.com/btwld/rockets/releases/tag/v1.0.0-alpha.5
107145
[1.0.0-alpha.4]: https://github.com/btwld/rockets/releases/tag/v1.0.0-alpha.4
108146
[1.0.0-alpha.3]: https://github.com/btwld/rockets/releases/tag/v1.0.0-alpha.3

packages/rockets-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitwild/rockets",
3-
"version": "1.0.0-alpha.5",
3+
"version": "1.0.0-alpha.6",
44
"description": "Rockets - Core server functionality for NestJS applications with built-in authentication, user management, and API scaffolding",
55
"author": "Thiago Ramalho <thiago.ramalho@concepta.com>",
66
"license": "BSD-3-Clause",

0 commit comments

Comments
 (0)