fonttools 4.58.5__cp39-cp39-macosx_10_9_universal2.whl → 4.59.1__cp39-cp39-macosx_10_9_universal2.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fonttools might be problematic. Click here for more details.

Files changed (67) hide show
  1. fontTools/__init__.py +1 -1
  2. fontTools/cffLib/CFF2ToCFF.py +40 -10
  3. fontTools/cffLib/transforms.py +11 -6
  4. fontTools/cu2qu/cu2qu.c +21 -6
  5. fontTools/cu2qu/cu2qu.cpython-39-darwin.so +0 -0
  6. fontTools/feaLib/builder.py +6 -1
  7. fontTools/feaLib/lexer.c +21 -6
  8. fontTools/feaLib/lexer.cpython-39-darwin.so +0 -0
  9. fontTools/merge/__init__.py +1 -1
  10. fontTools/misc/bezierTools.c +24 -9
  11. fontTools/misc/bezierTools.cpython-39-darwin.so +0 -0
  12. fontTools/misc/filesystem/__init__.py +68 -0
  13. fontTools/misc/filesystem/_base.py +134 -0
  14. fontTools/misc/filesystem/_copy.py +45 -0
  15. fontTools/misc/filesystem/_errors.py +54 -0
  16. fontTools/misc/filesystem/_info.py +75 -0
  17. fontTools/misc/filesystem/_osfs.py +164 -0
  18. fontTools/misc/filesystem/_path.py +67 -0
  19. fontTools/misc/filesystem/_subfs.py +92 -0
  20. fontTools/misc/filesystem/_tempfs.py +34 -0
  21. fontTools/misc/filesystem/_tools.py +34 -0
  22. fontTools/misc/filesystem/_walk.py +55 -0
  23. fontTools/misc/filesystem/_zipfs.py +204 -0
  24. fontTools/misc/psCharStrings.py +17 -2
  25. fontTools/misc/sstruct.py +2 -6
  26. fontTools/misc/xmlWriter.py +28 -1
  27. fontTools/pens/momentsPen.c +11 -4
  28. fontTools/pens/momentsPen.cpython-39-darwin.so +0 -0
  29. fontTools/pens/roundingPen.py +2 -2
  30. fontTools/qu2cu/qu2cu.c +23 -8
  31. fontTools/qu2cu/qu2cu.cpython-39-darwin.so +0 -0
  32. fontTools/subset/__init__.py +11 -11
  33. fontTools/ttLib/sfnt.py +2 -3
  34. fontTools/ttLib/tables/S__i_l_f.py +2 -2
  35. fontTools/ttLib/tables/T_S_I__1.py +2 -5
  36. fontTools/ttLib/tables/T_S_I__5.py +2 -2
  37. fontTools/ttLib/tables/_c_m_a_p.py +1 -1
  38. fontTools/ttLib/tables/_c_v_t.py +1 -2
  39. fontTools/ttLib/tables/_g_l_y_f.py +9 -10
  40. fontTools/ttLib/tables/_g_v_a_r.py +6 -3
  41. fontTools/ttLib/tables/_h_d_m_x.py +4 -4
  42. fontTools/ttLib/tables/_h_m_t_x.py +7 -3
  43. fontTools/ttLib/tables/_l_o_c_a.py +2 -2
  44. fontTools/ttLib/tables/_p_o_s_t.py +3 -4
  45. fontTools/ttLib/tables/otBase.py +2 -4
  46. fontTools/ttLib/tables/otTables.py +7 -12
  47. fontTools/ttLib/tables/sbixStrike.py +3 -3
  48. fontTools/ttLib/ttFont.py +7 -16
  49. fontTools/ttLib/woff2.py +10 -13
  50. fontTools/ufoLib/__init__.py +20 -25
  51. fontTools/ufoLib/glifLib.py +12 -17
  52. fontTools/ufoLib/validators.py +2 -4
  53. fontTools/unicodedata/__init__.py +2 -0
  54. fontTools/varLib/featureVars.py +8 -0
  55. fontTools/varLib/hvar.py +1 -1
  56. fontTools/varLib/instancer/__init__.py +65 -5
  57. fontTools/varLib/iup.c +23 -8
  58. fontTools/varLib/iup.cpython-39-darwin.so +0 -0
  59. fontTools/varLib/mutator.py +11 -0
  60. {fonttools-4.58.5.dist-info → fonttools-4.59.1.dist-info}/METADATA +42 -12
  61. {fonttools-4.58.5.dist-info → fonttools-4.59.1.dist-info}/RECORD +67 -55
  62. {fonttools-4.58.5.dist-info → fonttools-4.59.1.dist-info}/licenses/LICENSE.external +29 -0
  63. {fonttools-4.58.5.data → fonttools-4.59.1.data}/data/share/man/man1/ttx.1 +0 -0
  64. {fonttools-4.58.5.dist-info → fonttools-4.59.1.dist-info}/WHEEL +0 -0
  65. {fonttools-4.58.5.dist-info → fonttools-4.59.1.dist-info}/entry_points.txt +0 -0
  66. {fonttools-4.58.5.dist-info → fonttools-4.59.1.dist-info}/licenses/LICENSE +0 -0
  67. {fonttools-4.58.5.dist-info → fonttools-4.59.1.dist-info}/top_level.txt +0 -0
