Skip to content

Commit

Permalink
chore(): publish 5.7.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Feb 8, 2019
1 parent bf26d31 commit 0e788fd
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nestjs",
"version": "5.7.1",
"version": "5.7.2",
"description": "Modern, fast, powerful node.js web framework",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
Expand Down
3 changes: 2 additions & 1 deletion packages/common/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors

#### Base Sponsor

<a href="https://blueanchor.io/"><img src="https://nestjs.com/img/blueanchor.png" width="300" /></a>
<a href="https://blueanchor.io/"><img src="https://nestjs.com/img/blueanchor.png" width="300" /></a> &nbsp;
<a href="https://www.novologic.com/"><img src="https://nestjs.com/img/novologic.png" width="200" /></a>

#### Silver Sponsors
<a href="https://neoteric.eu/"><img src="https://nestjs.com/img/neoteric-cut.png" width="120" valign="middle" /></a> &nbsp;
Expand Down
3 changes: 2 additions & 1 deletion packages/core/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors

#### Base Sponsor

<a href="https://blueanchor.io/"><img src="https://nestjs.com/img/blueanchor.png" width="300" /></a>
<a href="https://blueanchor.io/"><img src="https://nestjs.com/img/blueanchor.png" width="300" /></a> &nbsp;
<a href="https://www.novologic.com/"><img src="https://nestjs.com/img/novologic.png" width="200" /></a>

#### Silver Sponsors
<a href="https://neoteric.eu/"><img src="https://nestjs.com/img/neoteric-cut.png" width="120" valign="middle" /></a> &nbsp;
Expand Down
8 changes: 7 additions & 1 deletion packages/core/adapters/fastify-adapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,13 @@ export class FastifyAdapter {
const normalizedPath = path === '/*' ? '' : path;

this.instance.use(normalizedPath, (req, res, next) => {
if (!re.exec(req.originalUrl + '/')) {
const queryParamsIndex = req.originalUrl.indexOf('?');
const pathname =
queryParamsIndex >= 0
? req.originalUrl.slice(0, queryParamsIndex)
: req.originalUrl;

if (!re.exec(pathname + '/')) {
return next();
}
if (
Expand Down
3 changes: 2 additions & 1 deletion packages/microservices/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors

#### Base Sponsor

<a href="https://blueanchor.io/"><img src="https://nestjs.com/img/blueanchor.png" width="300" /></a>
<a href="https://blueanchor.io/"><img src="https://nestjs.com/img/blueanchor.png" width="300" /></a> &nbsp;
<a href="https://www.novologic.com/"><img src="https://nestjs.com/img/novologic.png" width="200" /></a>

#### Silver Sponsors
<a href="https://neoteric.eu/"><img src="https://nestjs.com/img/neoteric-cut.png" width="120" valign="middle" /></a> &nbsp;
Expand Down
3 changes: 2 additions & 1 deletion packages/testing/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors

#### Base Sponsor

<a href="https://blueanchor.io/"><img src="https://nestjs.com/img/blueanchor.png" width="300" /></a>
<a href="https://blueanchor.io/"><img src="https://nestjs.com/img/blueanchor.png" width="300" /></a> &nbsp;
<a href="https://www.novologic.com/"><img src="https://nestjs.com/img/novologic.png" width="200" /></a>

#### Silver Sponsors
<a href="https://neoteric.eu/"><img src="https://nestjs.com/img/neoteric-cut.png" width="120" valign="middle" /></a> &nbsp;
Expand Down
3 changes: 2 additions & 1 deletion packages/websockets/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ Nest is an MIT-licensed open source project. It can grow thanks to the sponsors

#### Base Sponsor

<a href="https://blueanchor.io/"><img src="https://nestjs.com/img/blueanchor.png" width="300" /></a>
<a href="https://blueanchor.io/"><img src="https://nestjs.com/img/blueanchor.png" width="300" /></a> &nbsp;
<a href="https://www.novologic.com/"><img src="https://nestjs.com/img/novologic.png" width="200" /></a>

#### Silver Sponsors
<a href="https://neoteric.eu/"><img src="https://nestjs.com/img/neoteric-cut.png" width="120" valign="middle" /></a> &nbsp;
Expand Down

0 comments on commit 0e788fd

Please sign in to comment.