Skip to content

Commit ab72c25

Browse files
authored
Merge pull request #3254 from RedisInsight/release/2.48.0
Release/2.48.0 to latest
2 parents 7e533a5 + 7776f79 commit ab72c25

File tree

218 files changed

+1816
-1704
lines changed

Some content is hidden

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

218 files changed

+1816
-1704
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

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Before you submit an issue, please search the issue tracker, maybe an issue for
1818

1919
Use the following procedure to submit a pull request:
2020

21-
a. Fork RedisInsight on github ( https://docs.github.com/en/github/getting-started-with-github/fork-a-repo )
21+
a. Fork Redis Insight on github ( https://docs.github.com/en/github/getting-started-with-github/fork-a-repo )
2222
b. Create a topic branch (git checkout -b my_branch)
2323
c. Push to your branch (git push origin my_branch)
2424
d. Initiate a pull request on github ( https://docs.github.com/en/github/collaborating-with-issues-and-pull-requests/creating-a-pull-request )

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
[![CircleCI](https://circleci.com/gh/RedisInsight/RedisInsight/tree/main.svg?style=svg)](https://circleci.com/gh/RedisInsight/RedisInsight/tree/main)
33
[![Total alerts](https://img.shields.io/lgtm/alerts/g/RedisInsight/RedisInsight.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/RedisInsight/RedisInsight/alerts/)
44

5-
# <img src="https://redis.com/wp-content/uploads/2019/11/ico-redisinsight.svg" alt="logo" width="25"/> RedisInsight - Developer GUI for Redis, by Redis.
5+
# <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.
66
[![Forum](https://img.shields.io/badge/Forum-RedisInsight-red)](https://forum.redis.com/c/redisinsight/65)
77
[![Discord](https://img.shields.io/discord/697882427875393627?style=flat-square)](https://discord.gg/QUkjSsk)
88

99

10-
RedisInsight is a visual tool that provides capabilities to design, develop, and optimize your Redis application.
10+
Redis Insight is a visual tool that provides capabilities to design, develop, and optimize your Redis application.
1111
Query, analyse and interact with your Redis data. [Download it here](https://redis.com/redis-enterprise/redis-insight/#insight-form)!
1212

13-
![RedisInsight Browser screenshot](/.github/redisinsight_browser.png)
13+
![Redis Insight Browser screenshot](/.github/redisinsight_browser.png)
1414

1515
Built with love using [Electron](https://www.electronjs.org/), [Monaco Editor](https://microsoft.github.io/monaco-editor/) and NodeJS.
1616

1717
## Overview
1818

19-
RedisInsight is an intuitive and efficient GUI for Redis, allowing you to interact with your databases and manage your data—with built-in support for Redis modules.
19+
Redis Insight is an intuitive and efficient GUI for Redis, allowing you to interact with your databases and manage your data—with built-in support for Redis modules.
2020

21-
### RedisInsight Highlights:
21+
### Redis Insight Highlights:
2222

2323
* Browse, filter, visualise your key-value Redis data structures and see key values in different formats (including JSON, Hex, ASCII, etc.)
2424
* CRUD support for Lists, Hashes, Strings, Sets, Sorted Sets, and Streams
@@ -36,9 +36,9 @@ RedisInsight is an intuitive and efficient GUI for Redis, allowing you to intera
3636

3737
Check out the [release notes](https://docs.redis.com/latest/ri/release-notes/).
3838

39-
## Get started with RedisInsight
39+
## Get started with Redis Insight
4040

41-
This repository includes the code for RedisInsight. Check out the [blogpost](https://redis.com/blog/introducing-redisinsight-2/) announcing it.
41+
This repository includes the code for Redis Insight. Check out the [blogpost](https://redis.com/blog/introducing-redisinsight-2/) announcing it.
4242

4343
### Installable
4444
Available to download for free from [here](https://redis.com/redis-enterprise/redis-insight/#insight-form).
@@ -50,7 +50,7 @@ Alternatively you can also build from source. See our wiki for instructions.
5050
* [How to build](https://github.com/RedisInsight/RedisInsight/wiki/How-to-build-and-contribute)
5151

5252
## How to debug
53-
If you have any issues occurring in RedisInsight, you can follow the steps below to get more information about the errors and find their root cause.
53+
If you have any issues occurring in Redis Insight, you can follow the steps below to get more information about the errors and find their root cause.
5454

5555
* [How to debug](https://github.com/RedisInsight/RedisInsight/wiki/How-to-debug)
5656

@@ -61,9 +61,9 @@ If you have any issues occurring in RedisInsight, you can follow the steps below
6161
* File a [bug](https://github.com/RedisInsight/RedisInsight/issues/new?assignees=&labels=&template=bug_report.md&title=%5BBug%5D%3A)
6262

6363

64-
## RedisInsight Plugins
64+
## Redis Insight Plugins
6565

66-
With RedisInsight you can now also extend the core functionality by building your own data visualizations. See our wiki for more information.
66+
With Redis Insight you can now also extend the core functionality by building your own data visualizations. See our wiki for more information.
6767

6868
* [Plugin Documentation](https://github.com/RedisInsight/RedisInsight/wiki/Plugin-Documentation)
6969

@@ -75,9 +75,9 @@ If you would like to contribute to the code base or fix and issue, please consul
7575

7676
## Telemetry
7777

78-
RedisInsight includes an opt-in telemetry system, that is leveraged to help improve the developer experience (DX) within the app. We value your privacy, so stay assured, that all the data collected is anonymised.
78+
Redis Insight includes an opt-in telemetry system, that is leveraged to help improve the developer experience (DX) within the app. We value your privacy, so stay assured, that all the data collected is anonymised.
7979

8080
## License
8181

82-
RedisInsight is licensed under [SSPL](/LICENSE) license.
82+
Redis Insight is licensed under [SSPL](/LICENSE) license.
8383

0 commit comments

Comments
 (0)