Re: Commons Collections 3.2.2 End of Life?

2025-02-13 Thread Julian Reschke
Am 12.02.2025 um 16:22 schrieb Volodymyr Siedlecki: We are looking at collections4 as a possibility, but haven't determined if we can upgrade yet. The main issue is COLLECTIONS-701which is flagged by security scanners: ``` The framework Apache Commons Collections before 4.3 is vulnerable to St

commons-collection4 milestone builds

2025-01-17 Thread Julian Reschke
Hi there, (asking for a friend) Is there any guidance about how the milestone builds are suitable for "production" code? There is no guarantee that no breaking changes happen between milestones, right? Best regards, Julian -

COLLECTIONS-701 vs 3.2.x

2024-07-30 Thread Julian Reschke
Hi there, I'm working on a project which unfortunately is stuck with commons-collections3 for the time being (if you wonder why: somebody exposed the cc3 Predicate class in our public API, and it takes time to deprecate and remove). That said, we noticed that the fix for the issue above can easi

Re: [collections] Predicate vs PredicateUtils

2024-07-08 Thread Julian Reschke
On 08.07.2024 11:18, Julian Reschke wrote: On 07.07.2024 17:12, Gary Gregory wrote: We don't want to break binary compatibility within the 4.x release line. Gary ... Would we have to? OK, so this is about the return values. It's still unfortunate, because it makes it harder

Re: [collections] Predicate vs PredicateUtils

2024-07-08 Thread Julian Reschke
On 07.07.2024 17:12, Gary Gregory wrote: We don't want to break binary compatibility within the 4.x release line. Gary ... Would we have to? Best regards, Julian - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org F

[collections] Predicate vs PredicateUtils

2024-07-01 Thread Julian Reschke
Hi there! We are (finally) in the process of converting a project to commons-collections4. Unfortunately, we have a few APIs that return commons-collections3's Predicates. CC4 deprecates the custom Predicate class (good!), and these just extend JDK Predicates (https://commons.apache.org/proper/c

Re: JDK 21 EA builds 22 & Sequenced Collections Heads-up

2023-06-12 Thread Julian Reschke
On 15.05.2023 16:41, David Delabassee wrote: Welcome to the latest OpenJDK Quality Outreach update! ... It appears that the addition of https://download.java.net/java/early_access/jdk21/docs/api/java.base/java/util/List.html#addLast(E) causes havoc in commons-collections4. See

Re: beanutils 2.0.0 release?

2022-09-27 Thread Julian Reschke
Am 27.09.2022 um 15:13 schrieb Julian Reschke: Hi, over in Jackrabbit land I'm trying to get rid of commons-collections (not 4) dependencies, and dutifully moved over to beanutils for some classes - just to discover that the latest version has a dependency on commons-collections i

beanutils 2.0.0 release?

2022-09-27 Thread Julian Reschke
Hi, over in Jackrabbit land I'm trying to get rid of commons-collections (not 4) dependencies, and dutifully moved over to beanutils for some classes - just to discover that the latest version has a dependency on commons-collections itself (-> BEANUTILS-500). There's recent activity in the repo;

Re: [lang] Introduce @NonNull, and @Nullable

2021-02-02 Thread Julian Reschke
Am 01.02.2021 um 17:45 schrieb Tomo Suzuki: I like "javax.annotation namespace" too. ... Please see . Best regards, Julian - To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For a

Re: [lang] Introduce @NonNull, and @Nullable

2021-02-01 Thread Julian Reschke
Am 01.02.2021 um 15:04 schrieb Gilles Sadowski: Le lun. 1 févr. 2021 à 14:49, Jochen Wiedmann a écrit : On Mon, Feb 1, 2021 at 2:34 PM Gary Gregory wrote: 1) Don't add and use custom annotations, this opens the door to each of our 20+ components doing the same thing, so pick a library and s

Re: [VFS] Webdav failure on Java 14

2019-12-19 Thread Julian Reschke
On 19.12.2019 15:16, Gary Gregory wrote: Looking for help to resolve this failure: https://travis-ci.org/apache/commons-vfs/jobs/627014664?utm_medium=notification&utm_source=email This seems to use Jackrabbit 1, which won't work with Java 14. Best regards, Julian

Re: [CODEC] CRLF files in macOS checkout

2019-06-18 Thread Julian Reschke
On 18.06.2019 10:55, sebb wrote: ... If svn:eol-style is set to "native", it shouldn't matter. I think this can be defaulted for newly added files. Thanks, but this is Git, not SVN. Ah. I don't think Git can help here. In Jackrabbit, I regularly run a script to spot new files missing the p

Re: [CODEC] CRLF files in macOS checkout

2019-06-18 Thread Julian Reschke
On 17.06.2019 23:26, sebb wrote: Most of the files in my clone of codec have LF endings, however a few are CRLF: ./README.md ./src/assembly/bin.xml ./src/assembly/src.xml ./src/changes/changes.xml ./src/main/java/org/apache/commons/codec/cli/Digest.java ./src/main/java/org/apache/commons/codec/l

Re: [ANNOUNCE] Apache Commons FileUpload 1.3.3 released.

2017-06-14 Thread Julian Reschke
... The Apache Commons FileUpload library parses HTTP requests which conform to RFC 1867, "Form-based File Upload in HTML." That is, if an HTTP request is submitted using the POST method, and with a content type of "multipart/form-data," then FileUpload can parse that request, and make the result

Re: [vfs] dependency on Jackrabbit WebDAV and obsolete HTTP client

2016-12-08 Thread Julian Reschke
On 2016-12-08 15:49, sebb wrote: Please note that Commons HttpClient moved to the HttpComponents PMC some years ago: http://hc.apache.org/httpclient-3.x/ It is no longer being developed (see the above link for details). Yes, that's why Jackrabbit is moving away from it. But commons-vfs still

[vfs] dependency on Jackrabbit WebDAV and obsolete HTTP client

2016-12-08 Thread Julian Reschke
Hi there, please note that Jackrabbit is moving away from http client 3, and the next major version (2.14) is going to remove the APIs based on http client 3. See JCR-2406 for details (and progress information). Best regards, Julian ---