Skip to content

Conversation

calmh
Copy link
Member

@calmh calmh commented Aug 16, 2025

Avoid:

/_/GOROOT/src/os/user/cgo_lookup_cgo.go:45:(.text+0x54): warning: Using 'getgrgid_r' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking

and

/tmp/go-build/cgo-gcc-prolog:60:(.text+0x40): warning: Using 'getaddrinfo' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking

@github-actions github-actions bot added the build Issues caused by or requiring changes to the build system (scripts or Docker image) label Aug 16, 2025
@calmh calmh added the trivial The PR is considered a trivial change, for review purposes label Aug 16, 2025
@calmh calmh enabled auto-merge (squash) August 16, 2025 04:15
@calmh calmh changed the title build: set osusergo for linux build build: set netgo & osusergo tags for Linux build Aug 16, 2025
@calmh calmh disabled auto-merge August 16, 2025 04:25
@calmh calmh merged commit 755daaa into syncthing:main Aug 16, 2025
26 of 28 checks passed
@calmh calmh deleted the osusergo branch August 16, 2025 04:33
@calmh calmh added this to the v2.0.2 milestone Aug 16, 2025
spirkaa added a commit to spirkaa/infra that referenced this pull request Aug 17, 2025
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
| [syncthing/syncthing](https://syncthing.net) ([source](https://github.com/syncthing/syncthing)) | major | `1.30.0` -> `2.0.2` |

---

### Release Notes

<details>
<summary>syncthing/syncthing (syncthing/syncthing)</summary>

### [`v2.0.2`](https://github.com/syncthing/syncthing/releases/tag/v2.0.2)

[Compare Source](syncthing/syncthing@v2.0.1...v2.0.2)

#### 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.2` or `ghcr.io/syncthing/syncthing:2.0.2`
  (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)

#### What's Changed

##### Other

- build: remove netgo and osusergo build tags (fixes [#&#8203;10251](syncthing/syncthing#10251)) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10256
- build: bump required language level to 1.24, compiler to 1.25 by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10248
- build: set netgo & osusergo tags for Linux build by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10261

**Full Changelog**: syncthing/syncthing@v2.0.1...v2.0.2

### [`v2.0.1`](https://github.com/syncthing/syncthing/releases/tag/v2.0.1)

[Compare Source](syncthing/syncthing@v2.0.0...v2.0.1)

#### 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.1` or `ghcr.io/syncthing/syncthing:2.0.1`
  (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)

#### What's Changed

##### Fixes

- fix: allow upgrade without config dir (fixes [#&#8203;10240](syncthing/syncthing#10240)) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10241
- fix(all): various typos by [@&#8203;rasa](https://github.com/rasa) in syncthing/syncthing#10242
- fix(etc): correct incantation to launch browser in Linux desktop file by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10246
- fix(db): handle path names that include URL special chars (fixes [#&#8203;10245](syncthing/syncthing#10245)) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10247
- fix: increase default delete retention to 15 months by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10252

##### Other

- build(deps): update (most) dependencies by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10243

**Full Changelog**: syncthing/syncthing@v2.0.0...v2.0.1

### [`v2.0.0`](https://github.com/syncthing/syncthing/releases/tag/v2.0.0)

[Compare Source](syncthing/syncthing@v1.30.0...v2.0.0)

#### ⚠️ First 2.0 release ⚠️

This is the first release of the new 2.0 series. Expect some rough edges and keep a sense of adventure! 🙏

#### 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 six months. If your use case require deletes to take
  effect after more than a six 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.0` or `ghcr.io/syncthing/syncthing:2.0.0`
  (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version)

#### What's Changed

##### Fixes

- fix(db): handle large numbers of blocks in update by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10025
- fix(syncthing): make directory flags global for all commands by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10028
- fix(sqlite): apply options by [@&#8203;pixelspark](https://github.com/pixelspark) in syncthing/syncthing#10049
- fix(db): version vector serialisation :( by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10050
- fix(model): loop-break regression while block copying in puller by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10069
- fix(model): close fd immediately in copier by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10079
- fix(model): use same folder first in copier by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10093
- fix(model): correct bufferpool handling; simplify by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10113
- fix(protocol): avoid deadlock with concurrent connection start and close by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10140
- fix(syncthing): avoid writing panic log to nil fd by [@&#8203;ardevd](https://github.com/ardevd) in syncthing/syncthing#10154
- fix(fs): check for unsupported error on modern Windows (fixes [#&#8203;10164](syncthing/syncthing#10164)) by [@&#8203;rasa](https://github.com/rasa) in syncthing/syncthing#10165
- fix(gui): don't show dial errors for paused devices (fixes [#&#8203;10166](syncthing/syncthing#10166)) by [@&#8203;marbens-arch](https://github.com/marbens-arch) in syncthing/syncthing#10167
- fix: track invalid files in LocalFlags to fix global count by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10170
- fix(watchaggregator): properly handle sub-second watch durations (fixes [#&#8203;9927](syncthing/syncthing#9927)) by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10179
- fix(db): remove invalid member from FileMetadata by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10180
- fix(model): avoid flashing "Sync Waiting" unnecessarily by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10181
- fix(protocol): slightly loosen/correct ownership comparison criteria (fixes [#&#8203;9879](syncthing/syncthing#9879)) by [@&#8203;yparitcher](https://github.com/yparitcher) in syncthing/syncthing#10176
- fix(model): don't clobber local flags when receiving index by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10190
- fix(beacon, osutil, upnp): fix local discovery send and intf detection on Android by [@&#8203;Catfriend1](https://github.com/Catfriend1) in syncthing/syncthing#10196
- fix(pmp, netutil): workaround native code denied to discover gateway ipv4 addr on Android 14+ by [@&#8203;Catfriend1](https://github.com/Catfriend1) in syncthing/syncthing#10204
- fix: allow deleted files to win conflict resolution by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10207
- fix(gui): show revert buttons only when folder is idle (fixes [#&#8203;10191](syncthing/syncthing#10191)) by [@&#8203;tomasz1986](https://github.com/tomasz1986) in syncthing/syncthing#10212
- fix(gui): fix identicon generation by [@&#8203;aionescu](https://github.com/aionescu) in syncthing/syncthing#10228
- fix(model): properly set folder state "syncing" when copying data by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10227
- fix(slogutil): quote values with parentheses in them by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10229
- fix(test): remove lib/logger from testmocks target by [@&#8203;rasa](https://github.com/rasa) in syncthing/syncthing#10231
- fix: correct logging of our ID after startup & generate by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10234

##### Features

- feat: add `syncthing debug database-statistics` command by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10117
- feat(config): enable multiple connections by default by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10151
- feat(config): expose folder and device info as metrics (fixes [#&#8203;9519](syncthing/syncthing#9519)) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10148
- feat: use [`Ed25519`](syncthing/syncthing@Ed25519) keys for sync connections by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10162
- feat(gui): add option to limit bandwidth in LAN to Settings (ref [#&#8203;10046](syncthing/syncthing#10046)) by [@&#8203;tomasz1986](https://github.com/tomasz1986) in syncthing/syncthing#10182
- feat(connections, nat): add UDP portmapping/pinhole for QUIC (fixes [#&#8203;7403](syncthing/syncthing#7403)) by [@&#8203;marbens-arch](https://github.com/marbens-arch) in syncthing/syncthing#10171
- feat: add debug commands for folder counts and files by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10206
- feat(ignore): add .stignore escaping on Windows by [@&#8203;rasa](https://github.com/rasa) in syncthing/syncthing#10205
- feat: switch logging framework by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10220

##### Other

- chore: remove abandoned next-gen-gui experiment by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10004
- chore: remove weak hashing which does not pull its weight by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10005
- chore: switch database engine to sqlite (fixes [#&#8203;9954](syncthing/syncthing#9954)) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#9965
- chore: harmonise command line flags by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10007
- chore(db): increase journal limit to 64MiB by [@&#8203;bt90](https://github.com/bt90) in syncthing/syncthing#10022
- chore: forget deleted files older than six months (fixes [#&#8203;6284](syncthing/syncthing#6284)) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10023
- chore(db): use shorter read transactions and periodic checkpoint for smaller WAL by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10027
- chore: configurable delete retention interval by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10030
- chore(db): fix debug logging by [@&#8203;bt90](https://github.com/bt90) in syncthing/syncthing#10033
- chore(db): buffer pulled files for smaller WAL by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10036
- chore(db): use one SQLite database per folder by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10042
- chore(model): delay starting a pull while there are incoming index updates by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10041
- chore(syncthing): remove "default" folder concept by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10068
- chore(syncthing): ensure migrated database is closed before exiting by [@&#8203;xjtdy888](https://github.com/xjtdy888) in syncthing/syncthing#10076
- chore(db, model): simplify per hash DB lookup in copier by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10080
- chore(model): refactor copier for more flatness by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10094
- build: upgrade setup-zig action by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10134
- build: properly propagate build tags to Debian build by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10144
- chore(protocol): don't start connection routines a second time by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10146
- chore(protocol): only allow enc. password changes on cluster config by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10145
- chore: various linter fixes by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10157
- build: streamline gathering of facts, checkouts by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10158
- build: build both Debian armel and armhf (though they are the same for us) by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10159
- build: explicitly trigger build after pushing release tag by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10160
- chore(syncthing): ensure response body is closed in upgrade request by [@&#8203;ardevd](https://github.com/ardevd) in syncthing/syncthing#10169
- refactor(syncthing): use named constant for SIGHUP by [@&#8203;ardevd](https://github.com/ardevd) in syncthing/syncthing#10168
- chore(model): remove redundant removal of internal fields in indexsender by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10173
- chore: add migration for remote invalid local flag by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10174
- chore(config): increase max concurrent writes default by [@&#8203;imsodin](https://github.com/imsodin) in syncthing/syncthing#10200
- chore(gui): added spacing between folder name and error message by [@&#8203;ardevd](https://github.com/ardevd) in syncthing/syncthing#10201
- build: unset build ID in generated binaries by [@&#8203;Catfriend1](https://github.com/Catfriend1) in syncthing/syncthing#10203
- chore(protocol): minor cleanup of ClusterConfig messages; remove DisableTempIndexes option by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10202
- refactor(beacon, osutil, upnp, netutil): only use anet on Android by [@&#8203;marbens-arch](https://github.com/marbens-arch) in syncthing/syncthing#10211
- chore(gui): fix "Shut Down" spelling in Actions by [@&#8203;tomasz1986](https://github.com/tomasz1986) in syncthing/syncthing#10213
- chore(gui): update fancytree from 2.38.0 to 2.38.5 (ref [#&#8203;10051](syncthing/syncthing#10051), ref [#&#8203;10155](syncthing/syncthing#10155)) by [@&#8203;tomasz1986](https://github.com/tomasz1986) in syncthing/syncthing#10214
- chore(config): remove fallback STUN servers that are CNAMEs to stun.counterpath.com by [@&#8203;marbens-arch](https://github.com/marbens-arch) in syncthing/syncthing#10219
- chore(scanner): reduce memory pressure by using pools inside hasher by [@&#8203;danog](https://github.com/danog) in syncthing/syncthing#10222
- chore(fs): slightly reduce memory usage of IsParent by [@&#8203;danog](https://github.com/danog) in syncthing/syncthing#10223
- refactor(scanner): use recommended pattern for slice pool by [@&#8203;danog](https://github.com/danog) in syncthing/syncthing#10225
- chore(slogutil): ensure quoting of empty and confusing log values by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10236
- chore: remove GUI "debugging" toggle, debug HTTP metrics by [@&#8203;calmh](https://github.com/calmh) in syncthing/syncthing#10235
- chore(gui): remove redundant "authenticated" conditions from Actions menu ([#&#8203;10235](syncthing/syncthing#10235)) by [@&#8203;tomasz1986](https://github.com/tomasz1986) in syncthing/syncthing#10237

#### New Contributors

- [@&#8203;ardevd](https://github.com/ardevd) made their first contribution in syncthing/syncthing#10154
- [@&#8203;yparitcher](https://github.com/yparitcher) made their first contribution in syncthing/syncthing#10176
- [@&#8203;danog](https://github.com/danog) made their first contribution in syncthing/syncthing#10222

**Full Changelog**: syncthing/syncthing@v1.30.0...v2.0.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS42MC4yIiwidXBkYXRlZEluVmVyIjoiNDEuNjAuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Reviewed-on: https://git.devmem.ru/projects/infra/pulls/2048
Co-authored-by: Renovate Bot <renovate@devmem.ru>
Co-committed-by: Renovate Bot <renovate@devmem.ru>
Hancock33 added a commit to Hancock33/batocera.piboy that referenced this pull request Aug 17, 2025
-----------------------------------------------------------------------------------
cemu.mk d7c510ed31afb2acfb31e07c1e50a9057e4e0e04 # Version: Commits on Aug 16, 2025
-----------------------------------------------------------------------------------
Update vcpkg dependency SDL2 to 2.32.8 (#1670),

------------------------------------------------------------------------------------------
dolphin-emu.mk b8352eeeb99721abbfa34473878f10863223b178 # Version: Commits on Aug 15, 2025
------------------------------------------------------------------------------------------
Merge pull request #13865 from Pokechu22/dsi-mention-mmu

Mention enable MMU in the DSI Exception message (Invalid read from ###/Invalid write to ###),

-----------------------------------------------------------------------------------------------
dolphin-triforce.mk 842a088dcecbc99348b24557396f56456ceaf2ac # Version: Commits on Aug 15, 2025
-----------------------------------------------------------------------------------------------
[PATCH] Updated timeout Updated debug text

Updated debug text

Co-authored-by:: crediar <crediar@rypp.net>,

------------------------------------------------------------------------------------------
duckstation.mk 276211b9fc8c56951a101c24ceaa24460b47af4a # Version: Commits on Aug 16, 2025
------------------------------------------------------------------------------------------
GameDB: Disable auto analog mode on Echo Night (#3514),

--------------------------------------------------------------------------------------
melonds.mk af84734e576aaa59c56f61e266359a4ef31db5b7 # Version: Commits on Aug 15, 2025
--------------------------------------------------------------------------------------
nix: add faad2 dependency, update packages while we're at it,

----------------------------------------------------
pcsx2.mk v2.5.112 # Version: Commits on Aug 16, 2025
----------------------------------------------------
- [ImGui: Use Shortcut api for most input handling](PCSX2/pcsx2#13073)

---------------------------------------------------------------
ruffle.mk nightly-2025-08-16 # Version: Commits on Aug 16, 2025
---------------------------------------------------------------
## What's Changed

* chore: Various code improvements by @SuchAFuriousDeath in ruffle-rs/ruffle#21256

* avm2: Throw correct errors when get/set/call super ops fail by @Lord-McSweeney in ruffle-rs/ruffle#21169

* Improve String.lastIndexOf and String.split accuracy by @SuchAFuriousDeath in ruffle-rs/ruffle#21339

**Full Changelog**: ruffle-rs/ruffle@nightly-2025-08-14...nightly-2025-08-16,

-------------------------------------------------------------------------------------------
xenia-native.mk a9fb32a2fddaf46573a0300c84db2b530cc62c2f # Version: Commits on Aug 15, 2025
-------------------------------------------------------------------------------------------
[GPU] More post merge fixes,

-----------------------------------------------------------------------------------
ymir.mk 89bc6ff879006aac4e5edf0f68370e9873d6448b # Version: Commits on Aug 16, 2025
-----------------------------------------------------------------------------------
chore(VDP1): Include command addresses in devlog,

------------------------------------------------------------------------------------
box64.mk 167217c76b9fc226c7da1b4482a39b90b63b4bd9 # Version: Commits on Aug 15, 2025
------------------------------------------------------------------------------------
[LA64_DYNAREC] Added more scalar AVX opcodes (#2943),

------------------------------------------------------------------------------------------
devilutionx.mk df82616df1f897714cd581a3f543a88de84ccc29 # Version: Commits on Aug 15, 2025
------------------------------------------------------------------------------------------
clang-tidy: auto fix headers for DiabloUI,

----------------------------------------------------------------------------------------
openmohaa.mk f5b01e7137b91e8a9e9b6c00e554aa1935af0035 # Version: Commits on Aug 15, 2025
----------------------------------------------------------------------------------------
Fix window icon,

------------------------------------------------------
syncthing.mk v2.0.2 # Version: Commits on Aug 16, 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.2` or `ghcr.io/syncthing/syncthing:2.0.2`

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

## What's Changed

### Other

* build: remove netgo and osusergo build tags (fixes #10251) by @calmh in syncthing/syncthing#10256

* build: bump required language level to 1.24, compiler to 1.25 by @calmh in syncthing/syncthing#10248

* build: set netgo & osusergo tags for Linux build by @calmh in syncthing/syncthing#10261

**Full Changelog**: syncthing/syncthing@v2.0.1...v2.0.2,

------------------------------------------------------------------------------------------
openbor7530.mk fb76ba85dfefa329be2dabc430fe651dcc756f56 # Version: Commits on Aug 15, 2025
------------------------------------------------------------------------------------------
Merge pull request #335 from toxieainc/master

Fix some warnings and typos and remove duplicate win-sdk,

----------------------------------------------------------------------------------------
retroarch.mk e6328b57074b9eb088aca26dc4d1672596b172ce # Version: Commits on Aug 16, 2025
----------------------------------------------------------------------------------------
Fetch translations from Crowdin,

--------------------------------------------------------------------------------------------
libretro-pcsx.mk 8da7189ef558eacaa80a37d542ade67b6717c812 # Version: Commits on Aug 15, 2025
--------------------------------------------------------------------------------------------
Merge branch 'master' into libretro,
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
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build Issues caused by or requiring changes to the build system (scripts or Docker image) trivial The PR is considered a trivial change, for review purposes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant