Skip to content

Commit 8b9b140

Browse files
authored
Merge pull request #2794 from RedisInsight/bugfix/feature/RI-5165-fix-ssh-passphrase-validation,RI-5166-win-logger
force update file-stream-rotator in the winston-daily-rotate-file to …
2 parents 42de2da + 34236e9 commit 8b9b140

File tree

3 files changed

+7
-13
lines changed

3 files changed

+7
-13
lines changed

redisinsight/api/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@
4242
"word-wrap": "1.2.4",
4343
"mocha/minimatch": "^3.0.5",
4444
"@nestjs/platform-socket.io/socket.io": "^4.7.1",
45-
"**/semver": "^7.5.2"
45+
"**/semver": "^7.5.2",
46+
"winston-daily-rotate-file/**/file-stream-rotator": "^1.0.0"
4647
},
4748
"dependencies": {
4849
"@nestjs/common": "^9.0.11",

redisinsight/api/yarn.lock

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3919,12 +3919,10 @@ file-entry-cache@^6.0.1:
39193919
dependencies:
39203920
flat-cache "^3.0.4"
39213921

3922-
file-stream-rotator@^0.6.1:
3923-
version "0.6.1"
3924-
resolved "https://registry.yarnpkg.com/file-stream-rotator/-/file-stream-rotator-0.6.1.tgz#007019e735b262bb6c6f0197e58e5c87cb96cec3"
3925-
integrity sha512-u+dBid4PvZw17PmDeRcNOtCP9CCK/9lRN2w+r1xIS7yOL9JFrIBKTvrYsxT4P0pGtThYTn++QS5ChHaUov3+zQ==
3926-
dependencies:
3927-
moment "^2.29.1"
3922+
file-stream-rotator@^0.6.1, file-stream-rotator@^1.0.0:
3923+
version "1.0.0"
3924+
resolved "https://registry.yarnpkg.com/file-stream-rotator/-/file-stream-rotator-1.0.0.tgz#de58379321a1ea6d2938ed5f5a2eff3b7f8b2780"
3925+
integrity sha512-qg5mQO7o+vhS7NPqkrkfJS8qqhz0d17Tnewmb5sUTUKwYe27LKaDtbTuRAtQWkBn6jROuFPVIDF5DtckzokFTQ==
39283926

39293927
file-type@^16.5.4:
39303928
version "16.5.4"
@@ -6201,11 +6199,6 @@ mocha@^8.4.0:
62016199
yargs-parser "20.2.4"
62026200
yargs-unparser "2.0.0"
62036201

6204-
moment@^2.29.1:
6205-
version "2.29.4"
6206-
resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.4.tgz#3dbe052889fe7c1b2ed966fcb3a77328964ef108"
6207-
integrity sha512-5LC9SOxjSc2HF6vO2CyuTDNivEdoz2IvyJJGj6X8DJ0eFyfszE0QiEd+iXmBvUP3WHxSjFH/vIsA0EN00cgr8w==
6208-
62096202
62106203
version "2.0.0"
62116204
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"

redisinsight/ui/src/utils/comparisons/diff.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const getFormUpdates = (obj1: UnknownObject = {}, obj2: UnknownObject = {
2323
obj1,
2424
(result: UnknownObject, value, key) => {
2525
if (isObject(value)) {
26-
const diff = getFormUpdates(value, obj2[key])
26+
const diff = getFormUpdates(value, obj2[key] || {})
2727

2828
if (Object.keys(diff).length) {
2929
result[key] = diff

0 commit comments

Comments
 (0)