- update to 4.5.1:

* Fixed entry_size field for result entries.
  * The actual compression level is now once again stored in the cache entry
  header. 
  * Corrected error handling for unconstructible secondary storage backends. For
  instance, this avoids a crash when a Redis server can't be reached.
  * Made various improvements to the cache entry format. Among other things, the
    header now contains a creation timestamp and a note of the ccache version used
    to create the entry. The cache entry checksum has also been upgraded to use
    128-bit XXH3 instead 64-bit XXH3.
  * Made HTTP keep-alive configurable, defaulting to off for now.
  * Added support for rewriting absolute path to Clang option `--gcc-toolchain`.
  * Fixed a problem with special characters in the user info part of URLs for HTTP
  storage.
  * The hard link and file clone features are now disabled when secondary storage
  is used since they only work for the local primary cache.

OBS-URL: https://build.opensuse.org/package/show/devel:tools:building/ccache?expand=0&rev=115
This commit is contained in:
Dirk Mueller 2021-12-02 22:00:57 +00:00 committed by Git OBS Bridge
parent adde36de56
commit b9ab400909
6 changed files with 40 additions and 20 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9200cafbaa5fd62c2600fccb40a18214e57747825e6cdcd76688b4b61c2dcba0
size 510260

View File

@ -1,16 +0,0 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEEWpOacaRnks9XhmpRmW3aB1WUrbgFAmFTcAAACgkQmW3aB1WU
rbjhCw//dku3CUHUU8ciBryn3D2JLq6wacVlfhfOPP7CdCthu4Xl2ZBNkLlNA4GX
7URFk+SNzDX/iirQOyZ4GS//9kU4dT5dVLu90lh68rv6/mfmOTdo4RXeLPu0PzCe
LmIZvb2pwwljJ+c9eNGoNLkZ//Yr/udn/l9NTvLelTg5PT3oU6N0uJwGpz8GNXCU
GfUDTMQvtReH6QVpp1e3H+3fGTJQGdVmRb0sXM6mTklaOYsW6bpSvuLn6yiYTiwV
ygaSmf0wa3sr19kZ9GqzXgjz7dj++2Jfv4YEFeldw94Iv7FY4ISYolTNOv6H3x+g
fmhm5IlBdkCaLCR5rq6EMZqrCD1zAfLeWR78P0K9OgmSkxA/Z1TeRNK9XxyRjCr2
X1XzaeLTL6niemyVcXcItATOrZ4PE9/KRwBEmDS4kpzMkI8+6NLgjRd1pI3RC2G3
UaL1wEAUSVTZTfxxqIAv/FM6Qwhok+yXblcxXIkr1Ds6n/CSJd3KgiAZugcJGpU3
wY8GSzrlKLvMUSCL2L6kIqe5UXeqPJt3RFQiMX3LP3HNF+EoO7dZdTEU/MYkNfFR
e5sJdXjxHfiqoVfOB+GH3XlKWVoOBIJqbC9JD8s27mhJn0FLeKgNAA6XMSoQeZ9r
a+ZKYoanVO5Del8xFVM1Bgow6ww29y5UfIlzYLapAZ+9AW4Eh9I=
=whZS
-----END PGP SIGNATURE-----

3
ccache-4.5.1.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:51186ebe0326365f4e6131e1caa8911de7da4aa6718efc00680322d63a759517
size 513008

16
ccache-4.5.1.tar.xz.asc Normal file
View File

@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCAAdFiEEWpOacaRnks9XhmpRmW3aB1WUrbgFAmGVWMUACgkQmW3aB1WU
rbgC0g//V8zks70+rUnu31j2ZLDhM4DGrTUduPev+fnpkSI3WnTZsN1y4GjNK/va
ezd0GcakYNwgNozsUmXtPEn6oQm6TEFBQZa1bBVYlB7XYtkZDGoWnTTqNEeeb1BP
+sjLz+4BlnHD/sILKQj5ZIKDemSp3taWOmqh3kMvn+iV9hMNooXYvCh5u7G9gC1e
++5cyCtQfel8bLmpcprnAqUogkU/QYGY4ZqTLshcNmw4LKy8f7faoo6+ugkCFj8I
o/KLmPH8FHpipAIOEGW4+6Ov3kbY6OLKSKmjE45ykarTHLi+E78kE+0K7k+8zSJs
l7fxDzwnWANWmdSe9F/DYm+YIvNsLqphWpSSwT9DqtnBP+QW4nVX0qu0TSCHw7YT
6io8L3Ajuh5RmbQgPnDyfKaRnimE7dpRR3fnpYreLttaoWx/b9ozMWOHadKJjAOG
rKlpY0QVao+BpQU2d7yxNuK64ak/IWG92mFr0CFXdv+ez03AsyOTBnlKMK/JbXdS
9dSFrJyZJiLFb0Ae53hYy2s7J0g9E11d3ThCF7CChRcq8v5g60NmRmR0pNhwEWZS
6K2XSbtDeNhu1nTWaroMgzcO0IGskHdP291oGf2eWNymbdy7f3Ka+ZBM3i/iA6Jn
/u8ZTV9H9OH1qg8jfnVQEozhAZCYNdiPLVucRst2btBwXi1ia3g=
=rnpA
-----END PGP SIGNATURE-----

View File

@ -1,3 +1,23 @@
-------------------------------------------------------------------
Thu Dec 2 21:57:55 UTC 2021 - Dirk Müller <dmueller@suse.com>
- update to 4.5.1:
* Fixed entry_size field for result entries.
* The actual compression level is now once again stored in the cache entry
header.
* Corrected error handling for unconstructible secondary storage backends. For
instance, this avoids a crash when a Redis server can't be reached.
* Made various improvements to the cache entry format. Among other things, the
header now contains a creation timestamp and a note of the ccache version used
to create the entry. The cache entry checksum has also been upgraded to use
128-bit XXH3 instead 64-bit XXH3.
* Made HTTP keep-alive configurable, defaulting to off for now.
* Added support for rewriting absolute path to Clang option `--gcc-toolchain`.
* Fixed a problem with special characters in the user info part of URLs for HTTP
storage.
* The hard link and file clone features are now disabled when secondary storage
is used since they only work for the local primary cache.
-------------------------------------------------------------------
Thu Dec 2 10:44:50 UTC 2021 - Guillaume GARDET <guillaume.gardet@opensuse.org>

View File

@ -17,7 +17,7 @@
Name: ccache
Version: 4.4.2
Version: 4.5.1
Release: 0
Summary: A Fast C/C++ Compiler Cache
License: GPL-3.0-or-later