Skip to content

Commit 0d10224

Browse files
authored
Merge pull request #424 from lenneTech/develop
Release 11.1.10
2 parents 3952f5d + 104ea46 commit 0d10224

File tree

4 files changed

+77
-81
lines changed

4 files changed

+77
-81
lines changed

package-lock.json

Lines changed: 73 additions & 77 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lenne.tech/nest-server",
3-
"version": "11.1.9",
3+
"version": "11.1.10",
44
"description": "Modern, fast, powerful Node.js web framework in TypeScript based on Nest with a GraphQL API and a connection to MongoDB (or other databases).",
55
"keywords": [
66
"node",
@@ -147,7 +147,7 @@
147147
"husky": "9.1.7",
148148
"jest": "29.7.0",
149149
"npm-watch": "0.13.0",
150-
"pm2": "6.0.5",
150+
"pm2": "6.0.8",
151151
"prettier": "3.5.3",
152152
"pretty-quick": "4.1.1",
153153
"supertest": "7.1.0",

spectaql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ servers:
1111
info:
1212
title: lT Nest Server
1313
description: Modern, fast, powerful Node.js web framework in TypeScript based on Nest with a GraphQL API and a connection to MongoDB (or other databases).
14-
version: 11.1.9
14+
version: 11.1.10
1515
contact:
1616
name: lenne.Tech GmbH
1717
url: https://lenne.tech

src/core/common/interceptors/check-security.interceptor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export class CheckSecurityInterceptor implements NestInterceptor {
5757
const dataJson = JSON.stringify(data);
5858
const response = data.securityCheck(user, force);
5959
new Promise(() => {
60-
if (dataJson !== JSON.stringify(response)) {
60+
if (this.config.debug && dataJson !== JSON.stringify(response)) {
6161
const id = getStringIds(data);
6262
console.debug(
6363
'CheckSecurityInterceptor: securityCheck changed data of type',

0 commit comments

Comments
 (0)