[Bug 66519] Read pagination and conversion issues

2023-03-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=66519 Dominik Stadler changed: What|Removed |Added OS||All -- You are receiving this mail

[Bug 66520] Adding new series corrupting Word document

2023-03-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=66520 Dominik Stadler changed: What|Removed |Added Status|NEW |NEEDINFO -- You are receiving this

[Bug 66521] ThreadLocal memory leak in Tomcat

2023-03-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=66521 Dominik Stadler changed: What|Removed |Added OS||All Resolution|---

[GitHub] [poi] dependabot[bot] commented on pull request #439: Bump org.mockito:mockito-core from 4.11.0 to 5.2.0

2023-03-10 Thread via GitHub
dependabot[bot] commented on PR #439: URL: https://github.com/apache/poi/pull/439#issuecomment-1464844388 OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me

[GitHub] [poi] asfgit closed pull request #439: Bump org.mockito:mockito-core from 4.11.0 to 5.2.0

2023-03-10 Thread via GitHub
asfgit closed pull request #439: Bump org.mockito:mockito-core from 4.11.0 to 5.2.0 URL: https://github.com/apache/poi/pull/439 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment.

Re: thread locals in POI code

2023-03-10 Thread Dominik Stadler
Yes, the first approach ended in dependency-conflicts. Thus my current approach for POI uses a small static registry of "cleaners", so each class which is using thread-locals registers itself for cleaning and thus the dependency from scratchpad, ooxml, ... to the core "poi" is properly handled.

Re: thread locals in POI code

2023-03-10 Thread PJ Fanning
Thanks Dominik - seems like a valid solution. Ideally, there would be separate ThreadLocalUtil-like classes for poi-ooxml and poi-scratchpad (XSSF vs HSSF) - and probably poi main jar too. I was thinking myself more along the lines of supporting a flag to turn off the use of ThreadLocals (not

[GitHub] [poi] dependabot[bot] opened a new pull request, #439: Bump org.mockito:mockito-core from 4.11.0 to 5.2.0

2023-03-10 Thread via GitHub
dependabot[bot] opened a new pull request, #439: URL: https://github.com/apache/poi/pull/439 Bumps [org.mockito:mockito-core](https://github.com/mockito/mockito) from 4.11.0 to 5.2.0. Release notes Sourced from

Re: thread locals in POI code

2023-03-10 Thread Dominik Stadler
Hi, Some of them likely have had a valid use-case and would at least cause performance issues if removed. The issues from Tomcat or other WebServers usually come because they check if memory is lingering at the point when the thread is "given back" to a global pool. XmlBeans also uses