Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .github/workflows/apm-integrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ jobs:
- '13.2.0'
- '>=14.0.0 <=14.2.6'
- '>=14.2.7 <15'
- '>=15.0.0 <15.4.1'
- '>=15.0.0'
include:
- range: '>=10.2.0 <11'
range_clean: gte.10.2.0.and.lt.11
Expand All @@ -655,7 +655,7 @@ jobs:
range_clean: gte.14.0.0.and.lte.14.2.6
- range: '>=14.2.7 <15'
range_clean: gte.14.2.7.and.lt.15
- range: '>=15.0.0 <15.4.1'
- range: '>=15.0.0'
range_clean: gte.15.0.0
runs-on: ubuntu-latest
env:
Expand Down
2 changes: 1 addition & 1 deletion packages/datadog-plugin-next/test/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe('Plugin', function () {
const satisfiesStandalone = version => satisfies(version, '>=12.0.0')

// TODO: Figure out why 10.x tests are failing.
withVersions('next', 'next', '>=11.1 <15.4.1', version => {
withVersions('next', 'next', '>=11.1', version => {
const pkg = require(`../../../versions/next@${version}/node_modules/next/package.json`)

const startServer = ({ withConfig, standalone }, schemaVersion = 'v0', defaultToGlobalService = false) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe('esm', () => {
let proc
let sandbox
// match versions tested with unit tests
withVersions('next', 'next', '>=11.1 <15.4.1', version => {
withVersions('next', 'next', '>=11.1', version => {
before(async function () {
// next builds slower in the CI, match timeout with unit tests
this.timeout(300 * 1000)
Expand Down
2 changes: 1 addition & 1 deletion scripts/verify-ci-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function checkPlugins (yamlPath) {
const instRanges = Array.from(rangesPerPluginFromInst[pluginName])
const yamlVersions = getMatchingVersions(pluginName, yamlRanges)
const instVersions = getMatchingVersions(pluginName, instRanges)
if (pluginName !== 'next' && !util.isDeepStrictEqual(yamlVersions, instVersions)) {
if (!util.isDeepStrictEqual(yamlVersions, instVersions)) {
const opts = { colors: true }
const colors = x => util.inspect(x, opts)
pluginErrorMsg(pluginName, 'Mismatch', `
Expand Down
Loading