Accepting request 1205749 from Java:packages
2.17.0 OBS-URL: https://build.opensuse.org/request/show/1205749 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/apache-commons-io?expand=0&rev=23
This commit is contained in:
commit
3d9300e2e7
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
<property name="project.groupId" value="commons-io"/>
|
<property name="project.groupId" value="commons-io"/>
|
||||||
<property name="project.artifactId" value="commons-io"/>
|
<property name="project.artifactId" value="commons-io"/>
|
||||||
<property name="project.version" value="2.16.1"/>
|
<property name="project.version" value="2.17.0"/>
|
||||||
<property name="project.name" value="Apache Commons IO"/>
|
<property name="project.name" value="Apache Commons IO"/>
|
||||||
<property name="project.description" value="The Apache Commons IO library
|
<property name="project.description" value="The Apache Commons IO library
|
||||||
contains utility classes, stream implementations, file filters,
|
contains utility classes, stream implementations, file filters,
|
||||||
|
@ -1,3 +1,90 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 4 19:23:58 UTC 2024 - Fridrich Strba <fstrba@suse.com>
|
||||||
|
|
||||||
|
- Upgrade to 2.17.0
|
||||||
|
* New features:
|
||||||
|
+ Add IOIterator.adapt(Iterable)
|
||||||
|
+ Add getInputStream() for 'https' and 'http' in URIOrigin
|
||||||
|
#630. Fixes IO-831
|
||||||
|
+ Add IOSupplier.getUnchecked()
|
||||||
|
+ Add CloseShieldInputStream.systemIn(InputStream)
|
||||||
|
+ Add NullInputStream.init()
|
||||||
|
+ Add AbstractInputStream and refactor duplicate code
|
||||||
|
+ Add UnsynchronizedReader
|
||||||
|
+ Add UnsynchronizedBufferedReader
|
||||||
|
* Fixes:
|
||||||
|
+ FileUtilsWaitForTest does not test anything useful.
|
||||||
|
Fixes IO-858.
|
||||||
|
+ Add missing unit tests
|
||||||
|
+ FileUtils.lastModifiedFileTime(File) calls
|
||||||
|
Objects.requireNonNull() on the wrong object
|
||||||
|
+ PathUtils.deleteOnExit(Path) calls Objects.requireNonNull()
|
||||||
|
on the wrong object
|
||||||
|
+ Deprecate LineIterator.nextLine() in favor of next()
|
||||||
|
+ Fix PMD UnnecessaryFullyQualifiedName
|
||||||
|
+ Add test for CircularByteBuffer clear() #620
|
||||||
|
+ PathUtils.isPosix(Path, LinkOption...) should return false on
|
||||||
|
null input
|
||||||
|
+ AutoCloseInputStream(InputStream) uses
|
||||||
|
ClosedInputStream.INSTANCE when its input is null
|
||||||
|
+ Avoid NullPointerException in ProxyInputStream.available()
|
||||||
|
when the underlying input stream is null
|
||||||
|
+ Avoid NullPointerException in ProxyInputStream.markSupported()
|
||||||
|
when the underlying input stream is null
|
||||||
|
+ Avoid NullPointerException in ProxyInputStream.mark(int) when
|
||||||
|
the underlying input stream is null
|
||||||
|
+ BufferedFileChannelInputStream.available() returns 0 before
|
||||||
|
any reads
|
||||||
|
+ BufferedFileChannelInputStream.available() should return 0
|
||||||
|
instead of -1 at the end of the stream
|
||||||
|
+ BufferedFileChannelInputStream.available() should return 0
|
||||||
|
when the stream is closed instead of throwing an exception
|
||||||
|
+ CharSequenceInputStream.available() should return 0 after the
|
||||||
|
stream is closed
|
||||||
|
+ BoundedInputStream.available() should return 0 when the
|
||||||
|
stream is closed
|
||||||
|
+ CircularInputStream.available() should return 0 when the
|
||||||
|
stream is closed
|
||||||
|
+ InfiniteCircularInputStream.available() should return 0 when
|
||||||
|
the stream is closed
|
||||||
|
+ ChecksumInputStream(InputStream, Checksum, long, long) should
|
||||||
|
fail-fast on null Checksum input
|
||||||
|
+ Deprecate NullInputStream.INSTANCE in favor of constructors
|
||||||
|
+ NullInputStream.available() should return 0 after the stream
|
||||||
|
is closed
|
||||||
|
+ MemoryMappedFileInputStream.available() should return 0 after
|
||||||
|
the stream is closed
|
||||||
|
+ RandomAccessFileInputStream.available() should return 0 after
|
||||||
|
the stream is closed
|
||||||
|
+ ReaderInputStream.available() should return 0 after the
|
||||||
|
stream is closed
|
||||||
|
+ AutoCloseInputStream does not call handleIOException() on
|
||||||
|
close() when the proxied stream throws an IOException
|
||||||
|
+ BoundedInputStream does not call handleIOException() on
|
||||||
|
close() when the proxied stream throws an IOException
|
||||||
|
+ NullInputStream.read(*) should throw IOException when it is
|
||||||
|
closed
|
||||||
|
+ NullInputStream.read(byte[]) should return 0 when the input
|
||||||
|
byte array in length 0
|
||||||
|
+ NullInputStream.read(byte[], int, int) should return 0 when
|
||||||
|
the input byte array in length 0 or requested length is 0
|
||||||
|
+ MarkShieldInputStream.read(*) should throw IOException when
|
||||||
|
it is closed
|
||||||
|
+ Replace deprecated constant FileFileFilter.FILE in Javadoc
|
||||||
|
#657
|
||||||
|
+ Pick up exec-maven-plugin version from parent POM
|
||||||
|
* Updates:
|
||||||
|
+ Bump tests commons.bytebuddy.version from 1.14.13 to 1.15.1
|
||||||
|
#615, #621, #631, #635, #642, #658, #663, #665
|
||||||
|
+ Bump tests commons-codec:commons-codec from 1.16.1 to 1.17.1
|
||||||
|
#644
|
||||||
|
+ Bump org.codehaus.mojo:exec-maven-plugin from 3.2.0 to 3.4.1
|
||||||
|
#632, #652, #659
|
||||||
|
+ Bump org.apache.commons:commons-parent from 69 to 74 #628,
|
||||||
|
#637, #649, #661, #664
|
||||||
|
+ Bump org.apache.commons:commons-lang3 from 3.14.0 to 3.17.0
|
||||||
|
#645, #653, #666
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Apr 29 13:12:59 UTC 2024 - Gus Kenion <gus.kenion@suse.com>
|
Mon Apr 29 13:12:59 UTC 2024 - Gus Kenion <gus.kenion@suse.com>
|
||||||
|
|
||||||
|
10345
apache-commons-io.keyring
Normal file
10345
apache-commons-io.keyring
Normal file
File diff suppressed because it is too large
Load Diff
@ -19,7 +19,7 @@
|
|||||||
%define base_name io
|
%define base_name io
|
||||||
%define short_name commons-%{base_name}
|
%define short_name commons-%{base_name}
|
||||||
Name: apache-%{short_name}
|
Name: apache-%{short_name}
|
||||||
Version: 2.16.1
|
Version: 2.17.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Utilities to assist with developing IO functionality
|
Summary: Utilities to assist with developing IO functionality
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
@ -28,6 +28,7 @@ URL: https://commons.apache.org/%{base_name}
|
|||||||
Source0: https://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz
|
Source0: https://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz
|
||||||
Source1: https://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz.asc
|
Source1: https://archive.apache.org/dist/commons/%{base_name}/source/%{short_name}-%{version}-src.tar.gz.asc
|
||||||
Source2: %{name}-build.xml
|
Source2: %{name}-build.xml
|
||||||
|
Source100: https://downloads.apache.org/commons/KEYS#/%{name}.keyring
|
||||||
BuildRequires: ant >= 1.6
|
BuildRequires: ant >= 1.6
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: java-devel >= 1.8
|
BuildRequires: java-devel >= 1.8
|
||||||
|
BIN
commons-io-2.16.1-src.tar.gz
(Stored with Git LFS)
BIN
commons-io-2.16.1-src.tar.gz
(Stored with Git LFS)
Binary file not shown.
@ -1,11 +0,0 @@
|
|||||||
-----BEGIN PGP SIGNATURE-----
|
|
||||||
|
|
||||||
iQEzBAABCgAdFiEELbTx7w+nYezE6pNchv3H4qESYssFAmYPUwsACgkQhv3H4qES
|
|
||||||
Ysv5oQf/YZinFfV1MVn3FYenDNLq49p88JWf596c+oCHRTKxvj94F6hW+Ol9p2P/
|
|
||||||
lSbRGtyNE+kHZYXIk0U8/AtMjDpKwcKJrLdKg4jcK30QvFmidLgad45jDoyDcvsK
|
|
||||||
rIsReOVPAou253eIJILgKLiOvMPtwC9/0tfYmApX11Xp0OyJCO9MqI8aFkXwMQzN
|
|
||||||
xLwJ0ZthmM5oA524UR8rs0E03e/HWmeWMDwwDlnztjifqKG6ap8oe8MicDvY4FVR
|
|
||||||
p75IxT85rg0jv9MTkb1VPE4WA+WRc7PWxUVuinfTxXCTlkUumQmMqxxOE6nVPPSd
|
|
||||||
C+Qb4bNTVQgA9n6qCahFia292rjCSQ==
|
|
||||||
=z2kg
|
|
||||||
-----END PGP SIGNATURE-----
|
|
3
commons-io-2.17.0-src.tar.gz
Normal file
3
commons-io-2.17.0-src.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3d7c1772c6eb5a884f3a813702fbaabaac6581980bfae1984f2b4a51026e2227
|
||||||
|
size 652908
|
11
commons-io-2.17.0-src.tar.gz.asc
Normal file
11
commons-io-2.17.0-src.tar.gz.asc
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iQEzBAABCgAdFiEELbTx7w+nYezE6pNchv3H4qESYssFAmbm/bkACgkQhv3H4qES
|
||||||
|
YssuLgf/RX7rznHl4Wdk3xT2mhKcxsAtm5y80GfAHtk1iqU7lDzhMxiN5jPQlyz1
|
||||||
|
AJCYeNqTwn6734cmEzNyvgIUOX3ogyscxBI22PPI+I3VSgw2k2gXOPu/3X06WoRU
|
||||||
|
3EM9ADaRzh5kME0T/hujKl9rnSbq4Oz6b1FeedS9Odi5wR4SvujhjcBEoHZP2fkj
|
||||||
|
0Ky3Yt7MMm+St3C+yXdU8ffes/hhiG6xbMC1LaYFNUSOz1Fg42EJh4DXUk5HIPgG
|
||||||
|
dz8sCsr/3f3Uj68AjTdiN7y8BDkDAlxN5v7mu2bIw+MEWIDMfma1QR/wZjMj0mlK
|
||||||
|
M/ZNSDC9KF5098mR0PcCIeTJMUJoJg==
|
||||||
|
=DEko
|
||||||
|
-----END PGP SIGNATURE-----
|
Loading…
x
Reference in New Issue
Block a user