Bump core from 3.4.1 to 3.5.0 #382

Merged
dependabot[bot] merged 1 commits from dependabot/gradle/com.google.zxing-core-3.5.0 into master 2022-05-02 08:04:19 +02:00
dependabot[bot] commented 2022-05-02 06:19:44 +02:00 (Migrated from github.com)

Bumps core from 3.4.1 to 3.5.0.

Release notes

Sourced from core's releases.

ZXing 3.5.0

See https://github.com/zxing/zxing/milestone/13?closed=1

Changelog

Sourced from core's changelog.

0.1 (09 Nov 2007)

  • Initial release

0.1.1 (11 Nov 2007)

  • Fixed bug decoding version 0 QR Codes
  • Now default zoom is 2.5x in Java ME client

0.1.2 (28 Nov 2007)

  • Issue 11 fixed: Build problems on Windows
  • Can now build "ZXingReaderBasic" which does not require JSR-234
  • Issue 14 fixed: release .zip builds into one directory

0.1.3 (7 Dec 2007)

  • Unit test for QR Code decoding
  • Added EAN-13 support
  • Now builds with class file format version 1.2 -- may solve some compatibility issues?
  • Fixed obfuscation step bug causing NoClassDefFoundError

0.1.4 (13 Dec 2007)

  • Added Blackberry client build script -- does not yet work
  • Big change to handling of content of barcodes:
    • com.google.zxing.client.result moved from core-ext to core
    • Rewritten for J2ME
    • core-ext removed
    • J2ME client now uses this code for better parsing/handling of results

0.2 (07 Jan 2008)

  • Few small bug fixes in AlignmentPatternFinder, MultiFormatReader (thank K. Kakima, Andreas)
  • LCDUIImageMonochromeBitmapSource now public
  • Notably improved decoding for Basic version -- Regular version still your best bet if you can run it though

0.2.1 (16 Jan 2008)

  • Slight tweaks and enhancements to decode and runtime performance of UPCDecoder
  • Added black-box test suites against a known set of images (Thanks to Enrique G. S. for additional images)

0.2.2 (22 Jan 2008)

  • Now includes junit locally to build tests
  • Fixed "MIDlet" name in MANIFEST.MF, which may solve some problems
  • Friendlier error message when barcode can't be found

