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
2 changes: 2 additions & 0 deletions .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
- '22.x'
- '23.x'
- '24.x'
# Maintenance note: Update the semver expression `untestedVersionRange` in src/index.ts when adding new
# Node.js versions to the test matrix.

steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 4 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ const versionMapping = [
// OpenTelemetry JS SDK 2.x, supports Node.js >= 18.19.0 || >= 20.6.0
['>=18.19.0', './2.x/init'],
];
const untestedVersionRange = '>=24.0.0';

// Maintenance note: This needs to be kept in sync with the version ranges in .github/workflows/verify.yaml, property
// jobs.verify.strategy.matrix.node-version.
const untestedVersionRange = '>=25.0.0';

const prefix = 'Dash0 OpenTelemetry Distribution';

Expand Down