Skip to content

Commit d47776b

Browse files
committed
Merge branch 'main' into release/2.24.0
1 parent 1b3dd89 commit d47776b

File tree

305 files changed

+16604
-2526
lines changed

Some content is hidden

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

305 files changed

+16604
-2526
lines changed

.circleci/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -598,17 +598,18 @@ jobs:
598598
599599
if [ << parameters.env >> == 'prod' ]; then
600600
yarn package:prod
601+
yarn package:mas
601602
rm -rf release/mac
602603
exit 0;
603604
fi
604605
605606
if [ << parameters.env >> == 'stage' ]; then
606-
UPGRADES_LINK=$UPGRADES_LINK_STAGE SEGMENT_WRITE_KEY=$SEGMENT_WRITE_KEY_STAGE yarn package:stage
607+
UPGRADES_LINK=$UPGRADES_LINK_STAGE SEGMENT_WRITE_KEY=$SEGMENT_WRITE_KEY_STAGE yarn package:stage && yarn package:mas
607608
rm -rf release/mac
608609
exit 0;
609610
fi
610611
611-
UPGRADES_LINK='' SEGMENT_WRITE_KEY='' yarn package:stage
612+
UPGRADES_LINK='' SEGMENT_WRITE_KEY='' yarn package:stage && yarn package:mas
612613
rm -rf release/mac
613614
no_output_timeout: 60m
614615

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ RedisInsight is an intuitive and efficient GUI for Redis, allowing you to intera
3232
* Visualizations of your [RediSearch](https://oss.redis.com/redisearch/) index, queries, and aggregations
3333
* Ability to build your own data visualization plugins
3434
* Built-in click-through guides for Redis capabilities
35-
* Oficially supported for Redis OSS, [Redis Cloud](https://redis.com/try-free/). Works with Microsoft Azure Cache for Redis (official support upcoming).
35+
* Officially supported for Redis OSS, [Redis Cloud](https://redis.com/try-free/). Works with Microsoft Azure Cache for Redis (official support upcoming).
3636
* Available for macOS (including M1), Windows and Linux
3737

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

configs/webpack.config.main.prod.babel.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export default merge(baseConfig, {
6666
SERVER_TLS_KEY: process.env.SERVER_TLS_KEY || '',
6767
APP_FOLDER_NAME: process.env.APP_FOLDER_NAME || '',
6868
UPGRADES_LINK: process.env.UPGRADES_LINK || '',
69+
RI_HOSTNAME: '127.0.0.1',
6970
BUILD_TYPE: 'ELECTRON',
7071
APP_VERSION: version,
7172
AWS_BUCKET_NAME: 'AWS_BUCKET_NAME' in process.env ? process.env.AWS_BUCKET_NAME : '',

configs/webpack.config.main.stage.babel.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export default merge(mainProdConfig, {
2626
SERVER_TLS_KEY: process.env.SERVER_TLS_KEY || '',
2727
APP_FOLDER_NAME: process.env.APP_FOLDER_NAME || '',
2828
UPGRADES_LINK: process.env.UPGRADES_LINK || '',
29+
RI_HOSTNAME: '127.0.0.1',
2930
BUILD_TYPE: 'ELECTRON',
3031
APP_VERSION: version,
3132
AWS_BUCKET_NAME: 'AWS_BUCKET_NAME' in process.env ? process.env.AWS_BUCKET_NAME : '',

dev.provisionprofile

-140 Bytes
Binary file not shown.

docs/plugins/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Data visualization provided by the plugin is rendered within the
1111
Workbench results area and is based on the executed command, ie. a certain
1212
Redis command can generate its own custom data visualization.
1313

14-
We have included the following [plugin package example](https://github.com/RedisInsight/RedisInsight/tree/main/redisinsight/ui/src/packages/clients-list-example) for your reference: running the CLIENT LIST command presents the output in a tabular format for easier reading.
14+
We have included the following [plugin package example](https://github.com/RedisInsight/RedisInsight/tree/main/redisinsight/ui/src/packages/clients-list) for your reference: running the CLIENT LIST command presents the output in a tabular format for easier reading.
1515

1616
## Wiki
1717

electron-builder-mas.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
const electronBuilder = require('./electron-builder.json');
2+
3+
const config = {
4+
...electronBuilder,
5+
appId: 'com.redis.RedisInsight',
6+
productName: 'RedisInsight',
7+
};
8+
9+
module.exports = config;

electron-builder.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,12 @@
2828
{
2929
"target": "zip",
3030
"arch": ["x64", "arm64"]
31-
},
32-
{
33-
"target": "mas",
34-
"arch": ["universal"]
3531
}
3632
],
3733
"type": "distribution",
3834
"hardenedRuntime": true,
3935
"darkModeSupport": true,
40-
"bundleVersion": "1",
36+
"bundleVersion": "3",
4137
"icon": "resources/icon.icns",
4238
"artifactName": "${productName}-${os}-${arch}.${ext}",
4339
"entitlements": "resources/entitlements.mac.plist",

embedded.provisionprofile

-148 Bytes
Binary file not shown.

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
"package": "yarn package:dev",
2727
"package:prod": "yarn build:prod && electron-builder build -p never",
2828
"package:stage": "yarn build:stage && electron-builder build -p never",
29-
"build:mas": "electron-builder build -p never -m mas:universal",
30-
"build:mas:dev": "electron-builder build -p never -m mas-dev:universal",
29+
"package:mas": "electron-builder build -p never -m mas:universal -c ./electron-builder-mas.js",
30+
"package:mas:dev": "electron-builder build -p never -m mas-dev:universal -c ./electron-builder-mas.js",
3131
"package:dev": "yarn build && cross-env DEBUG=electron-builder electron-builder build -p never",
3232
"package:win": "yarn build:prod && electron-builder build --win --x64 -p never",
3333
"package:mac": "yarn build:prod && electron-builder build --mac -p never",
@@ -128,6 +128,7 @@
128128
"@types/jsonpath": "^0.2.0",
129129
"@types/lodash": "^4.14.171",
130130
"@types/node": "14.14.10",
131+
"@types/pako": "^2.0.0",
131132
"@types/react": "^18.0.20",
132133
"@types/react-dom": "^18.0.5",
133134
"@types/react-redux": "^7.1.12",
@@ -222,6 +223,7 @@
222223
"@reduxjs/toolkit": "^1.6.2",
223224
"@stablelib/snappy": "^1.0.2",
224225
"axios": "^0.25.0",
226+
"brotli-unicode": "^1.0.2",
225227
"buffer": "^6.0.3",
226228
"classnames": "^2.3.1",
227229
"connection-string": "^4.3.2",
@@ -243,6 +245,7 @@
243245
"jsonpath": "^1.1.1",
244246
"lodash": "^4.17.21",
245247
"lz4js": "^0.2.0",
248+
"pako": "^2.1.0",
246249
"php-serialize": "^4.0.2",
247250
"rawproto": "^0.7.6",
248251
"react": "^18.2.0",

0 commit comments

Comments
 (0)