Skip to content
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
2 changes: 1 addition & 1 deletion sdk/spring/azure-spring-data-cosmos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#### Breaking Changes

#### Bugs Fixed
* Fixed when IN statement in annotated query didn't work with Long values - See [PR 36249](https://github.com/Azure/azure-sdk-for-java/pull/36249).
* Fixed an issue with IN statement in annotated queries not working for `Long` data type - See [PR 36249](https://github.com/Azure/azure-sdk-for-java/pull/36249).

#### Other Changes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public final class TestConstants {

public static final Integer HOME_NUMBER_1 = 1;
public static final Integer HOME_NUMBER_2 = 99;
public static final Integer HOME_NUMBER_3 = 4444;
public static final Integer HOME_NUMBER_3 = 4445;

public static final LocalDate REGISTRATION_TIME_1D_AGO = LocalDate.now().minusDays(1);
public static final LocalDate REGISTRATION_TIME_1W_AGO = LocalDate.now().minusDays(7);
Expand Down