forked from pool/apache-commons-imaging
Compare commits
4 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| fee06a80cb | |||
| be54316f2b | |||
| 53d72b77d8 | |||
| a139b68da7 |
@@ -1,55 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Fri Nov 14 09:59:37 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
|
||||||
|
|
||||||
- Update to version 1.0.0-alpha6
|
|
||||||
* New features
|
|
||||||
+ Add an Imaging-specific security page #439
|
|
||||||
+ Add Maven property commons.taglist.version for debugging
|
|
||||||
+ Add support of GPSHPositioningError in GpsTagConstants #451
|
|
||||||
+ Support Extensions from PNG 1.2 Specification, Version 1.5.0
|
|
||||||
#269
|
|
||||||
+ Optionally force UTF-8 encoding for IPTC records #477
|
|
||||||
+ Add Maven PMD check to the default build
|
|
||||||
* Fixed Bugs
|
|
||||||
+ Replace Locale.ENGLISH with Locale.ROOT processing file names
|
|
||||||
+ Fix PMD UnnecessaryFullyQualifiedName
|
|
||||||
+ Fix PMD TooManyStaticImports
|
|
||||||
+ Fix PMD UnusedFormalParameter
|
|
||||||
+ Fix PMD UnusedLocalVariable
|
|
||||||
+ Increase default block size in byte sources from 1024 to 8192
|
|
||||||
bytes
|
|
||||||
+ Remove double ImagingException from method signatures #462
|
|
||||||
+ Fix all PMD issues
|
|
||||||
+ Fix SpotBugs CT_CONSTRUCTOR_THROW
|
|
||||||
+ IMAGING-319: Fix EXIF metadata is discarded when updating
|
|
||||||
offsets (wrong calculation)
|
|
||||||
+ IMAGING-351: Fix ExifRewriterRoundtripTest that was disabled
|
|
||||||
* Changes
|
|
||||||
+ Bump org.apache.commons:commons-parent from 69 to 81 #400,
|
|
||||||
#406, #428, #430, #436, #442, #445, #545
|
|
||||||
+ Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.17.0
|
|
||||||
#416, #423, #431
|
|
||||||
+ Bump commons-io:commons-io from 2.16.1 to 2.19.0 #437, #464
|
|
||||||
+ Bump org.codehaus.mojo:taglist-maven-plugin from 3.1.0 to
|
|
||||||
3.2.1 #453
|
|
||||||
* Removed
|
|
||||||
+ Remove direct dependency on org.hamcrest:hamcrest
|
|
||||||
+ Rename methods BinaryFunctions.findNull() to indexOf0() like
|
|
||||||
String
|
|
||||||
+ Rename method BinaryFunctions.slice() to copyOfRange() like
|
|
||||||
Arrays
|
|
||||||
+ Rename method BinaryFunctions.head() to copyOfStart() like
|
|
||||||
Arrays
|
|
||||||
+ Replace BinaryFunctions.startsWith(byte[], BinaryConstant)
|
|
||||||
with BinaryConstant.isStartOf(byte[])
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
|
||||||
Fri Nov 14 09:35:04 UTC 2025 - Fridrich Strba <fstrba@suse.com>
|
|
||||||
|
|
||||||
- Disable clamav run on relevant distributions, because a reproducer
|
|
||||||
of an exploit is flagged although being only in a regression test
|
|
||||||
to protect against the exploit resurfacing.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Aug 13 08:26:18 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
Tue Aug 13 08:26:18 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package apache-commons-imaging
|
# spec file for package apache-commons-imaging
|
||||||
#
|
#
|
||||||
# Copyright (c) 2025 SUSE LLC and contributors
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,8 +18,8 @@
|
|||||||
|
|
||||||
%global base_name imaging
|
%global base_name imaging
|
||||||
%global short_name commons-%{base_name}
|
%global short_name commons-%{base_name}
|
||||||
%global base_ver 1.0.0
|
%global base_ver 1.0
|
||||||
%global pre_ver alpha6
|
%global pre_ver alpha2
|
||||||
Name: apache-%{short_name}
|
Name: apache-%{short_name}
|
||||||
Version: %{base_ver}~%{pre_ver}
|
Version: %{base_ver}~%{pre_ver}
|
||||||
Release: 0
|
Release: 0
|
||||||
@@ -27,15 +27,11 @@ Summary: Apache Commons Imaging
|
|||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
Group: Development/Libraries/Java
|
Group: Development/Libraries/Java
|
||||||
URL: https://commons.apache.org/proper/%{short_name}/
|
URL: https://commons.apache.org/proper/%{short_name}/
|
||||||
Source0: https://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{base_ver}-%{pre_ver}-src.tar.gz
|
Source0: http://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{base_ver}-%{pre_ver}-src.tar.gz
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: maven-local
|
BuildRequires: maven-local
|
||||||
BuildRequires: mvn(org.apache.commons:commons-parent:pom:)
|
BuildRequires: mvn(org.apache.commons:commons-parent:pom:)
|
||||||
BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin)
|
BuildRequires: mvn(org.apache.maven.plugins:maven-antrun-plugin)
|
||||||
# A reproducer in test-suite gets flagged
|
|
||||||
#!BuildIgnore: clamav
|
|
||||||
#!BuildIgnore: clamav-database
|
|
||||||
#!BuildIgnore: post-build-checks-malwarescan
|
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@@ -51,6 +47,7 @@ This package contains the API documentation for %{name}.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q -n %{short_name}-%{base_ver}-%{pre_ver}-src
|
%setup -q -n %{short_name}-%{base_ver}-%{pre_ver}-src
|
||||||
%pom_remove_plugin org.codehaus.mojo:animal-sniffer-maven-plugin
|
%pom_remove_plugin org.codehaus.mojo:animal-sniffer-maven-plugin
|
||||||
|
%pom_remove_plugin org.codehaus.mojo:findbugs-maven-plugin
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{mvn_build} -f -- -Dsource=8
|
%{mvn_build} -f -- -Dsource=8
|
||||||
|
|||||||
3
commons-imaging-1.0-alpha2-src.tar.gz
Normal file
3
commons-imaging-1.0-alpha2-src.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:b2aa8b5544f03007bf36625ee60e15ff96a8a7f2cba31a6c3790d62d36e3c3ca
|
||||||
|
size 39798631
|
||||||
Binary file not shown.
Reference in New Issue
Block a user