@sythos/js_barcode_universal 1.5.9 → 1.5.10
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.md +46 -2
- package/bundle/sythos-barcode.esm.js +2 -2
- package/bundle/sythos-barcode.js +2 -2
- package/package.json +1 -1
- package/src/index.d.ts +1 -1
- package/src/index.js +1 -1
- package/src/ts/index.d.ts +1 -1
- package/src/ts/index.ts +1 -1
package/README.md
CHANGED
|
@@ -112,8 +112,8 @@ The `unpkg` and `jsdelivr` fields point at the IIFE bundle, so a CDN needs no in
|
|
|
112
112
|
|
|
113
113
|
```html
|
|
114
114
|
<script src="https://unpkg.com/@sythos/js_barcode_universal"></script>
|
|
115
|
-
<script src="https://unpkg.com/@sythos/js_barcode_universal@1.5.
|
|
116
|
-
<script src="https://cdn.jsdelivr.net/npm/@sythos/js_barcode_universal@1.5.
|
|
115
|
+
<script src="https://unpkg.com/@sythos/js_barcode_universal@1.5.10"></script>
|
|
116
|
+
<script src="https://cdn.jsdelivr.net/npm/@sythos/js_barcode_universal@1.5.10"></script>
|
|
117
117
|
```
|
|
118
118
|
|
|
119
119
|
Pin the version for anything you ship; the unpinned form resolves to `latest` and will move under
|
|
@@ -656,6 +656,50 @@ and reports which backend actually drew.
|
|
|
656
656
|
|
|
657
657
|
---
|
|
658
658
|
|
|
659
|
+
## Security automation
|
|
660
|
+
|
|
661
|
+
The repository is covered by GitHub's configured [CodeQL default setup](https://github.com/Sythos/JS_Barcode_Universal/security/code-scanning)
|
|
662
|
+
for JavaScript and TypeScript code-scanning analysis. GitHub manages the analysis schedule and
|
|
663
|
+
the security-events upload; this avoids running a duplicate advanced workflow alongside the
|
|
664
|
+
repository-level default setup.
|
|
665
|
+
|
|
666
|
+
[Dependabot](.github/dependabot.yml) checks the development TypeScript toolchain and GitHub Actions
|
|
667
|
+
references weekly. Updates are repository-development controls only; the published SDK remains
|
|
668
|
+
zero-dependency at runtime.
|
|
669
|
+
|
|
670
|
+
These security workflows report findings and propose maintenance updates. They do not replace
|
|
671
|
+
review of barcode conformance, licensing, patent status or release attestations.
|
|
672
|
+
|
|
673
|
+
---
|
|
674
|
+
|
|
675
|
+
## Build provenance and artifact attestations
|
|
676
|
+
|
|
677
|
+
The package publication workflow in [`.github/workflows/npm-publish.yml`](.github/workflows/npm-publish.yml)
|
|
678
|
+
uses npm provenance when publishing to the public npm registry. npm provenance and GitHub Artifact
|
|
679
|
+
Attestations are related but separate records:
|
|
680
|
+
|
|
681
|
+
- **npm provenance** is issued by npm for a package publication and links the published package to
|
|
682
|
+
its source repository and trusted build workflow;
|
|
683
|
+
- **GitHub Artifact Attestations** bind a build artifact, its digest and its build context to the
|
|
684
|
+
GitHub Actions workflow that produced it. They can be verified independently of the npm registry.
|
|
685
|
+
|
|
686
|
+
The release-specific attestation workflow is expected at
|
|
687
|
+
[`.github/workflows/release.yml`](.github/workflows/release.yml). Release assets must be verified
|
|
688
|
+
against this repository and their exact local file contents:
|
|
689
|
+
|
|
690
|
+
```sh
|
|
691
|
+
gh attestation verify path/to/release-asset.tgz -R Sythos/JS_Barcode_Universal
|
|
692
|
+
```
|
|
693
|
+
|
|
694
|
+
The same command can be used for any other attested release asset by replacing the path. An
|
|
695
|
+
attestation confirms build provenance; it is not an ISO barcode-conformance certificate, a patent
|
|
696
|
+
clearance, or a guarantee that the implementation is vulnerability-free.
|
|
697
|
+
|
|
698
|
+
Release automation validates the package version against the selected Git tag; it does not invent
|
|
699
|
+
or increment versions by itself. The current release is `1.5.10`.
|
|
700
|
+
|
|
701
|
+
---
|
|
702
|
+
|
|
659
703
|
## Licence
|
|
660
704
|
|
|
661
705
|
MIT © 2026 Sythos (https://www.sythos.net). Every source file carries the header.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Sythos Barcode Suite v1.5.
|
|
2
|
+
* Sythos Barcode Suite v1.5.10
|
|
3
3
|
*
|
|
4
4
|
* MIT License
|
|
5
5
|
*
|
|
@@ -17554,7 +17554,7 @@ function decodeStrict(image, options) {
|
|
|
17554
17554
|
return results[0];
|
|
17555
17555
|
}
|
|
17556
17556
|
/** Library version, matching package.json. */
|
|
17557
|
-
const VERSION = '1.5.
|
|
17557
|
+
const VERSION = '1.5.10';
|
|
17558
17558
|
|
|
17559
17559
|
__exports.listFormats = listFormats;
|
|
17560
17560
|
__exports.encode = encode;
|
package/bundle/sythos-barcode.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Sythos Barcode Suite v1.5.
|
|
2
|
+
* Sythos Barcode Suite v1.5.10
|
|
3
3
|
*
|
|
4
4
|
* MIT License
|
|
5
5
|
*
|
|
@@ -17555,7 +17555,7 @@ function decodeStrict(image, options) {
|
|
|
17555
17555
|
return results[0];
|
|
17556
17556
|
}
|
|
17557
17557
|
/** Library version, matching package.json. */
|
|
17558
|
-
const VERSION = '1.5.
|
|
17558
|
+
const VERSION = '1.5.10';
|
|
17559
17559
|
|
|
17560
17560
|
__exports.listFormats = listFormats;
|
|
17561
17561
|
__exports.encode = encode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sythos/js_barcode_universal",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.10",
|
|
4
4
|
"description": "Read and write barcodes in JavaScript and TypeScript with zero runtime dependencies. TypeScript sources compile to the JavaScript runtime and bundles. QR Code, Micro QR, rMQR, FrameQR Code, Aztec Code and Rune, PDF417 variants, GS1 DataBar Omnidirectional/Truncated, EAN supplements and one-dimensional formats.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Sythos",
|
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED
package/src/ts/index.d.ts
CHANGED
package/src/ts/index.ts
CHANGED