Skip to content

Commit 1d39d4b

Browse files
Merge pull request #3262 from RedisInsight/latest-new
Latest new to main
2 parents 0d332ed + 38e1288 commit 1d39d4b

File tree

197 files changed

+1796
-957
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

197 files changed

+1796
-957
lines changed

.circleci/build/build.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM node:18.18-alpine
22

33
# runtime args and environment variables
4-
ARG DIST=RedisInsight.tar.gz
4+
ARG DIST=Redis-Insight.tar.gz
55
ARG NODE_ENV=production
66
ARG RI_SEGMENT_WRITE_KEY
77
ENV RI_SEGMENT_WRITE_KEY=${RI_SEGMENT_WRITE_KEY}

.circleci/build/build_modules.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ set -e
44
PLATFORM=${PLATFORM:-'linux'}
55
ARCH=${ARCH:-'x64'}
66
LIBC=${LIBC:-''}
7-
#FILENAME="RedisInsight-$PLATFORM.$VERSION.$ARCH.zip"
8-
FILENAME="RedisInsight-web-$PLATFORM"
7+
#FILENAME="Redis-Insight-$PLATFORM.$VERSION.$ARCH.zip"
8+
FILENAME="Redis-Insight-web-$PLATFORM"
99
if [ ! -z $LIBC ]
1010
then
1111
FILENAME="$FILENAME-$LIBC.$ARCH.tar.gz"

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

