Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to version 0.4.0 #51

Merged
merged 1 commit into from
May 17, 2024
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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## [v0.4.0] - 2024-05-17

### Fixed

Fix: Fix get by keypath with null value. (#47)
Fix: Handle invalid jsonb value to avoid panic in functions. (#46)
Fix: Fix builder & concat container jentry len. (#43)

### Added

Feat: Support convert jsonb value to `serde_json` value. (#49)
Feat: Add `exists` filter expression. (48)`
Feat: Add `delete_by_keypath`. (#45)
Feat: Add `delete_by_index` & `delete_by_name`. (#44)
Feat: Add `concat` & improve `strip_nulls`. (#42)
Feat: Add jsonpath predicate support. (#41)
Feat: Add `contains` api. (#40)
Feat: Add `exists_any_keys` & `exists_all_keys`. (#38)
Feat: Support parse key paths. (#37)
Feat: Add `get_by_keypath`. (#36)

## [v0.3.0] - 2023-10-13

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ keywords = ["json", "jsonb", "jsonpath"]
license = "Apache-2.0"
name = "jsonb"
repository = "https://github.com/datafuselabs/jsonb"
version = "0.3.0"
version = "0.4.0"
rust-version = "1.77"

[dependencies]
Expand Down
Loading