@d1g1tal/transportr 3.3.1 → 3.3.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
@@ -1,3 +1,43 @@
1
+ ## [3.3.3](https://github.com/D1g1talEntr0py/transportr/compare/v3.3.2...v3.3.3) (2026-04-14)
2
+
3
+ ### Bug Fixes
4
+
5
+ * **build:** restore IIFE format output (2698d3de6591c06bac77654e05dbad27d10ac2c9)
6
+ Replaces the accidentally disabled IIFE build configuration so the library can once again be consumed via standard script tags in a browser environment.
7
+
8
+
9
+ ### Miscellaneous Chores
10
+
11
+ * **deps-dev:** bump dev dependencies (f835b889d7f9af06823d4e8d6f96d9425916527a)
12
+ Updates several development dependencies to their latest versions, including `@typescript-eslint` packages, `@d1g1tal/tsbuild`, and `globals`. The lockfile is updated accordingly to reflect the new dependency tree and resolved versions.
13
+
14
+ ## [3.3.2](https://github.com/D1g1talEntr0py/transportr/compare/v3.3.1...v3.3.2) (2026-04-11)
15
+
16
+ ### Performance Improvements
17
+
18
+ * improve stream processing and options handling (da83c8fd54c83cb73e30cc82b12fa1fc74a92d77)
19
+ Enhances the handling of EventStream and NDJSON responses by introducing a robust `readDelimited` generator, correctly parsing Server-Sent Events according to spec. Refactors stream response handlers to use standard DOMParser where appropriate and properly manage object URLs safely with `withObjectURL`.
20
+
21
+ Optimizes request options processing to utilize native Headers and URLSearchParams constructors, avoiding deep merges where unnecessary.
22
+
23
+
24
+ ### Miscellaneous Chores
25
+
26
+ * format and config updates (78c2e2826a1aad447869b1ca25d2afc79dadbf08)
27
+ Updates `.gitignore` to ignore the `benchmarks/` directory. Adjusts ESLint config to no longer require JSDoc for arrow functions. Disables IIFE generation in `tsconfig.json`.
28
+
29
+
30
+ ### Tests
31
+
32
+ * add stream tests (58f0d8214aa8c35fb211e541d3946dcb6f23349b)
33
+ Adds thorough testing for the updated stream handling, including passing options as the first argument, stream error handling, and applying hooks.
34
+
35
+
36
+ ### Build System
37
+
38
+ * update dependencies (162a4cc3a35ce06df2cdb5ba858a942b7639fcaa)
39
+ Updates various dependencies and their types, including `@d1g1tal/subscribr`, `@d1g1tal/tsbuild`, `@types/node`, and others in the lockfile.
40
+
1
41
  ## [3.3.1](https://github.com/D1g1talEntr0py/transportr/compare/v3.3.0...v3.3.1) (2026-04-09)
2
42
 
3
43
  ### Bug Fixes