.circleci/config.yml

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ aliases:
2424
run:
2525
name: Sign application
2626
command: |
27-
$filePath = $(Get-ChildItem release -Filter RedisInsight*.exe | % { $_.FullName })
27+
$filePath = $(Get-ChildItem release -Filter Redis-Insight*.exe | % { $_.FullName })
2828
$filePathWithQuotes = '"{0}"' -f $filePath
2929
& "C:\Program Files (x86)\Windows Kits\10\bin\10.0.19041.0\x86\signtool.exe" sign /a /sm /n "Redis Labs Inc." /fd sha256 /tr http://sha256timestamp.ws.symantec.com/sha256/timestamp /v $FilePathWithQuotes
3030
shell: powershell.exe
@@ -645,11 +645,11 @@ jobs:
645645
- persist_to_workspace:
646646
root: .
647647
paths:
648-
- release/RedisInsight*.deb
649-
- release/RedisInsight*.rpm
650-
- release/RedisInsight*.AppImage
651-
- release/RedisInsight*.flatpak
652-
- release/RedisInsight*.snap
648+
- release/Redis-Insight*.deb
649+
- release/Redis-Insight*.rpm
650+
- release/Redis-Insight*.AppImage
651+
- release/Redis-Insight*.flatpak
652+
- release/Redis-Insight*.snap
653653
- release/*-linux.yml
654654
macosx:
655655
macos:
@@ -697,7 +697,7 @@ jobs:
697697
yarn package:prod
698698
yarn package:mas
699699
rm -rf release/mac
700-
mv release/mas-universal/RedisInsight-mac-universal-mas.pkg release/RedisInsight-mac-universal-mas.pkg
700+
mv release/mas-universal/Redis-Insight-mac-universal-mas.pkg release/Redis-Insight-mac-universal-mas.pkg
701701
exit 0;
702702
fi
703703
@@ -727,7 +727,7 @@ jobs:
727727
728728
yarn package:stage && yarn package:mas
729729
rm -rf release/mac
730-
mv release/mas-universal/RedisInsight-mac-universal-mas.pkg release/RedisInsight-mac-universal-mas.pkg
730+
mv release/mas-universal/Redis-Insight-mac-universal-mas.pkg release/Redis-Insight-mac-universal-mas.pkg
731731
no_output_timeout: 60m
732732
- when:
733733
condition:
@@ -741,10 +741,10 @@ jobs:
741741
- persist_to_workspace:
742742
root: .
743743
paths:
744-
- release/RedisInsight*.zip
745-
- release/RedisInsight*.dmg
746-
- release/RedisInsight*.dmg.blockmap
747-
- release/RedisInsight*.pkg
744+
- release/Redis-Insight*.zip
745+
- release/Redis-Insight*.dmg
746+
- release/Redis-Insight*.dmg.blockmap
747+
- release/Redis-Insight*.pkg
748748
- release/*-mac.yml
749749
- release/redisstack
750750
windows:
@@ -806,8 +806,8 @@ jobs:
806806
- persist_to_workspace:
807807
root: .
808808
paths:
809-
- release/RedisInsight*.exe
810-
- release/RedisInsight*.exe.blockmap
809+
- release/Redis-Insight*.exe
810+
- release/Redis-Insight*.exe.blockmap
811811
- release/*.yml
812812
virustotal-file:
813813
executor: linux-executor
@@ -822,7 +822,7 @@ jobs:
822822
- run:
823823
name: export FILE_NAME environment variable
824824
command: |
825-
echo 'export FILE_NAME="RedisInsight*<< parameters.ext >>"' >> $BASH_ENV
825+
echo 'export FILE_NAME="Redis-Insight*<< parameters.ext >>"' >> $BASH_ENV
826826
- <<: *fileScan
827827
- <<: *validate
828828
virustotal-url:
@@ -905,7 +905,7 @@ jobs:
905905
docker buildx build \
906906
-f .circleci/build/build.Dockerfile \
907907
--platform linux/amd64 \
908-
--build-arg DIST=release/web/RedisInsight-web-linux-musl.x64.tar.gz \
908+
--build-arg DIST=release/web/Redis-Insight-web-linux-musl.x64.tar.gz \
909909
--build-arg NODE_ENV=<< parameters.env >> \
910910
--build-arg RI_SEGMENT_WRITE_KEY="$TELEMETRY" \
911911
-t redisinsight:amd64 \
@@ -915,7 +915,7 @@ jobs:
915915
docker buildx build \
916916
-f .circleci/build/build.Dockerfile \
917917
--platform linux/arm64 \
918-
--build-arg DIST=release/web/RedisInsight-web-linux-musl.arm64.tar.gz \
918+
--build-arg DIST=release/web/Redis-Insight-web-linux-musl.arm64.tar.gz \
919919
--build-arg NODE_ENV=<< parameters.env >> \
920920
--build-arg RI_SEGMENT_WRITE_KEY="$TELEMETRY" \
921921
-t redisinsight:arm64 \
@@ -1039,7 +1039,7 @@ jobs:
10391039
echo "export releasesFolderPath=${releasesFolderPath}" >> $BASH_ENV
10401040
echo "export applicationName=${appName}" >> $BASH_ENV
10411041
echo "export applicationVersion=${appVersion}" >> $BASH_ENV
1042-
echo "export appFileName=RedisInsight" >> $BASH_ENV
1042+
echo "export appFileName=Redis-Insight" >> $BASH_ENV
10431043
10441044
# download latest.yml file to get last public version
10451045
aws s3 cp s3://${AWS_BUCKET_NAME}/${downloadLatestFolderPath}/${latestYmlFileName} .
@@ -1750,28 +1750,28 @@ workflows:
17501750

17511751
- virustotal-url:
17521752
name: Virus check - AppImage (nightly)
1753-
fileName: RedisInsight-linux-x86_64.AppImage
1753+
fileName: Redis-Insight-linux-x86_64.AppImage
17541754
- virustotal-url:
17551755
name: Virus check - deb (nightly)
1756-
fileName: RedisInsight-linux-amd64.deb
1756+
fileName: Redis-Insight-linux-amd64.deb
17571757
- virustotal-url:
17581758
name: Virus check - rpm (nightly)
1759-
fileName: RedisInsight-linux-x86_64.rpm
1759+
fileName: Redis-Insight-linux-x86_64.rpm
17601760
- virustotal-url:
17611761
name: Virus check - snap (nightly)
1762-
fileName: RedisInsight-linux-amd64.snap
1762+
fileName: Redis-Insight-linux-amd64.snap
17631763
- virustotal-url:
17641764
name: Virus check x64 - dmg (nightly)
1765-
fileName: RedisInsight-mac-x64.dmg
1765+
fileName: Redis-Insight-mac-x64.dmg
17661766
- virustotal-url:
17671767
name: Virus check arm64 - dmg (nightly)
1768-
fileName: RedisInsight-mac-arm64.dmg
1768+
fileName: Redis-Insight-mac-arm64.dmg
17691769
- virustotal-url:
17701770
name: Virus check MAS - pkg (nightly)
1771-
fileName: RedisInsight-mac-universal-mas.pkg
1771+
fileName: Redis-Insight-mac-universal-mas.pkg
17721772
- virustotal-url:
17731773
name: Virus check - exe (nightly)
1774-
fileName: RedisInsight-win-installer.exe
1774+
fileName: Redis-Insight-win-installer.exe
17751775
- virustotal-report:
17761776
name: Virus check report (prod)
17771777
requires:

.circleci/redisstack/app-image.repack.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ set -e
33

44
ARCH=${ARCH:-x86_64}
55
WORKING_DIRECTORY=$(pwd)
6-
SOURCE_APP=${SOURCE_APP:-"RedisInsight-linux-$ARCH.AppImage"}
7-
RI_APP_FOLDER_NAME="RedisInsight-linux"
8-
TAR_NAME="RedisInsight-app-linux.$ARCH.tar.gz"
9-
TMP_FOLDER="/tmp/RedisInsight-app-$ARCH"
6+
SOURCE_APP=${SOURCE_APP:-"Redis-Insight-linux-$ARCH.AppImage"}
7+
RI_APP_FOLDER_NAME="Redis-Insight-linux"
8+
TAR_NAME="Redis-Insight-app-linux.$ARCH.tar.gz"
9+
TMP_FOLDER="/tmp/Redis-Insight-app-$ARCH"
1010

1111
rm -rf "$TMP_FOLDER"
1212

.circleci/redisstack/dmg.repack.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ set -e
33

44
ARCH=${ARCH:-x64}
55
WORKING_DIRECTORY=$(pwd)
6-
TAR_NAME="RedisInsight-app-darwin.$ARCH.tar.gz"
7-
RI_APP_FOLDER_NAME="RedisInsight.app"
6+
TAR_NAME="Redis-Insight-app-darwin.$ARCH.tar.gz"
7+
RI_APP_FOLDER_NAME="Redis Insight.app"
88
TMP_FOLDER="/tmp/$RI_APP_FOLDER_NAME"
99

1010
rm -rf "$TMP_FOLDER"
1111

1212
mkdir -p "$WORKING_DIRECTORY/release/redisstack"
1313
mkdir -p "$TMP_FOLDER"
1414

15-
hdiutil attach "./release/RedisInsight-mac-$ARCH.dmg"
16-
cp -a /Volumes/RedisInsight*/RedisInsight.app "/tmp"
15+
hdiutil attach "./release/Redis-Insight-mac-$ARCH.dmg"
16+
rsync -av /Volumes/Redis*/Redis\ Insight.app "/tmp"
1717
cd "/tmp" || exit 1
1818
tar -czvf "$TAR_NAME" "$RI_APP_FOLDER_NAME"
1919
cp "$TAR_NAME" "$WORKING_DIRECTORY/release/redisstack/"
2020
cd "$WORKING_DIRECTORY" || exit 1
21-
hdiutil unmount /Volumes/RedisInsight*/
21+
hdiutil unmount /Volumes/Redis*/

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ assignees: ''
2222
**Screenshots** (Paste or drag-and-drop a screenshot or a link to a recording)
2323

