Skip to content

Commit

Permalink
[bindgen] Expose Obj::add_int() (#7797)
Browse files Browse the repository at this point in the history
* Expose 'add_int()'.

* Add CHANGELOG entry.
  • Loading branch information
elle-j authored Jun 14, 2024
1 parent d4ec79b commit 970c4fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# NEXT RELEASE

### Enhancements
* <New feature description> (PR [#????](https://github.com/realm/realm-core/pull/????))
* It is no longer an error to set a base url for an App with a trailing slash - for example, `https://services.cloud.mongodb.com/` instead of `https://services.cloud.mongodb.com` - before this change that would result in a 404 error from the server ([PR #7791](https://github.com/realm/realm-core/pull/7791)).
* Performance has been improved for range queries on integers and timestamps. Requires that you use the "BETWEEN" operation in MQL or the Query::between() method when you build the query. (PR [#7785](https://github.com/realm/realm-core/pull/7785))
* None.
* Expose `Obj::add_int()` in the bindgen spec. ([PR #7797](https://github.com/realm/realm-core/pull/7797)).

### Fixed
* <How do the end-user experience this issue? what was the impact?> ([#????](https://github.com/realm/realm-core/issues/????), since v?.?.?)
Expand Down
1 change: 1 addition & 0 deletions bindgen/spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -808,6 +808,7 @@ classes:
- sig: '(column: ColKey, value: Mixed, is_default: bool)'
suffix: with_default
set_collection: '(column: ColKey, type: CollectionType) -> Obj'
add_int: '(column: ColKey, value: int64_t) -> Obj'
get_linked_object: '(column: ColKey) const -> Nullable<Obj>'
to_string: () const -> std::string
get_backlink_count: '() const -> count_t'
Expand Down

0 comments on commit 970c4fd

Please sign in to comment.