qpdf-compress 0.6.0 → 0.6.1

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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).
6
6
 
7
+ ## [0.6.1] - 2026-04-06
8
+
9
+ ### Fixed
10
+
11
+ - Statically link libstdc++ on Linux to fix `GLIBCXX_3.4.31 not found` errors on systems with older GCC
12
+
7
13
  ## [0.6.0] - 2026-04-04
8
14
 
9
15
  ### Changed
package/binding.gyp CHANGED
@@ -75,6 +75,7 @@
75
75
  "<(module_root_dir)/deps/qpdf/lib/libqpdf.a",
76
76
  "-lz",
77
77
  "<(module_root_dir)/deps/mozjpeg/lib/libjpeg.a",
78
+ "-static-libstdc++",
78
79
  "-flto",
79
80
  "-Wl,--gc-sections",
80
81
  "-Wl,-S",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qpdf-compress",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Native PDF compression for Node.js, powered by QPDF",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",