gedcom-ts 2026.6.2 → 2026.6.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes of gedcom-ts
4
4
 
5
+ ## [2026.6.3] - 2026-06-13
6
+
7
+ ### Changed
8
+
9
+ - **Import / export GEDZIP** : retour à **fflate** seul (`unzip` / `zip` asynchrones) — suppression de `@zip.js/zip.js`.
10
+
5
11
  ## [2026.6.2] - 2026-06-12
6
12
 
7
13
  ### Fixed
package/README.md CHANGED
@@ -28,7 +28,7 @@ A graphical demo showcasing the public API (import a `.ged` / `.zip`, browse the
28
28
  ## Package
29
29
 
30
30
  - NPM: [gedcom-ts](https://www.npmjs.com/package/gedcom-ts)
31
- - Current release **`2026.6.2`** — parsing de dates GEDCOM (mois en minuscules). Version format **CalVer** `AAAA.M.micro` (e.g. `2026.6.2` = June 2026, micro release). See [CHANGELOG.md](CHANGELOG.md).
31
+ - Current release **`2026.6.3`** — GEDZIP via fflate uniquement. Version format **CalVer** `AAAA.M.micro` (e.g. `2026.6.3` = June 2026, micro release). See [CHANGELOG.md](CHANGELOG.md).
32
32
  - Entry points:
33
33
  - **`gedcom-ts`** — import, model, edit layer, export, geocoding
34
34
  - **`gedcom-ts/booklet`** — PDF livret (`pdf-lib` en peerDependency, chargé depuis `node_modules`)
@@ -552,7 +552,7 @@ function exportGed(readGed: ReadGed) {
552
552
 
553
553
  #### `ExportGedzipFile`
554
554
 
555
- Writes a `.zip` (GEDZIP) bundling the GEDCOM and all attached `MultimediaFile` payloads. Compression is streamed per entry (`ZipWriter` + `BlobReader`) so large archives are not built entirely in memory.
555
+ Writes a `.zip` (GEDZIP) bundling the GEDCOM and all attached `MultimediaFile` payloads. Built with **fflate** (`zip` async, level 9).
556
556
 
557
557
  ```ts
558
558
  import { ExportGedzipFile, Person } from "gedcom-ts";
@@ -932,7 +932,7 @@ const primary = selectPrimaryNameVariant(person.nameVariants);
932
932
 
933
933
  #### `GEDCOM_LIBRARY_VERSION`
934
934
 
935
- CalVer string written in exported `HEAD`.`SOUR`.`VERS` (same value as the npm package version, e.g. `2026.6.2`).
935
+ CalVer string written in exported `HEAD`.`SOUR`.`VERS` (same value as the npm package version, e.g. `2026.6.3`).
936
936
 
937
937
  ```ts
938
938
  import { GEDCOM_LIBRARY_VERSION } from "gedcom-ts";