@img/sharp-libvips-dev 1.2.0-rc.2 → 1.2.0-rc.4

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 (41) hide show
  1. package/include/fontconfig/fontconfig.h +12 -2
  2. package/include/glib-2.0/girepository/girepository.h +3 -0
  3. package/include/glib-2.0/glib/gmarkup.h +4 -0
  4. package/include/libheif/heif.h +16 -2603
  5. package/include/libheif/heif_aux_images.h +182 -0
  6. package/include/libheif/heif_brands.h +373 -0
  7. package/include/libheif/heif_color.h +357 -0
  8. package/include/libheif/heif_context.h +329 -0
  9. package/include/libheif/heif_cxx.h +6 -6
  10. package/include/libheif/heif_decoding.h +162 -0
  11. package/include/libheif/heif_encoding.h +391 -0
  12. package/include/libheif/heif_entity_groups.h +60 -0
  13. package/include/libheif/heif_error.h +302 -0
  14. package/include/libheif/heif_image.h +352 -0
  15. package/include/libheif/heif_image_handle.h +120 -0
  16. package/include/libheif/heif_items.h +45 -45
  17. package/include/libheif/heif_library.h +216 -0
  18. package/include/libheif/heif_metadata.h +133 -0
  19. package/include/libheif/heif_plugin.h +53 -41
  20. package/include/libheif/heif_properties.h +73 -36
  21. package/include/libheif/heif_regions.h +95 -95
  22. package/include/libheif/heif_security.h +102 -0
  23. package/include/libheif/heif_sequences.h +577 -0
  24. package/include/libheif/heif_tai_timestamps.h +202 -0
  25. package/include/libheif/heif_tiling.h +137 -0
  26. package/include/libheif/heif_uncompressed.h +109 -0
  27. package/include/libheif/heif_version.h +2 -2
  28. package/include/libpng16/png.h +35 -16
  29. package/include/libpng16/pngconf.h +1 -1
  30. package/include/libpng16/pnglibconf.h +1 -1
  31. package/include/libxml2/libxml/parser.h +2 -2
  32. package/include/libxml2/libxml/xmlerror.h +2 -1
  33. package/include/libxml2/libxml/xmlversion.h +4 -4
  34. package/include/pango-1.0/pango/pango-attributes.h +1 -1
  35. package/include/pango-1.0/pango/pango-features.h +2 -2
  36. package/include/png.h +35 -16
  37. package/include/pngconf.h +1 -1
  38. package/include/pnglibconf.h +1 -1
  39. package/include/vips/version.h +4 -4
  40. package/package.json +1 -1
  41. package/versions.json +7 -7
package/include/png.h CHANGED
@@ -1,6 +1,6 @@
1
1
  /* png.h - header file for PNG reference library
2
2
  *
3
- * libpng version 1.6.48
3
+ * libpng version 1.6.50
4
4
  *
5
5
  * Copyright (c) 2018-2025 Cosmin Truta
6
6
  * Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson
@@ -14,7 +14,7 @@
14
14
  * libpng versions 0.89, June 1996, through 0.96, May 1997: Andreas Dilger
15
15
  * libpng versions 0.97, January 1998, through 1.6.35, July 2018:
16
16
  * Glenn Randers-Pehrson
17
- * libpng versions 1.6.36, December 2018, through 1.6.48, April 2025:
17
+ * libpng versions 1.6.36, December 2018, through 1.6.50, July 2025:
18
18
  * Cosmin Truta
19
19
  * See also "Contributing Authors", below.
20
20
  */
@@ -238,7 +238,7 @@
238
238
  * ...
239
239
  * 1.5.30 15 10530 15.so.15.30[.0]
240
240
  * ...
241
- * 1.6.48 16 10648 16.so.16.48[.0]
241
+ * 1.6.50 16 10650 16.so.16.50[.0]
242
242
  *
243
243
  * Henceforth the source version will match the shared-library major and
244
244
  * minor numbers; the shared-library major version number will be used for
@@ -274,7 +274,7 @@
274
274
  */
275
275
 
276
276
  /* Version information for png.h - this should match the version in png.c */
