Skip to content

Commit 17be0f6

Browse files
Merge pull request #4234 from RedisInsight/e2e/feature/resolve-ssh-issue
E2e/feature/resolve ssh issue
2 parents 1aaa7f9 + c09a6e7 commit 17be0f6

File tree

16 files changed

+35
-27
lines changed

16 files changed

+35
-27
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.62.0)
5+
-v - Semver (2.64.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.62.0)
5+
-v - Semver (2.64.0)
66
-d - Build image repository (Ex: -d redisinsight)
77
-r - Target repository (Ex: -r redis/redisinsight)
88
"

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.62.0',
83+
appVersion: process.env.RI_APP_VERSION || '2.64.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.62.0',
8+
version: '2.64.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.62.0",
3+
"version": "2.64.0",
44
"description": "Redis Insight API",
55
"private": true,
66
"author": {

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.62.0'}${
11+
applicationVersion: `${app.getVersion() || '2.64.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.62.0",
6+
"version": "2.64.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.62.0",
5+
"version": "2.64.0",
66
"description": "Redis Insight",
77
"author": {
88
"name": "Redis Ltd.",

redisinsight/ui/src/components/oauth/oauth-select-account-dialog/styles.module.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
}
3737

3838
.footer {
39-
padding-top: 24px;
39+
padding-top: 20px;
4040
text-align: right;
41-
padding-bottom: 1px;
41+
padding-bottom: 4px;
4242
}
4343

4444
.button {

redisinsight/ui/src/components/oauth/oauth-user-profile/styles.module.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
border-radius: 100%;
1616

17-
background-color: var(--euiTooltipBackgroundColor);
17+
background-color: var(--insightsTriggerBgColor);
1818

1919
cursor: pointer;
2020
}

0 commit comments

Comments
 (0)