Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test_bfopen fails with #29

Open
sbesson opened this issue Jul 23, 2019 · 5 comments · May be fixed by ome/bioformats#4130
Open

test_bfopen fails with #29

sbesson opened this issue Jul 23, 2019 · 5 comments · May be fixed by ome/bioformats#4130

Comments

@sbesson
Copy link
Member

sbesson commented Jul 23, 2019

While trying to create a minimal example file to reproduce https://forum.image.sc/t/bio-formats-octave-error-on-bfsave/27504, I realized that the current Travis build is failing - see https://travis-ci.org/ome/bio-formats-octave-docker/builds/545619855.

Populating metadata
Reading series #1
    .error: octave_base_value::reshape (): wrong type argument 'octave_java'
error: called from
    bfGetPlane at line 99 column 7
    bfopen at line 150 column 13
    test_bfopen at line 6 column 6
    travis_test at line 9 column 1

There are two issues associated with this error:

  • I would have expected the docker run command to fail with a non-zero status code on a failing script rather than a false negative
  • octave_base_value::reshape (): wrong type argument 'octave_java' is thrown when calling bfGetPlane for all recent builds using GNU Octave 4.2 / Bio-Formats 6. The only related report I could find was https://savannah.gnu.org/bugs/?44881. @carandraug: do you have any immediate thoughts on this before we start investigating.
@carandraug
Copy link

I would have expected the docker run command to fail with a non-zero status code on a failing script rather than a false negative

I've checked on Octave 4.0 and Octave 6.0 and in both cases returns a non zero return code

$ touch "test&sizeT=3.fake"
$ octave travis_test.m "test&sizeT=3.fake"
[...]
s = 1
v = 6.2.0
FakeReader initializing test&sizeT=3.fake
Reading series #1
    .error: octave_base_value::reshape (): wrong type argument 'octave_java'
error: called from
    bfGetPlane at line 99 column 7
    bfopen at line 150 column 13
    test_bfopen at line 6 column 6
    travis_test at line 9 column 1
$ echo $?
1

octave_base_value::reshape (): wrong type argument 'octave_java' is thrown when calling bfGetPlane for all recent builds using GNU Octave 4.2 / Bio-Formats 6. The only related report I could find was https://savannah.gnu.org/bugs/?44881.

That issue is unrelated (the issue is about making reshape also work in java arrays and that is something that doesn't even work in Matlab). This error seems to be related to auto boxing/unboxing rules. In Matlab, it looks like I in:

I = javaMethod('makeDataArray2D', 'loci.common.DataTools', plane, ...
    bpp, fp, little, ip.Results.height);

returns a Matlab array of class int8 but in Octave this remains an octave_java object of class byte[][] which is why the switch statement fails. I believe that in Octave, arrays with more than one dimension remain a java object in case they are non-rectangular. This probably needs to be changed in Octave for sake of Matlab compatibility but I don't think there's anyone working in Octave at the moment that quite understands the different conversion rules that would be Matlab compatible.

@sbesson
Copy link
Member Author

sbesson commented Jul 23, 2019

@carandraug: thanks for the quick reponse. The base image used for testing Octave is Ubuntu 18.04 which ships GNU Octave 4.2.2

octave@89da10fab560:~$ touch "test&sizeT=3.fake" 
octave@89da10fab560:~$ octave -version
octave: X11 DISPLAY environment variable not set
octave: disabling GUI features
GNU Octave, version 4.2.2
Copyright (C) 2018 John W. Eaton and others.
This is free software; see the source code for copying conditions.
There is ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.

Octave was configured for "x86_64-pc-linux-gnu".

Additional information about Octave is available at http://www.octave.org.

Please contribute if you find this software useful.
For more information, visit http://www.octave.org/get-involved.html

Read http://www.octave.org/bugs.html to learn how to submit bug reports.
octave@89da10fab560:~$ octave travis_test.m "test&sizeT=3.fake" && echo passed
octave: X11 DISPLAY environment variable not set
octave: disabling GUI features
s = 1
v = 6.1.0
FakeReader initializing test&sizeT=3.fake
Reading series #1
    .error: octave_base_value::reshape (): wrong type argument 'octave_java'
error: called from
    bfGetPlane at line 99 column 7
    bfopen at line 150 column 13
    test_bfopen at line 6 column 6
    travis_test at line 9 column 1
passed
octave@89da10fab560:~$ echo $?
0
octave@89da10fab560:~$ exit

Switching to Ubuntu 16.04 and GNU Octave 4.0.0, I can confirm the status code is returned as non-zero as expected

octave@50c2a3c49946:~$ touch "test&sizeT=3.fake" 
octave@50c2a3c49946:~$ octave --version
octave: X11 DISPLAY environment variable not set
octave: disabling GUI features
GNU Octave, version 4.0.0
Copyright (C) 2015 John W. Eaton and others.
This is free software; see the source code for copying conditions.
There is ABSOLUTELY NO WARRANTY; not even for MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.

Octave was configured for "x86_64-pc-linux-gnu".

Additional information about Octave is available at http://www.octave.org.

Please contribute if you find this software useful.
For more information, visit http://www.octave.org/get-involved.html

Read http://www.octave.org/bugs.html to learn how to submit bug reports.
octave@50c2a3c49946:~$ octave travis_test.m "test&sizeT=3.fake"
octave: X11 DISPLAY environment variable not set
octave: disabling GUI features
s =  1
v = 6.1.0
FakeReader initializing test&sizeT=3.fake
Reading series #1
    .error: octave_base_value::reshape (): wrong type argument 'octave_java'
error: called from
    bfGetPlane at line 99 column 7
    bfopen at line 150 column 13
    test_bfopen at line 6 column 6
    travis_test.m at line 9 column 1
octave@50c2a3c49946:~$ echo $?
1

This seems related to http://octave.1599824.n4.nabble.com/Octave-s-exit-status-td4680966.html. It looks like the regression was fixed in 6.0 but did not make it into a patch release of Octave 4.2.x.

Thanks also for pointing at the autoboxing behavior. While bisecting changes introduced, I think this is effectively a regression introduced as part of ome/bioformats#3301.

@jburel
Copy link
Member

jburel commented Dec 13, 2023

The same problem occurs when testing on docker image Ubuntu 22.04 and octave 6.4.0

@jburel jburel mentioned this issue Dec 13, 2023
@carandraug
Copy link

I've looked at this and it works fine in bioformats 5.9.2 and started to fail in bioformats 6.0.0. @sbesson suggested and I confirm that the issue is a regression introduced in ome/bioformats#3301

It boils down to the description I had above:

This error seems to be related to auto boxing/unboxing rules. In Matlab, it looks like I in:

I = javaMethod('makeDataArray2D', 'loci.common.DataTools', plane, ...
    bpp, fp, little, ip.Results.height);

returns a Matlab array of class int8 but in Octave this remains an octave_java object of class byte[][] which is why the switch statement fails. I believe that in Octave, arrays with more than one dimension remain a java object in case they are non-rectangular. This probably needs to be changed in Octave for sake of Matlab compatibility but I don't think there's anyone working in Octave at the moment that quite understands the different conversion rules that would be Matlab compatible.

I will prepare a pull request.

carandraug added a commit to carandraug/bioformats that referenced this issue Dec 13, 2023
…o-formats-octave-docker#29)

Octave does not autobox multi-dimensional arrays (Matlab does) so we
can't use makeDataArray2D.  Instead, use makeDataArray to get a 1D
array and reshape it.  This commit partially reverts 3aa468e (see
ome#3301) for Octave only, so the data copy is back but for
Octave only.
@carandraug
Copy link

I will prepare a pull request.

Done in ome/bioformats#4130

snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 13, 2023
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)' (user: carandraug)
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1' (user: ed-scanlon)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (user: melissalinkert)
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names' (user: melissalinkert)
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes' (user: melissalinkert)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG' (user: CGDogan)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (user: melissalinkert)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (user: dgault)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (user: dgault)
Updating 996da68..d566f70
Previously merged:
  - PR 4129 melissalinkert 'Bump version to 7.2.0-SNAPSHOT'
  - PR 4128 melissalinkert 'Update version numbers to 7.1.0'
  - PR 4057 melissalinkert 'Add CodecOptions.disableChromaSubsampling'
  - PR 4126 dgault 'Bump dependency versions'

Generated by BIOFORMATS-push#1662 (https://latest-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/1662/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Dec 13, 2023
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 552 dependabot[bot] 'Bump bioformats from `996da68` to `d566f70`' (user: dependabot[bot])
  - PR 551 dependabot[bot] 'Bump bio-formats-documentation from `f4a4045` to `a291695`' (user: dependabot[bot])
  - PR 550 dependabot[bot] 'Bump ZarrReader from `1d18bbc` to `4deea8d`' (user: dependabot[bot])
  - PR 549 dependabot[bot] 'Bump bio-formats-examples from `6218db5` to `083f617`' (user: dependabot[bot])
  - PR 469 jburel 'install sphinx' (user: jburel)
Already up-to-date.

Repository: ome/ZarrReader
Excluded PRs:
  - PR 71 sbesson 'Bump Bio-Formats to version 7.1.0' (user: sbesson)
  - PR 20 dgault 'ZarrReader: Use chunk API' (user: dgault)
Updating 1d18bbc..4deea8d
Previously merged:
  - PR 70 dgault 'Bump version to 0.4.1-SNAPSHOT'

Repository: ome/bio-formats-documentation
Excluded PRs:
  - PR 355 dgault 'Adding checkerframework.org to link check ignore' (user: dgault)
Updating f4a4045..45b07e2
Previously merged:
  - PR 356 melissalinkert 'Change ome-codecs version from 1.1.0 to 1.0.1'
  - PR 354 melissalinkert 'Update to 7.2.0-SNAPSHOT'
  - PR 353 melissalinkert 'Bump versions to 7.1.0'
  - PR 350 dgault 'Add link to Bioformats.NET6'
  - PR 352 dgault 'Add version history for Bio-Formats 7.1.0'
  - PR 349 dgault '7.1.0 API updates'
  - PR 343 dgault 'Add bio3d to link check ignore'
  - PR 351 dgault 'Bump dependencies to latest versions'

Repository: ome/bio-formats-examples
Excluded PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop' (user: dgault)
Updating 6218db5..083f617
Previously merged:
  - PR 121 sbesson 'Bump version to 7.2.0-SNAPSHOT'
  - PR 120 sbesson 'Bio-Formats 7.1.0'
  - PR 119 sbesson 'Update OME artifactory repository to deploy to ome.releases'

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)' (user: carandraug)
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1' (user: ed-scanlon)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (user: melissalinkert)
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names' (user: melissalinkert)
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes' (user: melissalinkert)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG' (user: CGDogan)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (user: melissalinkert)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (user: dgault)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (user: dgault)
Updating 996da68..d566f70
Previously merged:
  - PR 4129 melissalinkert 'Bump version to 7.2.0-SNAPSHOT'
  - PR 4128 melissalinkert 'Update version numbers to 7.1.0'
  - PR 4057 melissalinkert 'Add CodecOptions.disableChromaSubsampling'
  - PR 4126 dgault 'Bump dependency versions'

