webring 1.3.5 → 1.4.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 +97 -0
- package/bun.lock +967 -0
- package/dist/fetch.d.ts.map +1 -1
- package/dist/fetch.js +5 -8
- package/dist/fetch.js.map +1 -1
- package/dist/types.d.ts +3 -21
- package/dist/types.d.ts.map +1 -1
- package/package.json +23 -22
- package/src/fetch.ts +5 -11
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,103 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.4.1](https://github.com/shepherdjerred/webring/compare/v1.4.0...v1.4.1) (2026-01-19)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* allow PR CI runs to execute in parallel ([67e8744](https://github.com/shepherdjerred/webring/commit/67e8744549135c07d810fe731731fb0463bea897))
|
|
14
|
+
* **deps:** update dependency @shepherdjerred/dagger-utils to ^0.5.0 ([#144](https://github.com/shepherdjerred/webring/issues/144)) ([df51479](https://github.com/shepherdjerred/webring/commit/df51479c06de3346e070af36ca5ac0db16d37111))
|
|
15
|
+
* **deps:** update dependency @shepherdjerred/dagger-utils to ^0.6.0 ([0d07e82](https://github.com/shepherdjerred/webring/commit/0d07e8263786b271495a68b0c9b9adb1cf169a3a))
|
|
16
|
+
* skip lifecycle scripts during npm publish in Dagger CI ([336100b](https://github.com/shepherdjerred/webring/commit/336100baaf908cbb7c8cab772932aef8a4ece33a))
|
|
17
|
+
* use bun publish instead of npm publish in Dagger CI ([3a090d1](https://github.com/shepherdjerred/webring/commit/3a090d101ebfc6d778c065805a4cfe74bb0cac35))
|
|
18
|
+
|
|
19
|
+
## [1.4.0](https://github.com/shepherdjerred/webring/compare/v1.3.8...v1.4.0) (2026-01-04)
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Features
|
|
23
|
+
|
|
24
|
+
* add automatic homelab deployment for docs ([#153](https://github.com/shepherdjerred/webring/issues/153)) ([7b7b365](https://github.com/shepherdjerred/webring/commit/7b7b365f6667266f353b81d24288a2bdcfe2b381))
|
|
25
|
+
* add Docker Hub authentication to CI workflow ([d6801a7](https://github.com/shepherdjerred/webring/commit/d6801a7a8eb83a99ccee1148efba7d39637dcd59))
|
|
26
|
+
* consolidate workflows into single Dagger call ([a36787e](https://github.com/shepherdjerred/webring/commit/a36787eb9b572a5898a844ad57212590149925bf))
|
|
27
|
+
* migrate docs from GitHub Pages to K8s ([1f9c1d5](https://github.com/shepherdjerred/webring/commit/1f9c1d573f1ff329456f43ceca2b20fb76f023a6))
|
|
28
|
+
* migrate docs from GitHub Pages to K8s ([e9c6510](https://github.com/shepherdjerred/webring/commit/e9c6510150d2fa701765399e830b89d02c3099ce))
|
|
29
|
+
* migrate to dagger ([b710a50](https://github.com/shepherdjerred/webring/commit/b710a508316a4ed4f0eb78a53a7b78fdc39fbe27))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
### Bug Fixes
|
|
33
|
+
|
|
34
|
+
* add [@dagger](https://github.com/dagger).io/dagger as file link to ./sdk for runtime resolution ([1262b32](https://github.com/shepherdjerred/webring/commit/1262b32c71d2ad0af69420e8aa523729ec78100b))
|
|
35
|
+
* add missing [@dagger](https://github.com/dagger).io/dagger dependency and remove yarn ([4e2b8f5](https://github.com/shepherdjerred/webring/commit/4e2b8f5e4524e1c381e1bc87b8c57d86dde9b21f))
|
|
36
|
+
* add npm overrides to ensure [@dagger](https://github.com/dagger).io/dagger resolution ([9afb7c0](https://github.com/shepherdjerred/webring/commit/9afb7c0a3bbb22b7eb4010462f35cac320b09125))
|
|
37
|
+
* add package.json to sdk directory for module resolution ([7ce7dfc](https://github.com/shepherdjerred/webring/commit/7ce7dfca979fb9571a9abad23b27d11bccd73562))
|
|
38
|
+
* add postinstall script to create index.js shim for [@dagger](https://github.com/dagger).io/dagger ([44ce92b](https://github.com/shepherdjerred/webring/commit/44ce92b757edf51bf293556a5f46ad101e03a777))
|
|
39
|
+
* avoid recursive symlinks in example test ([06a9893](https://github.com/shepherdjerred/webring/commit/06a9893afdea689a477e94075afe49acaa06495f))
|
|
40
|
+
* completely remove webring line from package.json instead of replacing ([486fe3c](https://github.com/shepherdjerred/webring/commit/486fe3cc9b79324ef2f7eaeef057bd68c274b7a7))
|
|
41
|
+
* configure vitest deps resolution for Bun compatibility ([3b11f29](https://github.com/shepherdjerred/webring/commit/3b11f298b41f16b51d83c270a53b6c8737b53c40))
|
|
42
|
+
* configure vitest to use forks pool for Bun compatibility ([d61553b](https://github.com/shepherdjerred/webring/commit/d61553b1eb535ad9f0bc8adbf8d79ef323f6a5b9))
|
|
43
|
+
* **dagger:** prevent symlink creation by modifying package.json before install ([d467084](https://github.com/shepherdjerred/webring/commit/d4670842dceb10ef1ffe720bf8e63f4e81dd06c7))
|
|
44
|
+
* **deps:** update npm ([062f2e2](https://github.com/shepherdjerred/webring/commit/062f2e221fcef299a16975753965703ae6143b39))
|
|
45
|
+
* install [@dagger](https://github.com/dagger).io/dagger from npm instead of local sdk ([7cea8e9](https://github.com/shepherdjerred/webring/commit/7cea8e9c4b22f6fc6f84639c9fe8f861467a800c))
|
|
46
|
+
* only export artifacts in prod mode ([d285067](https://github.com/shepherdjerred/webring/commit/d285067ed36ca3ea645617e31e138a9d9b3c18e1))
|
|
47
|
+
* preserve dist/ directory structure when copying webring package ([6d94114](https://github.com/shepherdjerred/webring/commit/6d941141e4f05354f69bd8a386ea9c3b0e979905))
|
|
48
|
+
* regenerate dagger module with dagger develop ([772beb5](https://github.com/shepherdjerred/webring/commit/772beb59b9ed8910dc285e68c259d861676100e3))
|
|
49
|
+
* remove double-default access on truncate-html import ([2ec053c](https://github.com/shepherdjerred/webring/commit/2ec053c7d4a6cc9ce186285b539bf2a009e4555b))
|
|
50
|
+
* remove double-default access on truncate-html import ([53cf8d4](https://github.com/shepherdjerred/webring/commit/53cf8d4a0e9f17e38d09dfd914906fb537fc966e))
|
|
51
|
+
* remove tsconfig paths to use npm [@dagger](https://github.com/dagger).io/dagger ([daa8417](https://github.com/shepherdjerred/webring/commit/daa84175797cdd40dc639308384d9fe1db257cdd))
|
|
52
|
+
* specify npm as package manager for Dagger runtime ([45b7ca5](https://github.com/shepherdjerred/webring/commit/45b7ca5dd65dc78721c2a0d09689b4cc4b378730))
|
|
53
|
+
* update CI workflow to use Bun instead of Node/npm ([b570030](https://github.com/shepherdjerred/webring/commit/b570030e180aa37b2c57d0ffb66ecb3bd5c937df))
|
|
54
|
+
* update dagger engine version to v0.19.8 ([02d2cc5](https://github.com/shepherdjerred/webring/commit/02d2cc57d229c668d1f64e637b090385b680d023))
|
|
55
|
+
* update snapshots ([faee9ab](https://github.com/shepherdjerred/webring/commit/faee9abb585c490312c9c6f0235083ddbaed126b))
|
|
56
|
+
* update test snapshots after truncate fix ([c556621](https://github.com/shepherdjerred/webring/commit/c556621f6053aa82fafcae8ff2b508abf0457ab4))
|
|
57
|
+
* use --legacy-peer-deps for npm ci in dagger module ([8c182a3](https://github.com/shepherdjerred/webring/commit/8c182a3c8a25ec29fd08ee7fe24b9cfa1540a856))
|
|
58
|
+
* use **/node_modules to prevent symlink recursion in Dagger ([db08167](https://github.com/shepherdjerred/webring/commit/db081672998b50014add9c3367ea5b2e6a8639c6))
|
|
59
|
+
* use Bun runtime for Dagger module to fix ESM resolution ([8debdae](https://github.com/shepherdjerred/webring/commit/8debdae9d9011bd0a8d83d48bfdd18c89a9deadc))
|
|
60
|
+
* use bun to properly remove webring from package.json ([7703402](https://github.com/shepherdjerred/webring/commit/7703402f3ca7f05ac7421e3c6cfe2934967e13b1))
|
|
61
|
+
* use correct 1Password vault/item UUIDs ([ab829d9](https://github.com/shepherdjerred/webring/commit/ab829d98c86d2c2bd86a7d4c047ccd78927806e9))
|
|
62
|
+
* use explicit version in npm overrides ([05b41da](https://github.com/shepherdjerred/webring/commit/05b41da8cf4b79d8588c4731a890cae819be4cc6))
|
|
63
|
+
* use forks pool with inline deps for vitest/Bun compat ([5f5ef3b](https://github.com/shepherdjerred/webring/commit/5f5ef3b3ce44c4c480ea84788f1e83579e0cbed5))
|
|
64
|
+
* use GH_TOKEN from 1Password for GitHub API access ([6d6b453](https://github.com/shepherdjerred/webring/commit/6d6b453dff1889ed2965c100b28c941895fa3900))
|
|
65
|
+
* use GITHUB_TOKEN for GHCR push with packages:write permission ([#154](https://github.com/shepherdjerred/webring/issues/154)) ([377b42b](https://github.com/shepherdjerred/webring/commit/377b42bbe8e44586cd8a806d4334af85638e79d3))
|
|
66
|
+
* use latest Bun version in Dagger container ([bb7a8d9](https://github.com/shepherdjerred/webring/commit/bb7a8d91f7bd0006c9d224aabbb67bb5d62b83c9))
|
|
67
|
+
* use threads pool with inline deps for vitest/Bun compat ([6bb3bd9](https://github.com/shepherdjerred/webring/commit/6bb3bd9dba1f755becdc2abaa2cb44d5912f497f))
|
|
68
|
+
* use UUID-based 1Password refs and hardcode connect host ([68536fd](https://github.com/shepherdjerred/webring/commit/68536fdd37ae18fa8a7089976b4503b333cd77f0))
|
|
69
|
+
* use vmThreads pool and inline zod for vitest ([0928c75](https://github.com/shepherdjerred/webring/commit/0928c75e8b67759cd47165a578694335e64a77ba))
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
### Reverts
|
|
73
|
+
|
|
74
|
+
* remove Docker Hub authentication from CI workflow ([dca8829](https://github.com/shepherdjerred/webring/commit/dca8829c2e654525d5ab757e6501398ee5e2b12d))
|
|
75
|
+
|
|
76
|
+
## [1.3.8](https://github.com/shepherdjerred/webring/compare/v1.3.7...v1.3.8) (2025-06-15)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
### Bug Fixes
|
|
80
|
+
|
|
81
|
+
* **deps:** update dependency remeda to v2.23.0 ([885dcab](https://github.com/shepherdjerred/webring/commit/885dcab7ce39c157691c30a8906b913fc33a7a8c))
|
|
82
|
+
* **deps:** update npm ([46bf808](https://github.com/shepherdjerred/webring/commit/46bf8086abbfb640a023d5e0a51215e5dca2c558))
|
|
83
|
+
* **deps:** update npm ([68e3961](https://github.com/shepherdjerred/webring/commit/68e39618b1efe32211e0c87a960decd6eb199c26))
|
|
84
|
+
* **deps:** update npm ([7f024c1](https://github.com/shepherdjerred/webring/commit/7f024c1012df5619590e6fb0463fd8248ad7ee79))
|
|
85
|
+
|
|
86
|
+
## [1.3.7](https://github.com/shepherdjerred/webring/compare/v1.3.6...v1.3.7) (2025-03-23)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
### Bug Fixes
|
|
90
|
+
|
|
91
|
+
* **deps:** update npm ([e4ad27b](https://github.com/shepherdjerred/webring/commit/e4ad27beb087db3c69c8311249adb0177497aad4))
|
|
92
|
+
* **deps:** update npm ([901ef78](https://github.com/shepherdjerred/webring/commit/901ef784edd954f2d8f4f4006e641228f6a4136b))
|
|
93
|
+
* linter ([f2de46f](https://github.com/shepherdjerred/webring/commit/f2de46f19a7ef31f77e0c41fadae7ceb6bddfb02))
|
|
94
|
+
|
|
95
|
+
## [1.3.6](https://github.com/shepherdjerred/webring/compare/v1.3.5...v1.3.6) (2025-03-13)
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
### Bug Fixes
|
|
99
|
+
|
|
100
|
+
* **deps:** update npm ([c7b5e43](https://github.com/shepherdjerred/webring/commit/c7b5e43745953843d8a8ab546fc1cfba661f42f9))
|
|
101
|
+
* **deps:** update npm ([5638a30](https://github.com/shepherdjerred/webring/commit/5638a30f1844275ad758efde5bbfb2e0b2ced6f7))
|
|
102
|
+
* update ([c4235ba](https://github.com/shepherdjerred/webring/commit/c4235bab76aa3d5b7000067f5a1d9b7025cf9db0))
|
|
103
|
+
* update example ([d8da6ec](https://github.com/shepherdjerred/webring/commit/d8da6ecc17e05b0081a0346d851dc243e23f9b5f))
|
|
104
|
+
|
|
8
105
|
## [1.3.5](https://github.com/shepherdjerred/webring/compare/v1.3.4...v1.3.5) (2025-01-19)
|
|
9
106
|
|
|
10
107
|
|