0.3 (04 Feb 2008)

  • Major refactoring of 1D barcode decoding
  • Added support for UPC-E, EAN-8
  • Also added Code 39, Code 128 support -- may need refinement
  • Now any "game" key triggers photo capture
  • Workaround implemented for Nokias that use "capture://image" in MMAPI
  • UPC codes now trigger lookup to upcdatabase.com

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bumps [core](https://github.com/zxing/zxing) from 3.4.1 to 3.5.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/zxing/zxing/releases">core's releases</a>.</em></p> <blockquote> <h2>ZXing 3.5.0</h2> <ul> <li>Many edge-case fixes and improvements from <a href="https://bugs.chromium.org/p/oss-fuzz/issues/list">oss-fuzz</a></li> <li>Various improvements and fixes to Aztec, PDF417, DataMatrix decoding</li> <li>New 'minimal' encoding mode from <a href="https://github.com/AlexGeller1"><code>@​AlexGeller1</code></a> (<a href="https://github-redirect.dependabot.com/zxing/zxing/issues/1444">zxing/zxing#1444</a>)</li> </ul> <p>See <a href="https://github.com/zxing/zxing/milestone/13?closed=1">https://github.com/zxing/zxing/milestone/13?closed=1</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/zxing/zxing/blob/master/CHANGES">core's changelog</a>.</em></p> <blockquote> <p>0.1 (09 Nov 2007)</p> <ul> <li>Initial release</li> </ul> <p>0.1.1 (11 Nov 2007)</p> <ul> <li>Fixed bug decoding version 0 QR Codes</li> <li>Now default zoom is 2.5x in Java ME client</li> </ul> <p>0.1.2 (28 Nov 2007)</p> <ul> <li>Issue 11 fixed: Build problems on Windows</li> <li>Can now build &quot;ZXingReaderBasic&quot; which does not require JSR-234</li> <li>Issue 14 fixed: release .zip builds into one directory</li> </ul> <p>0.1.3 (7 Dec 2007)</p> <ul> <li>Unit test for QR Code decoding</li> <li>Added EAN-13 support</li> <li>Now builds with class file format version 1.2 -- may solve some compatibility issues?</li> <li>Fixed obfuscation step bug causing NoClassDefFoundError</li> </ul> <p>0.1.4 (13 Dec 2007)</p> <ul> <li>Added Blackberry client build script -- does not yet work</li> <li>Big change to handling of content of barcodes: <ul> <li>com.google.zxing.client.result moved from core-ext to core</li> <li>Rewritten for J2ME</li> <li>core-ext removed</li> <li>J2ME client now uses this code for better parsing/handling of results</li> </ul> </li> </ul> <p>0.2 (07 Jan 2008)</p> <ul> <li>Few small bug fixes in AlignmentPatternFinder, MultiFormatReader (thank K. Kakima, Andreas)</li> <li>LCDUIImageMonochromeBitmapSource now public</li> <li>Notably improved decoding for Basic version -- Regular version still your best bet if you can run it though</li> </ul> <p>0.2.1 (16 Jan 2008)</p> <ul> <li>Slight tweaks and enhancements to decode and runtime performance of UPCDecoder</li> <li>Added black-box test suites against a known set of images (Thanks to Enrique G. S. for additional images)</li> </ul> <p>0.2.2 (22 Jan 2008)</p> <ul> <li>Now includes junit locally to build tests</li> <li>Fixed &quot;MIDlet&quot; name in MANIFEST.MF, which may solve some problems</li> <li>Friendlier error message when barcode can't be found</li> </ul> <p>0.3 (04 Feb 2008)</p> <ul> <li>Major refactoring of 1D barcode decoding</li> <li>Added support for UPC-E, EAN-8</li> <li>Also added Code 39, Code 128 support -- may need refinement</li> <li>Now any &quot;game&quot; key triggers photo capture</li> <li>Workaround implemented for Nokias that use &quot;capture://image&quot; in MMAPI</li> <li>UPC codes now trigger lookup to upcdatabase.com</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/zxing/zxing/commit/eb76d0283c49c2b1c71ff2b438e42c0882a3b62b"><code>eb76d02</code></a> [maven-release-plugin] prepare release zxing-3.5.0</li> <li><a href="https://github.com/zxing/zxing/commit/89a56210cce3ceb28bd407c08fc5a246d6c05e67"><code>89a5621</code></a> Update Android modules for 3.5.0</li> <li><a href="https://github.com/zxing/zxing/commit/939632072f39fc9cbe8d7ad753bceef6371cd30b"><code>9396320</code></a> Minor dep updates</li> <li><a href="https://github.com/zxing/zxing/commit/fbeeae49f5b43771b6215162a6cf187752bda768"><code>fbeeae4</code></a> Update README.md: Add SCodes Qt/Qml wrapper library link (<a href="https://github-redirect.dependabot.com/zxing/zxing/issues/1518">#1518</a>)</li> <li><a href="https://github.com/zxing/zxing/commit/4f9f466f7de88bcb3d118b9560cefbdaf31771aa"><code>4f9f466</code></a> Update AndroidManifest.xml: set exported flag (<a href="https://github-redirect.dependabot.com/zxing/zxing/issues/1516">#1516</a>)</li> <li><a href="https://github.com/zxing/zxing/commit/5f20b8d095c15b30e4171602203569a8be1ff9a7"><code>5f20b8d</code></a> Replacing non ISO-8859-1 characters in PDF417 input with '?' (<a href="https://github-redirect.dependabot.com/zxing/zxing/issues/1514">#1514</a>)</li> <li><a href="https://github.com/zxing/zxing/commit/8265242784be6f5493f1ede4b1fd1432b1666a54"><code>8265242</code></a> Share the ECI string builder of the data matrix decoder with the PDF417 decod...</li> <li><a href="https://github.com/zxing/zxing/commit/ce1a1a53cfd19bbb49b81bdfa489342e1178e63a"><code>ce1a1a5</code></a> Add multi-eci decoding for PDF417 (<a href="https://github-redirect.dependabot.com/zxing/zxing/issues/1507">#1507</a>)</li> <li><a href="https://github.com/zxing/zxing/commit/92854d4a5553465ff42e68927f3a161bb8977e98"><code>92854d4</code></a> Add support for multi-eci encoding for PDF417 (<a href="https://github-redirect.dependabot.com/zxing/zxing/issues/1506">#1506</a>)</li> <li><a href="https://github.com/zxing/zxing/commit/4bd257e8c5577036b38352082bde646045bf95ee"><code>4bd257e</code></a> BitArray perf improvement, possibly addressing <a href="https://bugs.chromium.org/p/os">https://bugs.chromium.org/p/os</a>...</li> <li>Additional commits viewable in <a href="https://github.com/zxing/zxing/compare/zxing-3.4.1...zxing-3.5.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.google.zxing:core&package-manager=gradle&previous-version=3.4.1&new-version=3.5.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
Amab (Migrated from github.com) approved these changes 2022-05-02 08:04:14 +02:00
Sign in to join this conversation.
No description provided.