Repository: ome/ome-codecs
Excluded PRs:
  - PR 24 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (user: dependabot[bot])
  - PR 21 dgault 'Replace one-jai with jai-imageio-jpeg2000' (user: dgault)
Already up-to-date.

Repository: ome/ome-common-java
Excluded PRs:
  - PR 72 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (user: dependabot[bot])
  - PR 59 NicoKiaru 'adds AverageImageScaler implementation of IImageScaler' (user: NicoKiaru)
Already up-to-date.

Repository: ome/ome-jai
Already up-to-date.

Repository: ome/ome-mdbtools
Already up-to-date.

Repository: ome/ome-metakit
Already up-to-date.

Repository: ome/ome-model
Excluded PRs:
  - PR 180 joshmoore 'xsd-fu: templates for linkml generation' (user: joshmoore)
  - PR 174 jburel 'Remove docs' (user: jburel)
Already up-to-date.

Repository: ome/ome-poi
Already up-to-date.

Repository: ome/ome-stubs
Already up-to-date.

Generated by BIOFORMATS-push#1662 (https://latest-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/1662/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 14, 2023
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 14, 2023
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (label: exclude)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (stage: draft)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up-to-date.

Merged PRs:
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG'
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes'
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names'
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1'
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'

Generated by BIOFORMATS-push#713 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/713/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Dec 14, 2023
Repository: ome/bio-formats-build
Already up-to-date.

Merged PRs:
  - PR 469 jburel 'install sphinx'
  - PR 549 dependabot[bot] 'Bump bio-formats-examples from `6218db5` to `083f617`'
  - PR 550 dependabot[bot] 'Bump ZarrReader from `1d18bbc` to `4deea8d`'
  - PR 552 dependabot[bot] 'Bump bioformats from `996da68` to `d566f70`'
  - PR 553 dependabot[bot] 'Bump bio-formats-documentation from `f4a4045` to `45b07e2`'

Repository: ome/ZarrReader
Excluded PRs:
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 71 sbesson 'Bump Bio-Formats to version 7.1.0'

Repository: ome/bio-formats-documentation
Already up-to-date.

Merged PRs:
  - PR 355 dgault 'Adding checkerframework.org to link check ignore'

Repository: ome/bio-formats-examples
Already up-to-date.

Merged PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop'

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (label: exclude)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (stage: draft)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up-to-date.

Merged PRs:
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG'
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes'
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names'
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1'
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'

Repository: ome/ome-codecs
Excluded PRs:
  - PR 24 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (status: failure)
  - PR 21 dgault 'Replace one-jai with jai-imageio-jpeg2000' (stage: draft)
Already up-to-date.

Repository: ome/ome-common-java
Excluded PRs:
  - PR 72 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (label: exclude)
  - PR 59 NicoKiaru 'adds AverageImageScaler implementation of IImageScaler' (user: NicoKiaru)
Already up-to-date.

Repository: ome/ome-jai
Already up-to-date.

Repository: ome/ome-mdbtools
Already up-to-date.

Repository: ome/ome-metakit
Already up-to-date.

Repository: ome/ome-model
Excluded PRs:
  - PR 180 joshmoore 'xsd-fu: templates for linkml generation' (stage: draft)
Already up-to-date.

Conflicting PRs (not included):
  - PR 174 jburel 'Remove docs'

Repository: ome/ome-poi
Already up-to-date.

Repository: ome/ome-stubs
Already up-to-date.

Generated by BIOFORMATS-push#713 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/713/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 14, 2023
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)' (user: carandraug)
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1' (user: ed-scanlon)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (user: melissalinkert)
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names' (user: melissalinkert)
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes' (user: melissalinkert)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG' (user: CGDogan)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (user: melissalinkert)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (user: dgault)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (user: dgault)
Already up-to-date.

Generated by BIOFORMATS-push#1663 (https://latest-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/1663/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Dec 14, 2023
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 553 dependabot[bot] 'Bump bio-formats-documentation from `f4a4045` to `45b07e2`' (user: dependabot[bot])
  - PR 469 jburel 'install sphinx' (user: jburel)
Already up-to-date.

Repository: ome/ZarrReader
Excluded PRs:
  - PR 74 dgault 'JZarr: Add jackson.core and jackson-databind to exclsions' (user: dgault)
  - PR 73 dgault 'Update ReadMe and Change Log' (user: dgault)
  - PR 71 sbesson 'Bump Bio-Formats to version 7.1.0' (user: sbesson)
  - PR 20 dgault 'ZarrReader: Use chunk API' (user: dgault)
Already up-to-date.

Repository: ome/bio-formats-documentation
Excluded PRs:
  - PR 355 dgault 'Adding checkerframework.org to link check ignore' (user: dgault)
Updating f4a4045..45b07e2
Previously merged:
  - PR 356 melissalinkert 'Change ome-codecs version from 1.1.0 to 1.0.1'
  - PR 354 melissalinkert 'Update to 7.2.0-SNAPSHOT'
  - PR 353 melissalinkert 'Bump versions to 7.1.0'
  - PR 350 dgault 'Add link to Bioformats.NET6'
  - PR 352 dgault 'Add version history for Bio-Formats 7.1.0'
  - PR 349 dgault '7.1.0 API updates'
  - PR 343 dgault 'Add bio3d to link check ignore'
  - PR 351 dgault 'Bump dependencies to latest versions'