@@ -120,6 +120,7 @@ from fontTools.cffLib.specializer import (
120
120
  specializeCommands,
121
121
  generalizeCommands,
122
122
  )
123
+ from fontTools.cffLib.CFF2ToCFF import convertCFF2ToCFF
123
124
  from fontTools.varLib import builder
124
125
  from fontTools.varLib.mvar import MVAR_ENTRIES
125
126
  from fontTools.varLib.merger import MutatorMerger
@@ -136,6 +137,7 @@ from enum import IntEnum
136
137
  import logging
137
138
  import os
138
139
  import re
140
+ import io
139
141
  from typing import Dict, Iterable, Mapping, Optional, Sequence, Tuple, Union
140
142
  import warnings
141
143
 
@@ -643,7 +645,11 @@ def instantiateCFF2(
643
645
  # the Private dicts.
644
646
  #
645
647
  # Then prune unused things and possibly drop the VarStore if it's empty.
646
- # In which case, downgrade to CFF table if requested.
648
+ #
649
+ # If the downgrade parameter is True, no actual downgrading is done, but
650
+ # the function returns True if the VarStore was empty after instantiation,
651
+ # and hence a downgrade to CFF is possible. In all other cases it returns
652
+ # False.
647
653
 
648
654
  log.info("Instantiating CFF2 table")
649
655
 
@@ -882,9 +888,9 @@ def instantiateCFF2(
882
888
  del private.vstore
883
889
 
884
890
  if downgrade:
885
- from fontTools.cffLib.CFF2ToCFF import convertCFF2ToCFF
891
+ return True
886
892
 
887
- convertCFF2ToCFF(varfont)
893
+ return False
888
894
 
889
895
 
890
896
  def _instantiateGvarGlyph(
@@ -1377,6 +1383,52 @@ def _isValidAvarSegmentMap(axisTag, segmentMap):
1377
1383
  return True
1378
1384
 
1379
1385
 
1386
+ def downgradeCFF2ToCFF(varfont):
1387
+
1388
+ # Save these properties
1389
+ recalcTimestamp = varfont.recalcTimestamp
1390
+ recalcBBoxes = varfont.recalcBBoxes
1391
+
1392
+ # Disable them
1393
+ varfont.recalcTimestamp = False
1394
+ varfont.recalcBBoxes = False
1395
+
1396
+ # Save to memory, reload, downgrade and save again, reload.
1397
+ # We do this dance because the convertCFF2ToCFF changes glyph
1398
+ # names, so following save would fail if any other table was
1399
+ # loaded and referencing glyph names.
1400
+ #
1401
+ # The second save+load is unfortunate but also necessary.
1402
+
1403
+ stream = io.BytesIO()
1404
+ log.info("Saving CFF2 font to memory for downgrade")
1405
+ varfont.save(stream)
1406
+ stream.seek(0)
1407
+ varfont = TTFont(stream, recalcTimestamp=False, recalcBBoxes=False)
1408
+
1409
+ convertCFF2ToCFF(varfont)
1410
+
1411
+ stream = io.BytesIO()
1412
+ log.info("Saving downgraded CFF font to memory")
1413
+ varfont.save(stream)
1414
+ stream.seek(0)
1415
+ varfont = TTFont(stream, recalcTimestamp=False, recalcBBoxes=False)
1416
+
1417
+ # Uncomment, to see test all tables can be loaded. This fails without
1418
+ # the extra save+load above.
1419
+ """
1420
+ for tag in varfont.keys():
1421
+ print("Loading", tag)
1422
+ varfont[tag]
1423
+ """
1424
+
1425
+ # Restore them
1426
+ varfont.recalcTimestamp = recalcTimestamp
1427
+ varfont.recalcBBoxes = recalcBBoxes
1428
+
1429
+ return varfont
1430
+
1431
+
1380
1432
  def instantiateAvar(varfont, axisLimits):
1381
1433
  # 'axisLimits' dict must contain user-space (non-normalized) coordinates.
1382
1434
 
@@ -1665,7 +1717,9 @@ def instantiateVariableFont(
1665
1717
  instantiateVARC(varfont, normalizedLimits)
1666
1718
 
1667
1719
  if "CFF2" in varfont:
1668
- instantiateCFF2(varfont, normalizedLimits, downgrade=downgradeCFF2)
1720
+ downgradeCFF2 = instantiateCFF2(
1721
+ varfont, normalizedLimits, downgrade=downgradeCFF2
1722
+ )
1669
1723
 
1670
1724
  if "gvar" in varfont:
1671
1725
  instantiateGvar(varfont, normalizedLimits, optimize=optimize)
@@ -1720,6 +1774,12 @@ def instantiateVariableFont(
1720
1774
  # name table has been updated.
1721
1775
  setRibbiBits(varfont)
1722
1776
 
1777
+ if downgradeCFF2:
1778
+ origVarfont = varfont
1779
+ varfont = downgradeCFF2ToCFF(varfont)
1780
+ if inplace:
1781
+ origVarfont.__dict__ = varfont.__dict__.copy()
1782
+
1723
1783
  return varfont
1724
1784
 
1725
1785
 
@@ -1929,7 +1989,7 @@ def main(args=None):
1929
1989
  if limit is None or limit[0] == limit[2]
1930
1990
  }.issuperset(axis.axisTag for axis in varfont["fvar"].axes)
1931
1991
 
1932
- instantiateVariableFont(
1992
+ varfont = instantiateVariableFont(
1933
1993
  varfont,
1934
1994
  axisLimits,
1935
1995
  inplace=True,
fontTools/varLib/iup.c CHANGED
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.1.2 */
1
+ /* Generated by Cython 3.1.3 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -26,8 +26,8 @@ END: Cython Metadata */
26
26
  #elif PY_VERSION_HEX < 0x03080000
27
27
  #error Cython requires Python 3.8+.
28
28
  #else
29
- #define __PYX_ABI_VERSION "3_1_2"
30
- #define CYTHON_HEX_VERSION 0x030102F0
29
+ #define __PYX_ABI_VERSION "3_1_3"
30
+ #define CYTHON_HEX_VERSION 0x030103F0
31
31
  #define CYTHON_FUTURE_DIVISION 1
32
32
  /* CModulePreamble */
33
33
  #include <stddef.h>
@@ -390,6 +390,9 @@ END: Cython Metadata */
390
390
  enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) };
391
391
  #endif
392
392
  #endif
393
+ #ifndef CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME
394
+ #define CYTHON_LOCK_AND_GIL_DEADLOCK_AVOIDANCE_TIME 100
395
+ #endif
393
396
  #ifndef __has_attribute
394
397
  #define __has_attribute(x) 0
395
398
  #endif
@@ -2141,7 +2144,7 @@ static int __Pyx_IternextUnpackEndCheck(PyObject *retval, Py_ssize_t expected);
2141
2144
  static PyObject *__Pyx_PyLong_AbsNeg(PyObject *num);
2142
2145
  #define __Pyx_PyNumber_Absolute(x)\
2143
2146
  ((likely(PyLong_CheckExact(x))) ?\
2144
- (likely(__Pyx_PyLong_IsNonNeg(x)) ? (Py_INCREF(x), (x)) : __Pyx_PyLong_AbsNeg(x)) :\
2147
+ (likely(__Pyx_PyLong_IsNonNeg(x)) ? __Pyx_NewRef(x) : __Pyx_PyLong_AbsNeg(x)) :\
2145
2148
  PyNumber_Absolute(x))
2146
2149
  #else
2147
2150
  #define __Pyx_PyNumber_Absolute(x) PyNumber_Absolute(x)
@@ -14329,7 +14332,7 @@ static PyObject *__Pyx_PyLong_AbsNeg(PyObject *n) {
14329
14332
  PyObject *copy = _PyLong_Copy((PyLongObject*)n);
14330
14333
  if (likely(copy)) {
14331
14334
  #if PY_VERSION_HEX >= 0x030C00A7
14332
- ((PyLongObject*)copy)->long_value.lv_tag = ((PyLongObject*)copy)->long_value.lv_tag & ~_PyLong_SIGN_MASK;
14335
+ ((PyLongObject*)copy)->long_value.lv_tag ^= ((PyLongObject*)copy)->long_value.lv_tag & _PyLong_SIGN_MASK;
14333
14336
  #else
14334
14337
  __Pyx_SET_SIZE(copy, -Py_SIZE(copy));
14335
14338
  #endif
@@ -14942,6 +14945,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
14942
14945
  changed = 1;
14943
14946
  }
14944
14947
  #endif // CYTHON_METH_FASTCALL
14948
+ #if !CYTHON_COMPILING_IN_PYPY
14945
14949
  else if (strcmp(memb->name, "__module__") == 0) {
14946
14950
  PyObject *descr;
14947
14951
  assert(memb->type == T_OBJECT);
@@ -14956,11 +14960,13 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
14956
14960
  }
14957
14961
  changed = 1;
14958
14962
  }
14963
+ #endif // !CYTHON_COMPILING_IN_PYPY
14959
14964
  }
14960
14965
  memb++;
14961
14966
  }
14962
14967
  }
14963
14968
  #endif // !CYTHON_COMPILING_IN_LIMITED_API
14969
+ #if !CYTHON_COMPILING_IN_PYPY
14964
14970
  slot = spec->slots;
14965
14971
  while (slot && slot->slot && slot->slot != Py_tp_getset)
14966
14972
  slot++;
@@ -14992,6 +14998,7 @@ static int __Pyx_fix_up_extension_type_from_spec(PyType_Spec *spec, PyTypeObject
14992
14998
  ++getset;
14993
14999
  }
14994
15000
  }
