Compare commits

...
Sign in to create a new pull request.

18 commits

Author SHA1 Message Date
Jonathan Dieter
8f0a8f17dd
Update to 1.5.4, fixing a few memory bugs
Signed-off-by: Jonathan Dieter <jonathan@dieter.ie>
2026-08-02 23:01:23 +01:00
Fedora Release Engineering
c59ec4183a Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild 2026-07-17 09:39:16 +00:00
Yaakov Selkowitz
2788172bfb Rebuilt for openssl 4.0 2026-06-12 16:42:06 -04:00
Jonathan Wright
2d8fea9837 update to 1.5.3 2026-06-11 10:17:34 -05:00
Fedora Release Engineering
19a62d3fb8 Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-17 21:06:43 +00:00
Fedora Release Engineering
a08ff1c9af Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 21:16:44 +00:00
Fedora Release Engineering
f7bfe94550 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-19 16:42:50 +00:00
Jonathan Dieter
2be4318ea8 Fix memory leak
Signed-off-by: Jonathan Dieter <jonathan@dieter.ie>
2024-07-19 20:38:11 -07:00
Jonathan Dieter
e3ecab43e7 Fix bug when managing different contexts in different threads
Signed-off-by: Jonathan Dieter <jdieter@gmail.com>
2024-07-17 18:58:03 -07:00
Fedora Release Engineering
aeaa7ef635 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-27 11:01:47 +00:00
Jonathan Dieter
b1543e76f3 Update to 1.4.0
* Add native OpenSSL 3 compatibility
* Add new function for getting zchunk context from chunk
* Fix bug when assembling from multiple sources

Signed-off-by: Jonathan Dieter <jdieter@gmail.com>
2023-12-19 20:10:16 +00:00
Jonathan Dieter
5d02b22bac Update to 1.3.2 which fixes a couple of unsigned integer overflow bugs
Signed-off-by: Jonathan Dieter <jdieter@gmail.com>
2023-10-05 20:10:35 +01:00
Jonathan Dieter
a04907a050 Update license tag to be SPDX compatible
Signed-off-by: Jonathan Dieter <jonathan.dieter@cyara.com>
2023-08-04 09:43:30 +01:00
Fedora Release Engineering
dcd9a50676 Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-22 19:38:27 +00:00
Jonathan Dieter
5950ea2a8e Fix a few low severity security bugs
- An off-by-one overflow when reading compressed integers from a
   malicious zchunk file
 - Error handling being skipped when the number of bytes read doesn't
   match what's expected
 - Not freeing memory when attempting to reallocate to size 0

Signed-off-by: Jonathan Dieter <jdieter@gmail.com>
2023-04-04 21:35:44 +01:00
Jonathan Dieter
c7e33f933d Add option to generate a zchunk header from an uncompressed file
This can now be done without actually creating the zchunk file

Signed-off-by: Jonathan Dieter <jdieter@gmail.com>
2023-02-25 14:59:08 +00:00
Jonathan Dieter
72328c27c8 Fix test compatibility with zstd-1.5.4
Signed-off-by: Jonathan Dieter <jdieter@gmail.com>
2023-02-18 19:11:07 +00:00
Fedora Release Engineering
87cf13a991 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-01-21 08:13:07 +00:00
3 changed files with 73 additions and 3 deletions

9
.gitignore vendored
View file

@ -34,3 +34,12 @@
/zchunk-1.2.1.tar.gz
/zchunk-1.2.2.tar.gz
/zchunk-1.2.3.tar.gz
/zchunk-1.2.4.tar.gz
/zchunk-1.3.0.tar.gz
/zchunk-1.3.1.tar.gz
/zchunk-1.3.2.tar.gz
/zchunk-1.4.0.tar.gz
/zchunk-1.5.0.tar.gz
/zchunk-1.5.1.tar.gz
/zchunk-1.5.3.tar.gz
/zchunk-1.5.4.tar.gz

View file

@ -1 +1 @@
SHA512 (zchunk-1.2.3.tar.gz) = 5e46d8c3e36034de8424937cdfac59acdfaf332203e6e5d8b290614cbbe0340998d53b0583b0ef93189f41dc89219a75f50572757ebcea9abd83bd9aad861a73
SHA512 (zchunk-1.5.4.tar.gz) = 132a20719fc1d83cf2bda1d0edd49e602f12ecd8081c71f22c1d6f294d52cad2d94e5fde18ad9f4149fd2e0f8c87e587fc92ac1f9278bd348776bae0f58c62e1

View file

@ -1,8 +1,8 @@
Name: zchunk
Version: 1.2.3
Version: 1.5.4
Release: 1%{?dist}
Summary: Compressed file format that allows easy deltas
License: BSD and MIT
License: BSD-2-Clause AND MIT
URL: https://github.com/zchunk/zchunk
Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz
BuildRequires: gcc
@ -84,6 +84,67 @@ install contrib/gen_xml_dictionary %{buildroot}%{_libexecdir}/zck_gen_xml_dictio
%{_includedir}/zck.h
%changelog
* Sun Aug 02 2026 Jonathan Dieter <jonathan@dieter.ie> - 1.5.4-1
- Update to 1.5.4
- Fix a few memory bugs
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.3-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
* Fri Jun 12 2026 Yaakov Selkowitz <yselkowi@redhat.com> - 1.5.3-2
- Rebuilt for openssl 4.0
* Thu Jun 11 2026 Jonathan Wright <jonathan@almalinux.org> - 1.5.3-1
- update to 1.5.3
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Fri Jul 19 2024 Jonathan Dieter <jonathan@dieter.ie> - 1.5.1-1
- Fix memory leak
- Ensure version is set properly inside zchunk
* Wed Jul 17 2024 Jonathan Dieter <jonathan@dieter.ie> - 1.5.0-1
- Fix bug when managing different contexts in different threads
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Tue Dec 19 2023 Jonathan Dieter <jdieter@gmail.com> - 1.4.0-1
- Add native OpenSSL 3 compatibility
- Add new function for getting zchunk context from chunk
- Fix bug when assembling from multiple sources
* Thu Oct 5 2023 Jonathan Dieter <jdieter@gmail.com> - 1.3.2-1
- Fix a couple of unsigned integer overflow bugs
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Tue Apr 4 2023 Jonathan Dieter <jdieter@gmail.com> - 1.3.1-1
- Fix a few low severity security bugs including
- An off-by-one overflow when reading compressed integers from a
malicious zchunk file
- Error handling being skipped when the number of bytes read doesn't
match what's expected
- Not freeing memory when attempting to reallocate to size 0
* Sat Feb 25 2023 Jonathan Dieter <jdieter@gmail.com> - 1.3.0-1
- Add option to generate a zchunk header from an uncompressed file without
actually creating a zchunk file
* Sat Feb 18 2023 Jonathan Dieter <jdieter@gmail.com> - 1.2.4-1
- Fix test compatibility with zstd-1.5.4
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.3-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Fri Sep 16 2022 Jonathan Dieter <jdieter@gmail.com> - 1.2.3-1
- Fixed some small formatting issues