Skip to content

Commit a001f0c

Browse files
authored
Merge pull request #4152 from RedisInsight/latest
Latest to main
2 parents 975f2b9 + b63b549 commit a001f0c

File tree

29 files changed

+107
-57
lines changed

29 files changed

+107
-57
lines changed

.circleci/build/release-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44
HELP="Args:
5-
-v - Semver (2.60.0)
5+
-v - Semver (2.62.0)
66
-d - Build image repository (Ex: -d redisinsight)
77
-r - Target repository (Ex: -r redis/redisinsight)
88
"

.github/build/release-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -e
33

44
HELP="Args:
5-
-v - Semver (2.60.0)
5+
-v - Semver (2.62.0)
66
-d - Build image repository (Ex: -d redisinsight)
77
-r - Target repository (Ex: -r redis/redisinsight)
88
"

.github/workflows/virustotal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
uploadZipFile="./${{ matrix.artifact }}.zip"
8181
8282
# Compress artifactes
83-
zip -r "${uploadZipFile}" "./release"
83+
zip -r "${uploadZipFile}" "./release" ${{ startsWith(matrix.artifact, 'macos-') && '-x "*/redisstack/*" "*.tar.gz" "*.zip"' || '' }}
8484
8585
# Generate url to download zip file
8686
uploadUrl=$(curl -sq -XGET https://www.virustotal.com/api/v3/files/upload_url -H "x-apikey: $VIRUSTOTAL_API_KEY" | jq -r '.data')

redisinsight/api/config/default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export default {
8080
migrateOldFolders: process.env.RI_MIGRATE_OLD_FOLDERS ? process.env.RI_MIGRATE_OLD_FOLDERS === 'true' : true,
8181
autoBootstrap: process.env.RI_AUTO_BOOTSTRAP ? process.env.RI_AUTO_BOOTSTRAP === 'true' : true,
8282
buildType: process.env.RI_BUILD_TYPE || 'DOCKER_ON_PREMISE',
83-
appVersion: process.env.RI_APP_VERSION || '2.60.0',
83+
appVersion: process.env.RI_APP_VERSION || '2.62.0',
8484
requestTimeout: parseInt(process.env.RI_REQUEST_TIMEOUT, 10) || 25000,
8585
excludeRoutes: [],
8686
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: 'Redis Insight Backend API',
77
description: 'Redis Insight Backend API',
8-
version: '2.60.0',
8+
version: '2.62.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.60.0",
3+
"version": "2.62.0",
44
"description": "Redis Insight API",
55
"private": true,
66
"author": {

redisinsight/api/src/main.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ export default async function bootstrap(apiPort?: number): Promise<IApp> {
2929
await migrateHomeFolder() && await removeOldFolders();
3030
}
3131

32-
const { port, host } = serverConfig;
32+
if (apiPort) {
33+
serverConfig.port = apiPort;
34+
}
35+
3336
const logger = WinstonModule.createLogger(LOGGER_CONFIG);
3437

3538
const options: NestApplicationOptions = {
@@ -75,7 +78,9 @@ export default async function bootstrap(apiPort?: number): Promise<IApp> {
7578

7679
const logFileProvider = app.get(LogFileProvider);
7780

78-
await app.listen(apiPort || port, host);
81+
const { port, host } = serverConfig;
82+
83+
await app.listen(port, host);
7984
logger.log({
8085
message: `Server is running on http(s)://${host}:${port}`,
8186
context: 'bootstrap',

redisinsight/desktop/src/lib/aboutPanel/aboutPanel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const ICON_PATH = app.isPackaged
88

99
export const AboutPanelOptions = {
1010
applicationName: 'Redis Insight',
11-
applicationVersion: `${app.getVersion() || '2.60.0'}${
11+
applicationVersion: `${app.getVersion() || '2.62.0'}${
1212
!config.isProduction ? `-dev-${process.getCreationTime()}` : ''
1313
}`,
1414
copyright: `Copyright © ${new Date().getFullYear()} Redis Ltd.`,

redisinsight/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"appName": "Redis Insight",
44
"productName": "RedisInsight",
55
"private": true,
6-
"version": "2.60.0",
6+
"version": "2.62.0",
77
"description": "Redis Insight",
88
"main": "./dist/main/main.js",
99
"author": {

redisinsight/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "redisinsight",
33
"appName": "Redis Insight",
44
"productName": "RedisInsight",
5-
"version": "2.60.0",
5+
"version": "2.62.0",
66
"description": "Redis Insight",
77
"author": {
88
"name": "Redis Ltd.",

0 commit comments

Comments
 (0)