@sourcemeta/jsonschema 15.11.0 → 16.0.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.
package/README.markdown CHANGED
@@ -157,7 +157,7 @@ Where `X.Y.Z` is replaced with the desired version. For example:
157
157
  uses: actions/checkout@v4
158
158
 
159
159
  - name: Install the JSON Schema CLI
160
- uses: sourcemeta/jsonschema@v15.11.0
160
+ uses: sourcemeta/jsonschema@v16.0.0
161
161
 
162
162
  # Then use as usual
163
163
  - run: jsonschema fmt path/to/schemas --check
@@ -199,6 +199,17 @@ Keep in mind that it is hard to provide binaries that work across GNU/Linux
199
199
  distributions. We conservatively target Ubuntu and Alpine, but you might need
200
200
  to build from source if your distribution of choice is different.
201
201
 
202
+ > [!NOTE]
203
+ > On GNU/Linux (and other non-macOS, non-Windows platforms), the CLI performs
204
+ > HTTP requests through your system's cURL library, which it loads at runtime.
205
+ > This keeps the binaries distribution-independent and makes them respect your
206
+ > system's TLS trust store. `libcurl` is present on most systems, but if it is
207
+ > missing you can install it through your package manager (for example
208
+ > `apt install libcurl4`, `dnf install libcurl`, or `apk add libcurl`). If it
209
+ > lives in a non-standard location, point the CLI at it by setting the
210
+ > `SOURCEMETA_JSONSCHEMA_CURL_SO` environment variable to the full path of
211
+ > `libcurl.so.4`.
212
+
202
213
  To verify the GPG signature of the checksums file:
203
214
 
204
215
  ```sh
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sourcemeta/jsonschema",
3
- "version": "15.11.0",
3
+ "version": "16.0.0",
4
4
  "description": "The CLI for working with JSON Schema. Covers formatting, linting, testing, and much more for both local development and CI/CD pipelines. By a member of the JSON Schema Technical Steering Committee",
5
5
  "main": "npm/main.js",
6
6
  "exports": {