Repository: ome/bio-formats-examples
Excluded PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop' (user: dgault)
Already up-to-date.

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)' (user: carandraug)
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1' (user: ed-scanlon)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (user: melissalinkert)
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names' (user: melissalinkert)
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes' (user: melissalinkert)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG' (user: CGDogan)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (user: melissalinkert)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (user: dgault)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (user: dgault)
Already up-to-date.

Repository: ome/ome-codecs
Excluded PRs:
  - PR 24 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (user: dependabot[bot])
  - PR 21 dgault 'Replace one-jai with jai-imageio-jpeg2000' (user: dgault)
Already up-to-date.

Repository: ome/ome-common-java
Excluded PRs:
  - PR 72 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (user: dependabot[bot])
  - PR 59 NicoKiaru 'adds AverageImageScaler implementation of IImageScaler' (user: NicoKiaru)
Already up-to-date.

Repository: ome/ome-jai
Already up-to-date.

Repository: ome/ome-mdbtools
Already up-to-date.

Repository: ome/ome-metakit
Already up-to-date.

Repository: ome/ome-model
Excluded PRs:
  - PR 180 joshmoore 'xsd-fu: templates for linkml generation' (user: joshmoore)
  - PR 174 jburel 'Remove docs' (user: jburel)
Already up-to-date.

Repository: ome/ome-poi
Already up-to-date.

Repository: ome/ome-stubs
Already up-to-date.

Generated by BIOFORMATS-push#1663 (https://latest-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/1663/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 15, 2023
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 15, 2023
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (label: exclude)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (stage: draft)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up-to-date.

Merged PRs:
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG'
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes'
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names'
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1'
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'

Generated by BIOFORMATS-push#714 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/714/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Dec 15, 2023
Repository: ome/bio-formats-build
Already up-to-date.

Merged PRs:
  - PR 469 jburel 'install sphinx'
  - PR 553 dependabot[bot] 'Bump bio-formats-documentation from `f4a4045` to `45b07e2`'

Repository: ome/ZarrReader
Excluded PRs:
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 71 sbesson 'Bump Bio-Formats to version 7.1.0'
  - PR 73 dgault 'Update ReadMe and Change Log'
  - PR 74 dgault 'JZarr: Add jackson.core and jackson-databind to exclsions'

Repository: ome/bio-formats-documentation
Already up-to-date.

Merged PRs:
  - PR 355 dgault 'Adding checkerframework.org to link check ignore'

Repository: ome/bio-formats-examples
Already up-to-date.

Merged PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop'

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (label: exclude)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (stage: draft)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up-to-date.

Merged PRs:
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG'
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes'
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names'
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1'
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'

Repository: ome/ome-codecs
Excluded PRs:
  - PR 24 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (status: failure)
  - PR 21 dgault 'Replace one-jai with jai-imageio-jpeg2000' (stage: draft)
Already up-to-date.

Repository: ome/ome-common-java
Excluded PRs:
  - PR 72 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (label: exclude)
  - PR 59 NicoKiaru 'adds AverageImageScaler implementation of IImageScaler' (user: NicoKiaru)
Already up-to-date.

Repository: ome/ome-jai
Already up-to-date.

Repository: ome/ome-mdbtools
Already up-to-date.

Repository: ome/ome-metakit
Already up-to-date.

Repository: ome/ome-model
Excluded PRs:
  - PR 180 joshmoore 'xsd-fu: templates for linkml generation' (stage: draft)
Already up-to-date.

Conflicting PRs (not included):
  - PR 174 jburel 'Remove docs'

Repository: ome/ome-poi
Already up-to-date.

Repository: ome/ome-stubs
Already up-to-date.

Generated by BIOFORMATS-push#714 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/714/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 15, 2023
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4131 dgault 'VirtualImagePlus: Retain B&C settings for each slice' (user: dgault)
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)' (user: carandraug)
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1' (user: ed-scanlon)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (user: melissalinkert)
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names' (user: melissalinkert)
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes' (user: melissalinkert)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG' (user: CGDogan)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (user: melissalinkert)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (user: dgault)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (user: dgault)
Already up-to-date.

Generated by BIOFORMATS-push#1664 (https://latest-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/1664/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Dec 15, 2023
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 553 dependabot[bot] 'Bump bio-formats-documentation from `f4a4045` to `45b07e2`' (user: dependabot[bot])
  - PR 469 jburel 'install sphinx' (user: jburel)
Already up-to-date.

Repository: ome/ZarrReader
Excluded PRs:
  - PR 74 dgault 'JZarr: Add jackson.core and jackson-databind to exclsions' (user: dgault)
  - PR 73 dgault 'Update ReadMe and Change Log' (user: dgault)
  - PR 71 sbesson 'Bump Bio-Formats to version 7.1.0' (user: sbesson)
  - PR 20 dgault 'ZarrReader: Use chunk API' (user: dgault)
Already up-to-date.

Repository: ome/bio-formats-documentation
Excluded PRs:
  - PR 355 dgault 'Adding checkerframework.org to link check ignore' (user: dgault)
Updating f4a4045..45b07e2
Previously merged:
  - PR 356 melissalinkert 'Change ome-codecs version from 1.1.0 to 1.0.1'
  - PR 354 melissalinkert 'Update to 7.2.0-SNAPSHOT'
  - PR 353 melissalinkert 'Bump versions to 7.1.0'
  - PR 350 dgault 'Add link to Bioformats.NET6'
  - PR 352 dgault 'Add version history for Bio-Formats 7.1.0'
  - PR 349 dgault '7.1.0 API updates'
  - PR 343 dgault 'Add bio3d to link check ignore'
  - PR 351 dgault 'Bump dependencies to latest versions'

Repository: ome/bio-formats-examples
Excluded PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop' (user: dgault)
Already up-to-date.

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4131 dgault 'VirtualImagePlus: Retain B&C settings for each slice' (user: dgault)
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)' (user: carandraug)
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1' (user: ed-scanlon)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (user: melissalinkert)
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names' (user: melissalinkert)
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes' (user: melissalinkert)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG' (user: CGDogan)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (user: melissalinkert)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (user: dgault)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (user: dgault)
Already up-to-date.

Repository: ome/ome-codecs
Excluded PRs:
  - PR 24 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (user: dependabot[bot])
  - PR 21 dgault 'Replace one-jai with jai-imageio-jpeg2000' (user: dgault)
Already up-to-date.

Repository: ome/ome-common-java
Excluded PRs:
  - PR 72 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (user: dependabot[bot])
  - PR 59 NicoKiaru 'adds AverageImageScaler implementation of IImageScaler' (user: NicoKiaru)
Already up-to-date.

Repository: ome/ome-jai
Already up-to-date.

Repository: ome/ome-mdbtools
Already up-to-date.

Repository: ome/ome-metakit
Already up-to-date.

Repository: ome/ome-model
Excluded PRs:
  - PR 180 joshmoore 'xsd-fu: templates for linkml generation' (user: joshmoore)
  - PR 174 jburel 'Remove docs' (user: jburel)
Already up-to-date.

Repository: ome/ome-poi
Already up-to-date.

Repository: ome/ome-stubs
Already up-to-date.

Generated by BIOFORMATS-push#1664 (https://latest-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/1664/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 16, 2023
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 16, 2023
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4131 dgault 'VirtualImagePlus: Retain B&C settings for each slice' (status: failure)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (label: exclude)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (stage: draft)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up-to-date.

Merged PRs:
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG'
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes'
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names'
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1'
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'

Generated by BIOFORMATS-push#715 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/715/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Dec 16, 2023
Repository: ome/bio-formats-build
Already up-to-date.

Merged PRs:
  - PR 469 jburel 'install sphinx'
  - PR 553 dependabot[bot] 'Bump bio-formats-documentation from `f4a4045` to `45b07e2`'

