sently 0.4.0 → 0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.4.1] — 2026-05-30
4
+
5
+ ### Fixed
6
+
7
+ - CI: use locally installed tsc (node_modules/.bin/tsc) in build.ts
8
+ instead of bunx tsc to avoid runtime npm downloads in CI
9
+ - CI: add bun run build step to SMTP integration job so dist/ exists
10
+ before the integration test imports from 'sently'
11
+ - CI: improved smoke test error output with explicit .catch() handler
12
+ - CI: added FORCE_JAVASCRIPT_ACTIONS_TO_NODE24 to all workflow jobs
13
+
3
14
  ## [0.4.0] — 2026-05-30
4
15
 
5
16
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sently",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Runtime-agnostic email library for Node.js, Bun, Deno, and Cloudflare Workers",
5
5
  "type": "module",
6
6
  "sideEffects": false,