@img/sharp-libvips-dev 1.2.2 → 1.2.4-rc.0

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 (67) hide show
  1. package/include/archive.h +2 -2
  2. package/include/archive_entry.h +1 -1
  3. package/include/expat.h +39 -25
  4. package/include/expat_config.h +9 -9
  5. package/include/expat_external.h +62 -61
  6. package/include/harfbuzz/hb-ot-layout.h +6 -0
  7. package/include/harfbuzz/hb-script-list.h +1 -1
  8. package/include/harfbuzz/hb-subset.h +5 -0
  9. package/include/harfbuzz/hb-version.h +3 -3
  10. package/include/jconfig.h +37 -14
  11. package/include/jerror.h +47 -42
  12. package/include/jmorecfg.h +21 -18
  13. package/include/jpeglib.h +216 -132
  14. package/include/librsvg-2.0/librsvg/rsvg-version.h +2 -2
  15. package/include/libxml2/libxml/HTMLparser.h +159 -101
  16. package/include/libxml2/libxml/HTMLtree.h +49 -74
  17. package/include/libxml2/libxml/SAX.h +8 -5
  18. package/include/libxml2/libxml/SAX2.h +18 -15
  19. package/include/libxml2/libxml/c14n.h +30 -29
  20. package/include/libxml2/libxml/catalog.h +47 -22
  21. package/include/libxml2/libxml/chvalid.h +52 -64
  22. package/include/libxml2/libxml/debugXML.h +18 -15
  23. package/include/libxml2/libxml/dict.h +22 -19
  24. package/include/libxml2/libxml/encoding.h +144 -111
  25. package/include/libxml2/libxml/entities.h +95 -75
  26. package/include/libxml2/libxml/globals.h +7 -4
  27. package/include/libxml2/libxml/hash.h +61 -64
  28. package/include/libxml2/libxml/list.h +59 -51
  29. package/include/libxml2/libxml/nanoftp.h +7 -4
  30. package/include/libxml2/libxml/nanohttp.h +10 -7
  31. package/include/libxml2/libxml/parser.h +1091 -563
  32. package/include/libxml2/libxml/parserInternals.h +167 -214
  33. package/include/libxml2/libxml/pattern.h +29 -31
  34. package/include/libxml2/libxml/relaxng.h +59 -58
  35. package/include/libxml2/libxml/schemasInternals.h +114 -268
  36. package/include/libxml2/libxml/schematron.h +59 -51
  37. package/include/libxml2/libxml/threads.h +19 -20
  38. package/include/libxml2/libxml/tree.h +873 -623
  39. package/include/libxml2/libxml/uri.h +21 -22
  40. package/include/libxml2/libxml/valid.h +169 -199
  41. package/include/libxml2/libxml/xinclude.h +24 -43
  42. package/include/libxml2/libxml/xlink.h +55 -51
  43. package/include/libxml2/libxml/xmlIO.h +127 -145
  44. package/include/libxml2/libxml/xmlautomata.h +66 -65
  45. package/include/libxml2/libxml/xmlerror.h +197 -94
  46. package/include/libxml2/libxml/xmlexports.h +20 -18
  47. package/include/libxml2/libxml/xmlmemory.h +44 -29
  48. package/include/libxml2/libxml/xmlmodule.h +14 -15
  49. package/include/libxml2/libxml/xmlreader.h +137 -131
  50. package/include/libxml2/libxml/xmlregexp.h +28 -31
  51. package/include/libxml2/libxml/xmlsave.h +81 -36
  52. package/include/libxml2/libxml/xmlschemas.h +61 -67
  53. package/include/libxml2/libxml/xmlschemastypes.h +60 -54
  54. package/include/libxml2/libxml/xmlstring.h +8 -9
  55. package/include/libxml2/libxml/xmlunicode.h +6 -3
  56. package/include/libxml2/libxml/xmlversion.h +44 -121
  57. package/include/libxml2/libxml/xmlwriter.h +97 -97
  58. package/include/libxml2/libxml/xpath.h +235 -232
  59. package/include/libxml2/libxml/xpathInternals.h +247 -277
  60. package/include/libxml2/libxml/xpointer.h +21 -17
  61. package/include/tiff.h +1 -0
  62. package/include/tiffconf.h +1 -1
  63. package/include/tiffio.h +23 -5
  64. package/include/tiffvers.h +4 -4
  65. package/include/vips/version.h +4 -4
  66. package/package.json +1 -1
  67. package/versions.json +9 -9
