Re: [PR] Allow append rows in Streaming workbook [poi]

2023-10-09 Thread via GitHub


jlolling commented on PR #528:
URL: https://github.com/apache/poi/pull/528#issuecomment-1752888018

   I will remove my name and set the ticket number instead. OK?
   
   > On 9. Oct 2023, at 14:06, PJ Fanning ***@***.***> wrote:
   > 
   > 
   > @pjfanning commented on this pull request.
   > 
   > In poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java 
:
   > 
   > > @@ -191,8 +192,13 @@ public void removeRow(Row row) {
   >   * @return Row representing the rownumber or null if its not defined 
on the sheet
   >   */
   >  @Override
   > -public SXSSFRow getRow(int rownum) {
   > -return _rows.get(rownum);
   > +public Row getRow(int rownum) {
   > +  Row row = _rows.get(rownum);
   > +  // jlolling: allow reading all the content
   > In the ASF, we believe in shared ownership of the code. Please do not 
annotate code with your name.
   > 
   > —
   > Reply to this email directly, view it on GitHub 
, or 
unsubscribe 
.
   > You are receiving this because you modified the open/close state.
   > 
   
   


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Request to contribure to Apache Poi

2023-10-09 Thread Lynda Douglas
Good evening,
I have been using the Apache POI packages to create applications for almost
a year now but I ran into an issue with the XDDF XWPF just a few days ago.
I saw in one of the comments that the developer who used to maintain these
libraries no longer makes contributions  so I would like to find out
exactly what it takes to try to help out.

I am trying to follow the instructions on the page but many of the links
are broken and the dates are as early as 2003. Thank you for taking the
time out to read this email and I look forward to hearing from you.

Sincerely,
Lynda Douglas
Github: https://github.com/LyndaPD94


Re: [PR] Allow append rows in Streaming workbook [poi]

2023-10-09 Thread via GitHub


pjfanning commented on code in PR #528:
URL: https://github.com/apache/poi/pull/528#discussion_r1350196110


##
poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java:
##
@@ -61,11 +62,7 @@ protected SXSSFSheet(SXSSFWorkbook workbook, XSSFSheet 
xSheet, int randomAccessW
 _sh = xSheet;
 calculateLeftAndRightMostColumns(xSheet);
 setRandomAccessWindowSize(randomAccessWindowSize);
-try {
-_autoSizeColumnTracker = new AutoSizeColumnTracker(this);
-} catch (UnsatisfiedLinkError | InternalError e) {
-LOG.atWarn().log("Failed to create AutoSizeColumnTracker, possibly 
due to fonts not being installed in your OS", e);
-}
+_autoSizeColumnTracker = new AutoSizeColumnTracker(this);

Review Comment:
   please do not randomly change code like this- undo this change or the PR is 
rejected



-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: [PR] Allow append rows in Streaming workbook [poi]

2023-10-09 Thread via GitHub


jlolling commented on PR #528:
URL: https://github.com/apache/poi/pull/528#issuecomment-1752859725

   I have not “randomly” changed code. I have started from a code some weeks 
earlier. I will rebase my branch and continue.
   
   > On 9. Oct 2023, at 13:44, PJ Fanning ***@***.***> wrote:
   > 
   > 
   > @pjfanning commented on this pull request.
   > 
   > In poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java 
:
   > 
   > > @@ -61,11 +62,7 @@ protected SXSSFSheet(SXSSFWorkbook workbook, 
XSSFSheet xSheet, int randomAccessW
   >  _sh = xSheet;
   >  calculateLeftAndRightMostColumns(xSheet);
   >  setRandomAccessWindowSize(randomAccessWindowSize);
   > -try {
   > -_autoSizeColumnTracker = new AutoSizeColumnTracker(this);
   > -} catch (UnsatisfiedLinkError | InternalError e) {
   > -LOG.atWarn().log("Failed to create AutoSizeColumnTracker, 
possibly due to fonts not being installed in your OS", e);
   > -}
   > +_autoSizeColumnTracker = new AutoSizeColumnTracker(this);
   > please do not randomly change code like this- undo this change or the PR 
is rejected
   > 
   > —
   > Reply to this email directly, view it on GitHub 
, or 
unsubscribe 
.
   > You are receiving this because you modified the open/close state.
   > 
   
   


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: Request to contribure to Apache Poi

2023-10-09 Thread Axel Howind
Hi Lynda,

thank you for offering to help. If you found an issue with Apache POI, you 
should check the issue tracker first to see if this has already been reported. 
If not, create an issue yourself. 

Provide a reproducible example. The next step would be to check out the source 
and build POI yourself. IMHO the easiest way to do so is fork Apache POI on 
Github. Make sure everything compiles and all tests pass. Then create a branch 
for your issue. Write a test case and add it to your branch. Now the build 
should fail. Try to fix the code and once the build runs without errors, make a 
pull request or attach a patch to your bug report and then ask for a review.

Note that this is my personal, totally unofficial list of things I do when I 
have issues with any Open Source project I use, it’s neither official, nor 
Apache POI specific.

Just let us know if you need any more specific help.

Greetings,
Axel

> Am 09.10.2023 um 05:28 schrieb Lynda Douglas :
> 
> Good evening,
> I have been using the Apache POI packages to create applications for almost
> a year now but I ran into an issue with the XDDF XWPF just a few days ago.
> I saw in one of the comments that the developer who used to maintain these
> libraries no longer makes contributions  so I would like to find out
> exactly what it takes to try to help out.
> 
> I am trying to follow the instructions on the page but many of the links
> are broken and the dates are as early as 2003. Thank you for taking the
> time out to read this email and I look forward to hearing from you.
> 
> Sincerely,
> Lynda Douglas
> Github: https://github.com/LyndaPD94


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: [PR] Allow append rows in Streaming workbook [poi]

2023-10-09 Thread via GitHub


pjfanning commented on code in PR #528:
URL: https://github.com/apache/poi/pull/528#discussion_r1350219068


##
poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java:
##
@@ -191,8 +192,13 @@ public void removeRow(Row row) {
  * @return Row representing the rownumber or null if its not defined on 
the sheet
  */
 @Override
-public SXSSFRow getRow(int rownum) {
-return _rows.get(rownum);
+public Row getRow(int rownum) {
+   Row row = _rows.get(rownum);
+   // jlolling: allow reading all the content

Review Comment:
   In the ASF, we believe in shared ownership of the code. Please do not 
annotate code with your name.



-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 67646] New: Append rows in SXSSF workbook does not work

2023-10-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=67646

Bug ID: 67646
   Summary: Append rows in SXSSF workbook does not work
   Product: POI
   Version: 5.2.3-FINAL
  Hardware: PC
OS: Mac OS X 10.1
Status: NEW
  Severity: normal
  Priority: P2
 Component: SXSSF
  Assignee: dev@poi.apache.org
  Reporter: jan.loll...@gmail.com
  Target Milestone: ---

You cannot append rows into SXSSF workbooks. The method the retrieve the number
of already existing rows returns only the current created rows and not the rows
already exists if the workbook is read from a file.
I have already solved this bug and would like to contribute a patch to the
project. 
The necssary changes affects only the class
org.apache.poi.xssf.streaming.SXSSFSheet

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[Bug 67646] Append rows in SXSSF workbook does not work

2023-10-09 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=67646

Jan Lolling  changed:

   What|Removed |Added

   Keywords||PatchAvailable

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



POI 5.2.5 release

2023-10-09 Thread PJ Fanning
HI everyone,

I think the regression in issue 67579 [1] is serious to warrant a new POI 
release. With that in mind, could we ramp down on changes while we decide if we 
want to release soon.

I can do this one again unless someone else wants to do it.

Regards,
PJ

[1] https://bz.apache.org/bugzilla/show_bug.cgi?id=67579

-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[PR] Allow append rows in Streaming workbook [poi]

2023-10-09 Thread via GitHub


jlolling opened a new pull request, #528:
URL: https://github.com/apache/poi/pull/528

   According to the ticket: https://bz.apache.org/bugzilla/show_bug.cgi?id=67646
   Here the pull request to solve the issue.


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: [PR] Allow append rows in Streaming workbook [poi]

2023-10-09 Thread via GitHub


pjfanning commented on code in PR #528:
URL: https://github.com/apache/poi/pull/528#discussion_r1350194065


##
poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java:
##
@@ -1240,11 +1247,11 @@ public void setColumnGroupCollapsed(int columnNumber, 
boolean collapsed) {
  */
 @Override
 public void groupColumn(int fromColumn, int toColumn) {
-_sh.groupColumn(fromColumn, toColumn);
+_sh.groupColumn(fromColumn,toColumn);
 }
 
 /**
- * Ungroup a range of columns that were previously grouped
+ * Ungroup a range of columns that were previously groupped

Review Comment:
   another typo - please do not give us PRs where you randomly change code 
unrelated to your fix



##
poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java:
##
@@ -1145,7 +1152,7 @@ public boolean isDisplayRowColHeadings() {
  * Breaks occur above the specified row and left of the specified column 
inclusive.
  *
  * For example, {@code sheet.setColumnBreak(2);} breaks the sheet into two 
parts
- * with columns A,B,C in the first and D,E,... in the second. Similar, 
{@code sheet.setRowBreak(2);}
+ * with columns A,B,C in the first and D,E,... in the second. Simuilar, 
{@code sheet.setRowBreak(2);}

Review Comment:
   Can you fix the typo here?



##
poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java:
##
@@ -1349,33 +1361,33 @@ public void ungroupRow(int fromRow, int toRow) {
  *
  * Not implemented for expanding (i.e. collapse == false)
  *
- * @param row   start row of a grouped range of rows (0-based)
+ * @param row   start row of a groupped range of rows (0-based)
  * @param collapse whether to expand/collapse the detail rows
- * @throws IllegalStateException if collapse is false as this is not 
implemented for SXSSF.
+ * @throws RuntimeException if collapse is false as this is not 
implemented for SXSSF.
  */
 @Override
 public void setRowGroupCollapsed(int row, boolean collapse) {
 if (collapse) {
 collapseRow(row);
 } else {
 //expandRow(rowIndex);
-throw new IllegalStateException("Unable to expand row: Not 
Implemented");
+throw new RuntimeException("Unable to expand row: Not 
Implemented");

Review Comment:
   please do not change the exception type



##
poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java:
##
@@ -1240,11 +1247,11 @@ public void setColumnGroupCollapsed(int columnNumber, 
boolean collapsed) {
  */
 @Override
 public void groupColumn(int fromColumn, int toColumn) {
-_sh.groupColumn(fromColumn, toColumn);

Review Comment:
   why are you reformatting this code?



-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: [PR] Allow append rows in Streaming workbook [poi]

2023-10-09 Thread via GitHub


jlolling closed pull request #528: Allow append rows in Streaming workbook
URL: https://github.com/apache/poi/pull/528


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: [PR] Allow append rows in Streaming workbook [poi]

2023-10-09 Thread via GitHub


jlolling commented on PR #528:
URL: https://github.com/apache/poi/pull/528#issuecomment-1752856333

   I will try to add a test case
   I will also fix the typos but they are not caused by me.
   
   > On 9. Oct 2023, at 13:43, PJ Fanning ***@***.***> wrote:
   > 
   > 
   > @pjfanning requested changes on this pull request.
   > 
   > Can you add a test case?
   > 
   > In poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java 
:
   > 
   > > @@ -1145,7 +1152,7 @@ public boolean isDisplayRowColHeadings() {
   >   * Breaks occur above the specified row and left of the specified 
column inclusive.
   >   *
   >   * For example, ***@***.*** sheet.setColumnBreak(2);} breaks the 
sheet into two parts
   > - * with columns A,B,C in the first and D,E,... in the second. 
Similar, ***@***.*** sheet.setRowBreak(2);}
   > + * with columns A,B,C in the first and D,E,... in the second. 
Simuilar, ***@***.*** sheet.setRowBreak(2);}
   > Can you fix the typo here?
   > 
   > In poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java 
:
   > 
   > >  }
   > 
   >  /**
   > - * Ungroup a range of columns that were previously grouped
   > + * Ungroup a range of columns that were previously groupped
   > another typo - please do not give us PRs where you randomly change code 
unrelated to your fix
   > 
   > In poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java 
:
   > 
   > > @@ -1240,11 +1247,11 @@ public void setColumnGroupCollapsed(int 
columnNumber, boolean collapsed) {
   >   */
   >  @Override
   >  public void groupColumn(int fromColumn, int toColumn) {
   > -_sh.groupColumn(fromColumn, toColumn);
   > why are you reformatting this code?
   > 
   > In poi-ooxml/src/main/java/org/apache/poi/xssf/streaming/SXSSFSheet.java 
:
   > 
   > >   */
   >  @Override
   >  public void setRowGroupCollapsed(int row, boolean collapse) {
   >  if (collapse) {
   >  collapseRow(row);
   >  } else {
   >  //expandRow(rowIndex);
   > -throw new IllegalStateException("Unable to expand row: Not 
Implemented");
   > +throw new RuntimeException("Unable to expand row: Not 
Implemented");
   > please do not change the exception type
   > 
   > —
   > Reply to this email directly, view it on GitHub 
, or 
unsubscribe 
.
   > You are receiving this because you modified the open/close state.
   > 
   
   


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



Re: [PR] Bump org.mockito:mockito-core from 4.11.0 to 5.6.0 [poi]

2023-10-09 Thread via GitHub


centic9 commented on PR #530:
URL: https://github.com/apache/poi/pull/530#issuecomment-1753328739

   This would require Java 11!


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[PR] Bump org.mockito:mockito-core from 4.11.0 to 5.6.0 [poi]

2023-10-09 Thread via GitHub


dependabot[bot] opened a new pull request, #530:
URL: https://github.com/apache/poi/pull/530

   Bumps [org.mockito:mockito-core](https://github.com/mockito/mockito) from 
4.11.0 to 5.6.0.
   
   Release notes
   Sourced from https://github.com/mockito/mockito/releases;>org.mockito:mockito-core's 
releases.
   
   v5.6.0
   Changelog generated 
by https://github.com/shipkit/shipkit-changelog;>Shipkit Changelog 
Gradle Plugin
   5.6.0
   
   2023-10-06 - https://github.com/mockito/mockito/compare/v5.5.0...v5.6.0;>22 
commit(s) by Andreas Turban, Stefan M, StevenCurran, Yevhen Lazhyntsev, 
dependabot[bot]
   Use spdx identifier for license name [(https://redirect.github.com/mockito/mockito/issues/3134;>#3134)](https://redirect.github.com/mockito/mockito/pull/3134;>mockito/mockito#3134)
   Fixes https://redirect.github.com/mockito/mockito/issues/1382;>#1382 
Jupiter Captor annotation support [(https://redirect.github.com/mockito/mockito/issues/3133;>#3133)](https://redirect.github.com/mockito/mockito/pull/3133;>mockito/mockito#3133)
   Bump com.gradle.enterprise from 3.15 to 3.15.1 [(https://redirect.github.com/mockito/mockito/issues/3132;>#3132)](https://redirect.github.com/mockito/mockito/pull/3132;>mockito/mockito#3132)
   Bump com.google.googlejavaformat:google-java-format from 1.18.0 to 
1.18.1 [(https://redirect.github.com/mockito/mockito/issues/3131;>#3131)](https://redirect.github.com/mockito/mockito/pull/3131;>mockito/mockito#3131)
   Make MockUtil.getMockMaker() public Mockito API [(https://redirect.github.com/mockito/mockito/issues/3129;>#3129)](https://redirect.github.com/mockito/mockito/pull/3129;>mockito/mockito#3129)
   Make MockUtil.getMockMaker() public or public Mockito API [(https://redirect.github.com/mockito/mockito/issues/3128;>#3128)](https://redirect.github.com/mockito/mockito/issues/3128;>mockito/mockito#3128)
   Bump com.google.googlejavaformat:google-java-format from 1.17.0 to 
1.18.0 [(https://redirect.github.com/mockito/mockito/issues/3126;>#3126)](https://redirect.github.com/mockito/mockito/pull/3126;>mockito/mockito#3126)
   Bump com.diffplug.spotless from 6.21.0 to 6.22.0 [(https://redirect.github.com/mockito/mockito/issues/3125;>#3125)](https://redirect.github.com/mockito/mockito/pull/3125;>mockito/mockito#3125)
   Bump versions.errorprone from 2.21.1 to 2.22.0 [(https://redirect.github.com/mockito/mockito/issues/3122;>#3122)](https://redirect.github.com/mockito/mockito/pull/3122;>mockito/mockito#3122)
   Bump versions.bytebuddy from 1.14.7 to 1.14.8 [(https://redirect.github.com/mockito/mockito/issues/3117;>#3117)](https://redirect.github.com/mockito/mockito/pull/3117;>mockito/mockito#3117)
   Bump com.gradle.enterprise from 3.14.1 to 3.15 [(https://redirect.github.com/mockito/mockito/issues/3115;>#3115)](https://redirect.github.com/mockito/mockito/pull/3115;>mockito/mockito#3115)
   Bump org.eclipse.platform:org.eclipse.osgi from 3.18.400 to 3.18.500 
[(https://redirect.github.com/mockito/mockito/issues/3113;>#3113)](https://redirect.github.com/mockito/mockito/pull/3113;>mockito/mockito#3113)
   Bump com.github.ben-manes.versions from 0.47.0 to 0.48.0 [(https://redirect.github.com/mockito/mockito/issues/3110;>#3110)](https://redirect.github.com/mockito/mockito/pull/3110;>mockito/mockito#3110)
   Bump actions/checkout from 3 to 4 [(https://redirect.github.com/mockito/mockito/issues/3108;>#3108)](https://redirect.github.com/mockito/mockito/pull/3108;>mockito/mockito#3108)
   Bump com.diffplug.spotless from 6.20.0 to 6.21.0 [(https://redirect.github.com/mockito/mockito/issues/3106;>#3106)](https://redirect.github.com/mockito/mockito/pull/3106;>mockito/mockito#3106)
   Bump versions.bytebuddy from 1.14.6 to 1.14.7 [(https://redirect.github.com/mockito/mockito/issues/3105;>#3105)](https://redirect.github.com/mockito/mockito/pull/3105;>mockito/mockito#3105)
   Update Javadoc for ArgumentCaptor [(https://redirect.github.com/mockito/mockito/issues/3103;>#3103)](https://redirect.github.com/mockito/mockito/pull/3103;>mockito/mockito#3103)
   Bump org.jetbrains.kotlin:kotlin-gradle-plugin from 1.9.0 to 1.9.10 [(https://redirect.github.com/mockito/mockito/issues/3102;>#3102)](https://redirect.github.com/mockito/mockito/pull/3102;>mockito/mockito#3102)
   Bump org.jetbrains.kotlin:kotlin-stdlib from 1.9.0 to 1.9.10 [(https://redirect.github.com/mockito/mockito/issues/3101;>#3101)](https://redirect.github.com/mockito/mockito/pull/3101;>mockito/mockito#3101)
   Bump org.codehaus.groovy:groovy from 3.0.18 to 3.0.19 [(https://redirect.github.com/mockito/mockito/issues/3100;>#3100)](https://redirect.github.com/mockito/mockito/pull/3100;>mockito/mockito#3100)
   Resolve more Gradle Tasks lazily [(https://redirect.github.com/mockito/mockito/issues/3099;>#3099)](https://redirect.github.com/mockito/mockito/pull/3099;>mockito/mockito#3099)
   Added JavaFlightRecorder options for Tests 

[PR] Bump net.bytebuddy:byte-buddy from 1.14.7 to 1.14.9 [poi]

2023-10-09 Thread via GitHub


dependabot[bot] opened a new pull request, #532:
URL: https://github.com/apache/poi/pull/532

   Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 
1.14.7 to 1.14.9.
   
   Release notes
   Sourced from https://github.com/raphw/byte-buddy/releases;>net.bytebuddy:byte-buddy's 
releases.
   
   Byte Buddy 1.14.8
   
   Correctly read versions from class file that would use both bytes.
   Fix Byte Buddy Gradle plugin for Gradle 8.3+.
   Correct field and static method access on subtypes in 
MemberSubstitution.
   Support APK 7.4+ versions in Byte Buddy Gradle for Android plugin.
   
   
   
   
   Changelog
   Sourced from https://github.com/raphw/byte-buddy/blob/master/release-notes.md;>net.bytebuddy:byte-buddy's
 changelog.
   
   Byte Buddy release notes
   15. September 2023: version 1.14.8
   
   Correctly read versions from class file that would use both bytes.
   Fix Byte Buddy Gradle plugin for Gradle 8.3+.
   Correct field and static method access on subtypes in 
MemberSubstitution.
   Support APK 7.4+ versions in Byte Buddy Gradle for Android plugin.
   
   
   
   
   Commits
   
   https://github.com/raphw/byte-buddy/commit/3bca41c5a9bef8e295c368527578b1ee38191b89;>3bca41c
 [maven-release-plugin] prepare release byte-buddy-1.14.9
   https://github.com/raphw/byte-buddy/commit/b0f9594e84a4d9a32dd98dcf992bf775ae49cfb7;>b0f9594
 [release] Release new version
   https://github.com/raphw/byte-buddy/commit/aa8b160bf4d461d33a6f53bcb23f436adbe839ef;>aa8b160
 Remove non-available versions.
   https://github.com/raphw/byte-buddy/commit/82014e3801dd24afa32f024b3cb6c7d52d78a106;>82014e3
 Small cleanups.
   https://github.com/raphw/byte-buddy/commit/949553246785e0ec4497498a71ba1fdb41c2e516;>9495532
 Enhanced android testing (https://redirect.github.com/raphw/byte-buddy/issues/1538;>#1538)
   https://github.com/raphw/byte-buddy/commit/fe96422fe20ef8c286e2e766c9c2e00d6c725124;>fe96422
 Fix up configuration.
   https://github.com/raphw/byte-buddy/commit/d5977235dd734dd10e6ebf13925ecc629f2eb829;>d597723
 Clean up Android fixes.
   https://github.com/raphw/byte-buddy/commit/a9013065d3d6b8beedbceb2c5d21bbcadeda;>a901306
 Clean up Android fixes.
   https://github.com/raphw/byte-buddy/commit/2c7d58de18f31e0ce50cb5d70f21c23efe7fbc2f;>2c7d58d
 Enhanced agp 7.4 instrumentation (https://redirect.github.com/raphw/byte-buddy/issues/1537;>#1537)
   https://github.com/raphw/byte-buddy/commit/cf79ad1c3f96096d1e32fa595cad4ac24836cdca;>cf79ad1
 Update ASM and include new versions.
   Additional commits viewable in https://github.com/raphw/byte-buddy/compare/byte-buddy-1.14.7...byte-buddy-1.14.9;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=net.bytebuddy:byte-buddy=gradle=1.14.7=1.14.9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[PR] Bump com.github.spotbugs from 5.0.14 to 5.1.4 [poi]

2023-10-09 Thread via GitHub


dependabot[bot] opened a new pull request, #531:
URL: https://github.com/apache/poi/pull/531

   Bumps com.github.spotbugs from 5.0.14 to 5.1.4.
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.spotbugs=gradle=5.0.14=5.1.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


-
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org



[PR] Bump net.bytebuddy:byte-buddy-agent from 1.14.7 to 1.14.9 [poi]

2023-10-09 Thread via GitHub


dependabot[bot] opened a new pull request, #529:
URL: https://github.com/apache/poi/pull/529

   Bumps [net.bytebuddy:byte-buddy-agent](https://github.com/raphw/byte-buddy) 
from 1.14.7 to 1.14.9.
   
   Release notes
   Sourced from https://github.com/raphw/byte-buddy/releases;>net.bytebuddy:byte-buddy-agent's
 releases.
   
   Byte Buddy 1.14.8
   
   Correctly read versions from class file that would use both bytes.
   Fix Byte Buddy Gradle plugin for Gradle 8.3+.
   Correct field and static method access on subtypes in 
MemberSubstitution.
   Support APK 7.4+ versions in Byte Buddy Gradle for Android plugin.
   
   
   
   
   Changelog
   Sourced from https://github.com/raphw/byte-buddy/blob/master/release-notes.md;>net.bytebuddy:byte-buddy-agent's
 changelog.
   
   Byte Buddy release notes
   15. September 2023: version 1.14.8
   
   Correctly read versions from class file that would use both bytes.
   Fix Byte Buddy Gradle plugin for Gradle 8.3+.
   Correct field and static method access on subtypes in 
MemberSubstitution.
   Support APK 7.4+ versions in Byte Buddy Gradle for Android plugin.
   
   
   
   
   Commits
   
   https://github.com/raphw/byte-buddy/commit/3bca41c5a9bef8e295c368527578b1ee38191b89;>3bca41c
 [maven-release-plugin] prepare release byte-buddy-1.14.9
   https://github.com/raphw/byte-buddy/commit/b0f9594e84a4d9a32dd98dcf992bf775ae49cfb7;>b0f9594
 [release] Release new version
   https://github.com/raphw/byte-buddy/commit/aa8b160bf4d461d33a6f53bcb23f436adbe839ef;>aa8b160
 Remove non-available versions.
   https://github.com/raphw/byte-buddy/commit/82014e3801dd24afa32f024b3cb6c7d52d78a106;>82014e3
 Small cleanups.
   https://github.com/raphw/byte-buddy/commit/949553246785e0ec4497498a71ba1fdb41c2e516;>9495532
 Enhanced android testing (https://redirect.github.com/raphw/byte-buddy/issues/1538;>#1538)
   https://github.com/raphw/byte-buddy/commit/fe96422fe20ef8c286e2e766c9c2e00d6c725124;>fe96422
 Fix up configuration.
   https://github.com/raphw/byte-buddy/commit/d5977235dd734dd10e6ebf13925ecc629f2eb829;>d597723
 Clean up Android fixes.
   https://github.com/raphw/byte-buddy/commit/a9013065d3d6b8beedbceb2c5d21bbcadeda;>a901306
 Clean up Android fixes.
   https://github.com/raphw/byte-buddy/commit/2c7d58de18f31e0ce50cb5d70f21c23efe7fbc2f;>2c7d58d
 Enhanced agp 7.4 instrumentation (https://redirect.github.com/raphw/byte-buddy/issues/1537;>#1537)
   https://github.com/raphw/byte-buddy/commit/cf79ad1c3f96096d1e32fa595cad4ac24836cdca;>cf79ad1
 Update ASM and include new versions.
   Additional commits viewable in https://github.com/raphw/byte-buddy/compare/byte-buddy-1.14.7...byte-buddy-1.14.9;>compare
 view
   
   
   
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=net.bytebuddy:byte-buddy-agent=gradle=1.14.7=1.14.9)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   
   Dependabot commands and options
   
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot show  ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   


-- 
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.

To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org