Skip to content

Commit 7a69960

Browse files
authored
Merge pull request #3882 from RedisInsight/latest
Latest to main
2 parents 5d4a069 + eeb5170 commit 7a69960

File tree

23 files changed

+216
-59
lines changed

23 files changed

+216
-59
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.56.0)
5+
-v - Semver (2.58.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.56.0',
83+
appVersion: process.env.RI_APP_VERSION || '2.58.0',
8484
requestTimeout: parseInt(process.env.RI_REQUEST_TIMEOUT, 10) || 25000,
8585
excludeRoutes: [],
8686
excludeAuthRoutes: [],

redisinsight/api/config/production.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default {
4040
},
4141
ai: {
4242
convAiApiUrl: process.env.RI_AI_CONVAI_API_URL || 'https://redis.io/convai/api',
43-
querySocketUrl: process.env.RI_AI_QUERY_SOCKET_URL || 'https://cloud.redis.io',
43+
querySocketUrl: process.env.RI_AI_QUERY_SOCKET_URL || 'https://app.redislabs.com',
4444
querySocketPath: process.env.RI_AI_QUERY_SOCKET_PATH || '/api/v1/cloud-copilot-service/socket.io/',
4545
},
4646
};

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.56.0',
8+
version: '2.58.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.56.0",
3+
"version": "2.58.0",
44
"description": "Redis Insight API",
55
"private": true,
66
"author": {

redisinsight/api/src/constants/agreements-spec.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"disabled": false,
1010
"category": "privacy",
1111
"since": "1.0.1",
12-
"title": "Telemetry",
13-
"label": "Enable Telemetry",
14-
"description": "Select to help us make Redis Insight better. Telemetry helps us better understand how Redis Insight features are being used, improve experience for all users, and prioritize new features."
12+
"title": "Usage Data",
13+
"label": "Usage Data",
14+
"description": "Select the usage data option to help us improve Redis Insight. We use such usage data to understand how Redis Insight features are used, prioritize new features, and enhance the user experience."
1515
},
1616
"notifications": {
1717
"defaultValue": false,

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

redisinsight/ui/src/components/consents-settings/ConsentsPrivacy/ConsentsPrivacy.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,12 @@ const ConsentsPrivacy = () => {
7474
return (
7575
<EuiForm component="form" onSubmit={formik.handleSubmit} data-testid="consents-settings-form">
7676
<div className={styles.consentsWrapper}>
77+
<EuiText size="s" className={styles.smallText} color="subdued">
78+
To optimize your experience, Redis Insight uses third-party tools.
79+
</EuiText>
80+
<EuiSpacer size="l" />
7781
<EuiTitle size="xs">
78-
<h4>Telemetry</h4>
82+
<h4>Usage Data</h4>
7983
</EuiTitle>
8084
{
8185
privacyConsents

0 commit comments

Comments
 (0)