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

Bump fonttools from 3.13.1 to 4.29.1 in /tools #138

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Feb 3, 2022

Bumps fonttools from 3.13.1 to 4.29.1.

Release notes

Sourced from fonttools's releases.

4.29.1

  • [colorLib] Fixed rounding issue with radial gradient's start/end circles inside one another (#2521).
  • [freetypePen] Handle rotate/skew transform when auto-computing width/height of the buffer; raise PenError wen missing moveTo (#2517)

4.29.0

  • [ufoLib] Fixed illegal characters and expanded reserved filenames (#2506).
  • [COLRv1] Don't emit useless PaintColrLayers of lenght=1 in LayerListBuilder (#2513).
  • [ttx] Removed legacy waitForKeyPress method on Windows (#2509).
  • [pens] Added FreeTypePen that uses freetype-py and the pen protocol for rasterizating outline paths (#2494).
  • [unicodedata] Updated the script direction list to Unicode 14.0 (#2484).
    Bumped unicodedata2 dependency to 14.0 (#2499).
  • [psLib] Fixed type of fontName in suckfont (#2496).

4.28.5

  • [svgPathPen] Continuation of #2471: make sure all occurrences of str() are now replaced with user-defined ntos callable.
  • [merge] Refactored code into submodules, plus several bugfixes and improvements (#2473, #2475, #2476):
    • fixed duplicate-glyph-resolution GSUB-lookup generation code;
    • use tolerance in glyph comparison for empty glyph's width; ignore space of default ignorable glyphs;
    • downgrade duplicates-resolution missing-GSUB from assert to warn;
    • added --drop-tables option.

4.28.4

  • [merge] Merge GDEF marksets in Lookups properly (#2474).
  • [feaLib] Have fontTools feaLib script exit with error code when build fails (#2459)
  • [svgPathPen] Added ntos option to customize number formatting (e.g. rounding) (#2471).
  • [subset] Speed up subsetting of large CFF fonts (#2467).
  • [otTables] Speculatively promote lookups to extension to speed up compilation. If the offset to lookup N is too big to fit in a ushort, the offset to lookup N+1 is going to be too big as well, so we promote to extension all lookups from lookup N onwards (#2465).

4.28.3

  • [subset] Fixed bug while subsetting COLR table, whereby incomplete layer records pointing to missing glyphs were being retained leading to struct.error upon compiling. Make it so that glyf glyph closure, which follows the COLR glyph closure, does not influence the COLR table subsetting (#2461, #2462).
  • [docs] Fully document the cmap and glyf tables (#2454, #2457).
  • [colorLib.unbuilder] Fixed CLI by deleting no longer existing parameter (180bb1867).

4.28.2

  • [otlLib] Remove duplicates when building coverage (#2433).
  • [docs] Add interrogate configuration (#2443).
  • [docs] Remove comment about missing “start” optional argument to calcChecksum (#2448).
  • [cu2qu/cli] Adapt to the latest ufoLib2.
  • [subset] Support subsetting SVG table and remove it from the list of drop by default tables (#534).
  • [subset] add --pretty-svg option to pretty print SVG table contents (#2452).
  • [merge] Support merging CFF tables (CID-keyed CFF is still not supported) (#2447).
  • [merge] Support --output-file (#2447).
  • [docs] Split table docs into individual pages (#2444).
  • [feaLib] Forbid empty classes (#2446).
  • [docs] Improve documentation for fontTools.ttLib.ttFont (#2442).

4.28.1

  • [subset] Fixed AttributeError while traversing a color glyph's Paint graph when there is no LayerList, which is optional (#2441).

4.28.0

... (truncated)

Changelog

Sourced from fonttools's changelog.

4.29.1 (released 2022-02-01)

  • [colorLib] Fixed rounding issue with radial gradient's start/end circles inside one another (#2521).
  • [freetypePen] Handle rotate/skew transform when auto-computing width/height of the buffer; raise PenError wen missing moveTo (#2517)

4.29.0 (released 2022-01-24)

  • [ufoLib] Fixed illegal characters and expanded reserved filenames (#2506).
  • [COLRv1] Don't emit useless PaintColrLayers of lenght=1 in LayerListBuilder (#2513).
  • [ttx] Removed legacy waitForKeyPress method on Windows (#2509).
  • [pens] Added FreeTypePen that uses freetype-py and the pen protocol for rasterizating outline paths (#2494).
  • [unicodedata] Updated the script direction list to Unicode 14.0 (#2484). Bumped unicodedata2 dependency to 14.0 (#2499).
  • [psLib] Fixed type of fontName in suckfont (#2496).

4.28.5 (released 2021-12-19)

  • [svgPathPen] Continuation of #2471: make sure all occurrences of str() are now replaced with user-defined ntos callable.
  • [merge] Refactored code into submodules, plus several bugfixes and improvements: fixed duplicate-glyph-resolution GSUB-lookup generation code; use tolerance in glyph comparison for empty glyph's width; ignore space of default ignorable glyphs; downgrade duplicates-resolution missing-GSUB from assert to warn; added --drop-tables option (#2473, #2475, #2476).

4.28.4 (released 2021-12-15)

  • [merge] Merge GDEF marksets in Lookups properly (#2474).
  • [feaLib] Have fontTools feaLib script exit with error code when build fails (#2459)
  • [svgPathPen] Added ntos option to customize number formatting (e.g. rounding) (#2471).
  • [subset] Speed up subsetting of large CFF fonts (#2467).
  • [otTables] Speculatively promote lookups to extension to speed up compilation. If the offset to lookup N is too big to fit in a ushort, the offset to lookup N+1 is going to be too big as well, so we promote to extension all lookups from lookup N onwards (#2465).

4.28.3 (released 2021-12-03)

  • [subset] Fixed bug while subsetting COLR table, whereby incomplete layer records pointing to missing glyphs were being retained leading to struct.error upon compiling. Make it so that glyf glyph closure, which follows the COLR glyph closure, does not influence the COLR table subsetting (#2461, #2462).
  • [docs] Fully document the cmap and glyf tables (#2454, #2457).

... (truncated)

Commits
  • fb9dceb Release 4.29.1
  • b86be35 Update changelog [skip ci]
  • f3b4c5b Merge pull request #2521 from fonttools/fix-round-radial-gradient-circle
  • 5558ccd [colorLib.geometry] use math.isclose with relative tolerance to check circle ...
  • d1eca10 Merge pull request #2517 from takaakifuji/ftpen-transform-fix
  • 5f2c492 freetypePen: format code with Black
  • 48cbe7b freetypePen: prefer FT_CURVE_TAG enums
  • cd5c16f freetypePen: cosmetic changes
  • 9eadd90 freetypePen: fix bits for cubic on-curve
  • e1c3cdc freetypePen: raise PenError when missing moveTo
  • Additional commits viewable in compare view

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 [fonttools](https://github.com/fonttools/fonttools) from 3.13.1 to 4.29.1.
- [Release notes](https://github.com/fonttools/fonttools/releases)
- [Changelog](https://github.com/fonttools/fonttools/blob/main/NEWS.rst)
- [Commits](fonttools/fonttools@3.13.1...4.29.1)

---
updated-dependencies:
- dependency-name: fonttools
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Feb 3, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 11, 2022

Superseded by #167.

@dependabot dependabot bot closed this Mar 11, 2022
@dependabot dependabot bot deleted the dependabot/pip/tools/fonttools-4.29.1 branch March 11, 2022 11:14
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
0 participants