@@ -1,17 +1,21 @@
1
- /*
2
- * Summary: API to handle XML Pointers
3
- * Description: API to handle XML Pointers
4
- * Base implementation was made accordingly to
5
- * W3C Candidate Recommendation 7 June 2000
6
- * http://www.w3.org/TR/2000/CR-xptr-20000607
1
+ /**
2
+ * @file
3
+ *
4
+ * @brief XPointer framework and schemes
5
+ *
6
+ * API to evaluate XPointer expressions. The following schemes are
7
+ * supported:
8
+ *
9
+ * - element()
10
+ * - xmlns()
11
+ * - xpath1()
7
12
  *
8
- * Added support for the element() scheme described in:
9
- * W3C Proposed Recommendation 13 November 2002
10
- * http://www.w3.org/TR/2002/PR-xptr-element-20021113/
13
+ * xpointer() is an alias for the xpath1() scheme. The point and
14
+ * range extensions are not supported.
11
15
  *
12
- * Copy: See Copyright for the status of this software.
16
+ * @copyright See Copyright for the status of this software.
13
17
  *
14
- * Author: Daniel Veillard
18
+ * @author Daniel Veillard
15
19
  */
16
20
 
17
21
  #ifndef __XML_XPTR_H__
@@ -32,13 +36,13 @@ extern "C" {
32
36
  * Functions.
33
37
  */
34
38
  XML_DEPRECATED
35
- XMLPUBFUN xmlXPathContextPtr
36
- xmlXPtrNewContext (xmlDocPtr doc,
37
- xmlNodePtr here,
38
- xmlNodePtr origin);
39
- XMLPUBFUN xmlXPathObjectPtr
39
+ XMLPUBFUN xmlXPathContext *
40
+ xmlXPtrNewContext (xmlDoc *doc,
41
+ xmlNode *here,
42
+ xmlNode *origin);
43
+ XMLPUBFUN xmlXPathObject *
40
44
  xmlXPtrEval (const xmlChar *str,
41
- xmlXPathContextPtr ctx);
45
+ xmlXPathContext *ctx);
42
46
 
43
47
  #ifdef __cplusplus
44
48
  }
package/include/tiff.h CHANGED
@@ -216,6 +216,7 @@ typedef enum
216
216
  #define COMPRESSION_ZSTD 50000 /* ZSTD: WARNING not registered in Adobe-maintained registry */
217
217
  #define COMPRESSION_WEBP 50001 /* WEBP: WARNING not registered in Adobe-maintained registry */
218
218
  #define COMPRESSION_JXL 50002 /* JPEGXL: WARNING not registered in Adobe-maintained registry */
219
+ #define COMPRESSION_JXL_DNG_1_7 52546 /* JPEGXL from DNG 1.7 specification */
219
220
  #define TIFFTAG_PHOTOMETRIC 262 /* photometric interpretation */
220
221
  #define PHOTOMETRIC_MINISWHITE 0 /* min value is white */
221
222
  #define PHOTOMETRIC_MINISBLACK 1 /* min value is black */
@@ -90,7 +90,7 @@
90
90
  /* Support NeXT 2-bit RLE algorithm */
91
91
  #define NEXT_SUPPORT 1
92
92
 
93
- /* Support Old JPEG compresson (read contrib/ojpeg/README first! Compilation
93
+ /* Support Old JPEG compression (read contrib/ojpeg/README first! Compilation
94
94
  fails with unpatched IJG JPEG library) */
95
95
  /* #undef OJPEG_SUPPORT */
96
96
 
package/include/tiffio.h CHANGED
@@ -45,12 +45,14 @@ typedef struct tiff TIFF;
45
45
  * to pass tag types and values uses the types defined in
46
46
  * tiff.h directly.
47
47
  *
48
- * NB: ttag_t is unsigned int and not unsigned short because
48
+ * NB: ttag_t -> deprecated and replaced by uint32_t
49
+ * is unsigned int and not unsigned short because
49
50
  * ANSI C requires that the type before the ellipsis be a
