Compare commits
No commits in common. "c8-stream-10.6" and "c9" have entirely different histories.
c8-stream-
...
c9
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/jackson-databind-2.14.2.tar.gz
|
SOURCES/jackson-databind-2.14.1.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
c82b472caf1e31cff5a63e756bc16c44b0003010 SOURCES/jackson-databind-2.14.2.tar.gz
|
76890a3d1df2adb6c53afe7bcdeaa0956f8d0eea SOURCES/jackson-databind-2.14.1.tar.gz
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
Name: jackson-databind
|
Name: jackson-databind
|
||||||
Version: 2.14.2
|
Version: 2.14.1
|
||||||
Release: 1%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: General data-binding package for Jackson (2.x)
|
Summary: General data-binding package for Jackson (2.x)
|
||||||
License: Apache-2.0 and LGPL-2.0-or-later
|
License: Apache-2.0 and LGPL-2.0-or-later
|
||||||
URL: https://github.com/FasterXML/jackson-databind/
|
|
||||||
Source0: %{url}/archive/%{name}-%{version}.tar.gz
|
URL: https://github.com/FasterXML/jackson-databind
|
||||||
|
Source0: %{url}/archive/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
BuildRequires: maven-local
|
BuildRequires: maven-local
|
||||||
BuildRequires: mvn(com.fasterxml.jackson.core:jackson-annotations) >= %{version}
|
BuildRequires: mvn(com.fasterxml.jackson.core:jackson-annotations) >= %{version}
|
||||||
@ -15,15 +16,23 @@ BuildRequires: mvn(org.apache.felix:maven-bundle-plugin)
|
|||||||
BuildRequires: mvn(org.mockito:mockito-core)
|
BuildRequires: mvn(org.mockito:mockito-core)
|
||||||
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
%if 0%{?fedora}
|
|
||||||
ExclusiveArch: %{java_arches} noarch
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
The general-purpose data-binding functionality and tree-model for Jackson Data
|
The general-purpose data-binding functionality and tree-model for Jackson Data
|
||||||
Processor. It builds on core streaming parser/generator package, and uses
|
Processor. It builds on core streaming parser/generator package, and uses
|
||||||
Jackson Annotations for configuration.
|
Jackson Annotations for configuration.
|
||||||
|
|
||||||
|
%package -n pki-%{name}
|
||||||
|
Summary: General data-binding package for Jackson (2.x)
|
||||||
|
Obsoletes: %{name} < %{version}-%{release}
|
||||||
|
Conflicts: %{name} < %{version}-%{release}
|
||||||
|
Provides: %{name} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description -n pki-%{name}
|
||||||
|
The general-purpose data-binding functionality and tree-model for Jackson Data
|
||||||
|
Processor. It builds on core streaming parser/generator package, and uses
|
||||||
|
Jackson Annotations for configuration.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{name}-%{name}-%{version}
|
%setup -q -n %{name}-%{name}-%{version}
|
||||||
|
|
||||||
@ -59,29 +68,98 @@ rm src/test/java/com/fasterxml/jackson/databind/TestJDKSerialization.java
|
|||||||
%install
|
%install
|
||||||
%mvn_install
|
%mvn_install
|
||||||
|
|
||||||
%files -f .mfiles
|
%files -n pki-%{name} -f .mfiles
|
||||||
%doc README.md release-notes/*
|
%doc README.md release-notes/*
|
||||||
%license LICENSE NOTICE
|
%license LICENSE NOTICE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Nov 22 2023 Red Hat PKI Team <rhcs-maint@redhat.com> - 2.14.2-1
|
* Wed Nov 23 2022 Chris Kelley <ckelley@redhat.com> - 2.14.1-1
|
||||||
- Rebase to upstream version 2.14.2
|
- Update to version 2.14.1
|
||||||
|
- Resolves: #2070122
|
||||||
|
|
||||||
* Fri Nov 8 2019 Red Hat PKI Team <rhcs-maint@redhat.com> - 2.10.0-1
|
* Mon Aug 16 2021 Red Hat PKI Team <rhcs-maint@redhat.com> - 2.11.4-6
|
||||||
|
- Disable tests
|
||||||
|
- Drop javadoc subpackage
|
||||||
|
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 2.11.4-5
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Wed Apr 28 2021 Red Hat PKI Team <rhcs-maint@redhat.com> - 2.11.4-4
|
||||||
|
- Rename subpackages to pki-jackson
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 2.11.4-3
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jan 18 2021 Fabio Valentini <decathorpe@gmail.com> - 2.11.4-1
|
||||||
|
- Update to version 2.11.4.
|
||||||
|
|
||||||
|
* Wed Oct 14 2020 Fabio Valentini <decathorpe@gmail.com> - 2.11.3-1
|
||||||
|
- Update to version 2.11.3.
|
||||||
|
|
||||||
|
* Sun Aug 09 2020 Fabio Valentini <decathorpe@gmail.com> - 2.11.2-2
|
||||||
|
- Drop useless powermock build dependency.
|
||||||
|
|
||||||
|
* Sat Aug 08 2020 Fabio Valentini <decathorpe@gmail.com> - 2.11.2-1
|
||||||
|
- Update to version 2.11.2.
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.11.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 10 2020 Jiri Vanek <jvanek@redhat.com> - 2.11.1-2
|
||||||
|
- Rebuilt for JDK-11, see https://fedoraproject.org/wiki/Changes/Java11
|
||||||
|
|
||||||
|
* Mon Jul 06 2020 Fabio Valentini <decathorpe@gmail.com> - 2.11.1-1
|
||||||
|
- Update to version 2.11.1.
|
||||||
|
|
||||||
|
* Mon May 25 2020 Fabio Valentini <decathorpe@gmail.com> - 2.11.0-1
|
||||||
|
- Update to version 2.11.0.
|
||||||
|
|
||||||
|
* Fri May 08 2020 Fabio Valentini <decathorpe@gmail.com> - 2.10.4-1
|
||||||
|
- Update to version 2.10.4.
|
||||||
|
|
||||||
|
* Tue Mar 03 2020 Fabio Valentini <decathorpe@gmail.com> - 2.10.3-1
|
||||||
|
- Update to version 2.10.3.
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.10.2-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 17 2020 Fabio Valentini <decathorpe@gmail.com> - 2.10.2-1
|
||||||
|
- Update to version 2.10.2.
|
||||||
|
|
||||||
|
* Wed Nov 13 2019 Fabio Valentini <decathorpe@gmail.com> - 2.10.1-1
|
||||||
|
- Update to version 2.10.1.
|
||||||
|
|
||||||
|
* Thu Oct 3 2019 Alexander Scheel <ascheel@redhat.com> - 2.10.0-1
|
||||||
- Update to latest upstream release
|
- Update to latest upstream release
|
||||||
- Fixes: CVE-2019-14540
|
- Fixes: CVE-2019-14540
|
||||||
- Fixes: CVE-2019-16335
|
- Fixes: CVE-2019-16335
|
||||||
- Resolves: rhbz#1760274
|
- Fixes: CVE-2019-16942
|
||||||
- Resolves: rhbz#1760278
|
- Fixes: CVE-2019-16943
|
||||||
|
- Resolves: rhbz#1758168
|
||||||
|
- Resolves: rhbz#1758172
|
||||||
|
- Resolves: rhbz#1758183
|
||||||
|
|
||||||
* Wed Jul 31 2019 Red Hat PKI Team <rhcs-maint@redhat.com> - 2.9.9.2-1
|
* Thu Sep 12 2019 Alexander Scheel <ascheel@redhat.com> - 2.9.9.3-1
|
||||||
- Update to latest upstream release, fixes CVE-2019-12384
|
- Update to latest upstream release; fixes CVE-2019-12384
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.8-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Feb 06 2019 Mat Booth <mat.booth@redhat.com> - 2.9.8-1
|
* Wed Feb 06 2019 Mat Booth <mat.booth@redhat.com> - 2.9.8-1
|
||||||
- Update to latest upstream release, fixes CVE-2018-14718 CVE-2018-147189
|
- Update to latest upstream release, fixes CVE-2018-14718 CVE-2018-147189
|
||||||
CVE-2018-19360 CVE-2018-19361 CVE-2018-19362 CVE-2018-12022 CVE-2018-12023
|
CVE-2018-19360 CVE-2018-19361 CVE-2018-19362 CVE-2018-12022 CVE-2018-12023
|
||||||
CVE-2018-14720 CVE-2018-14721
|
CVE-2018-14720 CVE-2018-14721
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.4-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.9.4-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
* Mon Mar 26 2018 Mat Booth <mat.booth@redhat.com> - 2.9.4-3
|
* Mon Mar 26 2018 Mat Booth <mat.booth@redhat.com> - 2.9.4-3
|
||||||
- Add patch to fix CVE-2018-7489
|
- Add patch to fix CVE-2018-7489
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user