Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
ce225df
Allow repetition of filter relation instead of optioanl (#850)
oshadmi Nov 6, 2022
ece58d3
Build and automation updates (#853)
rafie Nov 6, 2022
c4483f9
MOD-4432: Add to JSONPath filter the regexp match operator (#848)
oshadmi Nov 8, 2022
f87c93d
Documentation: Add details on jsonpath filter (#858)
oshadmi Nov 9, 2022
c0bf0ab
Update developer.md (#857)
inceabdullah Nov 10, 2022
874d4c0
Fixes link (#855)
itamarhaber Nov 10, 2022
33de90f
Updated readies & more nightly builds (#860)
rafie Nov 13, 2022
112a4fa
[DOC] JSON command edits (#846)
nermiller Nov 14, 2022
099f9ce
License change (#864)
rafie Nov 15, 2022
d4e4e3a
Bump latest JSON API version to RedisJSON_V3 (#867)
oshadmi Nov 17, 2022
8583f7f
MOD-4436: Support legacy jsonpath with dollar (#861)
oshadmi Nov 17, 2022
2683396
Update dependencies (cargo; readies) (#871)
rafie Nov 20, 2022
1153675
Fix json.debug malformed link (#870)
oshadmi Nov 20, 2022
f43dfb8
Clarify when filter regex match was introduced (#878)
oshadmi Dec 5, 2022
7d0ceb3
Add run with docker (#888)
gkorland Dec 15, 2022
d446c94
[DOC UPDATE] Update return info in JSON.GET topics (#885)
nermiller Dec 15, 2022
4412739
Redisson client added to the list (#891)
mrniko Dec 20, 2022
6ff8be9
Allow JSON.ARRINDEX with none scalar values (#892)
gkorland Dec 20, 2022
9b39a0c
clean clippy warnings (#847)
gkorland Dec 20, 2022
38bf9fc
Removing LGTM as the service is going offline shortly (#874)
chayim Dec 20, 2022
6b979ef
Update qatests
TomerHekmati Dec 21, 2022
1a978ec
Merge pull request #893 from RedisJSON/TomerHekmati-patch-1
TomerHekmati Dec 21, 2022
6b30093
MOD-4602: handle jsonpath filter with 3 or more operands (#890)
oshadmi Dec 22, 2022
32e34f5
Update RS_VERSIONS
TomerHekmati Dec 22, 2022
6bddd09
Merge pull request #895 from RedisJSON/TomerHekmati-patch-1
TomerHekmati Dec 22, 2022
70c0bf3
Updated benchmark trigger by label action:run-benchmark and to run pe…
filipecosta90 Dec 25, 2022
57cf7ba
avoid coyback to host (#899)
gkorland Dec 26, 2022
e3a9e37
Replace wrong word 'subcommands' with 'arguments' (#900)
sazzad16 Dec 27, 2022
be2fd89
Updating the dockerhub badge to redis-stack-server (#901)
chayim Dec 27, 2022
7fcba35
Updated dependencies (#903)
rafie Dec 27, 2022
1b381b7
update to the latest stable rust even if rust installed (#898)
gkorland Dec 29, 2022
b3ea215
Fix #725: straight the error messages (#813)
gkorland Dec 30, 2022
18ad25a
Added `rustis` client library (#904)
mcatanzariti Jan 3, 2023
5b6a854
break serde-json manager out to a file (#910)
gkorland Jan 4, 2023
078ac5d
Enabled Pull Request CI Performance info generation and publishing (#…
filipecosta90 Jan 10, 2023
b458d28
Ignore case on spell check (#914)
chayim Jan 22, 2023
54125ef
Add ipv6 capability (#918)
gkorland Jan 24, 2023
5f701d0
MOD-4822: Disable recursion limit on RDB load (#919)
gkorland Jan 30, 2023
ed7b5da
Build updates (#922)
rafie Jan 30, 2023
9ec5c41
Use Rust toolchain v1.66.1 for macOS/x64 due to compiler issue (#923)
rafie Jan 31, 2023
f4b60b7
Merge remote-tracking branch 'origin/master' into oshadmi_cp_master_t…
oshadmi Feb 12, 2023
7356886
update version to 2.4.5
oshadmi Feb 12, 2023
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 Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cargo-features = ["edition2021"]

[package]
name = "redisjson"
version = "2.4.4"
version = "2.4.5"
authors = ["Guy Korland <guy.korland@redis.com>", "Meir Shpilraien <meir@redis.com>", "Omer Shadmi <omer.shadmi@redis.com>"]
edition = "2021"
description = "JSON data type for Redis"
Expand Down
1 change: 1 addition & 0 deletions src/jsonpath/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ mod json_path_tests {
) => {
let j = json!($json);
let res = perform_search($path, &j);
#[allow(unused_mut)]
let mut v = Vec::new();
$(
v.push(json!($result));
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ redis_json_module_create! {
_ => None,
}
},
version: 02_04_04,
version: 02_04_05,
init: dummy_init,
info: dummy_info,
}