50
51
  * promoted type (i.e. one of int, unsigned int, pointer,
51
52
  * or double) and because we defined pseudo-tags that are
52
53
  * outside the range of legal Aldus-assigned tags.
53
- * NB: tsize_t is signed and not unsigned because some functions
54
+ * NB: tsize_t -> deprecated and replaced by tmsize_t
55
+ * is signed and not unsigned because some functions
54
56
  * return -1.
55
57
  * NB: toff_t is not off_t for many reasons; TIFFs max out at
56
58
  * 32-bit file offsets, and BigTIFF maxes out at 64-bit
@@ -66,10 +68,11 @@ typedef TIFF_SSIZE_T tmsize_t;
66
68
  #define TIFF_TMSIZE_T_MAX (tmsize_t)(SIZE_MAX >> 1)
67
69
 
68
70
  typedef uint64_t toff_t; /* file offset */
71
+ typedef uint32_t tdir_t; /* directory index */
72
+
69
73
  /* the following are deprecated and should be replaced by their defining
70
74
  counterparts */
71
75
  typedef uint32_t ttag_t; /* directory tag */
72
- typedef uint32_t tdir_t; /* directory index */
73
76
  typedef uint16_t tsample_t; /* sample number */
74
77
  typedef uint32_t tstrile_t; /* strip or tile number */
75
78
  typedef tstrile_t tstrip_t; /* strip number */
@@ -151,6 +154,18 @@ typedef struct
151
154
  float d_gammaB;
152
155
  } TIFFDisplay;
153
156
 
157
+ /* YCbCr->RGB support for TIFFYCbCrToRGBInit() and TIFFYCbCrToRGB()
158
+ * Attention:
159
+ * Functions TIFFYCbCrToRGBInit() and TIFFYCbCrToRGB() require a user provided
160
+ * large memory buffer, where several tables can be setup.
161
+ * The pointers to these tables are stored in the structure TIFFYCbCrToRGB,
162
+ * which is located at the beginning of the buffer. Thus, this memory has to be
163
+ * allocated as follows:
164
+ * TIFFYCbCrToRGB *ycbcr = (TIFFYCbCrToRGB *)_TIFFmalloc(
165
+ * TIFFroundup_32(sizeof(TIFFYCbCrToRGB), sizeof(long)) +
166
+ * 4 * 256 * sizeof(TIFFRGBValue) + 2 * 256 * sizeof(int) +
167
+ * 3 * 256 * sizeof(int32_t));
168
+ */
154
169
  typedef struct
