Re: New branch and feature freeze for Lucene/Solr 8.10.0

2021-09-16 Thread Chris Hostetter
: I was referring to doing this with languages other than java. : : I'm also assuming that exceeding this limit is going to cause indirect : hassles for users of lucene, e.g. breaking various security / supply : chain tools. We know a lot of these are total crap but people in the : corporate worl

Re: New branch and feature freeze for Lucene/Solr 8.10.0

2021-09-16 Thread Dawid Weiss
Ok, fine. D. On Thu, Sep 16, 2021 at 12:00 PM Robert Muir wrote: > > The shit that mike's python tool is doing, i'd expect bugs like that. > If you honestly disagree with me, go fix his python code to obey "the > rules". Be sure you have "the rules" correct as well (count bytes, not > characters

Re: New branch and feature freeze for Lucene/Solr 8.10.0

2021-09-16 Thread Robert Muir
The shit that mike's python tool is doing, i'd expect bugs like that. If you honestly disagree with me, go fix his python code to obey "the rules". Be sure you have "the rules" correct as well (count bytes, not characters, count EOL, etc). Try to imagine how much software is going to get this wron

Re: New branch and feature freeze for Lucene/Solr 8.10.0

2021-09-16 Thread Robert Muir
I was referring to doing this with languages other than java. I'm also assuming that exceeding this limit is going to cause indirect hassles for users of lucene, e.g. breaking various security / supply chain tools. We know a lot of these are total crap but people in the corporate world have to suf

Re: New branch and feature freeze for Lucene/Solr 8.10.0

2021-09-16 Thread Dawid Weiss
Jar command doesn't have it, true. But it's fairly trivial to do, even with an inline snippet like this one? public class PrintManifest { public static void main(String[] jars) throws IOException { for (var jar : jars) { var manifest = new JarFile(Paths.get(jar).toFile()).getManifest()