Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/build/release-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

HELP="Args:
-v - Semver (2.66.0)
-v - Semver (2.70.0)
-d - Build image repository (Ex: -d redisinsight)
-r - Target repository (Ex: -r redis/redisinsight)
"
Expand Down
2 changes: 1 addition & 1 deletion redisinsight/api/config/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export default {
: true,
buildType: process.env.RI_BUILD_TYPE || 'DOCKER_ON_PREMISE',
appType: process.env.RI_APP_TYPE,
appVersion: process.env.RI_APP_VERSION || '2.68.0',
appVersion: process.env.RI_APP_VERSION || '2.70.0',
requestTimeout: parseInt(process.env.RI_REQUEST_TIMEOUT, 10) || 25000,
excludeRoutes: [],
excludeAuthRoutes: [],
Expand Down
2 changes: 1 addition & 1 deletion redisinsight/api/config/swagger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const SWAGGER_CONFIG: Omit<OpenAPIObject, 'paths'> = {
info: {
title: 'Redis Insight Backend API',
description: 'Redis Insight Backend API',
version: '2.68.0',
version: '2.70.0',
},
tags: [],
};
Expand Down
2 changes: 1 addition & 1 deletion redisinsight/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "redisinsight-api",
"version": "2.68.0",
"version": "2.70.0",
"description": "Redis Insight API",
"private": true,
"author": {
Expand Down
2 changes: 1 addition & 1 deletion redisinsight/desktop/src/lib/aboutPanel/aboutPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const ICON_PATH = app.isPackaged
: path.join(__dirname, '../resources', 'icon.png')

const appVersionPrefix = config.isEnterprise ? 'Enterprise - ' : ''
const appVersion = app.getVersion() || '2.68.0'
const appVersion = app.getVersion() || '2.70.0'
const appVersionSuffix = !config.isProduction
? `-dev-${process.getCreationTime()}`
: ''
Expand Down
2 changes: 1 addition & 1 deletion redisinsight/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"appName": "Redis Insight",
"productName": "RedisInsight",
"private": true,
"version": "2.68.0",
"version": "2.70.0",
"description": "Redis Insight",
"main": "./dist/main/main.js",
"author": {
Expand Down
3 changes: 1 addition & 2 deletions scripts/update-version.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,7 @@ const filesToUpdate = [
__dirname,
'../redisinsight/desktop/src/lib/aboutPanel/aboutPanel.ts',
),
regex:
/applicationVersion:\s*`\${app\.getVersion\(\)\s*\|\|\s*'([^']+)'}\${/,
regex: /app\.getVersion\(\)\s*\|\|\s*'([^']+)'/,
replacement: (match, p1) => match.replace(p1, newVersion),
},
{
Expand Down