Skip to content

Commit 15e5b8a

Browse files
authored
Merge pull request #2734 from RedisInsight/latest
Latest to main
2 parents 55ee4b7 + 3c10c1a commit 15e5b8a

File tree

27 files changed

+2319
-1931
lines changed

27 files changed

+2319
-1931
lines changed

configs/webpack.config.main.prod.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ export default merge(baseConfig, {
7979
RI_CLOUD_IDP_GH_ID: 'RI_CLOUD_IDP_GH_ID' in process.env ? process.env.RI_CLOUD_IDP_GH_ID: '',
8080
RI_CLOUD_API_URL: 'RI_CLOUD_API_URL' in process.env ? process.env.RI_CLOUD_API_URL: '',
8181
RI_CLOUD_CAPI_URL: 'RI_CLOUD_CAPI_URL' in process.env ? process.env.RI_CLOUD_CAPI_URL: '',
82+
RI_CLOUD_API_TOKEN: 'RI_CLOUD_API_TOKEN' in process.env ? process.env.RI_CLOUD_API_TOKEN: '',
8283
}),
8384

8485
new webpack.DefinePlugin({

package.json

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -87,31 +87,34 @@
8787
"rawproto/protobufjs": "^7.2.4"
8888
},
8989
"devDependencies": {
90-
"@babel/core": "^7.12.9",
91-
"@babel/plugin-proposal-class-properties": "^7.12.1",
92-
"@babel/plugin-proposal-decorators": "^7.12.1",
90+
"@babel/core": "^7.23.2",
91+
"@babel/plugin-proposal-class-properties": "^7.18.6",
92+
"@babel/plugin-proposal-decorators": "^7.23.2",
9393
"@babel/plugin-proposal-do-expressions": "^7.12.1",
9494
"@babel/plugin-proposal-export-default-from": "^7.12.1",
9595
"@babel/plugin-proposal-export-namespace-from": "^7.12.1",
9696
"@babel/plugin-proposal-function-bind": "^7.12.1",
97-
"@babel/plugin-proposal-function-sent": "^7.12.1",
97+
"@babel/plugin-proposal-function-sent": "^7.22.5",
9898
"@babel/plugin-proposal-json-strings": "^7.12.1",
9999
"@babel/plugin-proposal-logical-assignment-operators": "^7.12.1",
100100
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
101+
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
101102
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
102103
"@babel/plugin-proposal-pipeline-operator": "^7.12.1",
104+
"@babel/plugin-proposal-private-methods": "^7.18.6",
105+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
103106
"@babel/plugin-proposal-throw-expressions": "^7.12.1",
104107
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
105108
"@babel/plugin-syntax-import-meta": "^7.10.4",
106109
"@babel/plugin-transform-react-constant-elements": "^7.12.1",
107110
"@babel/plugin-transform-react-inline-elements": "^7.12.1",
108111
"@babel/plugin-transform-runtime": "^7.12.1",
109-
"@babel/preset-env": "^7.12.7",
110-
"@babel/preset-react": "^7.12.7",
111-
"@babel/preset-typescript": "^7.12.7",
112+
"@babel/preset-env": "^7.23.2",
113+
"@babel/preset-react": "^7.22.15",
114+
"@babel/preset-typescript": "^7.23.2",
112115
"@babel/register": "^7.12.1",
113116
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
114-
"@svgr/webpack": "^6.2.1",
117+
"@svgr/webpack": "^8.1.0",
115118
"@teamsupercell/typings-for-css-modules-loader": "^2.4.0",
116119
"@testing-library/jest-dom": "^5.16.4",
117120
"@testing-library/react": "^13.3.0",
@@ -150,7 +153,7 @@
150153
"@typescript-eslint/eslint-plugin": "^4.8.1",
151154
"@typescript-eslint/parser": "^4.8.1",
152155
"babel-eslint": "^10.1.0",
153-
"babel-jest": "^27.5.1",
156+
"babel-jest": "^29.7.0",
154157
"babel-loader": "^8.2.2",
155158
"babel-plugin-dev-expression": "^0.2.2",
156159
"babel-plugin-parameter-decorator": "^1.0.16",
@@ -163,7 +166,7 @@
163166
"css-minimizer-webpack-plugin": "^2.0.0",
164167
"csv-parser": "^3.0.0",
165168
"csv-stringify": "^6.4.0",
166-
"electron": "25.1.1",
169+
"electron": "25.8.4",
167170
"electron-builder": "^23.6.0",
168171
"electron-builder-notarize": "^1.5.1",
169172
"electron-debug": "^3.2.0",

redisinsight/api/config/default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export default {
6060
tlsKey: process.env.SERVER_TLS_KEY,
6161
staticContent: !!process.env.SERVER_STATIC_CONTENT || false,
6262
buildType: process.env.BUILD_TYPE || 'ELECTRON',
63-
appVersion: process.env.APP_VERSION || '2.34.0',
63+
appVersion: process.env.APP_VERSION || '2.36.0',
6464
requestTimeout: parseInt(process.env.REQUEST_TIMEOUT, 10) || 25000,
6565
excludeRoutes: [],
6666
excludeAuthRoutes: [],

redisinsight/api/config/swagger.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const SWAGGER_CONFIG: Omit<OpenAPIObject, 'paths'> = {
55
info: {
66
title: 'RedisInsight Backend API',
77
description: 'RedisInsight Backend API',
8-
version: '2.34.0',
8+
version: '2.36.0',
99
},
1010
tags: [],
1111
};

redisinsight/api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "redisinsight-api",
3-
"version": "2.34.0",
3+
"version": "2.36.0",
44
"description": "RedisInsight API",
55
"private": true,
66
"author": {

redisinsight/api/src/modules/browser/services/redisearch/redisearch.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export class RedisearchService {
198198
}
199199

200200
return plainToClass(GetKeysWithDetailsResponse, {
201-
cursor: limit + offset,
201+
cursor: limit + offset >= total ? 0 : limit + offset,
202202
total,
203203
scanned: keyNames.length + offset,
204204
keys: keyNames.map((name) => ({ name, type })),

0 commit comments

Comments
 (0)