Skip to content

Conversation

@imsodin
Copy link
Member

@imsodin imsodin commented Aug 23, 2025

The benchstat tool allows custom grouping when comparing with what it calls "sub-name configuration keys":
https://pkg.go.dev/golang.org/x/perf@v0.0.0-20250813145418-2f7363a06fe1/cmd/benchstat#hdr-Configuring_comparisons

That's quite useful for these benchmarks, as we basically have two independent configs: The type of benchmark and the size. Real example usage for the prepared named statements PR (results are rubbish for unrelated reasons):

$ benchstat -row ".name /n" bench-main.out bench-prepared.out
goos: linux
goarch: amd64
pkg: github.com/syncthing/syncthing/internal/db/sqlite
cpu: Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz
                            │ bench-main-20250823_014059.out │   bench-prepared-20250823_022849.out   │
                            │             sec/op             │     sec/op      vs base                │
Update Insert100Loc                           248.5m ±  8% ¹   157.7m ±  7% ¹  -36.54% (p=0.000 n=50)
Update RepBlocks100                           253.7m ±  4% ¹   163.6m ±  7% ¹  -35.49% (p=0.000 n=50)
Update RepSame100                            130.42m ±  3% ¹   60.26m ±  2% ¹  -53.80% (p=0.000 n=50)
Update Insert100Rem                           38.54m ±  5% ¹   21.94m ±  1% ¹  -43.07% (p=0.000 n=50)
Update GetGlobal100                          10.897m ±  4% ¹   4.231m ±  1% ¹  -61.17% (p=0.000 n=50)
Update LocalSequenced                         7.560m ±  5% ¹   3.124m ±  2% ¹  -58.68% (p=0.000 n=50)
Update GetDeviceSequenceLoc                  17.554µ ±  6% ¹   8.400µ ±  1% ¹  -52.15% (n=50)
Update GetDeviceSequenceRem                  17.727µ ±  4% ¹   8.237µ ±  2% ¹  -53.54% (p=0.000 n=50)
Update RemoteNeed                              4.147 ± 77% ¹    1.903 ± 78% ¹  -54.11% (p=0.000 n=50)
Update LocalNeed100Largest                   21.516m ± 22% ¹   9.312m ± 47% ¹  -56.72% (p=0.000 n=50)
geomean                                       15.35m           7.486m          -51.22%
¹ benchmarks vary in .fullname

The benchstat tool allows custom grouping when comparing with what it
calls "sub-name configuration keys":
https://pkg.go.dev/golang.org/x/perf@v0.0.0-20250813145418-2f7363a06fe1/cmd/benchstat#hdr-Configuring_comparisons

That's quite useful for these benchmarks, as we basically have two
independent configs: The type of benchmark and the size. Real example
usage for the prepared named statements PR (results are rubbish for
unrelated reasons):

