Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"packages/assets": "4.2.0",
"packages/basic": "2.2.0",
"packages/body": "3.2.0",
"packages/cookie": "3.2.0",
"packages/cors": "1.1.0",
"packages/decorators": "4.2.0",
"packages/i18n": "3.2.0",
"packages/logger": "1.1.0",
"packages/prometheus": "3.2.0",
"packages/query": "3.2.0",
"packages/rate-limit": "3.2.0",
"packages/rate-limit-redis": "4.2.0",
"packages/swagger-ui": "3.2.0"
"packages/assets": "5.0.0",
"packages/basic": "3.0.0",
"packages/body": "4.0.0",
"packages/cookie": "4.0.0",
"packages/cors": "2.0.0",
"packages/decorators": "5.0.0",
"packages/i18n": "4.0.0",
"packages/logger": "2.0.0",
"packages/prometheus": "4.0.0",
"packages/query": "4.0.0",
"packages/rate-limit": "4.0.0",
"packages/rate-limit-redis": "5.0.0",
"packages/swagger-ui": "4.0.0"
}
44 changes: 22 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions packages/assets/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## [5.0.0](https://github.com/routup/plugins/compare/assets-v4.2.0...assets-v5.0.0) (2026-05-20)


### ⚠ BREAKING CHANGES

* plugins now require routup ^6.0.0. v5 is no longer supported.
* requires routup ^6.0.0-beta.0. Public APIs that previously typed against `Router` / `IRouter` (e.g. decorators `mountController(router: IRouter, ...)`) now type against `App` / `IApp`.

### Features

* migrate plugins to routup v6.0.0-beta.0 ([b1cbc45](https://github.com/routup/plugins/commit/b1cbc45673b38d27ab489f08efff46f90e81a17c))
* pin to routup ^6.0.0 GA and drop App.clone() usage ([1042d71](https://github.com/routup/plugins/commit/1042d7194c21e3a6d155804038245e4c7f62d0c1))

## [4.2.0](https://github.com/routup/plugins/compare/assets-v4.1.0...assets-v4.2.0) (2026-05-12)


Expand Down
2 changes: 1 addition & 1 deletion packages/assets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@routup/assets",
"version": "4.2.0",
"version": "5.0.0",
"type": "module",
"description": "Routup plugin for serving static files.",
"exports": {
Expand Down
22 changes: 22 additions & 0 deletions packages/basic/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,28 @@
* dependencies
* @routup/query bumped from ^2.3.0 to ^2.3.1

## [3.0.0](https://github.com/routup/plugins/compare/basic-v2.2.0...basic-v3.0.0) (2026-05-20)


### ⚠ BREAKING CHANGES

* plugins now require routup ^6.0.0. v5 is no longer supported.
* requires routup ^6.0.0-beta.0. Public APIs that previously typed against `Router` / `IRouter` (e.g. decorators `mountController(router: IRouter, ...)`) now type against `App` / `IApp`.

### Features

* migrate plugins to routup v6.0.0-beta.0 ([b1cbc45](https://github.com/routup/plugins/commit/b1cbc45673b38d27ab489f08efff46f90e81a17c))
* pin to routup ^6.0.0 GA and drop App.clone() usage ([1042d71](https://github.com/routup/plugins/commit/1042d7194c21e3a6d155804038245e4c7f62d0c1))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @routup/body bumped from ^3.2.0 to ^4.0.0
* @routup/cookie bumped from ^3.2.0 to ^4.0.0
* @routup/query bumped from ^3.2.0 to ^4.0.0

## [2.2.0](https://github.com/routup/plugins/compare/basic-v2.1.0...basic-v2.2.0) (2026-05-12)


Expand Down
8 changes: 4 additions & 4 deletions packages/basic/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@routup/basic",
"version": "2.2.0",
"version": "3.0.0",
"type": "module",
"description": "A basic plugin, which includes the body, cookie & query plugin.",
"exports": {
Expand Down Expand Up @@ -66,9 +66,9 @@
"routup": "^6.0.0"
},
"dependencies": {
"@routup/body": "^3.2.0",
"@routup/cookie": "^3.2.0",
"@routup/query": "^3.2.0"
"@routup/body": "^4.0.0",
"@routup/cookie": "^4.0.0",
"@routup/query": "^4.0.0"
},
"devDependencies": {
"routup": "^6.0.0"
Expand Down
13 changes: 13 additions & 0 deletions packages/body/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## [4.0.0](https://github.com/routup/plugins/compare/body-v3.2.0...body-v4.0.0) (2026-05-20)


### ⚠ BREAKING CHANGES

* plugins now require routup ^6.0.0. v5 is no longer supported.
* requires routup ^6.0.0-beta.0. Public APIs that previously typed against `Router` / `IRouter` (e.g. decorators `mountController(router: IRouter, ...)`) now type against `App` / `IApp`.

### Features

* migrate plugins to routup v6.0.0-beta.0 ([b1cbc45](https://github.com/routup/plugins/commit/b1cbc45673b38d27ab489f08efff46f90e81a17c))
* pin to routup ^6.0.0 GA and drop App.clone() usage ([1042d71](https://github.com/routup/plugins/commit/1042d7194c21e3a6d155804038245e4c7f62d0c1))

## [3.2.0](https://github.com/routup/plugins/compare/body-v3.1.0...body-v3.2.0) (2026-05-12)


Expand Down
2 changes: 1 addition & 1 deletion packages/body/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@routup/body",
"version": "3.2.0",
"version": "4.0.0",
"type": "module",
"description": "Body plugin for routup.",
"exports": {
Expand Down
13 changes: 13 additions & 0 deletions packages/cookie/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log

## [4.0.0](https://github.com/routup/plugins/compare/cookie-v3.2.0...cookie-v4.0.0) (2026-05-20)


### ⚠ BREAKING CHANGES

* plugins now require routup ^6.0.0. v5 is no longer supported.
* requires routup ^6.0.0-beta.0. Public APIs that previously typed against `Router` / `IRouter` (e.g. decorators `mountController(router: IRouter, ...)`) now type against `App` / `IApp`.

### Features

* migrate plugins to routup v6.0.0-beta.0 ([b1cbc45](https://github.com/routup/plugins/commit/b1cbc45673b38d27ab489f08efff46f90e81a17c))
* pin to routup ^6.0.0 GA and drop App.clone() usage ([1042d71](https://github.com/routup/plugins/commit/1042d7194c21e3a6d155804038245e4c7f62d0c1))

## [3.2.0](https://github.com/routup/plugins/compare/cookie-v3.1.0...cookie-v3.2.0) (2026-05-12)


Expand Down
2 changes: 1 addition & 1 deletion packages/cookie/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@routup/cookie",
"version": "3.2.0",
"version": "4.0.0",
"type": "module",
"description": "Cookie plugin for routup.",
"exports": {
Expand Down
13 changes: 13 additions & 0 deletions packages/cors/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [2.0.0](https://github.com/routup/plugins/compare/cors-v1.1.0...cors-v2.0.0) (2026-05-20)


### ⚠ BREAKING CHANGES

* plugins now require routup ^6.0.0. v5 is no longer supported.
* requires routup ^6.0.0-beta.0. Public APIs that previously typed against `Router` / `IRouter` (e.g. decorators `mountController(router: IRouter, ...)`) now type against `App` / `IApp`.

### Features

* migrate plugins to routup v6.0.0-beta.0 ([b1cbc45](https://github.com/routup/plugins/commit/b1cbc45673b38d27ab489f08efff46f90e81a17c))
* pin to routup ^6.0.0 GA and drop App.clone() usage ([1042d71](https://github.com/routup/plugins/commit/1042d7194c21e3a6d155804038245e4c7f62d0c1))

## [1.1.0](https://github.com/routup/plugins/compare/cors-v1.0.1...cors-v1.1.0) (2026-05-12)


Expand Down
2 changes: 1 addition & 1 deletion packages/cors/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@routup/cors",
"version": "1.1.0",
"version": "2.0.0",
"type": "module",
"description": "CORS plugin for routup.",
"exports": {
Expand Down
27 changes: 27 additions & 0 deletions packages/decorators/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,33 @@
* devDependencies
* @routup/query bumped from ^2.3.0 to ^2.3.1

## [5.0.0](https://github.com/routup/plugins/compare/decorators-v4.2.0...decorators-v5.0.0) (2026-05-20)


### ⚠ BREAKING CHANGES

* plugins now require routup ^6.0.0. v5 is no longer supported.
* requires routup ^6.0.0-beta.0. Public APIs that previously typed against `Router` / `IRouter` (e.g. decorators `mountController(router: IRouter, ...)`) now type against `App` / `IApp`.

### Features

* migrate plugins to routup v6.0.0-beta.0 ([b1cbc45](https://github.com/routup/plugins/commit/b1cbc45673b38d27ab489f08efff46f90e81a17c))
* pin to routup ^6.0.0 GA and drop App.clone() usage ([1042d71](https://github.com/routup/plugins/commit/1042d7194c21e3a6d155804038245e4c7f62d0c1))


### Bug Fixes

* **deps:** bump the minorandpatch group across 1 directory with 8 updates ([#811](https://github.com/routup/plugins/issues/811)) ([0393792](https://github.com/routup/plugins/commit/0393792b71c19ddfe58960e01c33910e002c3e2c))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @routup/body bumped from ^3.2.0 to ^4.0.0
* @routup/cookie bumped from ^3.2.0 to ^4.0.0
* @routup/query bumped from ^3.2.0 to ^4.0.0

## [4.2.0](https://github.com/routup/plugins/compare/decorators-v4.1.0...decorators-v4.2.0) (2026-05-12)


Expand Down
8 changes: 4 additions & 4 deletions packages/decorators/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@routup/decorators",
"version": "4.2.0",
"version": "5.0.0",
"type": "module",
"description": "Decorators plugin for routup.",
"exports": {
Expand Down Expand Up @@ -64,9 +64,9 @@
}
},
"dependencies": {
"@routup/body": "^3.2.0",
"@routup/cookie": "^3.2.0",
"@routup/query": "^3.2.0"
"@routup/body": "^4.0.0",
"@routup/cookie": "^4.0.0",
"@routup/query": "^4.0.0"
},
"devDependencies": {
"@trapi/core": "^2.0.0",
Expand Down
Loading