155
170
  { /* YCbCr->RGB support */
156
171
  TIFFRGBValue *clamptab; /* range clamping table */
@@ -508,6 +523,9 @@ extern int TIFFReadRGBAImageOriented(TIFF *, uint32_t, uint32_t, uint32_t *,
508
523
  TIFFOpenOptionsSetMaxCumulatedMemAlloc(TIFFOpenOptions *opts,
509
524
  tmsize_t max_cumulated_mem_alloc);
510
525
  extern void
526
+ TIFFOpenOptionsSetWarnAboutUnknownTags(TIFFOpenOptions *opts,
527
+ int warn_about_unknown_tags);
528
+ extern void
511
529
  TIFFOpenOptionsSetErrorHandlerExtR(TIFFOpenOptions *opts,
512
530
  TIFFErrorHandlerExtR handler,
513
531
  void *errorhandler_user_data);
@@ -590,7 +608,7 @@ extern int TIFFReadRGBAImageOriented(TIFF *, uint32_t, uint32_t, uint32_t *,
590
608
  extern uint64_t TIFFGetStrileByteCountWithErr(TIFF *tif, uint32_t strile,
591
609
  int *pbErr);
592
610
 
593
- #ifdef LOGLUV_PUBLIC
611
+ #if LOGLUV_PUBLIC
594
612
  #define U_NEU 0.210526316
595
613
  #define V_NEU 0.473684211
596
614
  #define UVSCALE 410.
@@ -634,7 +652,7 @@ extern int TIFFReadRGBAImageOriented(TIFF *, uint32_t, uint32_t, uint32_t *,
634
652
  ****************************************************************************/
635
653
  typedef struct
636
654
  {
637
- ttag_t field_tag; /* field's tag */
655
+ uint32_t field_tag; /* field's tag */
638
656
  short field_readcount; /* read count/TIFF_VARIABLE/TIFF_SPP */
639
657
  short field_writecount; /* write count/TIFF_VARIABLE */
640
658
  TIFFDataType field_type; /* type of associated data */
@@ -8,7 +8,7 @@
8
8
  * Furthermore, configure_file variables of type "@VAR@" are
9
9
  * modified by clang-format and won't be substituted by CMake.
10
10
  */
11
- #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.7.0\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc."
11
+ #define TIFFLIB_VERSION_STR "LIBTIFF, Version 4.7.1\nCopyright (c) 1988-1996 Sam Leffler\nCopyright (c) 1991-1996 Silicon Graphics, Inc."
12
12
  /*
13
13
  * This define can be used in code that requires
14
14
  * compilation-related definitions specific to a
@@ -16,13 +16,13 @@
16
16
  * version checking should be done based on the
17
17
  * string returned by TIFFGetVersion.
18
18
  */
19
- #define TIFFLIB_VERSION 20240911
19
+ #define TIFFLIB_VERSION 20250911
20
20
 
21
21
  /* The following defines have been added in 4.5.0 */
22
22
  #define TIFFLIB_MAJOR_VERSION 4
23
23
  #define TIFFLIB_MINOR_VERSION 7
24
- #define TIFFLIB_MICRO_VERSION 0
25
- #define TIFFLIB_VERSION_STR_MAJ_MIN_MIC "4.7.0"
24
+ #define TIFFLIB_MICRO_VERSION 1
25
+ #define TIFFLIB_VERSION_STR_MAJ_MIN_MIC "4.7.1"
26
26
 
27
27
  /* Macro added in 4.5.0. Returns TRUE if the current libtiff version is
28
28
  * greater or equal to major.minor.micro
@@ -4,16 +4,16 @@
4
4
  #ifndef VIPS_VERSION_H
5
5
  #define VIPS_VERSION_H
6
6
 
7
- #define VIPS_VERSION "8.17.2"
8
- #define VIPS_VERSION_STRING "8.17.2"
7
+ #define VIPS_VERSION "8.17.3"
8
+ #define VIPS_VERSION_STRING "8.17.3"
9
9
  #define VIPS_MAJOR_VERSION (8)
10
10
  #define VIPS_MINOR_VERSION (17)
11
- #define VIPS_MICRO_VERSION (2)
11
+ #define VIPS_MICRO_VERSION (3)
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 (2)
16
+ #define VIPS_LIBRARY_REVISION (3)
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.2",
3
+ "version": "1.2.4-rc.0",
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
2
  "aom": "3.13.1",
3
- "archive": "3.8.1",
3
+ "archive": "3.8.2",
4
4
  "cairo": "1.18.4",
5
5
  "cgif": "0.5.0",
6
6
  "exif": "0.6.25",
7
- "expat": "2.7.1",
7
+ "expat": "2.7.3",
8
8
  "ffi": "3.5.2",
9
9
  "fontconfig": "2.17.1",
10
10
  "freetype": "2.14.1",
11
11
  "fribidi": "1.0.16",
12
- "glib": "2.86.0",
13
- "harfbuzz": "11.5.0",
12
+ "glib": "2.86.1",
13
+ "harfbuzz": "12.1.0",
14
14
  "heif": "1.20.2",
15
15
  "highway": "1.3.0",
16
16
  "imagequant": "2.4.1",
17
17
  "lcms": "2.17",
18
- "mozjpeg": "4.1.5",
18
+ "mozjpeg": "0826579",
19
19
  "pango": "1.57.0",
20
20
  "pixman": "0.46.4",
21
21
  "png": "1.6.50",
22
22
  "proxy-libintl": "0.5",
23
- "rsvg": "2.61.1",
23
+ "rsvg": "2.61.2",
24
24
  "spng": "0.7.4",
25
- "tiff": "4.7.0",
26
- "vips": "8.17.2",
25
+ "tiff": "4.7.1",
26
+ "vips": "8.17.3",
27
27
  "webp": "1.6.0",
28
- "xml2": "2.14.6",
28
+ "xml2": "2.15.1",
29
29
  "zlib-ng": "2.2.5"
30
30
  }