```
$ benchstat -row ".name /n" bench-main.out bench-prepared.out
goos: linux
goarch: amd64
pkg: github.com/syncthing/syncthing/internal/db/sqlite
cpu: Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz
                            │ bench-main-20250823_014059.out │   bench-prepared-20250823_022849.out   │
                            │             sec/op             │     sec/op      vs base                │
Update Insert100Loc                           248.5m ±  8% ¹   157.7m ±  7% ¹  -36.54% (p=0.000 n=50)
Update RepBlocks100                           253.7m ±  4% ¹   163.6m ±  7% ¹  -35.49% (p=0.000 n=50)
Update RepSame100                            130.42m ±  3% ¹   60.26m ±  2% ¹  -53.80% (p=0.000 n=50)
Update Insert100Rem                           38.54m ±  5% ¹   21.94m ±  1% ¹  -43.07% (p=0.000 n=50)
Update GetGlobal100                          10.897m ±  4% ¹   4.231m ±  1% ¹  -61.17% (p=0.000 n=50)
Update LocalSequenced                         7.560m ±  5% ¹   3.124m ±  2% ¹  -58.68% (p=0.000 n=50)
Update GetDeviceSequenceLoc                  17.554µ ±  6% ¹   8.400µ ±  1% ¹  -52.15% (n=50)
Update GetDeviceSequenceRem                  17.727µ ±  4% ¹   8.237µ ±  2% ¹  -53.54% (p=0.000 n=50)
Update RemoteNeed                              4.147 ± 77% ¹    1.903 ± 78% ¹  -54.11% (p=0.000 n=50)
Update LocalNeed100Largest                   21.516m ± 22% ¹   9.312m ± 47% ¹  -56.72% (p=0.000 n=50)
geomean                                       15.35m           7.486m          -51.22%
¹ benchmarks vary in .fullname
```
@github-actions github-actions bot added the chore label Aug 23, 2025
@imsodin imsodin changed the title chore(db): Adjust db bench name to improve benchstat grouping chore(db): adjust db bench name to improve benchstat grouping Aug 23, 2025
@imsodin imsodin merged commit a259a00 into syncthing:main Aug 23, 2025
30 checks passed
calmh added a commit that referenced this pull request Aug 24, 2025
* main: (154 commits)
  chore(db): adjust db bench name to improve benchstat grouping (#10283)
  fix(db): clean files for dropped folders at startup (#10280)
  fix(cmd): provide temporary GUI/API server during database migration (#10279)
  fix(cmd): make database migration more robust to write errors (#10278)
  build: downgrade gopsutil (fixes #10276) (#10277)
  fix: permissions in moving deb files?
  build: use new apt publisher
  chore(slog): re-enable LOGGER_DISCARD (fixes #10262) (#10267)
  fix(cmd): restore --version flag for compatibility (#10269)
  chore(gui, man, authors): update docs, translations, and contributors
  build: set netgo & osusergo tags for Linux build (#10261)
  build: bump required language level to 1.24, compiler to 1.25 (#10248)
  build: remove netgo and osusergo build tags (fixes #10251) (#10256)
  fix: increase default delete retention to 15 months (#10252)
  fix(db): handle path names that include URL special chars (fixes #10245) (#10247)
  fix(etc): correct incantation to launch browser in Linux desktop file (#10246)
  build(deps): update (most) dependencies (#10243)
  fix(all): various typos (#10242)
  fix: allow upgrade without config dir (fixes #10240) (#10241)
  chore: repo mirror job
  ...
@calmh calmh added this to the v2.0.4 milestone Aug 31, 2025
Hancock33 added a commit to Hancock33/batocera.piboy that referenced this pull request Aug 31, 2025
---------------------------------------------------------------------------------------
applewin.mk 3defc868e1b8308cd5b87122f968d370fb7e41de # Version: Commits on Aug 31, 2025
---------------------------------------------------------------------------------------
Merge pull request #296 from zoltanvb/gitlab-ci

CI file for RetroArch buildbot. Linux-x64 as first step.,

-----------------------------------------------------------------------------------
ares.mk 5a2be88f41c8bec95543732d796b0efeb8564054 # Version: Commits on Aug 31, 2025
-----------------------------------------------------------------------------------
gba: fix some warnings from C++20 deprecating bitwise operations between different enums,

------------------------------------------------------------------------------------------
duckstation.mk 44908fe7f444810ef94e2b99b80471ca8e8cd97d # Version: Commits on Aug 31, 2025
------------------------------------------------------------------------------------------
Qt: Respond to DPR change in memory card editor,

-------------------------------------------------------------------------------------
ikemen.mk c0be441dcddbbdb5f0c278a041a0620da76dd0b3 # Version: Commits on Aug 31, 2025
-------------------------------------------------------------------------------------
Merge pull request #2605 from Jesuszilla/new-feats

fix: Normalizer nil streamer crash, BGM swapping logic.,

--------------------------------------------------------------------------------------
openmsx.mk 86abec73ab1ffaaf4544e0447e6e6099a6946182 # Version: Commits on Aug 31, 2025
--------------------------------------------------------------------------------------
VDPCmdEngine: reset BD bit after reading S#2

Thanks a lot to 'hra1129' for reporting this:

    VDP Command SRCH issue

    openMSX/openMSX#1960,

-------------------------------------------------------------------------------------
ppsspp.mk 556ba2e585260b4a45c2f4c880eab496f3921302 # Version: Commits on Aug 31, 2025
-------------------------------------------------------------------------------------
Merge pull request #20770 from hrydgard/more-java-cleanup

More java cleanup, fix exit race condition in OpenGL,

--------------------------------------------------------------------------------------
shadps4.mk e6f0ee7ed202d6095f29162ea2ab9c27d4bd9e78 # Version: Commits on Aug 31, 2025
--------------------------------------------------------------------------------------
Move QT plugins to the qtplugins folder on Windows QT builds (#3491)

* test build.yml

* add qt.conf for windows-qt

* test 2 build.yml

* Update build.yml

* placeholder license and copyright in qt.conf

* proper copyright qt.conf

* Add files via upload

* Delete qt.conf from root

* changes to build.yml

* Update REUSE.toml,

---------------------------------------------------------------------------------------
thextech.mk 945187b64eb121b3a031dbfb6bddcf13581be6a6 # Version: Commits on Aug 31, 2025
---------------------------------------------------------------------------------------
controls.cpp: allow reconnecting when active profile deleted in game,

-------------------------------------------------
vice.mk r45745 # Version: Commits on Aug 31, 2025
-------------------------------------------------
Delay some initialization until first actual use. First step towards allocating all printer resources dynamically.

git-svn-id: https://svn.code.sf.net/p/vice-emu/code/trunk@45745 379a1393-f5fb-40a0-bcee-ef074d9b53f7,

------------------------------------------------------------------------------------
box64.mk 1b2515cd496d140997d6cb2c35d180afac4ae3b8 # Version: Commits on Aug 31, 2025
------------------------------------------------------------------------------------
[ARM64_DYNAREC][TRACE] Fixed SWP B/H opcodes printer,

--------------------------------------------------------------------------------------
cgenius.mk bee00e47805909d08568c640073a2123ca7021b1 # Version: Commits on Aug 31, 2025
--------------------------------------------------------------------------------------
TTF hack fix,

---------------------------------------------------------------------------------------
corsixth.mk b9a925c4daa2d03390c32705096d8e81237a348f # Version: Commits on Aug 31, 2025
---------------------------------------------------------------------------------------
Merge pull request #2985 from TheCycoONE/multi_buffer_cleanup

Minor cleanup load_multi_buffer,

------------------------------------------------------------------------------------------
devilutionx.mk fd02564a85cc6c8d3f1ed7db9ef731c9c2ca92e7 # Version: Commits on Aug 31, 2025
------------------------------------------------------------------------------------------
magic_enum: Customize enums where they're declared

This necessitates dependencies on `magic_enum` in more

places but avoids obscure hard-to-debug errors, such

as the one seen in the DOS port PR.,

---------------------------------------------------------------------------------------
etlegacy.mk 39292c39b99bd83eef5ad56805c9dfce5f5f0a37 # Version: Commits on Aug 31, 2025
---------------------------------------------------------------------------------------
game: adjust quick scope shot closer to vanilla part 2 (#3167)

Change quick scope tolerance from 175ms to 200ms,

-----------------------------------------------------------
syncthing.mk v2.0.4-rc.1 # Version: Commits on Aug 31, 2025
-----------------------------------------------------------
## Major changes in 2.0

- Database backend switched from LevelDB to SQLite. There is a migration on

  first launch which can be lengthy for larger setups. The new database is

  easier to understand and maintain and, hopefully, less buggy.

- The logging format has changed to use structured log entries (a message

  plus several key-value pairs). Additionally, we can now control the log

  level per package, and a new log level WARNING has been inserted between

  INFO and ERROR (which was previously known as WARNING...). The INFO level

  has become more verbose, indicating the sync actions taken by Syncthing. A

  new command line flag `--log-level` sets the default log level for all

  packages, and the `STTRACE` environment variable and GUI has been updated

  to set log levels per package. The `--verbose` and `--logflags` command

  line options have been removed and will be ignored if given.

- Deleted items are no longer kept forever in the database, instead they are

  forgotten after fifteen months. If your use case require deletes to take

  effect after more than a fifteen month delay, set the

  `--db-delete-retention-interval` command line option or corresponding

  environment variable to zero, or a longer time interval of your choosing.

- Modernised command line options parsing. Old single-dash long options are

  no longer supported, e.g. `-home` must be given as `--home`. Some options

  have been renamed, others have become subcommands. All serve options are

  now also accepted as environment variables. See  `syncthing --help` and

  `syncthing serve --help` for details.

- Rolling hash detection of shifted data is no longer supported as this

  effectively never helped. Instead, scanning and syncing is faster and more

  efficient without it.

- A \default folder\ is no longer created on first startup.

- Multiple connections are now used by default between v2 devices. The new

  default value is to use three connections: one for index metadata and two

  for data exchange.

- The following platforms unfortunately no longer get prebuilt binaries for

  download at syncthing.net and on GitHub, due to complexities related to

  cross compilation with SQLite:

  - dragonfly/amd64

  - illumos/amd64 and solaris/amd64

  - linux/ppc64

  - netbsd/*

  - openbsd/386 and openbsd/arm

  - windows/arm

- The handling of conflict resolution involving deleted files has changed. A

  delete can now be the winning outcome of conflict resolution, resulting in

  the deleted file being moved to a conflict copy.

This release is also available as:

* APT repository: https://apt.syncthing.net/

* Docker image: `docker.io/syncthing/syncthing:2.0.4-rc.1` or `ghcr.io/syncthing/syncthing:2.0.4-rc.1`

  (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)

## What's Changed

### Fixes

* fix(cmd): only start temporary API server during migration if it's enabled by @pixelspark in syncthing/syncthing#10284

* fix(model): consider MaxFolderConcurrency when calculating number of hashers by @tomasz1986 in syncthing/syncthing#10285

* fix(model): consider number of CPU cores when calculating hashers on interactive OS (#10284) by @tomasz1986 in syncthing/syncthing#10286

* fix(db): apply all migrations and schema in one transaction by @calmh in syncthing/syncthing#10323

### Other

* chore(db): adjust db bench name to improve benchstat grouping by @imsodin in syncthing/syncthing#10283

* chore(db): cleanup DB in tests and remove OpenTemp by @imsodin in syncthing/syncthing#10282

* build: use Go 1.24 tools pattern by @calmh in syncthing/syncthing#10281

* chore(db): avoid rowid for blocks and blocklists by @bt90 in syncthing/syncthing#10315

* refactor(db): slightly improve insert performance by @calmh in syncthing/syncthing#10318

* chore(gui): use steps of 1024 KiB for bandwidth rate limits by @tomasz1986 in syncthing/syncthing#10316

* chore(gui): use step of 3600 for versions cleanup interval by @tomasz1986 in syncthing/syncthing#10317

* chore(db): benchmark output, migration blocks/s output by @calmh in syncthing/syncthing#10320

* chore(db): update schema version in the same transaction as migration by @imsodin in syncthing/syncthing#10321

* chore(db): migration for previous commits by @calmh in syncthing/syncthing#10319

**Full Changelog**: syncthing/syncthing@v2.0.3...v2.0.4-rc.1,

---------------------------------------------------------------------------------------------------
mupen64plus-gliden64.mk 0ab1c5b819c96353a8571d8d5c324cc0cf0ff9f2 # Version: Commits on Aug 31, 2025
---------------------------------------------------------------------------------------------------
Use software vertices clipping (if enabled) when frame buffer emulation is off.

Fixes #2939,

----------------------------------------------------------------------------------------
retroarch.mk 601fd41ba57fd0174a22f972b188782d160fb163 # Version: Commits on Aug 31, 2025
----------------------------------------------------------------------------------------
Fix single-click playlist Enter select,

------------------------------------------------------------------------------------------
xash3d-fwgs.mk 5e53ccab55bdff2c6b13d08735dabbd2709a699c # Version: Commits on Aug 31, 2025
------------------------------------------------------------------------------------------
waf: update to latest waifu,

----------------------------------------------------------------------------------------------
libretro-ppsspp.mk 556ba2e585260b4a45c2f4c880eab496f3921302 # Version: Commits on Aug 31, 2025
----------------------------------------------------------------------------------------------
Merge pull request #20770 from hrydgard/more-java-cleanup

More java cleanup, fix exit race condition in OpenGL,
Hancock33 added a commit to Hancock33/batocera.piboy that referenced this pull request Sep 7, 2025
------------------------------------------------------------------------------------------------------
chromebook-linux-audio.mk 7f681e10e8b5352c4e468e901ee3770bfff37c40 # Version: Commits on Sept 02, 2025
------------------------------------------------------------------------------------------------------
functions: improve chrome platform detection

check for cros_ec in cases where stock firmware incorrectly reports system vendor,

-------------------------------------------------------------------------------------------
duckstation.mk 25b44f4283a347d05e221d841744bfd4c4d11c5f # Version: Commits on Sept 02, 2025
-------------------------------------------------------------------------------------------
Qt: Wire up new key glyphs,

--------------------------------------------------------------------------------------
ikemen.mk c00870fa97c057423c43459202476e25900ef993 # Version: Commits on Sept 01, 2025
--------------------------------------------------------------------------------------
Merge pull request #2612 from RakieI/newstuff

feat(motif): per player cursor.tween ;syntax fix,

------------------------------------------------------------------------------------------
lightspark.mk 2aee0d73e910ac51cbfe18dc92fe20cb19b93dc7 # Version: Commits on Sept 02, 2025
------------------------------------------------------------------------------------------
make getslot optimization work with local numbers

fixes crash in \FormulaRacer2012\ when entering \turbo\ mode during race,

---------------------------------------------------------------------------------------
openmsx.mk 19cde2fde4027c6df8fa6ca377e222638d81c2de # Version: Commits on Sept 02, 2025
---------------------------------------------------------------------------------------
VDPCmdEngine: tweak BD bit in S#2

Follow up on: 86abec73ab1ffaa

Thanks to 'hra1129' for more extended tests in:

    openMSX/openMSX#1960,

-----------------------------------------------------
pcsx2.mk v2.5.150 # Version: Commits on Sept 02, 2025
-----------------------------------------------------
- [GameDB: Deadly Strike fixes](PCSX2/pcsx2#13226)

,

--------------------------------------------------------------------------------------
ppsspp.mk 0332e67ad40344696def0d3be4e00a88f2803f00 # Version: Commits on Sept 02, 2025
--------------------------------------------------------------------------------------
Merge pull request #20789 from hrydgard/more-modernization

Android: Fix some lint warnings,

-------------------------------------------------------------------------------------
rpcs3.mk c7de9053b4a5e0f02f4a5b9e13bb5643c70b8c53 # Version: Commits on Sept 01, 2025
-------------------------------------------------------------------------------------
Qt: fix saved gs_frame visibility,

----------------------------------------------------------------
ruffle.mk nightly-2025-09-02 # Version: Commits on Sept 02, 2025
----------------------------------------------------------------
## What's Changed

* chore: Fix a code comment by @n0samu in ruffle-rs/ruffle#21529

* avm2: Add call handlers to several error types by @SuchAFuriousDeath in ruffle-rs/ruffle#21524

**Full Changelog**: ruffle-rs/ruffle@nightly-2025-09-01...nightly-2025-09-02,

------------------------------------------------------
ryujinx.mk 1.3.129 # Version: Commits on Sept 02, 2025
------------------------------------------------------
Canary-1.3.129

---------------------------------------------------------------------------------------
shadps4.mk d9b4618085285b95d6d78deec7e0bd09a19e9dd2 # Version: Commits on Sept 02, 2025
---------------------------------------------------------------------------------------
Use icons, music and background images of updates if available (#3494)

* Update game_info.h

* fix clang game_info.h

* SceUpdateChecker game_info.h

* fix clang game_info.h

* fix clang(darn you space) game_info.h

* there was another space... game_info.h

* Update game_info.h

* fix clang game_info.h,

---------------------------------------------------------------------------------------
tsugaru.mk 4fe7012774fc3bcda9605c7a99878534a3cb0fdd # Version: Commits on Sept 02, 2025
---------------------------------------------------------------------------------------
Merge pull request #163 from bcc2528/master

Optimized sprite clear.,

------------------------------------------------------------------------------------
ymir.mk d4ee4651c654954bdd1f69f6a89d860c43b4360d # Version: Commits on Sept 02, 2025
------------------------------------------------------------------------------------
fix(VDP2): Fix VRAM access cycles loop ignoring banks A1, B0 and B1 if VRAM A wasn't partitioned

Fixes numerous graphics regressions,

----------------------------------------------------------
sdl3.mk release-3.2.22 # Version: Commits on Sept 01, 2025
----------------------------------------------------------
Updated to version 3.2.22 for release,

-------------------------------------------------------------------------------------
box64.mk 28d07f9bf03c76013db8d15477e8d1f46d1b930d # Version: Commits on Sept 02, 2025
-------------------------------------------------------------------------------------
[WRAPPERHELPER] Added legacy __attribute support (#2996),

-------------------------------------------------------------------------------------------
devilutionx.mk 0a21f6569c0e03b13de67cb7e2fe984c33253b53 # Version: Commits on Sept 02, 2025
-------------------------------------------------------------------------------------------
dos: Update SDL

Includes red cursor fix and protected mode interface performance

improvements.,

----------------------------------------------------------------------------------------
openjazz.mk a588027cc3706facb906a63d154b698f2529e0af # Version: Commits on Sept 02, 2025
----------------------------------------------------------------------------------------
Ci: Migrate to supported windows '22 runner,

-----------------------------------------------------------------------------------
stk.mk f654d88ff3dc3991d4a9596231f2be7c3c6df75f # Version: Commits on Sept 02, 2025
-----------------------------------------------------------------------------------
Fix wrong powerup sound when using after a rewind/forced sync (#5493)

Fix #5495,

-----------------------------------------------------------------------------------------
supertux2.mk 737777c810a9097aaea2c6270c34765f862beeed # Version: Commits on Sept 01, 2025
-----------------------------------------------------------------------------------------
fix tile error lol [ci skip],

-------------------------------------------------------
syncthing.mk v2.0.4 # Version: Commits on Sept 02, 2025
-------------------------------------------------------
## Major changes in 2.0

- Database backend switched from LevelDB to SQLite. There is a migration on

  first launch which can be lengthy for larger setups. The new database is

  easier to understand and maintain and, hopefully, less buggy.

- The logging format has changed to use structured log entries (a message

  plus several key-value pairs). Additionally, we can now control the log

  level per package, and a new log level WARNING has been inserted between

  INFO and ERROR (which was previously known as WARNING...). The INFO level

  has become more verbose, indicating the sync actions taken by Syncthing. A

  new command line flag `--log-level` sets the default log level for all

  packages, and the `STTRACE` environment variable and GUI has been updated

  to set log levels per package. The `--verbose` and `--logflags` command

  line options have been removed and will be ignored if given.

- Deleted items are no longer kept forever in the database, instead they are

  forgotten after fifteen months. If your use case require deletes to take

  effect after more than a fifteen month delay, set the

  `--db-delete-retention-interval` command line option or corresponding

  environment variable to zero, or a longer time interval of your choosing.

- Modernised command line options parsing. Old single-dash long options are

  no longer supported, e.g. `-home` must be given as `--home`. Some options

  have been renamed, others have become subcommands. All serve options are

  now also accepted as environment variables. See  `syncthing --help` and

  `syncthing serve --help` for details.

- Rolling hash detection of shifted data is no longer supported as this

  effectively never helped. Instead, scanning and syncing is faster and more

  efficient without it.

- A \default folder\ is no longer created on first startup.

- Multiple connections are now used by default between v2 devices. The new

  default value is to use three connections: one for index metadata and two

  for data exchange.

- The following platforms unfortunately no longer get prebuilt binaries for

  download at syncthing.net and on GitHub, due to complexities related to

  cross compilation with SQLite:

  - dragonfly/amd64

  - illumos/amd64 and solaris/amd64

  - linux/ppc64

  - netbsd/*

  - openbsd/386 and openbsd/arm

  - windows/arm

- The handling of conflict resolution involving deleted files has changed. A

  delete can now be the winning outcome of conflict resolution, resulting in

  the deleted file being moved to a conflict copy.

This release is also available as:

* APT repository: https://apt.syncthing.net/

* Docker image: `docker.io/syncthing/syncthing:2.0.4` or `ghcr.io/syncthing/syncthing:2.0.4`

  (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)

## What's Changed

### Fixes

* fix(cmd): only start temporary API server during migration if it's enabled by @pixelspark in syncthing/syncthing#10284

* fix(model): consider MaxFolderConcurrency when calculating number of hashers by @tomasz1986 in syncthing/syncthing#10285

* fix(model): consider number of CPU cores when calculating hashers on interactive OS (#10284) by @tomasz1986 in syncthing/syncthing#10286

* fix(db): apply all migrations and schema in one transaction by @calmh in syncthing/syncthing#10323

* fix(model): correctly handle block-aligned empty sparse files by @calmh in syncthing/syncthing#10332

* fix(syncthing): apply folder migrations with temporary API/GUI server by @calmh in syncthing/syncthing#10330

### Other

* chore(db): adjust db bench name to improve benchstat grouping by @imsodin in syncthing/syncthing#10283

* chore(db): cleanup DB in tests and remove OpenTemp by @imsodin in syncthing/syncthing#10282

* build: use Go 1.24 tools pattern by @calmh in syncthing/syncthing#10281

* chore(db): avoid rowid for blocks and blocklists by @bt90 in syncthing/syncthing#10315

* refactor(db): slightly improve insert performance by @calmh in syncthing/syncthing#10318

* chore(gui): use steps of 1024 KiB for bandwidth rate limits by @tomasz1986 in syncthing/syncthing#10316

* chore(gui): use step of 3600 for versions cleanup interval by @tomasz1986 in syncthing/syncthing#10317

* chore(db): benchmark output, migration blocks/s output by @calmh in syncthing/syncthing#10320

* chore(db): update schema version in the same transaction as migration by @imsodin in syncthing/syncthing#10321

* chore(db): migration for previous commits by @calmh in syncthing/syncthing#10319

**Full Changelog**: syncthing/syncthing@v2.0.3...v2.0.4,

-------------------------------------------------------
rgbds.mk v1.0.0-rc1 # Version: Commits on Sept 01, 2025
-------------------------------------------------------
Release v1.0.0-rc1,

-----------------------------------------------------------------------------------------
winetricks.mk 75118236ac5cb6f51918460a14f7bc40162a115e # Version: Commits on Aug 25, 2025
-----------------------------------------------------------------------------------------
fixed unicode quote.

SC1111 (warning): This is a unicode quote. Delete and retype it (or ignore/singlequote for literal).,

-----------------------------------------------------------------------------------------
retroarch.mk c32aa80ceac48405c5b3751f3e1fd4d4fae252a3 # Version: Commits on Sept 02, 2025
-----------------------------------------------------------------------------------------
Shader toggle cleanup,

-----------------------------------------------------------------------------------------
doomretro.mk d800779ed26430f155a635f9d583741355855b60 # Version: Commits on Sept 02, 2025
-----------------------------------------------------------------------------------------
Update to SDL v2.32.10,

--------------------------------------------------------------------------------------
gzdoom.mk b8807b7d996f3cef0e63736c7895b8c7cf1cbd40 # Version: Commits on Sept 01, 2025
--------------------------------------------------------------------------------------
Correct modeset timing on some systems

Co-authored-by: Marcus Minhorst <marcus.minhorst@gmail.com>,

-------------------------------------------------------------------------------------------
xash3d-fwgs.mk e38dc294114f29aced25966b7983c7bb4989f463 # Version: Commits on Sept 02, 2025
-------------------------------------------------------------------------------------------
3rdparty: mainui: update,

---------------------------------------------------------------------------------------------------
libretro-clownmdemu.mk 8dd1c9bb16a63c74a63c97deade671bb9d8b3d2c # Version: Commits on Sept 01, 2025
---------------------------------------------------------------------------------------------------
Fix CMake script failing on almost every libretro platform.,

-----------------------------------------------------------------------------------------------
libretro-ppsspp.mk 0332e67ad40344696def0d3be4e00a88f2803f00 # Version: Commits on Sept 02, 2025
-----------------------------------------------------------------------------------------------
Merge pull request #20789 from hrydgard/more-modernization

Android: Fix some lint warnings,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants