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

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 (51) hide show
  1. package/include/expat.h +37 -24
  2. package/include/expat_config.h +9 -9
  3. package/include/expat_external.h +62 -61
  4. package/include/libxml2/libxml/HTMLparser.h +159 -101
  5. package/include/libxml2/libxml/HTMLtree.h +49 -74
  6. package/include/libxml2/libxml/SAX.h +8 -5
  7. package/include/libxml2/libxml/SAX2.h +18 -15
  8. package/include/libxml2/libxml/c14n.h +30 -29
  9. package/include/libxml2/libxml/catalog.h +47 -22
  10. package/include/libxml2/libxml/chvalid.h +52 -64
  11. package/include/libxml2/libxml/debugXML.h +18 -15
  12. package/include/libxml2/libxml/dict.h +22 -19
  13. package/include/libxml2/libxml/encoding.h +144 -111
  14. package/include/libxml2/libxml/entities.h +95 -75
  15. package/include/libxml2/libxml/globals.h +7 -4
  16. package/include/libxml2/libxml/hash.h +61 -64
  17. package/include/libxml2/libxml/list.h +59 -51
  18. package/include/libxml2/libxml/nanoftp.h +7 -4
  19. package/include/libxml2/libxml/nanohttp.h +10 -7
  20. package/include/libxml2/libxml/parser.h +1091 -563
  21. package/include/libxml2/libxml/parserInternals.h +167 -214
  22. package/include/libxml2/libxml/pattern.h +29 -31
  23. package/include/libxml2/libxml/relaxng.h +59 -58
  24. package/include/libxml2/libxml/schemasInternals.h +114 -268
  25. package/include/libxml2/libxml/schematron.h +59 -51
  26. package/include/libxml2/libxml/threads.h +19 -20
  27. package/include/libxml2/libxml/tree.h +873 -623
  28. package/include/libxml2/libxml/uri.h +21 -22
  29. package/include/libxml2/libxml/valid.h +170 -199
  30. package/include/libxml2/libxml/xinclude.h +24 -43
  31. package/include/libxml2/libxml/xlink.h +55 -51
  32. package/include/libxml2/libxml/xmlIO.h +133 -151
  33. package/include/libxml2/libxml/xmlautomata.h +66 -65
  34. package/include/libxml2/libxml/xmlerror.h +197 -94
  35. package/include/libxml2/libxml/xmlexports.h +17 -19
  36. package/include/libxml2/libxml/xmlmemory.h +44 -29
  37. package/include/libxml2/libxml/xmlmodule.h +14 -15
  38. package/include/libxml2/libxml/xmlreader.h +137 -131
  39. package/include/libxml2/libxml/xmlregexp.h +28 -31
  40. package/include/libxml2/libxml/xmlsave.h +81 -36
  41. package/include/libxml2/libxml/xmlschemas.h +61 -67
  42. package/include/libxml2/libxml/xmlschemastypes.h +60 -54
  43. package/include/libxml2/libxml/xmlstring.h +8 -9
  44. package/include/libxml2/libxml/xmlunicode.h +6 -3
  45. package/include/libxml2/libxml/xmlversion.h +44 -121
  46. package/include/libxml2/libxml/xmlwriter.h +97 -97
  47. package/include/libxml2/libxml/xpath.h +235 -232
  48. package/include/libxml2/libxml/xpathInternals.h +247 -277
  49. package/include/libxml2/libxml/xpointer.h +21 -17
  50. package/package.json +1 -1
  51. package/versions.json +2 -2
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@img/sharp-libvips-dev",
3
- "version": "1.2.2-rc.2",
3
+ "version": "1.2.3",
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
@@ -4,7 +4,7 @@
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.2",
8
8
  "ffi": "3.5.2",
9
9
  "fontconfig": "2.17.1",
10
10
  "freetype": "2.14.1",
@@ -25,6 +25,6 @@
25
25
  "tiff": "4.7.0",
26
26
  "vips": "8.17.2",
27
27
  "webp": "1.6.0",
28
- "xml2": "2.14.6",
28
+ "xml2": "2.15.0",
29
29
  "zlib-ng": "2.2.5"
30
30
  }