277
- #define PNG_LIBPNG_VER_STRING "1.6.48"
277
+ #define PNG_LIBPNG_VER_STRING "1.6.50"
278
278
  #define PNG_HEADER_VERSION_STRING " libpng version " PNG_LIBPNG_VER_STRING "\n"
279
279
 
280
280
  /* The versions of shared library builds should stay in sync, going forward */
@@ -285,7 +285,7 @@
285
285
  /* These should match the first 3 components of PNG_LIBPNG_VER_STRING: */
286
286
  #define PNG_LIBPNG_VER_MAJOR 1
287
287
  #define PNG_LIBPNG_VER_MINOR 6
288
- #define PNG_LIBPNG_VER_RELEASE 48
288
+ #define PNG_LIBPNG_VER_RELEASE 50
289
289
 
290
290
  /* This should be zero for a public release, or non-zero for a
291
291
  * development version.
@@ -316,7 +316,7 @@
316
316
  * From version 1.0.1 it is:
317
317
  * XXYYZZ, where XX=major, YY=minor, ZZ=release
318
318
  */
319
- #define PNG_LIBPNG_VER 10648 /* 1.6.48 */
319
+ #define PNG_LIBPNG_VER 10650 /* 1.6.50 */
320
320
 
321
321
  /* Library configuration: these options cannot be changed after
322
322
  * the library has been built.
@@ -426,7 +426,7 @@ extern "C" {
426
426
  /* This triggers a compiler error in png.c, if png.c and png.h
427
427
  * do not agree upon the version number.
428
428
  */
429
- typedef char* png_libpng_version_1_6_48;
429
+ typedef char* png_libpng_version_1_6_50;
430
430
 
431
431
  /* Basic control structions. Read libpng-manual.txt or libpng.3 for more info.
432
432
  *
@@ -3303,26 +3303,45 @@ PNG_EXPORT(245, int, png_image_write_to_memory, (png_imagep image, void *memory,
3303
3303
  * selected at run time.
3304
3304
  */
3305
3305
  #ifdef PNG_SET_OPTION_SUPPORTED
3306
+
3307
+ /* HARDWARE: ARM Neon SIMD instructions supported */
3306
3308
  #ifdef PNG_ARM_NEON_API_SUPPORTED
3307
- # define PNG_ARM_NEON 0 /* HARDWARE: ARM Neon SIMD instructions supported */
3309
+ # define PNG_ARM_NEON 0
3308
3310
  #endif
3309
- #define PNG_MAXIMUM_INFLATE_WINDOW 2 /* SOFTWARE: force maximum window */
3310
- #define PNG_SKIP_sRGB_CHECK_PROFILE 4 /* SOFTWARE: Check ICC profile for sRGB */
3311
+
3312
+ /* SOFTWARE: Force maximum window */
3313
+ #define PNG_MAXIMUM_INFLATE_WINDOW 2
3314
+
3315
+ /* SOFTWARE: Check ICC profile for sRGB */
3316
+ #define PNG_SKIP_sRGB_CHECK_PROFILE 4
3317
+
3318
+ /* HARDWARE: MIPS MSA SIMD instructions supported */
3311
3319
  #ifdef PNG_MIPS_MSA_API_SUPPORTED
3312
- # define PNG_MIPS_MSA 6 /* HARDWARE: MIPS Msa SIMD instructions supported */
3320
+ # define PNG_MIPS_MSA 6
3313
3321
  #endif
3322
+
3323
+ /* SOFTWARE: Disable Adler32 check on IDAT */
3314
3324
  #ifdef PNG_DISABLE_ADLER32_CHECK_SUPPORTED
3315
- # define PNG_IGNORE_ADLER32 8 /* SOFTWARE: disable Adler32 check on IDAT */
3325
+ # define PNG_IGNORE_ADLER32 8
3316
3326
  #endif
3327
+
3328
+ /* HARDWARE: PowerPC VSX SIMD instructions supported */
3317
3329
  #ifdef PNG_POWERPC_VSX_API_SUPPORTED
3318
- # define PNG_POWERPC_VSX 10 /* HARDWARE: PowerPC VSX SIMD instructions
3319
- * supported */
3330
+ # define PNG_POWERPC_VSX 10
3320
3331
  #endif
3332
+
3333
+ /* HARDWARE: MIPS MMI SIMD instructions supported */
3321
3334
  #ifdef PNG_MIPS_MMI_API_SUPPORTED
3322
- # define PNG_MIPS_MMI 12 /* HARDWARE: MIPS MMI SIMD instructions supported */
3335
+ # define PNG_MIPS_MMI 12
3336
+ #endif
3337
+
3338
+ /* HARDWARE: RISC-V RVV SIMD instructions supported */
3339
+ #ifdef PNG_RISCV_RVV_API_SUPPORTED
3340
+ # define PNG_RISCV_RVV 14
3323
3341
  #endif
3324
3342
 
3325
- #define PNG_OPTION_NEXT 14 /* Next option - numbers must be even */
3343
+ /* Next option - numbers must be even */
3344
+ #define PNG_OPTION_NEXT 16
3326
3345
 
3327
3346
  /* Return values: NOTE: there are four values and 'off' is *not* zero */
3328
3347
  #define PNG_OPTION_UNSET 0 /* Unset - defaults to off */
package/include/pngconf.h CHANGED
@@ -1,6 +1,6 @@
1
1
  /* pngconf.h - machine-configurable file for libpng
2
2
  *
3
- * libpng version 1.6.48
3
+ * libpng version 1.6.50
4
4
  *
5
5
  * Copyright (c) 2018-2025 Cosmin Truta
6
6
  * Copyright (c) 1998-2002,2004,2006-2016,2018 Glenn Randers-Pehrson
@@ -1,6 +1,6 @@
1
1
  /* pnglibconf.h - library build configuration */
2
2
 
3
- /* libpng version 1.6.48 */
3
+ /* libpng version 1.6.50 */
4
4
 
5
5
  /* Copyright (c) 2018-2025 Cosmin Truta */
6
6
  /* Copyright (c) 1998-2002,2004,2006-2018 Glenn Randers-Pehrson */
@@ -4,16 +4,16 @@
4
4
  #ifndef VIPS_VERSION_H
5
5
  #define VIPS_VERSION_H
6
6
 
7
- #define VIPS_VERSION "8.17.0"
8
- #define VIPS_VERSION_STRING "8.17.0"
7
+ #define VIPS_VERSION "8.17.1"
8
+ #define VIPS_VERSION_STRING "8.17.1"
9
9
  #define VIPS_MAJOR_VERSION (8)
10
10
  #define VIPS_MINOR_VERSION (17)
11
- #define VIPS_MICRO_VERSION (0)
11
+ #define VIPS_MICRO_VERSION (1)
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 (0)
16
+ #define VIPS_LIBRARY_REVISION (1)
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@img/sharp-libvips-dev",
3
- "version": "1.2.0-rc.2",
3
+ "version": "1.2.0-rc.4",
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
@@ -6,25 +6,25 @@
6
6
  "exif": "0.6.25",
7
7
  "expat": "2.7.1",
8
8
  "ffi": "3.5.1",
9
- "fontconfig": "2.16.2",
9
+ "fontconfig": "2.17.1",
10
10
  "freetype": "2.13.3",
11
11
  "fribidi": "1.0.16",
12
- "glib": "2.85.0",
12
+ "glib": "2.85.1",
13
13
  "harfbuzz": "11.2.1",
14
- "heif": "1.19.8",
14
+ "heif": "1.20.1",
15
15
  "highway": "1.2.0",
16
16
  "imagequant": "2.4.1",
17
17
  "lcms": "2.17",
18
18
  "mozjpeg": "4.1.5",
19
- "pango": "1.56.3",
19
+ "pango": "1.56.4",
20
20
  "pixman": "0.46.2",
21
- "png": "1.6.48",
21
+ "png": "1.6.50",
22
22
  "proxy-libintl": "0.4",
23
23
  "rsvg": "2.60.0",
24
24
  "spng": "0.7.4",
25
25
  "tiff": "4.7.0",
26
- "vips": "8.17.0",
26
+ "vips": "8.17.1",
27
27
  "webp": "1.5.0",
28
- "xml2": "2.14.3",
28
+ "xml2": "2.14.4",
29
29
  "zlib-ng": "2.2.4"
30
30
  }