15001
+ #endif // !CYTHON_COMPILING_IN_PYPY
14995
15002
  if (changed)
14996
15003
  PyType_Modified(type);
14997
15004
  #endif // PY_VERSION_HEX > 0x030900B1
@@ -15090,6 +15097,13 @@ try_unpack:
15090
15097
 
15091
15098
  /* PyObjectCallMethod0 */
15092
15099
  static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name) {
15100
+ #if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
15101
+ PyObject *args[1] = {obj};
15102
+ (void) __Pyx_PyObject_GetMethod;
15103
+ (void) __Pyx_PyObject_CallOneArg;
15104
+ (void) __Pyx_PyObject_CallNoArg;
15105
+ return PyObject_VectorcallMethod(method_name, args, 1 | PY_VECTORCALL_ARGUMENTS_OFFSET, NULL);
15106
+ #else
15093
15107
  PyObject *method = NULL, *result = NULL;
15094
15108
  int is_method = __Pyx_PyObject_GetMethod(obj, method_name, &method);
15095
15109
  if (likely(is_method)) {
@@ -15102,6 +15116,7 @@ static PyObject* __Pyx_PyObject_CallMethod0(PyObject* obj, PyObject* method_name
15102
15116
  Py_DECREF(method);
15103
15117
  bad:
15104
15118
  return result;
15119
+ #endif
15105
15120
  }
15106
15121
 
15107
15122
  /* ValidateBasesTuple */
@@ -15489,7 +15504,7 @@ bad:
15489
15504
  }
15490
15505
 
15491
15506
  /* CommonTypesMetaclass */
15492
- PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
15507
+ static PyObject* __pyx_CommonTypesMetaclass_get_module(CYTHON_UNUSED PyObject *self, CYTHON_UNUSED void* context) {
15493
15508
  return PyUnicode_FromString(__PYX_ABI_MODULE_NAME);
15494
15509
  }
15495
15510
  static PyGetSetDef __pyx_CommonTypesMetaclass_getset[] = {
@@ -17939,7 +17954,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyOb
17939
17954
  }
17940
17955
 
17941
17956
  /* PyObjectCallMethod1 */
17942
- #if !(CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000)
17957
+ #if !(CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000)))
17943
17958
  static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
17944
17959
  PyObject *result = __Pyx_PyObject_CallOneArg(method, arg);
17945
17960
  Py_DECREF(method);
@@ -17947,7 +17962,7 @@ static PyObject* __Pyx__PyObject_CallMethod1(PyObject* method, PyObject* arg) {
17947
17962
  }
17948
17963
  #endif
17949
17964
  static PyObject* __Pyx_PyObject_CallMethod1(PyObject* obj, PyObject* method_name, PyObject* arg) {
17950
- #if CYTHON_VECTORCALL && __PYX_LIMITED_VERSION_HEX >= 0x030C0000
17965
+ #if CYTHON_VECTORCALL && (__PYX_LIMITED_VERSION_HEX >= 0x030C0000 || (!CYTHON_COMPILING_IN_LIMITED_API && PY_VERSION_HEX >= 0x03090000))
17951
17966
  PyObject *args[2] = {obj, arg};
17952
17967
  (void) __Pyx_PyObject_GetMethod;
17953
17968
  (void) __Pyx_PyObject_CallOneArg;
Binary file
@@ -4,9 +4,16 @@ Instantiate a variation font. Run, eg:
4
4
  .. code-block:: sh
5
5
 
6
6
  $ fonttools varLib.mutator ./NotoSansArabic-VF.ttf wght=140 wdth=85
7
+
8
+ .. warning::
9
+ ``fontTools.varLib.mutator`` is deprecated in favor of :mod:`fontTools.varLib.instancer`
10
+ which provides equivalent full instancing and also supports partial instancing.
11
+ Please migrate CLI usage to ``fonttools varLib.instancer`` and API usage to
12
+ :func:`fontTools.varLib.instancer.instantiateVariableFont`.
7
13
  """
8
14
 
9
15
  from fontTools.misc.fixedTools import floatToFixedToFloat, floatToFixed
16
+ from fontTools.misc.loggingTools import deprecateFunction
10
17
  from fontTools.misc.roundTools import otRound
11
18
  from fontTools.pens.boundsPen import BoundsPen
12
19
  from fontTools.ttLib import TTFont, newTable
@@ -159,6 +166,10 @@ def interpolate_cff2_metrics(varfont, topDict, glyphOrder, loc):
159
166
  hmtx[gname] = tuple(entry)
160
167
 
161
168
 
169
+ @deprecateFunction(
170
+ "use fontTools.varLib.instancer.instantiateVariableFont instead "
171
+ "for either full or partial instancing",
172
+ )
162
173
  def instantiateVariableFont(varfont, location, inplace=False, overlap=True):
163
174
  """Generate a static instance from a variable TTFont and a dictionary
164
175
  defining the desired location along the variable font's axes.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fonttools
3
- Version: 4.58.5
3
+ Version: 4.59.1
4
4
  Summary: Tools to manipulate font files
5
5
  Home-page: http://github.com/fonttools/fonttools
6
6
  Author: Just van Rossum
@@ -31,7 +31,6 @@ Description-Content-Type: text/x-rst
31
31
  License-File: LICENSE
32
32
  License-File: LICENSE.external
33
33
  Provides-Extra: ufo
34
- Requires-Dist: fs<3,>=2.2.0; extra == "ufo"
35
34
  Provides-Extra: lxml
36
35
  Requires-Dist: lxml>=4.0; extra == "lxml"
37
36
  Provides-Extra: woff
@@ -57,7 +56,6 @@ Requires-Dist: skia-pathops>=0.5.0; extra == "pathops"
57
56
  Provides-Extra: repacker
58
57
  Requires-Dist: uharfbuzz>=0.23.0; extra == "repacker"
59
58
  Provides-Extra: all
60
- Requires-Dist: fs<3,>=2.2.0; extra == "all"
61
59
  Requires-Dist: lxml>=4.0; extra == "all"
62
60
  Requires-Dist: brotli>=1.0.1; platform_python_implementation == "CPython" and extra == "all"
63
61
  Requires-Dist: brotlicffi>=0.8.0; platform_python_implementation != "CPython" and extra == "all"
@@ -170,15 +168,6 @@ are required to unlock the extra features named "ufo", etc.
170
168
 
171
169
  *Extra:* ``lxml``
172
170
 
173
- - ``Lib/fontTools/ufoLib``
174
-
175
- Package for reading and writing UFO source files; it requires:
176
-
177
- * `fs <https://pypi.org/pypi/fs>`__: (aka ``pyfilesystem2``) filesystem
178
- abstraction layer.
179
-
180
- *Extra:* ``ufo``
181
-
182
171
  - ``Lib/fontTools/ttLib/woff2.py``
183
172
 
184
173
  Module to compress/decompress WOFF 2.0 web fonts; it requires:
@@ -271,6 +260,17 @@ are required to unlock the extra features named "ufo", etc.
271
260
 
272
261
  *Extra:* ``pathops``
273
262
 
263
+ - ``Lib/fontTools/ufoLib``
264
+
265
+ Package for reading and writing UFO source files; if available, it will use:
266
+
267
+ * `fs <https://pypi.org/pypi/fs>`__: (aka ``pyfilesystem2``) filesystem abstraction layer
268
+
269
+ for reading and writing UFOs to the local filesystem or zip files (.ufoz), instead of
270
+ the built-in ``fontTools.misc.filesystem`` package.
271
+ The reader and writer classes can in theory also accept any object compatible the
272
+ ``fs.base.FS`` interface, although not all have been tested.
273
+
274
274
  - ``Lib/fontTools/pens/cocoaPen.py`` and ``Lib/fontTools/pens/quartzPen.py``
275
275
 
276
276
  Pens for drawing glyphs with Cocoa ``NSBezierPath`` or ``CGPath`` require:
@@ -388,6 +388,36 @@ Have fun!
388
388
  Changelog
389
389
  ~~~~~~~~~
390
390
 
391
+ 4.59.1 (released 2025-08-14)
392
+ ----------------------------
393
+
394
+ - [featureVars] Update OS/2.usMaxContext if possible after addFeatureVariationsRaw (#3894).
395
+ - [vhmtx] raise TTLibError('not enough data...') when hmtx/vmtx are truncated (#3843, #3901).
396
+ - [feaLib] Combine duplicate features that have the same set of lookups regardless of the order in which those lookups are added to the feature (#3895).
397
+ - [varLib] Deprecate ``varLib.mutator`` in favor of ``varLib.instancer``. The latter
398
+ provides equivalent full (static font) instancing in addition to partial VF instancing.
399
+ CLI users should replace ``fonttools varLib.mutator`` with ``fonttools varLib.instancer``.
400
+ API users should migrate to ``fontTools.varLib.instancer.instantiateVariableFont`` (#2680).
401
+
402
+
403
+ 4.59.0 (released 2025-07-16)
404
+ ----------------------------
405
+
406
+ - Removed hard-dependency on pyfilesystem2 (``fs`` package) from ``fonttools[ufo]`` extra.
407
+ This is replaced by the `fontTools.misc.filesystem` package, a stdlib-only, drop-in
408
+ replacement for the subset of the pyfilesystem2's API used by ``fontTools.ufoLib``.
409
+ The latter should continue to work with the upstream ``fs`` (we even test with/without).
410
+ Clients who wish to continue using ``fs`` can do so by depending on it directly instead
411
+ of via the ``fonttools[ufo]`` extra (#3885, #3620).
412
+ - [xmlWriter] Replace illegal XML characters (e.g. control or non-characters) with "?"
413
+ when dumping to ttx (#3868, #71).
414
+ - [varLib.hvar] Fixed vertical metrics fields copy/pasta error (#3884).
415
+ - Micro optimizations in ttLib and sstruct modules (#3878, #3879).
416
+ - [unicodedata] Add Garay script to RTL_SCRIPTS (#3882).
417
+ - [roundingPen] Remove unreliable kwarg usage. Argument names aren’t consistent among
418
+ point pens’ ``.addComponent()`` implementations, in particular ``baseGlyphName``
419
+ vs ``glyphName`` (#3880).
420
+
391
421
  4.58.5 (released 2025-07-03)
392
422
  ----------------------------
393
423