···127127128128- `himalaya` has been updated to `0.8.0`, which drops the native TLS support (in favor of Rustls) and add OAuth 2.0 support. See the [release note](https://github.com/soywod/himalaya/releases/tag/v0.8.0) for more details.
129129130130+- `nix-prefetch-git` now ignores global and user git config, to improve reproducibility.
131131+130132- The [services.caddy.acmeCA](#opt-services.caddy.acmeCA) option now defaults to `null` instead of `"https://acme-v02.api.letsencrypt.org/directory"`, to use all of Caddy's default ACME CAs and enable Caddy's automatic issuer fallback feature by default, as recommended by upstream.
131133132134- The default priorities of [`services.nextcloud.phpOptions`](#opt-services.nextcloud.phpOptions) have changed. This means that e.g.
+6-3
pkgs/build-support/fetchgit/nix-prefetch-git
···293293 local rev="${3:-HEAD}"
294294295295 if [ -n "$fetchLFS" ]; then
296296- tmpHomePath="$(mktemp -d "${TMPDIR:-/tmp}/nix-prefetch-git-tmp-home-XXXXXXXXXX")"
297297- exit_handlers+=(remove_tmpHomePath)
298298- HOME="$tmpHomePath"
299296 clean_git lfs install
300297 fi
301298···416413if test -z "$branchName"; then
417414 branchName=fetchgit
418415fi
416416+417417+tmpHomePath="$(mktemp -d "${TMPDIR:-/tmp}/nix-prefetch-git-tmp-home-XXXXXXXXXX")"
418418+exit_handlers+=(remove_tmpHomePath)
419419+HOME="$tmpHomePath"
420420+unset XDG_CONFIG_HOME
421421+export GIT_CONFIG_NOSYSTEM=1
419422420423if test -n "$builder"; then
421424 test -n "$out" -a -n "$url" -a -n "$rev" || usage