Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2
updates:
- package-ecosystem: npm
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 10

- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
open-pull-requests-limit: 10
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18, 20, 22]
node-version: [22.x, 24.x]

steps:
- name: Checkout
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Configurable request timeout (`timeoutMs`, default 30s) enforced via `AbortSignal.timeout`
- `.github/dependabot.yml` for weekly npm and GitHub Actions dependency updates

### Changed

- Standardized on a Node.js 22 baseline: CI matrix now `[22.x, 24.x]`, `tsup` target `node22`, `@types/node` bumped to `^22`
- Network/transport failures and timeouts in the HTTP layer are now converted into typed `AteraError` instances instead of throwing raw `TypeError`

### Security

- Ran `npm audit fix`; remaining advisories are confined to the bundled `npm` CLI and `esbuild`/`vite` dev tooling (transitive, dev-only, require breaking major bumps)

## [0.1.0] - 2026-02-04

### Added
Expand Down
Loading
Loading