Repository: ome/ZarrReader
Excluded PRs:
  - PR 73 dgault 'Update ReadMe and Change Log' (status: failure)
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 71 sbesson 'Bump Bio-Formats to version 7.1.0'
  - PR 74 dgault 'JZarr: Add jackson.core and jackson-databind to exclsions'

Repository: ome/bio-formats-documentation
Already up-to-date.

Merged PRs:
  - PR 355 dgault 'Adding checkerframework.org to link check ignore'

Repository: ome/bio-formats-examples
Already up-to-date.

Merged PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop'

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4131 dgault 'VirtualImagePlus: Retain B&C settings for each slice' (status: failure)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (label: exclude)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (stage: draft)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up-to-date.

Merged PRs:
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG'
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes'
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names'
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1'
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'

Repository: ome/ome-codecs
Excluded PRs:
  - PR 24 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (status: failure)
  - PR 21 dgault 'Replace one-jai with jai-imageio-jpeg2000' (stage: draft)
Already up-to-date.

Repository: ome/ome-common-java
Excluded PRs:
  - PR 72 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (label: exclude)
  - PR 59 NicoKiaru 'adds AverageImageScaler implementation of IImageScaler' (user: NicoKiaru)
Already up-to-date.

Repository: ome/ome-jai
Already up-to-date.

Repository: ome/ome-mdbtools
Already up-to-date.

Repository: ome/ome-metakit
Already up-to-date.

Repository: ome/ome-model
Excluded PRs:
  - PR 180 joshmoore 'xsd-fu: templates for linkml generation' (stage: draft)
Already up-to-date.

Conflicting PRs (not included):
  - PR 174 jburel 'Remove docs'

Repository: ome/ome-poi
Already up-to-date.

Repository: ome/ome-stubs
Already up-to-date.

Generated by BIOFORMATS-push#715 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/715/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 16, 2023
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4131 dgault 'VirtualImagePlus: Retain B&C settings for each slice' (user: dgault)
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)' (user: carandraug)
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1' (user: ed-scanlon)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (user: melissalinkert)
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names' (user: melissalinkert)
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes' (user: melissalinkert)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG' (user: CGDogan)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (user: melissalinkert)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (user: dgault)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (user: dgault)
Already up-to-date.

Generated by BIOFORMATS-push#1665 (https://latest-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/1665/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Dec 16, 2023
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 553 dependabot[bot] 'Bump bio-formats-documentation from `f4a4045` to `45b07e2`' (user: dependabot[bot])
  - PR 469 jburel 'install sphinx' (user: jburel)
Already up-to-date.

Repository: ome/ZarrReader
Excluded PRs:
  - PR 74 dgault 'JZarr: Add jackson.core and jackson-databind to exclsions' (user: dgault)
  - PR 73 dgault 'Update ReadMe and Change Log' (user: dgault)
  - PR 71 sbesson 'Bump Bio-Formats to version 7.1.0' (user: sbesson)
  - PR 20 dgault 'ZarrReader: Use chunk API' (user: dgault)
Already up-to-date.

Repository: ome/bio-formats-documentation
Excluded PRs:
  - PR 355 dgault 'Adding checkerframework.org to link check ignore' (user: dgault)
Updating f4a4045..45b07e2
Previously merged:
  - PR 356 melissalinkert 'Change ome-codecs version from 1.1.0 to 1.0.1'
  - PR 354 melissalinkert 'Update to 7.2.0-SNAPSHOT'
  - PR 353 melissalinkert 'Bump versions to 7.1.0'
  - PR 350 dgault 'Add link to Bioformats.NET6'
  - PR 352 dgault 'Add version history for Bio-Formats 7.1.0'
  - PR 349 dgault '7.1.0 API updates'
  - PR 343 dgault 'Add bio3d to link check ignore'
  - PR 351 dgault 'Bump dependencies to latest versions'

Repository: ome/bio-formats-examples
Excluded PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop' (user: dgault)
Already up-to-date.

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4131 dgault 'VirtualImagePlus: Retain B&C settings for each slice' (user: dgault)
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)' (user: carandraug)
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1' (user: ed-scanlon)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (user: melissalinkert)
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names' (user: melissalinkert)
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes' (user: melissalinkert)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG' (user: CGDogan)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (user: melissalinkert)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (user: dgault)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (user: dgault)
Already up-to-date.

Repository: ome/ome-codecs
Excluded PRs:
  - PR 24 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (user: dependabot[bot])
  - PR 21 dgault 'Replace one-jai with jai-imageio-jpeg2000' (user: dgault)
Already up-to-date.

Repository: ome/ome-common-java
Excluded PRs:
  - PR 72 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (user: dependabot[bot])
  - PR 59 NicoKiaru 'adds AverageImageScaler implementation of IImageScaler' (user: NicoKiaru)
Already up-to-date.

Repository: ome/ome-jai
Already up-to-date.

Repository: ome/ome-mdbtools
Already up-to-date.

Repository: ome/ome-metakit
Already up-to-date.

Repository: ome/ome-model
Excluded PRs:
  - PR 180 joshmoore 'xsd-fu: templates for linkml generation' (user: joshmoore)
  - PR 174 jburel 'Remove docs' (user: jburel)
Already up-to-date.

Repository: ome/ome-poi
Already up-to-date.

Repository: ome/ome-stubs
Already up-to-date.

Generated by BIOFORMATS-push#1665 (https://latest-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/1665/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 17, 2023
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 17, 2023
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4131 dgault 'VirtualImagePlus: Retain B&C settings for each slice' (status: failure)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (label: exclude)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (stage: draft)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up-to-date.

Merged PRs:
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG'
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes'
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names'
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1'
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'

Generated by BIOFORMATS-push#716 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/716/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Dec 17, 2023
Repository: ome/bio-formats-build
Already up-to-date.

Merged PRs:
  - PR 469 jburel 'install sphinx'
  - PR 553 dependabot[bot] 'Bump bio-formats-documentation from `f4a4045` to `45b07e2`'

Repository: ome/ZarrReader
Excluded PRs:
  - PR 73 dgault 'Update ReadMe and Change Log' (status: failure)
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Already up-to-date.

Merged PRs:
  - PR 71 sbesson 'Bump Bio-Formats to version 7.1.0'
  - PR 74 dgault 'JZarr: Add jackson.core and jackson-databind to exclsions'

Repository: ome/bio-formats-documentation
Already up-to-date.

Merged PRs:
  - PR 355 dgault 'Adding checkerframework.org to link check ignore'

Repository: ome/bio-formats-examples
Already up-to-date.

Merged PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop'

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4131 dgault 'VirtualImagePlus: Retain B&C settings for each slice' (status: failure)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (label: exclude)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (stage: draft)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up-to-date.

Merged PRs:
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG'
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes'
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names'
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1'
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'

Repository: ome/ome-codecs
Excluded PRs:
  - PR 24 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (status: failure)
  - PR 21 dgault 'Replace one-jai with jai-imageio-jpeg2000' (stage: draft)
Already up-to-date.

Repository: ome/ome-common-java
Excluded PRs:
  - PR 72 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (label: exclude)
  - PR 59 NicoKiaru 'adds AverageImageScaler implementation of IImageScaler' (user: NicoKiaru)
Already up-to-date.

Repository: ome/ome-jai
Already up-to-date.

Repository: ome/ome-mdbtools
Already up-to-date.

Repository: ome/ome-metakit
Already up-to-date.

Repository: ome/ome-model
Excluded PRs:
  - PR 180 joshmoore 'xsd-fu: templates for linkml generation' (stage: draft)
Already up-to-date.

Conflicting PRs (not included):
  - PR 174 jburel 'Remove docs'

Repository: ome/ome-poi
Already up-to-date.

Repository: ome/ome-stubs
Already up-to-date.

Generated by BIOFORMATS-push#716 (https://snoopycrimecop-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/716/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Dec 17, 2023
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4131 dgault 'VirtualImagePlus: Retain B&C settings for each slice' (user: dgault)
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)' (user: carandraug)
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1' (user: ed-scanlon)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (user: melissalinkert)
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names' (user: melissalinkert)
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes' (user: melissalinkert)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG' (user: CGDogan)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (user: melissalinkert)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (user: dgault)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (user: dgault)
Already up-to-date.

