Skip to content

Commit

Permalink
Merge branch 'main' into andrew/fix-mdb-client
Browse files Browse the repository at this point in the history
  • Loading branch information
takameyer committed Aug 3, 2023
2 parents bbccd66 + a535fd7 commit 4acfbe5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -9,13 +9,17 @@
### Fixed
* Fix Jest issues when testing against Realm. ([#6003](https://github.com/realm/realm-js/issues/6003))
* Fix Date and ObjectId arguments being empty objects in MongoDB client. ([#6030](https://github.com/realm/realm-js/issues/6030))
* Rare corruption of files on streaming format (often following compact, convert or copying to a new file). ([#6807](https://github.com/realm/realm-core/issues/6807), since realm-core v12.12.0)
* Trying to search a full-text indexes created as a result of an additive schema change (i.e. applying the differences between the local schema and a synchronized realm's schema) could have resulted in an IllegalOperation error with the error code Column has no fulltext index. (PR [#6823](https://github.com/realm/realm-core/issues/6823), since realm-core v13.2.0).
* Sync progress for DOWNLOAD messages from server state was updated wrongly. This may have resulted in an extra round-trip to the server. ([#6827](https://github.com/realm/realm-core/issues/6827), since realm-core v12.9.0)

### Compatibility
* React Native >= v0.71.4
* Realm Studio v14.0.0.
* File format: generates Realms with format v23 (reads and upgrades file format v5 or later for non-synced Realm, upgrades file format v10 or later for synced Realms).

### Internal
Using Realm Core from v13.15.1 to v13.17.1
<!-- * Either mention core version or upgrade -->
<!-- * Using Realm Core vX.Y.Z -->
<!-- * Upgraded Realm Core from vX.Y.Z to vA.B.C -->
Expand Down
6 changes: 3 additions & 3 deletions integration-tests/tests/src/tests/queries.ts
Expand Up @@ -194,7 +194,7 @@ const expectQueryResultValues = (
expect(results.map((el) => el[propertyToCompare])).to.deep.equal(
expectedResults,
`
Expected results not returned from query: ${queryString} ${JSON.stringify(queryArgs)},
Expected results not returned from query: ${queryString} ${JSON.stringify(queryArgs)},
`,
);
});
Expand Down Expand Up @@ -334,7 +334,7 @@ describe("Queries", () => {
topRight: [85.24, 88.0],
};

queryResultsIds = [zero, poiA, poiB, poiC, poiD].map((p) => p.id);
queryResultsIds = [zero, poiA, poiB, poiC, poiD, northPole].map((p) => p.id);

expectQueryResultValues(this.realm, PointOfInterest, "id", [
[queryResultsIds, "location geoWithin $0 SORT(id ASC)", box],
Expand Down Expand Up @@ -615,7 +615,7 @@ describe("Queries", () => {
topRight: [85.24, 88.0],
};

queryResultsIds = [zero, poiA, poiB, poiC, poiD].map((p) => p.id);
queryResultsIds = [zero, poiA, poiB, poiC, poiD, northPole].map((p) => p.id);

expectQueryResultValues(this.realm, PointOfInterest, "id", [
[queryResultsIds, "location geoWithin $0 SORT(id ASC)", box],
Expand Down
2 changes: 1 addition & 1 deletion packages/realm/bindgen/vendor/realm-core
Submodule realm-core updated 146 files

0 comments on commit 4acfbe5

Please sign in to comment.