Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit feb9554

Browse files
authoredMar 17, 2025··
Merge branch 'main' into 03107-remove-aggregate-shim
2 parents af5e914 + 2d5235a commit feb9554

File tree

64 files changed

+1332
-530
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+1332
-530
lines changed
 

‎actions/run-gradle/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ runs:
1313
run: sed -i -e "s/^org\.gradle\..*/#&/g" gradle.properties
1414
- name: Run Command
1515
shell: bash
16-
run: GRADLE_OPTS="-XX:+HeapDumpOnOutOfMemoryError -Xverify:none -XX:+TieredCompilation -Xmx4096m -Dfile.encoding=UTF-8 -Duser.country -Duser.language=en -Duser.variant --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED" ./gradlew --no-daemon --console=plain ${{ inputs.gradle_command }}
16+
run: GRADLE_OPTS="-XX:+HeapDumpOnOutOfMemoryError -XX:+TieredCompilation -Xmx4096m -Dfile.encoding=UTF-8 -Duser.country -Duser.language=en -Duser.variant --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED" ./gradlew --no-daemon --console=plain --warning-mode all ${{ inputs.gradle_command }}

‎docs/sphinx/source/ReleaseNotes.md

+35
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,41 @@ Builds and releases have been moved to a new CI system. This includes the resump
1515

1616
Users performing online updates are encouraged to update from [4.0.559.4](#405594). The continuations of some queries have changed in ways that may break if continued on other 4.0 builds. See: [Issue #3093](https://github.com/FoundationDB/fdb-record-layer/issues/3093), [PR #3092](https://github.com/FoundationDB/fdb-record-layer/pull/3092) fixing the issue, and [PR #3108](https://github.com/FoundationDB/fdb-record-layer/issues/3108) preparing 4.0.559.4 to accept newer continuations.
1717

18+
### 4.1.10.0
19+
20+
<h4> Bug Fixes </h4>
21+
22+
* Do not drop AllTime leaderboard if deleteBefore is Long.Max_VALUE - [PR #3241](https://github.com/FoundationDB/fdb-record-layer/pull/3241)
23+
24+
<details>
25+
<summary>
26+
27+
<h4> Build/Test/Documentation Improvements (click to expand) </h4>
28+
29+
</summary>
30+
31+
* Add illegal version tests to SupportedVersionTest - [PR #3239](https://github.com/FoundationDB/fdb-record-layer/pull/3239)
32+
* Add --warning-mode all to all our builds - [PR #3243](https://github.com/FoundationDB/fdb-record-layer/pull/3243)
33+
* Run Mixed Mode Tests during the release parallel to the other tests - [PR #3233](https://github.com/FoundationDB/fdb-record-layer/pull/3233)
34+
* Change documentation link in readme to point to github pages - [PR #3236](https://github.com/FoundationDB/fdb-record-layer/pull/3236)
35+
* Fix gradle warnings in prb - [PR #3225](https://github.com/FoundationDB/fdb-record-layer/pull/3225)
36+
* Fix path to FDB logo in README.md - [PR #3235](https://github.com/FoundationDB/fdb-record-layer/pull/3235)
37+
38+
</details>
39+
40+
41+
**[Full Changelog (4.1.9.0...4.1.10.0)](https://github.com/FoundationDB/fdb-record-layer/compare/4.1.9.0...4.1.10.0)**
42+
43+
#### Mixed Mode Test Results
44+
45+
Mixed mode testing run against the following previous versions:
46+
47+
`4.0.559.1`, ❌`4.0.559.2`, ❌`4.0.559.3`, ✅`4.0.559.4`, ✅`4.0.559.6`, ❌`4.0.561.0`, ❌`4.0.562.0`, ❌`4.0.564.0`, ❌`4.0.565.0`, ❌`4.0.566.0`, ❌`4.0.567.0`, ❌`4.0.568.0`, ❌`4.0.569.0`, ❌`4.0.570.0`, ❌`4.0.571.0`, ❌`4.0.572.0`, ❌`4.0.573.0`, ❌`4.0.574.0`, ❌`4.0.575.0`, ❌`4.1.4.0`, ✅`4.1.5.0`, ✅`4.1.6.0`, ✅`4.1.8.0`, ✅`4.1.9.0`
48+
49+
[See full test run](https://github.com/FoundationDB/fdb-record-layer/actions/runs/13861613630)
50+
51+
52+
1853
### 4.1.9.0
1954

2055
<h4> New Features </h4>

0 commit comments

Comments
 (0)
Please sign in to comment.