Generated by BIOFORMATS-push#1666 (https://latest-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/1666/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Dec 17, 2023
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 553 dependabot[bot] 'Bump bio-formats-documentation from `f4a4045` to `45b07e2`' (user: dependabot[bot])
  - PR 469 jburel 'install sphinx' (user: jburel)
Already up-to-date.

Repository: ome/ZarrReader
Excluded PRs:
  - PR 74 dgault 'JZarr: Add jackson.core and jackson-databind to exclsions' (user: dgault)
  - PR 73 dgault 'Update ReadMe and Change Log' (user: dgault)
  - PR 71 sbesson 'Bump Bio-Formats to version 7.1.0' (user: sbesson)
  - PR 20 dgault 'ZarrReader: Use chunk API' (user: dgault)
Already up-to-date.

Repository: ome/bio-formats-documentation
Excluded PRs:
  - PR 355 dgault 'Adding checkerframework.org to link check ignore' (user: dgault)
Updating f4a4045..45b07e2
Previously merged:
  - PR 356 melissalinkert 'Change ome-codecs version from 1.1.0 to 1.0.1'
  - PR 354 melissalinkert 'Update to 7.2.0-SNAPSHOT'
  - PR 353 melissalinkert 'Bump versions to 7.1.0'
  - PR 350 dgault 'Add link to Bioformats.NET6'
  - PR 352 dgault 'Add version history for Bio-Formats 7.1.0'
  - PR 349 dgault '7.1.0 API updates'
  - PR 343 dgault 'Add bio3d to link check ignore'
  - PR 351 dgault 'Bump dependencies to latest versions'

Repository: ome/bio-formats-examples
Excluded PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop' (user: dgault)
Already up-to-date.

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4131 dgault 'VirtualImagePlus: Retain B&C settings for each slice' (user: dgault)
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)' (user: carandraug)
  - PR 4117 ed-scanlon 'Work-around for breaking change in CellSens 4.1' (user: ed-scanlon)
  - PR 4114 melissalinkert 'Add test for image names when resolutions are not flattened' (user: melissalinkert)
  - PR 4112 melissalinkert 'Imaris HDF: populate channel names' (user: melissalinkert)
  - PR 4111 melissalinkert 'OIR: channel order and missing pixel block fixes' (user: melissalinkert)
  - PR 4100 nicolapapp 'bug fix, thumb nails are unsigned integers, and exceeded 2^31, so I changed their size to Long' (user: nicolapapp)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4061 CGDogan 'Don't fail on non-4:4:4 JPEG' (user: CGDogan)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3898 melissalinkert 'InCell 1000/2000 field count and plane metadata fixes' (user: melissalinkert)
  - PR 3872 arvequina 'New codec integration Jetraw' (user: arvequina)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (user: dgault)
  - PR 3680 iwbh15 'Performance increase in writeIFD' (user: iwbh15)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (user: dgault)
Already up-to-date.

Repository: ome/ome-codecs
Excluded PRs:
  - PR 24 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (user: dependabot[bot])
  - PR 21 dgault 'Replace one-jai with jai-imageio-jpeg2000' (user: dgault)
Already up-to-date.

Repository: ome/ome-common-java
Excluded PRs:
  - PR 72 dependabot[bot] 'Bump testng from 6.8 to 7.7.0' (user: dependabot[bot])
  - PR 59 NicoKiaru 'adds AverageImageScaler implementation of IImageScaler' (user: NicoKiaru)
Already up-to-date.

Repository: ome/ome-jai
Already up-to-date.

Repository: ome/ome-mdbtools
Already up-to-date.

Repository: ome/ome-metakit
Already up-to-date.

Repository: ome/ome-model
Excluded PRs:
  - PR 180 joshmoore 'xsd-fu: templates for linkml generation' (user: joshmoore)
  - PR 174 jburel 'Remove docs' (user: jburel)
Already up-to-date.

Repository: ome/ome-poi
Already up-to-date.

Repository: ome/ome-stubs
Already up-to-date.

Generated by BIOFORMATS-push#1666 (https://latest-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/1666/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 9, 2025
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 9, 2025
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4196 melissalinkert 'DICOM: use FrameTimePointer to detect timelapse data' (label: exclude)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4195 WalkerKnapp 'Andor SIF: Support files larger than 4 GB and with non-fixed-size footers'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4255 zacsimile 'Add Hamamatsu DCIMG Reader'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'

Generated by BIOFORMATS-push#320 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/320/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Jan 9, 2025
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 674 dependabot[bot] 'Bump ome-metakit from `8f31242` to `ff62323`' (status: None)
  - PR 673 dependabot[bot] 'Bump ome-model from `59688e0` to `9920b4a`' (status: None)
  - PR 632 dependabot[bot] 'Bump ZarrReader from `9a9e662` to `b17c3ab`' (status: failure)
Already up to date.

Merged PRs:
  - PR 671 dependabot[bot] 'Bump ome-common-java from `429242f` to `2410006`'
  - PR 672 dependabot[bot] 'Bump bio-formats-documentation from `05b7bf5` to `6043187`'

Repository: ome/ZarrReader
Excluded PRs:
  - PR 95 dgault 'Class cast exception when parsing metadata' (status: failure)
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Updating 9a9e662..b17c3ab
Previously merged:
  - PR 93 dgault 'Bump version to 0.5.3-SNAPSHOT'
  - PR 92 dgault 'Bump version to 0.5.2'
  - PR 91 dgault 'Bump Bio-Formats version to 7.3.1'

Merged PRs:
  - PR 97 melissalinkert 'Bump Bio-Formats version to 8.0.1'
  - PR 100 dominikl 'Fix issues'

Repository: ome/bio-formats-documentation
Already up to date.

Merged PRs:
  - PR 404 dependabot[bot] 'Bump ch.qos.logback:logback-core from 1.3.14 to 1.3.15'

Repository: ome/bio-formats-examples
Already up to date.

Merged PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop'

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4196 melissalinkert 'DICOM: use FrameTimePointer to detect timelapse data' (label: exclude)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4195 WalkerKnapp 'Andor SIF: Support files larger than 4 GB and with non-fixed-size footers'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4255 zacsimile 'Add Hamamatsu DCIMG Reader'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'

Repository: ome/ome-codecs
Already up to date.

Repository: ome/ome-common-java
Already up to date.

Repository: ome/ome-jai
Already up to date.

Repository: ome/ome-mdbtools
Already up to date.

Repository: ome/ome-metakit
Updating 8f31242..ff62323
Previously merged:
  - PR 25 dependabot[bot] 'Bump ch.qos.logback:logback-core from 1.3.14 to 1.3.15'

Repository: ome/ome-model
Excluded PRs:
  - PR 198 DimitriPapadopoulos 'Apply ruff rules to Python scripts' (user: DimitriPapadopoulos)
Updating 59688e0c..9920b4ae
Previously merged:
  - PR 199 sbesson 'Deprecate ome_model package'
  - PR 200 DimitriPapadopoulos 'Delete dead code'

Merged PRs:
  - PR 196 DimitriPapadopoulos 'Fix typos found by codespell'
  - PR 201 DimitriPapadopoulos 'Add a trailing newline for POSIX compliance'

Repository: ome/ome-poi
Already up to date.

Repository: ome/ome-stubs
Already up to date.

Generated by BIOFORMATS-push#320 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/320/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 10, 2025
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 10, 2025
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4196 melissalinkert 'DICOM: use FrameTimePointer to detect timelapse data' (label: exclude)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4195 WalkerKnapp 'Andor SIF: Support files larger than 4 GB and with non-fixed-size footers'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4255 zacsimile 'Add Hamamatsu DCIMG Reader'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'

Generated by BIOFORMATS-push#321 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/321/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Jan 10, 2025
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 632 dependabot[bot] 'Bump ZarrReader from `9a9e662` to `b17c3ab`' (status: failure)
Already up to date.

Merged PRs:
  - PR 671 dependabot[bot] 'Bump ome-common-java from `429242f` to `2410006`'
  - PR 672 dependabot[bot] 'Bump bio-formats-documentation from `05b7bf5` to `6043187`'
  - PR 674 dependabot[bot] 'Bump ome-metakit from `8f31242` to `ff62323`'
  - PR 675 dependabot[bot] 'Bump ome-model from `59688e0` to `a69d8fe`'

Repository: ome/ZarrReader
Excluded PRs:
  - PR 95 dgault 'Class cast exception when parsing metadata' (status: failure)
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Updating 9a9e662..b17c3ab
Previously merged:
  - PR 93 dgault 'Bump version to 0.5.3-SNAPSHOT'
  - PR 92 dgault 'Bump version to 0.5.2'
  - PR 91 dgault 'Bump Bio-Formats version to 7.3.1'

Merged PRs:
  - PR 97 melissalinkert 'Bump Bio-Formats version to 8.0.1'
  - PR 100 dominikl 'Fix issues'

Repository: ome/bio-formats-documentation
Already up to date.

Merged PRs:
  - PR 404 dependabot[bot] 'Bump ch.qos.logback:logback-core from 1.3.14 to 1.3.15'

Repository: ome/bio-formats-examples
Already up to date.

Merged PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop'

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4196 melissalinkert 'DICOM: use FrameTimePointer to detect timelapse data' (label: exclude)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4195 WalkerKnapp 'Andor SIF: Support files larger than 4 GB and with non-fixed-size footers'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4255 zacsimile 'Add Hamamatsu DCIMG Reader'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'

Repository: ome/ome-codecs
Already up to date.

Repository: ome/ome-common-java
Already up to date.

Repository: ome/ome-jai
Already up to date.

Repository: ome/ome-mdbtools
Already up to date.

Repository: ome/ome-metakit
Already up to date.

Repository: ome/ome-model
Excluded PRs:
  - PR 198 DimitriPapadopoulos 'Apply ruff rules to Python scripts' (user: DimitriPapadopoulos)
Already up to date.

Repository: ome/ome-poi
Already up to date.

Repository: ome/ome-stubs
Already up to date.

Generated by BIOFORMATS-push#321 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/321/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 11, 2025
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 11, 2025
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4196 melissalinkert 'DICOM: use FrameTimePointer to detect timelapse data' (label: exclude)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4195 WalkerKnapp 'Andor SIF: Support files larger than 4 GB and with non-fixed-size footers'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4255 zacsimile 'Add Hamamatsu DCIMG Reader'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'
  - PR 4263 sbesson 'Bump logback version to 1.3.15'

Generated by BIOFORMATS-push#322 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/322/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Jan 11, 2025
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 632 dependabot[bot] 'Bump ZarrReader from `9a9e662` to `b17c3ab`' (status: failure)
Already up to date.

Merged PRs:
  - PR 671 dependabot[bot] 'Bump ome-common-java from `429242f` to `2410006`'
  - PR 672 dependabot[bot] 'Bump bio-formats-documentation from `05b7bf5` to `6043187`'
  - PR 674 dependabot[bot] 'Bump ome-metakit from `8f31242` to `ff62323`'
  - PR 675 dependabot[bot] 'Bump ome-model from `59688e0` to `a69d8fe`'

Repository: ome/ZarrReader
Excluded PRs:
  - PR 95 dgault 'Class cast exception when parsing metadata' (status: failure)
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Updating 9a9e662..b17c3ab
Previously merged:
  - PR 93 dgault 'Bump version to 0.5.3-SNAPSHOT'
  - PR 92 dgault 'Bump version to 0.5.2'
  - PR 91 dgault 'Bump Bio-Formats version to 7.3.1'

Merged PRs:
  - PR 97 melissalinkert 'Bump Bio-Formats version to 8.0.1'
  - PR 100 dominikl 'Fix issues'

Repository: ome/bio-formats-documentation
Already up to date.

Merged PRs:
  - PR 404 dependabot[bot] 'Bump ch.qos.logback:logback-core from 1.3.14 to 1.3.15'

Repository: ome/bio-formats-examples
Already up to date.

Merged PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop'
  - PR 133 sbesson 'Bump logback version to 1.3.15'

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4196 melissalinkert 'DICOM: use FrameTimePointer to detect timelapse data' (label: exclude)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4195 WalkerKnapp 'Andor SIF: Support files larger than 4 GB and with non-fixed-size footers'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4255 zacsimile 'Add Hamamatsu DCIMG Reader'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'
  - PR 4263 sbesson 'Bump logback version to 1.3.15'

Repository: ome/ome-codecs
Already up to date.

Repository: ome/ome-common-java
Already up to date.

Merged PRs:
  - PR 96 sbesson 'Bump logback-classic to 1.3.15'

Repository: ome/ome-jai
Already up to date.

Repository: ome/ome-mdbtools
Already up to date.

Repository: ome/ome-metakit
Already up to date.

Repository: ome/ome-model
Excluded PRs:
  - PR 198 DimitriPapadopoulos 'Apply ruff rules to Python scripts' (user: DimitriPapadopoulos)
Already up to date.

Merged PRs:
  - PR 203 sbesson 'Bump logback to version 1.3.15'

Repository: ome/ome-poi
Already up to date.

Repository: ome/ome-stubs
Already up to date.

Generated by BIOFORMATS-push#322 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/322/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 12, 2025
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 12, 2025
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4196 melissalinkert 'DICOM: use FrameTimePointer to detect timelapse data' (label: exclude)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4195 WalkerKnapp 'Andor SIF: Support files larger than 4 GB and with non-fixed-size footers'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4255 zacsimile 'Add Hamamatsu DCIMG Reader'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'
  - PR 4263 sbesson 'Bump logback version to 1.3.15'

Generated by BIOFORMATS-push#323 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/323/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Jan 12, 2025
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 632 dependabot[bot] 'Bump ZarrReader from `9a9e662` to `b17c3ab`' (status: failure)
Already up to date.

Merged PRs:
  - PR 671 dependabot[bot] 'Bump ome-common-java from `429242f` to `2410006`'
  - PR 672 dependabot[bot] 'Bump bio-formats-documentation from `05b7bf5` to `6043187`'
  - PR 674 dependabot[bot] 'Bump ome-metakit from `8f31242` to `ff62323`'
  - PR 675 dependabot[bot] 'Bump ome-model from `59688e0` to `a69d8fe`'

Repository: ome/ZarrReader
Excluded PRs:
  - PR 95 dgault 'Class cast exception when parsing metadata' (status: failure)
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Updating 9a9e662..b17c3ab
Previously merged:
  - PR 93 dgault 'Bump version to 0.5.3-SNAPSHOT'
  - PR 92 dgault 'Bump version to 0.5.2'
  - PR 91 dgault 'Bump Bio-Formats version to 7.3.1'

Merged PRs:
  - PR 97 melissalinkert 'Bump Bio-Formats version to 8.0.1'
  - PR 100 dominikl 'Fix issues'

Repository: ome/bio-formats-documentation
Already up to date.

Merged PRs:
  - PR 404 dependabot[bot] 'Bump ch.qos.logback:logback-core from 1.3.14 to 1.3.15'

Repository: ome/bio-formats-examples
Already up to date.

Merged PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop'
  - PR 133 sbesson 'Bump logback version to 1.3.15'

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4196 melissalinkert 'DICOM: use FrameTimePointer to detect timelapse data' (label: exclude)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4195 WalkerKnapp 'Andor SIF: Support files larger than 4 GB and with non-fixed-size footers'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4255 zacsimile 'Add Hamamatsu DCIMG Reader'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'
  - PR 4263 sbesson 'Bump logback version to 1.3.15'

Repository: ome/ome-codecs
Already up to date.

Repository: ome/ome-common-java
Already up to date.

Merged PRs:
  - PR 96 sbesson 'Bump logback-classic to 1.3.15'

Repository: ome/ome-jai
Already up to date.

Repository: ome/ome-mdbtools
Already up to date.

Repository: ome/ome-metakit
Already up to date.

Repository: ome/ome-model
Excluded PRs:
  - PR 198 DimitriPapadopoulos 'Apply ruff rules to Python scripts' (user: DimitriPapadopoulos)
Already up to date.

Merged PRs:
  - PR 203 sbesson 'Bump logback to version 1.3.15'

Repository: ome/ome-poi
Already up to date.

Repository: ome/ome-stubs
Already up to date.

Generated by BIOFORMATS-push#323 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/323/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 13, 2025
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 13, 2025
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4196 melissalinkert 'DICOM: use FrameTimePointer to detect timelapse data' (label: exclude)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4195 WalkerKnapp 'Andor SIF: Support files larger than 4 GB and with non-fixed-size footers'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4255 zacsimile 'Add Hamamatsu DCIMG Reader'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'
  - PR 4263 sbesson 'Bump logback version to 1.3.15'

Generated by BIOFORMATS-push#324 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/324/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Jan 13, 2025
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 632 dependabot[bot] 'Bump ZarrReader from `9a9e662` to `b17c3ab`' (status: failure)
Already up to date.

Merged PRs:
  - PR 671 dependabot[bot] 'Bump ome-common-java from `429242f` to `2410006`'
  - PR 672 dependabot[bot] 'Bump bio-formats-documentation from `05b7bf5` to `6043187`'
  - PR 674 dependabot[bot] 'Bump ome-metakit from `8f31242` to `ff62323`'
  - PR 675 dependabot[bot] 'Bump ome-model from `59688e0` to `a69d8fe`'

Repository: ome/ZarrReader
Excluded PRs:
  - PR 95 dgault 'Class cast exception when parsing metadata' (status: failure)
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Updating 9a9e662..b17c3ab
Previously merged:
  - PR 93 dgault 'Bump version to 0.5.3-SNAPSHOT'
  - PR 92 dgault 'Bump version to 0.5.2'
  - PR 91 dgault 'Bump Bio-Formats version to 7.3.1'

Merged PRs:
  - PR 97 melissalinkert 'Bump Bio-Formats version to 8.0.1'
  - PR 100 dominikl 'Fix issues'

Repository: ome/bio-formats-documentation
Already up to date.

Merged PRs:
  - PR 404 dependabot[bot] 'Bump ch.qos.logback:logback-core from 1.3.14 to 1.3.15'

Repository: ome/bio-formats-examples
Already up to date.

Merged PRs:
  - PR 69 dgault 'Add macro examples from OME 2020 NGFF workshop'
  - PR 133 sbesson 'Bump logback version to 1.3.15'

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4196 melissalinkert 'DICOM: use FrameTimePointer to detect timelapse data' (label: exclude)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4195 WalkerKnapp 'Andor SIF: Support files larger than 4 GB and with non-fixed-size footers'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4255 zacsimile 'Add Hamamatsu DCIMG Reader'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'
  - PR 4263 sbesson 'Bump logback version to 1.3.15'

Repository: ome/ome-codecs
Already up to date.

Repository: ome/ome-common-java
Already up to date.

Merged PRs:
  - PR 96 sbesson 'Bump logback-classic to 1.3.15'

Repository: ome/ome-jai
Already up to date.

Repository: ome/ome-mdbtools
Already up to date.

Repository: ome/ome-metakit
Already up to date.

Repository: ome/ome-model
Excluded PRs:
  - PR 198 DimitriPapadopoulos 'Apply ruff rules to Python scripts' (user: DimitriPapadopoulos)
Already up to date.

Merged PRs:
  - PR 203 sbesson 'Bump logback to version 1.3.15'

Repository: ome/ome-poi
Already up to date.

Repository: ome/ome-stubs
Already up to date.

Generated by BIOFORMATS-push#324 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/324/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 14, 2025
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 14, 2025
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Updating 2ffe82c..ce2663a
Previously merged:
  - PR 4263 sbesson 'Bump logback version to 1.3.15'
  - PR 4255 zacsimile 'Add Hamamatsu DCIMG Reader'

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'

Generated by BIOFORMATS-push#325 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/325/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Jan 14, 2025
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 632 dependabot[bot] 'Bump ZarrReader from `9a9e662` to `b17c3ab`' (status: failure)
Already up to date.

Repository: ome/ZarrReader
Excluded PRs:
  - PR 95 dgault 'Class cast exception when parsing metadata' (status: failure)
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Updating 9a9e662..b17c3ab
Previously merged:
  - PR 93 dgault 'Bump version to 0.5.3-SNAPSHOT'
  - PR 92 dgault 'Bump version to 0.5.2'
  - PR 91 dgault 'Bump Bio-Formats version to 7.3.1'

Merged PRs:
  - PR 97 melissalinkert 'Bump Bio-Formats version to 8.0.1'
  - PR 100 dominikl 'Fix issues'

Repository: ome/bio-formats-documentation
Already up to date.

Repository: ome/bio-formats-examples
Updating 02d0afb..51c7eb4
Previously merged:
  - PR 133 sbesson 'Bump logback version to 1.3.15'

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Updating 2ffe82cee8..ce2663a8f6
Previously merged:
  - PR 4263 sbesson 'Bump logback version to 1.3.15'
  - PR 4255 zacsimile 'Add Hamamatsu DCIMG Reader'

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'

Repository: ome/ome-codecs
Already up to date.

Repository: ome/ome-common-java
Already up to date.

Merged PRs:
  - PR 97 sbesson 'Remove NEWS.md'

Repository: ome/ome-jai
Already up to date.

Repository: ome/ome-mdbtools
Already up to date.

Repository: ome/ome-metakit
Already up to date.

Repository: ome/ome-model
Excluded PRs:
  - PR 198 DimitriPapadopoulos 'Apply ruff rules to Python scripts' (user: DimitriPapadopoulos)
Already up to date.

Merged PRs:
  - PR 204 sbesson 'Remove NEWS.md'

Repository: ome/ome-poi
Already up to date.

Repository: ome/ome-stubs
Already up to date.

Generated by BIOFORMATS-push#325 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/325/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 16, 2025
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 16, 2025
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'

Generated by BIOFORMATS-push#326 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/326/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Jan 16, 2025
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 632 dependabot[bot] 'Bump ZarrReader from `9a9e662` to `b17c3ab`' (status: failure)
Already up to date.

Repository: ome/ZarrReader
Excluded PRs:
  - PR 95 dgault 'Class cast exception when parsing metadata' (status: failure)
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Updating 9a9e662..b17c3ab
Previously merged:
  - PR 93 dgault 'Bump version to 0.5.3-SNAPSHOT'
  - PR 92 dgault 'Bump version to 0.5.2'
  - PR 91 dgault 'Bump Bio-Formats version to 7.3.1'

Merged PRs:
  - PR 97 melissalinkert 'Bump Bio-Formats version to 8.0.1'
  - PR 100 dominikl 'Fix issues'

Repository: ome/bio-formats-documentation
Already up to date.

Repository: ome/bio-formats-examples
Already up to date.

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4259 melissalinkert 'OIR: parse time step from TIMELAPSE axis when possible'

Repository: ome/ome-codecs
Already up to date.

Repository: ome/ome-common-java
Already up to date.

Repository: ome/ome-jai
Already up to date.

Repository: ome/ome-mdbtools
Already up to date.

Repository: ome/ome-metakit
Already up to date.

Merged PRs:
  - PR 26 sbesson 'Bump ome-common to 6.0.25'

Repository: ome/ome-model
Excluded PRs:
  - PR 198 DimitriPapadopoulos 'Apply ruff rules to Python scripts' (user: DimitriPapadopoulos)
Already up to date.

Merged PRs:
  - PR 205 sbesson 'Bump ome-common to 6.0.25'

Repository: ome/ome-poi
Already up to date.

Repository: ome/ome-stubs
Already up to date.

Generated by BIOFORMATS-push#326 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/326/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 17, 2025
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 17, 2025
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4265 sbesson 'Bump ome-common, ome-model and ome-metakit to their latest releases'

Generated by BIOFORMATS-push#327 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/327/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Jan 17, 2025
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 685 dependabot[bot] 'Bump ome-model from `a8e8fdf` to `092e635`' (status: None)
  - PR 632 dependabot[bot] 'Bump ZarrReader from `9a9e662` to `b17c3ab`' (status: failure)
Already up to date.

Merged PRs:
  - PR 683 dependabot[bot] 'Bump ome-metakit from `ff62323` to `1ba6cf1`'
  - PR 684 dependabot[bot] 'Bump bioformats from `ce2663a` to `a46ce93`'

Repository: ome/ZarrReader
Excluded PRs:
  - PR 95 dgault 'Class cast exception when parsing metadata' (status: failure)
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Updating 9a9e662..b17c3ab
Previously merged:
  - PR 93 dgault 'Bump version to 0.5.3-SNAPSHOT'
  - PR 92 dgault 'Bump version to 0.5.2'
  - PR 91 dgault 'Bump Bio-Formats version to 7.3.1'

Merged PRs:
  - PR 97 melissalinkert 'Bump Bio-Formats version to 8.0.1'
  - PR 100 dominikl 'Fix issues'

Repository: ome/bio-formats-documentation
Already up to date.

Repository: ome/bio-formats-examples
Already up to date.

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4265 sbesson 'Bump ome-common, ome-model and ome-metakit to their latest releases'

Repository: ome/ome-codecs
Already up to date.

Repository: ome/ome-common-java
Already up to date.

Repository: ome/ome-jai
Already up to date.

Repository: ome/ome-mdbtools
Already up to date.

Repository: ome/ome-metakit
Already up to date.

Repository: ome/ome-model
Excluded PRs:
  - PR 198 DimitriPapadopoulos 'Apply ruff rules to Python scripts' (user: DimitriPapadopoulos)
Updating a8e8fdf5..092e6353
Previously merged:
  - PR 205 sbesson 'Bump ome-common to 6.0.25'

Merged PRs:
  - PR 206 sbesson 'Remove deprecated ome_model Python package'

Repository: ome/ome-poi
Already up to date.

Repository: ome/ome-stubs
Already up to date.

Generated by BIOFORMATS-push#327 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/327/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 18, 2025
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 18, 2025
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Updating a46ce93..d752efc
Previously merged:
  - PR 4265 sbesson 'Bump ome-common, ome-model and ome-metakit to their latest releases'

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4266 sbesson 'CellSensReader: set the VSI file as the first of getUsedFiles'
  - PR 4267 sbesson 'FujiReader: ensure getCurrentFile is the first element of the used files list '

Generated by BIOFORMATS-push#328 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/328/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Jan 18, 2025
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 687 dependabot[bot] 'Bump ome-model from `092e635` to `7543f63`' (status: None)
  - PR 686 dependabot[bot] 'Bump bioformats from `a46ce93` to `d752efc`' (status: None)
  - PR 632 dependabot[bot] 'Bump ZarrReader from `9a9e662` to `b17c3ab`' (status: failure)
Already up to date.

Repository: ome/ZarrReader
Excluded PRs:
  - PR 95 dgault 'Class cast exception when parsing metadata' (status: failure)
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Updating 9a9e662..b17c3ab
Previously merged:
  - PR 93 dgault 'Bump version to 0.5.3-SNAPSHOT'
  - PR 92 dgault 'Bump version to 0.5.2'
  - PR 91 dgault 'Bump Bio-Formats version to 7.3.1'

Merged PRs:
  - PR 97 melissalinkert 'Bump Bio-Formats version to 8.0.1'
  - PR 100 dominikl 'Fix issues'

Conflicting PRs (not included):
  - PR 101 jburel 'Update action'

Repository: ome/bio-formats-documentation
Already up to date.

Repository: ome/bio-formats-examples
Already up to date.

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Updating a46ce931a4..d752efc2ee
Previously merged:
  - PR 4265 sbesson 'Bump ome-common, ome-model and ome-metakit to their latest releases'

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4266 sbesson 'CellSensReader: set the VSI file as the first of getUsedFiles'
  - PR 4267 sbesson 'FujiReader: ensure getCurrentFile is the first element of the used files list '

Repository: ome/ome-codecs
Already up to date.

Repository: ome/ome-common-java
Already up to date.

Repository: ome/ome-jai
Already up to date.

Repository: ome/ome-mdbtools
Already up to date.

Repository: ome/ome-metakit
Already up to date.

Repository: ome/ome-model
Excluded PRs:
  - PR 198 DimitriPapadopoulos 'Apply ruff rules to Python scripts' (user: DimitriPapadopoulos)
Updating 092e6353..7543f638
Previously merged:
  - PR 206 sbesson 'Remove deprecated ome_model Python package'

Repository: ome/ome-poi
Already up to date.

Repository: ome/ome-stubs
Already up to date.

Generated by BIOFORMATS-push#328 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/328/)
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 19, 2025
snoopycrimecop added a commit to snoopycrimecop/bioformats that referenced this issue Jan 19, 2025
Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4266 sbesson 'CellSensReader: set the VSI file as the first of getUsedFiles' (stage: draft)
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4267 sbesson 'FujiReader: ensure getCurrentFile is the first element of the used files list '

Generated by BIOFORMATS-push#329 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/329/)
snoopycrimecop added a commit to snoopycrimecop/bio-formats-build that referenced this issue Jan 19, 2025
Repository: ome/bio-formats-build
Excluded PRs:
  - PR 632 dependabot[bot] 'Bump ZarrReader from `9a9e662` to `b17c3ab`' (status: failure)
Already up to date.

Repository: ome/ZarrReader
Excluded PRs:
  - PR 95 dgault 'Class cast exception when parsing metadata' (status: failure)
  - PR 20 dgault 'ZarrReader: Use chunk API' (exclude comment)
Updating 9a9e662..5a00d73
Previously merged:
  - PR 97 melissalinkert 'Bump Bio-Formats version to 8.0.1'
  - PR 93 dgault 'Bump version to 0.5.3-SNAPSHOT'
  - PR 92 dgault 'Bump version to 0.5.2'
  - PR 91 dgault 'Bump Bio-Formats version to 7.3.1'

Merged PRs:
  - PR 100 dominikl 'Fix issues'
  - PR 102 jburel 'Jar with dependencies'

Repository: ome/bio-formats-documentation
Already up to date.

Repository: ome/bio-formats-examples
Already up to date.

Repository: openmicroscopy/bioformats
Excluded PRs:
  - PR 4266 sbesson 'CellSensReader: set the VSI file as the first of getUsedFiles' (stage: draft)
  - PR 4260 melissalinkert 'UpgradeChecker: more thorough check of upgrade check result and HTTP response code' (stage: draft)
  - PR 4254 melissalinkert 'Memoizer: ask any ImageReader instances to remove all but the current reader' (stage: draft)
  - PR 4092 NicoKiaru 'Commits an alternative Zeiss CZI Reader' (user: NicoKiaru)
  - PR 4000 XLEFReaderForBioformats 'Reworking LMSMetadata package and adding a new lif reader' (user: XLEFReaderForBioformats)
  - PR 3794 dgault 'Chunk API: Add new API and functionality for reading and writing chunks' (label: exclude)
  - PR 3618 dgault 'Memoizer: Persist caching to sub readers' (label: breaking)
Already up to date.

Merged PRs:
  - PR 4130 carandraug 'matlab/bfGetPlane.m: avoid use of makeDataArray2D when Octave (ome/bio-formats-octave-docker#29)'
  - PR 4243 melissalinkert 'Update IExtraMetadataWriter.setExtraMetadata(...) to accept an Object'
  - PR 4267 sbesson 'FujiReader: ensure getCurrentFile is the first element of the used files list '

Repository: ome/ome-codecs
Already up to date.

Repository: ome/ome-common-java
Already up to date.

Repository: ome/ome-jai
Already up to date.

Repository: ome/ome-mdbtools
Already up to date.

Repository: ome/ome-metakit
Already up to date.

Repository: ome/ome-model
Excluded PRs:
  - PR 198 DimitriPapadopoulos 'Apply ruff rules to Python scripts' (user: DimitriPapadopoulos)
Already up to date.

Repository: ome/ome-poi
Already up to date.

Repository: ome/ome-stubs
Already up to date.

Generated by BIOFORMATS-push#329 (https://merge-ci.openmicroscopy.org/jenkins/job/BIOFORMATS-push/329/)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants