@img/sharp-libvips-dev 1.2.1 → 1.2.2-rc.2

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.
Files changed (115) hide show
  1. package/include/aom/aom_decoder.h +1 -1
  2. package/include/aom/aom_encoder.h +2 -0
  3. package/include/aom/aomcx.h +106 -25
  4. package/include/ffi.h +3 -3
  5. package/include/freetype2/freetype/config/ftconfig.h +1 -1
  6. package/include/freetype2/freetype/config/ftheader.h +1 -1
  7. package/include/freetype2/freetype/config/ftoption.h +37 -12
  8. package/include/freetype2/freetype/config/ftstdlib.h +1 -1
  9. package/include/freetype2/freetype/config/integer-types.h +29 -2
  10. package/include/freetype2/freetype/config/mac-support.h +1 -1
  11. package/include/freetype2/freetype/config/public-macros.h +3 -3
  12. package/include/freetype2/freetype/freetype.h +51 -47
  13. package/include/freetype2/freetype/ftadvanc.h +1 -1
  14. package/include/freetype2/freetype/ftbbox.h +1 -1
  15. package/include/freetype2/freetype/ftbdf.h +1 -1
  16. package/include/freetype2/freetype/ftbitmap.h +1 -1
  17. package/include/freetype2/freetype/ftbzip2.h +1 -1
  18. package/include/freetype2/freetype/ftcache.h +1 -1
  19. package/include/freetype2/freetype/ftcid.h +1 -1
  20. package/include/freetype2/freetype/ftcolor.h +13 -4
  21. package/include/freetype2/freetype/ftdriver.h +3 -3
  22. package/include/freetype2/freetype/fterrdef.h +1 -1
  23. package/include/freetype2/freetype/fterrors.h +1 -1
  24. package/include/freetype2/freetype/ftfntfmt.h +1 -1
  25. package/include/freetype2/freetype/ftgasp.h +1 -1
  26. package/include/freetype2/freetype/ftglyph.h +1 -1
  27. package/include/freetype2/freetype/ftgxval.h +1 -1
  28. package/include/freetype2/freetype/ftgzip.h +1 -1
  29. package/include/freetype2/freetype/ftimage.h +6 -2
  30. package/include/freetype2/freetype/ftincrem.h +1 -1
  31. package/include/freetype2/freetype/ftlcdfil.h +1 -1
  32. package/include/freetype2/freetype/ftlist.h +1 -1
  33. package/include/freetype2/freetype/ftlogging.h +184 -0
  34. package/include/freetype2/freetype/ftlzw.h +1 -1
  35. package/include/freetype2/freetype/ftmac.h +1 -1
  36. package/include/freetype2/freetype/ftmm.h +159 -103
  37. package/include/freetype2/freetype/ftmodapi.h +1 -1
  38. package/include/freetype2/freetype/ftmoderr.h +1 -1
  39. package/include/freetype2/freetype/ftotval.h +1 -1
  40. package/include/freetype2/freetype/ftoutln.h +1 -1
  41. package/include/freetype2/freetype/ftparams.h +1 -1
  42. package/include/freetype2/freetype/ftpfr.h +1 -1
  43. package/include/freetype2/freetype/ftrender.h +1 -1
  44. package/include/freetype2/freetype/ftsizes.h +1 -1
  45. package/include/freetype2/freetype/ftsnames.h +1 -1
  46. package/include/freetype2/freetype/ftstroke.h +1 -1
  47. package/include/freetype2/freetype/ftsynth.h +1 -1
  48. package/include/freetype2/freetype/ftsystem.h +1 -1
  49. package/include/freetype2/freetype/fttrigon.h +1 -1
  50. package/include/freetype2/freetype/fttypes.h +1 -1
  51. package/include/freetype2/freetype/ftwinfnt.h +2 -3
  52. package/include/freetype2/freetype/otsvg.h +1 -1
  53. package/include/freetype2/freetype/t1tables.h +1 -1
  54. package/include/freetype2/freetype/ttnameid.h +129 -129
  55. package/include/freetype2/freetype/tttables.h +8 -5
  56. package/include/freetype2/freetype/tttags.h +1 -1
  57. package/include/freetype2/ft2build.h +1 -1
  58. package/include/glib-2.0/gio/gdbuserror.h +9 -8
  59. package/include/glib-2.0/gio/ginetaddress.h +12 -0
  60. package/include/glib-2.0/gio/gioenums.h +9 -2
  61. package/include/glib-2.0/glib/gstring.h +2 -2
  62. package/include/glib-2.0/glib/gunicode.h +1 -1
  63. package/include/glib-2.0/gobject/glib-types.h +1 -1
  64. package/include/glib-2.0/gobject/gparam.h +1 -1
  65. package/include/glib-2.0/gobject/gvalue.h +78 -35
  66. package/include/harfbuzz/hb-script-list.h +12 -0
  67. package/include/harfbuzz/hb-version.h +3 -3
  68. package/include/hwy/abort.h +2 -19
  69. package/include/hwy/aligned_allocator.h +11 -7
  70. package/include/hwy/auto_tune.h +504 -0
  71. package/include/hwy/base.h +425 -104
  72. package/include/hwy/cache_control.h +16 -0
  73. package/include/hwy/detect_compiler_arch.h +32 -1
  74. package/include/hwy/detect_targets.h +251 -67
  75. package/include/hwy/foreach_target.h +35 -0
  76. package/include/hwy/highway.h +185 -76
  77. package/include/hwy/nanobenchmark.h +1 -19
  78. package/include/hwy/ops/arm_neon-inl.h +969 -458
  79. package/include/hwy/ops/arm_sve-inl.h +1137 -359
  80. package/include/hwy/ops/emu128-inl.h +97 -11
  81. package/include/hwy/ops/generic_ops-inl.h +1222 -34
  82. package/include/hwy/ops/loongarch_lasx-inl.h +4664 -0
  83. package/include/hwy/ops/loongarch_lsx-inl.h +5933 -0
  84. package/include/hwy/ops/ppc_vsx-inl.h +306 -126
  85. package/include/hwy/ops/rvv-inl.h +546 -51
  86. package/include/hwy/ops/scalar-inl.h +77 -22
  87. package/include/hwy/ops/set_macros-inl.h +138 -17
  88. package/include/hwy/ops/shared-inl.h +50 -10
  89. package/include/hwy/ops/wasm_128-inl.h +137 -92
  90. package/include/hwy/ops/x86_128-inl.h +773 -214
  91. package/include/hwy/ops/x86_256-inl.h +712 -255
  92. package/include/hwy/ops/x86_512-inl.h +429 -753
  93. package/include/hwy/ops/x86_avx3-inl.h +501 -0
  94. package/include/hwy/per_target.h +2 -1
  95. package/include/hwy/profiler.h +622 -486
  96. package/include/hwy/targets.h +62 -20
  97. package/include/hwy/timer-inl.h +8 -160
  98. package/include/hwy/timer.h +170 -3
  99. package/include/hwy/x86_cpuid.h +81 -0
  100. package/include/libheif/heif_cxx.h +25 -5
  101. package/include/libheif/heif_regions.h +5 -5
  102. package/include/libheif/heif_version.h +2 -2
  103. package/include/librsvg-2.0/librsvg/rsvg-version.h +3 -3
  104. package/include/libxml2/libxml/valid.h +0 -3
  105. package/include/libxml2/libxml/xmlerror.h +1 -1
  106. package/include/libxml2/libxml/xmlversion.h +4 -4
  107. package/include/pango-1.0/pango/pango-enum-types.h +3 -0
  108. package/include/pango-1.0/pango/pango-features.h +3 -3
  109. package/include/pango-1.0/pango/pango-font.h +30 -0
  110. package/include/pango-1.0/pango/pango-version-macros.h +26 -0
  111. package/include/vips/connection.h +4 -4
  112. package/include/vips/version.h +4 -4
  113. package/include/zlib.h +3 -3
  114. package/package.json +1 -1
  115. package/versions.json +13 -13
@@ -43,7 +43,7 @@ typedef struct heif_region_item heif_region_item;
43
43
  enum heif_region_type
44
44
  {
45
45
  /**
46
- * Point gemetry.
46
+ * Point geometry.
47
47
  *
48
48
  * The region is represented by a single point.
49
49
  */
@@ -174,7 +174,7 @@ heif_error heif_context_get_region_item(const heif_context* context,
174
174
  * Get the item identifier for a region item.
175
175
  *
176
176
  * @param region_item the region item to query
177
- * @return the region item identifier (or -1 if the region_item is null)
177
+ * @return the region item identifier (or 0 if the region_item is null)
178
178
  */
179
179
  LIBHEIF_API
180
180
  heif_item_id heif_region_item_get_id(heif_region_item* region_item);
@@ -420,7 +420,7 @@ int heif_region_get_polygon_num_points(const heif_region* region);
420
420
  * The points are returned as pairs of X,Y coordinates, in the order X<sub>1</sub>,
421
421
  * Y<sub>1</sub>, X<sub>2</sub>, Y<sub>2</sub>, ..., X<sub>n</sub>, Y<sub>n</sub>.
422
422
  *
423
- * @param region the region to equery, which must be of type #heif_region_type_polygon
423
+ * @param region the region to query, which must be of type #heif_region_type_polygon
424
424
  * @param out_pts_array the array to return the points in, which must have twice as many entries as there are points
425
425
  * in the polygon.
426
426
  * @return heif_error_ok on success, or an error value indicating the problem on failure
@@ -442,7 +442,7 @@ heif_error heif_region_get_polygon_points(const heif_region* region,
442
442
  * The points are returned as pairs of X,Y coordinates, in the order X<sub>1</sub>,
443
443
  * Y<sub>1</sub>, X<sub>2</sub>, Y<sub>2</sub>, ..., X<sub>n</sub>, Y<sub>n</sub>.
444
444
  *
445
- * @param region the region to equery, which must be of type #heif_region_type_polygon
445
+ * @param region the region to query, which must be of type #heif_region_type_polygon
446
446
  * @param image_id the identifier for the image to transform / scale the region to
447
447
  * @param out_pts_array the array to return the points in, which must have twice as many entries as there are points
448
448
  * in the polygon.
@@ -484,7 +484,7 @@ int heif_region_get_polyline_num_points(const heif_region* region);
484
484
  * }
485
485
  * @endcode
486
486
  *
487
- * @param region the region to equery, which must be of type #heif_region_type_polyline
487
+ * @param region the region to query, which must be of type #heif_region_type_polyline
488
488
  * @param out_pts_array the array to return the points in, which must have twice as many entries as there are points
489
489
  * in the polyline.
490
490
  * @return heif_error_ok on success, or an error value indicating the problem on failure
@@ -28,10 +28,10 @@
28
28
  #define LIBHEIF_HEIF_VERSION_H
29
29
 
30
30
  /* Numeric representation of the version */
31
- #define LIBHEIF_NUMERIC_VERSION ((1<<24) | (20<<16) | (1<<8) | 0)
31
+ #define LIBHEIF_NUMERIC_VERSION ((1<<24) | (20<<16) | (2<<8) | 0)
32
32
 
33
33
  /* Version string */
34
- #define LIBHEIF_VERSION "1.20.1"
34
+ #define LIBHEIF_VERSION "1.20.2"
35
35
 
36
36
  #define LIBHEIF_PLUGIN_DIRECTORY "/target/lib/libheif"
37
37
 
@@ -6,8 +6,8 @@
6
6
  #define RSVG_VERSION_H
7
7
 
8
8
  #define LIBRSVG_MAJOR_VERSION (2)
9
- #define LIBRSVG_MINOR_VERSION (60)
10
- #define LIBRSVG_MICRO_VERSION (0)
11
- #define LIBRSVG_VERSION "2.60.0"
9
+ #define LIBRSVG_MINOR_VERSION (61)
10
+ #define LIBRSVG_MICRO_VERSION (1)
11
+ #define LIBRSVG_VERSION "2.61.1"
12
12
 
13
13
  #endif
@@ -139,7 +139,6 @@ typedef struct _xmlHashTable xmlRefTable;
139
139
  typedef xmlRefTable *xmlRefTablePtr;
140
140
 
141
141
  /* Notation */
142
- XML_DEPRECATED
143
142
  XMLPUBFUN xmlNotationPtr
144
143
  xmlAddNotationDecl (xmlValidCtxtPtr ctxt,
145
144
  xmlDtdPtr dtd,
@@ -204,7 +203,6 @@ XMLPUBFUN void
204
203
  #endif /* LIBXML_OUTPUT_ENABLED */
205
204
 
206
205
  /* Element */
207
- XML_DEPRECATED
208
206
  XMLPUBFUN xmlElementPtr
209
207
  xmlAddElementDecl (xmlValidCtxtPtr ctxt,
210
208
  xmlDtdPtr dtd,
@@ -240,7 +238,6 @@ XMLPUBFUN xmlEnumerationPtr
240
238
  xmlCopyEnumeration (xmlEnumerationPtr cur);
241
239
 
242
240
  /* Attribute */
243
- XML_DEPRECATED
244
241
  XMLPUBFUN xmlAttributePtr
245
242
  xmlAddAttributeDecl (xmlValidCtxtPtr ctxt,
246
243
  xmlDtdPtr dtd,
@@ -20,7 +20,7 @@ extern "C" {
20
20
  * Backward compatibility
21
21
  */
22
22
  #define initGenericErrorDefaultFunc(h) \
23
- xmlSetGenericErrorFunc(NULL, (h) ? *(h) : NULL)
23
+ xmlSetGenericErrorFunc(NULL, (h) ? *((xmlGenericErrorFunc *) (h)) : NULL)
24
24
 
25
25
  /**
26
26
  * xmlErrorLevel:
@@ -15,21 +15,21 @@
15
15
  *
16
16
  * the version string like "1.2.3"
17
17
  */
18
- #define LIBXML_DOTTED_VERSION "2.14.5"
18
+ #define LIBXML_DOTTED_VERSION "2.14.6"
19
19
 
20
20
  /**
21
21
  * LIBXML_VERSION:
22
22
  *
23
23
  * the version number: 1.2.3 value is 10203
24
24
  */
25
- #define LIBXML_VERSION 21405
25
+ #define LIBXML_VERSION 21406
26
26
 
27
27
  /**
28
28
  * LIBXML_VERSION_STRING:
29
29
  *
30
30
  * the version number string, 1.2.3 value is "10203"
31
31
  */
32
- #define LIBXML_VERSION_STRING "21405"
32
+ #define LIBXML_VERSION_STRING "21406"
33
33
 
34
34
  /**
35
35
  * LIBXML_VERSION_EXTRA:
@@ -44,7 +44,7 @@
44
44
  * Macro to check that the libxml version in use is compatible with
45
45
  * the version the software has been compiled against
46
46
  */
47
- #define LIBXML_TEST_VERSION xmlCheckVersion(21405);
47
+ #define LIBXML_TEST_VERSION xmlCheckVersion(21406);
48
48
 
49
49
  /**
50
50
  * LIBXML_THREAD_ENABLED:
@@ -64,6 +64,9 @@ GType pango_stretch_get_type (void) G_GNUC_CONST;
64
64
  PANGO_AVAILABLE_IN_ALL
65
65
  GType pango_font_mask_get_type (void) G_GNUC_CONST;
66
66
  #define PANGO_TYPE_FONT_MASK (pango_font_mask_get_type ())
67
+ PANGO_AVAILABLE_IN_ALL
68
+ GType pango_font_color_get_type (void) G_GNUC_CONST;
69
+ #define PANGO_TYPE_FONT_COLOR (pango_font_color_get_type ())
67
70
 
68
71
  /* enumerations from "pango-glyph.h" */
69
72
  PANGO_AVAILABLE_IN_ALL
@@ -2,9 +2,9 @@
2
2
  #define PANGO_FEATURES_H
3
3
 
4
4
  #define PANGO_VERSION_MAJOR 1
5
- #define PANGO_VERSION_MINOR 56
6
- #define PANGO_VERSION_MICRO 4
5
+ #define PANGO_VERSION_MINOR 57
6
+ #define PANGO_VERSION_MICRO 0
7
7
 
8
- #define PANGO_VERSION_STRING "1.56.4"
8
+ #define PANGO_VERSION_STRING "1.57.0"
9
9
 
10
10
  #endif /* PANGO_FEATURES_H */
@@ -202,6 +202,13 @@ typedef enum {
202
202
  *
203
203
  * Since: 1.56
204
204
  */
205
+ /**
206
+ * PANGO_FONT_MASK_COLOR:
207
+ *
208
+ * Font color is specified.
209
+ *
210
+ * Since: 1.57
211
+ */
205
212
  typedef enum {
206
213
  PANGO_FONT_MASK_FAMILY = 1 << 0,
207
214
  PANGO_FONT_MASK_STYLE = 1 << 1,
@@ -212,6 +219,7 @@ typedef enum {
212
219
  PANGO_FONT_MASK_GRAVITY = 1 << 6,
213
220
  PANGO_FONT_MASK_VARIATIONS = 1 << 7,
214
221
  PANGO_FONT_MASK_FEATURES = 1 << 8,
222
+ PANGO_FONT_MASK_COLOR = 1 << 9,
215
223
  } PangoFontMask;
216
224
 
217
225
  /* CSS scale factors (1.2 factor between each size) */
@@ -258,6 +266,22 @@ typedef enum {
258
266
  #define PANGO_SCALE_X_LARGE ((double)1.44)
259
267
  #define PANGO_SCALE_XX_LARGE ((double)1.728)
260
268
 
269
+ /**
270
+ * PangoFontColor:
271
+ * @PANGO_FONT_COLOR_FORBIDDEN: The font should not have color glyphs
272
+ * @PANGO_FONT_COLOR_REQUIRED: The font should have color glyphs
273
+ * @PANGO_FONT_COLOR_DONT_CARE: The font may or may not use color
274
+ *
275
+ * Specifies whether a font should or should not have color glyphs.
276
+ *
277
+ * Since: 1.57
278
+ */
279
+ typedef enum {
280
+ PANGO_FONT_COLOR_FORBIDDEN,
281
+ PANGO_FONT_COLOR_REQUIRED,
282
+ PANGO_FONT_COLOR_DONT_CARE,
283
+ } PangoFontColor;
284
+
261
285
  /*
262
286
  * PangoFontDescription
263
287
  */
@@ -345,6 +369,12 @@ void pango_font_description_set_features (PangoFontDescri
345
369
  PANGO_AVAILABLE_IN_1_42
346
370
  const char *pango_font_description_get_features (const PangoFontDescription *desc) G_GNUC_PURE;
347
371
 
372
+ PANGO_AVAILABLE_IN_1_57
373
+ void pango_font_description_set_color (PangoFontDescription *desc,
374
+ PangoFontColor color);
375
+ PANGO_AVAILABLE_IN_1_57
376
+ PangoFontColor pango_font_description_get_color (const PangoFontDescription *desc);
377
+
348
378
  PANGO_AVAILABLE_IN_ALL
349
379
  PangoFontMask pango_font_description_get_set_fields (const PangoFontDescription *desc) G_GNUC_PURE;
350
380
  PANGO_AVAILABLE_IN_ALL
@@ -322,6 +322,16 @@
322
322
  */
323
323
  #define PANGO_VERSION_1_56 (G_ENCODE_VERSION (1, 56))
324
324
 
325
+ /**
326
+ * PANGO_VERSION_1_57:
327
+ *
328
+ * A macro that evaluates to the 1.57 version of Pango, in a format
329
+ * that can be used by the C pre-processor.
330
+ *
331
+ * Since: 1.57
332
+ */
333
+ #define PANGO_VERSION_1_57 (G_ENCODE_VERSION (1, 57))
334
+
325
335
  /* evaluates to the current stable version; for development cycles,
326
336
  * this means the next stable target
327
337
  */
@@ -829,5 +839,21 @@
829
839
  # define PANGO_AVAILABLE_ENUMERATOR_IN_1_56
830
840
  #endif
831
841
 
842
+ #if PANGO_VERSION_MIN_REQUIRED >= PANGO_VERSION_1_57
843
+ # define PANGO_DEPRECATED_IN_1_57 PANGO_DEPRECATED
844
+ # define PANGO_DEPRECATED_IN_1_57_FOR(f) PANGO_DEPRECATED_FOR(f)
845
+ #else
846
+ # define PANGO_DEPRECATED_IN_1_57 _PANGO_EXTERN
847
+ # define PANGO_DEPRECATED_IN_1_57_FOR(f) _PANGO_EXTERN
848
+ #endif
849
+
850
+ #if PANGO_VERSION_MAX_ALLOWED < PANGO_VERSION_1_57
851
+ # define PANGO_AVAILABLE_IN_1_57 PANGO_UNAVAILABLE(1, 57)
852
+ # define PANGO_AVAILABLE_ENUMERATOR_IN_1_57 PANGO_UNAVAILABLE (1, 57)
853
+ #else
854
+ # define PANGO_AVAILABLE_IN_1_57 _PANGO_EXTERN
855
+ # define PANGO_AVAILABLE_ENUMERATOR_IN_1_57
856
+ #endif
857
+
832
858
  #endif /* __PANGO_VERSION_H__ */
833
859
 
@@ -321,6 +321,8 @@ typedef struct _VipsGInputStreamClass {
321
321
 
322
322
  } VipsGInputStreamClass;
323
323
 
324
+ VIPS_API
325
+ GType vips_g_input_stream_get_type(void);
324
326
  VIPS_API
325
327
  GInputStream *vips_g_input_stream_new_from_source(VipsSource *source);
326
328
 
@@ -343,10 +345,6 @@ GInputStream *vips_g_input_stream_new_from_source(VipsSource *source);
343
345
  (G_TYPE_INSTANCE_GET_CLASS((obj), \
344
346
  VIPS_TYPE_SOURCE_G_INPUT_STREAM, VipsSourceGInputStreamClass))
345
347
 
346
- /**
347
- * VipsSourceGInputStream: (copy-func g_object_ref)
348
- * (free-func g_object_unref)
349
- */
350
348
  typedef struct _VipsSourceGInputStream {
351
349
  VipsSource parent_instance;
352
350
 
@@ -366,6 +364,8 @@ typedef struct _VipsSourceGInputStreamClass {
366
364
 
367
365
  } VipsSourceGInputStreamClass;
368
366
 
367
+ VIPS_API
368
+ GType vips_source_g_input_stream_get_type(void);
369
369
  VIPS_API
370
370
  VipsSourceGInputStream *vips_source_g_input_stream_new(GInputStream *stream);
371
371
 
@@ -4,16 +4,16 @@
4
4
  #ifndef VIPS_VERSION_H
5
5
  #define VIPS_VERSION_H
6
6
 
7
- #define VIPS_VERSION "8.17.1"
8
- #define VIPS_VERSION_STRING "8.17.1"
7
+ #define VIPS_VERSION "8.17.2"
8
+ #define VIPS_VERSION_STRING "8.17.2"
9
9
  #define VIPS_MAJOR_VERSION (8)
10
10
  #define VIPS_MINOR_VERSION (17)
11
- #define VIPS_MICRO_VERSION (1)
11
+ #define VIPS_MICRO_VERSION (2)
12
12
 
13
13
  /* The ABI version, as used for library versioning.
14
14
  */
15
15
  #define VIPS_LIBRARY_CURRENT (61)
16
- #define VIPS_LIBRARY_REVISION (1)
16
+ #define VIPS_LIBRARY_REVISION (2)
17
17
  #define VIPS_LIBRARY_AGE (19)
18
18
 
19
19
  #define VIPS_CONFIG "enable debug: false\nenable deprecated: false\nenable modules: false\nenable C++ binding: true\nenable RAD load/save: false\nenable Analyze7 load: false\nenable PPM load/save: false\nenable GIF load: true\nFFTs with fftw: false\nSIMD support with libhwy: true\nICC profile support with lcms2: true\ndeflate compression with zlib: true\ntext rendering with pangocairo: true\nfont file support with fontconfig: true\nEXIF metadata support with libexif: true\nJPEG load/save with libjpeg: true\nJXL load/save with libjxl: false (dynamic module: false)\nJPEG2000 load/save with OpenJPEG: false\nPNG load/save with spng: true\nimage quantisation with imagequant: true\nTIFF load/save with libtiff-4: true\nimage pyramid save with libarchive: true\nHEIC/AVIF load/save with libheif: true (dynamic module: false)\nWebP load/save with libwebp: true\nPDF load with PDFium or Poppler: false (dynamic module: false)\nSVG load with librsvg-2.0: true\nEXR load with OpenEXR: false\nWSI load with OpenSlide: false (dynamic module: false)\nMatlab load with Matio: false\nNIfTI load/save with libnifti: false\nFITS load/save with cfitsio: false\nGIF save with cgif: true\nMagick load/save with MagickCore: false (dynamic module: false)"
package/include/zlib.h CHANGED
@@ -49,11 +49,11 @@
49
49
  extern "C" {
50
50
  #endif
51
51
 
52
- #define ZLIBNG_VERSION "2.2.4"
53
- #define ZLIBNG_VERNUM 0x020204F0L /* MMNNRRSM: major minor revision status modified */
52
+ #define ZLIBNG_VERSION "2.2.5"
53
+ #define ZLIBNG_VERNUM 0x020205F0L /* MMNNRRSM: major minor revision status modified */
54
54
  #define ZLIBNG_VER_MAJOR 2
55
55
  #define ZLIBNG_VER_MINOR 2
56
- #define ZLIBNG_VER_REVISION 4
56
+ #define ZLIBNG_VER_REVISION 5
57
57
  #define ZLIBNG_VER_STATUS F /* 0=devel, 1-E=beta, F=Release (DEPRECATED) */
58
58
  #define ZLIBNG_VER_STATUSH 0xF /* Hex values: 0=devel, 1-E=beta, F=Release */
59
59
  #define ZLIBNG_VER_MODIFIED 0 /* non-zero if modified externally from zlib-ng */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@img/sharp-libvips-dev",
3
- "version": "1.2.1",
3
+ "version": "1.2.2-rc.2",
4
4
  "description": "Header files and C++ sources for libvips and dependencies required when compiling sharp from source",
5
5
  "author": "Lovell Fuller <npm@lovell.info>",
6
6
  "homepage": "https://sharp.pixelplumbing.com",
package/versions.json CHANGED
@@ -1,30 +1,30 @@
1
1
  {
2
- "aom": "3.12.1",
2
+ "aom": "3.13.1",
3
3
  "archive": "3.8.1",
4
4
  "cairo": "1.18.4",
5
5
  "cgif": "0.5.0",
6
6
  "exif": "0.6.25",
7
7
  "expat": "2.7.1",
8
- "ffi": "3.5.1",
8
+ "ffi": "3.5.2",
9
9
  "fontconfig": "2.17.1",
10
- "freetype": "2.13.3",
10
+ "freetype": "2.14.1",
11
11
  "fribidi": "1.0.16",
12
- "glib": "2.85.1",
13
- "harfbuzz": "11.3.2",
14
- "heif": "1.20.1",
15
- "highway": "1.2.0",
12
+ "glib": "2.86.0",
13
+ "harfbuzz": "11.5.0",
14
+ "heif": "1.20.2",
15
+ "highway": "1.3.0",
16
16
  "imagequant": "2.4.1",
17
17
  "lcms": "2.17",
18
18
  "mozjpeg": "4.1.5",
19
- "pango": "1.56.4",
19
+ "pango": "1.57.0",
20
20
  "pixman": "0.46.4",
21
21
  "png": "1.6.50",
22
- "proxy-libintl": "0.4",
23
- "rsvg": "2.60.0",
22
+ "proxy-libintl": "0.5",
23
+ "rsvg": "2.61.1",
24
24
  "spng": "0.7.4",
25
25
  "tiff": "4.7.0",
26
- "vips": "8.17.1",
26
+ "vips": "8.17.2",
27
27
  "webp": "1.6.0",
28
- "xml2": "2.14.5",
29
- "zlib-ng": "2.2.4"
28
+ "xml2": "2.14.6",
29
+ "zlib-ng": "2.2.5"
30
30
  }