2424

25-
**Additional context** (Operating system, version of RedisInsight, Redis database version, Redis module version, database type, connection type, logs, or any other information)
25+
**Additional context** (Operating system, version of Redis Insight, Redis database version, Redis module version, database type, connection type, logs, or any other information)

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ licenses
6767
/tests/e2e/remote
6868
/tests/e2e/.redisinsight-v2
6969
/tests/e2e/.redisinsight-app
70+
/tests/e2e/.redisinsight-insight
7071

7172
# Parcel
7273
.parcel-cache

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Release](https://img.shields.io/github/v/release/RedisInsight/RedisInsight.svg?sort=semver)](https://github.com/RedisInsight/RedisInsight/releases)
22
[![CircleCI](https://circleci.com/gh/RedisInsight/RedisInsight/tree/main.svg?style=svg)](https://circleci.com/gh/RedisInsight/RedisInsight/tree/main)
33

4-
# <img src="https://github.com/RedisInsight/RedisInsight/assets/99594890/333b7bbd-22ac-4457-a045-5f181e79ec50" alt="logo" width="25"/> Redis Insight - Developer GUI for Redis, by Redis.
4+
# <img src="https://redis.com/wp-content/uploads/2019/11/ico-redisinsight.svg" alt="logo" width="25"/> Redis Insight - Developer GUI for Redis, by Redis.
55
[![Forum](https://img.shields.io/badge/Forum-RedisInsight-red)](https://forum.redis.com/c/redisinsight/65)
66
[![Discord](https://img.shields.io/discord/697882427875393627?style=flat-square)](https://discord.gg/QUkjSsk)
77

configs/webpack.config.web.common.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
*/
44
import path from 'path';
55
import webpack from 'webpack';
6-
import HtmlWebpackPlugin from 'html-webpack-plugin';
76
import TsconfigPathsPlugin from 'tsconfig-paths-webpack-plugin';
87
import MonacoWebpackPlugin from 'monaco-editor-webpack-plugin';
98
import webpackPaths from './webpack.paths';
@@ -68,8 +67,6 @@ export default {
6867
'window.app.config.apiPort': JSON.stringify('5540'),
6968
}),
7069

71-
new HtmlWebpackPlugin({ template: 'index.html.ejs' }),
72-
7370
new MonacoWebpackPlugin({ languages: ['json', 'javascript', 'typescript'], features: ['!rename'] }),
7471

7572
new webpack.IgnorePlugin({

0 commit comments

Comments
 (0)