From 5d79d73dc281302c279b969fbccbe96352f41516 Mon Sep 17 00:00:00 2001 From: Simo Kinnunen Date: Mon, 20 Jan 2025 21:41:45 +0900 Subject: [PATCH] chore: bump runtimeId to latest (2024.09) in examples --- examples/advanced-project-js/checkly.config.js | 2 +- .../src/__checks__/multi-step-spacex.check.js | 2 +- .../advanced-project-js/src/__checks__/website-group.check.js | 2 +- examples/advanced-project/checkly.config.ts | 2 +- .../advanced-project/src/__checks__/multi-step-spacex.check.ts | 2 +- examples/advanced-project/src/__checks__/website-group.check.ts | 2 +- examples/boilerplate-project-js/checkly.config.js | 2 +- examples/boilerplate-project/checkly.config.ts | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/advanced-project-js/checkly.config.js b/examples/advanced-project-js/checkly.config.js index 5f9dac06..faf988b1 100644 --- a/examples/advanced-project-js/checkly.config.js +++ b/examples/advanced-project-js/checkly.config.js @@ -24,7 +24,7 @@ const config = defineConfig({ /** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime. * See https://www.checklyhq.com/docs/cli/npm-packages/ */ - runtimeId: '2024.02', + runtimeId: '2024.09', /* Failed check runs will be retried before triggering alerts */ retryStrategy: RetryStrategyBuilder.fixedStrategy({ baseBackoffSeconds: 60, maxRetries: 4, sameRegion: true }), /* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */ diff --git a/examples/advanced-project-js/src/__checks__/multi-step-spacex.check.js b/examples/advanced-project-js/src/__checks__/multi-step-spacex.check.js index ed19b082..c980b40e 100644 --- a/examples/advanced-project-js/src/__checks__/multi-step-spacex.check.js +++ b/examples/advanced-project-js/src/__checks__/multi-step-spacex.check.js @@ -13,7 +13,7 @@ const alertChannels = [smsChannel, emailChannel] // We can define multiple checks in a single *.check.js file. new MultiStepCheck('spacex-multistep-check', { name: 'SpaceX MS', - runtimeId: '2024.02', + runtimeId: '2024.09', alertChannels, code: { entrypoint: path.join(__dirname, 'spacex-requests.spec.js') diff --git a/examples/advanced-project-js/src/__checks__/website-group.check.js b/examples/advanced-project-js/src/__checks__/website-group.check.js index 890a3470..784bac09 100644 --- a/examples/advanced-project-js/src/__checks__/website-group.check.js +++ b/examples/advanced-project-js/src/__checks__/website-group.check.js @@ -17,7 +17,7 @@ const websiteGroup = new CheckGroup('website-check-group-1', { name: 'Website Group', activated: true, muted: false, - runtimeId: '2024.02', + runtimeId: '2024.09', locations: ['us-east-1', 'eu-west-1'], tags: ['mac', 'group'], environmentVariables: [], diff --git a/examples/advanced-project/checkly.config.ts b/examples/advanced-project/checkly.config.ts index 1124ac22..d31c1236 100644 --- a/examples/advanced-project/checkly.config.ts +++ b/examples/advanced-project/checkly.config.ts @@ -24,7 +24,7 @@ const config = defineConfig({ /** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime. * See https://www.checklyhq.com/docs/cli/npm-packages/ */ - runtimeId: '2024.02', + runtimeId: '2024.09', /* Failed check runs will be retried before triggering alerts */ retryStrategy: RetryStrategyBuilder.fixedStrategy({ baseBackoffSeconds: 60, maxRetries: 4, sameRegion: true }), /* All checks will have this alert escalation policy defined */ diff --git a/examples/advanced-project/src/__checks__/multi-step-spacex.check.ts b/examples/advanced-project/src/__checks__/multi-step-spacex.check.ts index bae64bcd..7865b155 100644 --- a/examples/advanced-project/src/__checks__/multi-step-spacex.check.ts +++ b/examples/advanced-project/src/__checks__/multi-step-spacex.check.ts @@ -13,7 +13,7 @@ const alertChannels = [smsChannel, emailChannel] // We can define multiple checks in a single *.check.ts file. new MultiStepCheck('spacex-multistep-check', { name: 'SpaceX MS', - runtimeId: '2024.02', + runtimeId: '2024.09', alertChannels, code: { entrypoint: path.join(__dirname, 'spacex-requests.spec.ts') diff --git a/examples/advanced-project/src/__checks__/website-group.check.ts b/examples/advanced-project/src/__checks__/website-group.check.ts index 4e4d8358..31791478 100644 --- a/examples/advanced-project/src/__checks__/website-group.check.ts +++ b/examples/advanced-project/src/__checks__/website-group.check.ts @@ -17,7 +17,7 @@ export const websiteGroup = new CheckGroup('website-check-group-1', { name: 'Website Group', activated: true, muted: false, - runtimeId: '2024.02', + runtimeId: '2024.09', locations: ['us-east-1', 'eu-west-1'], tags: ['mac', 'group'], environmentVariables: [], diff --git a/examples/boilerplate-project-js/checkly.config.js b/examples/boilerplate-project-js/checkly.config.js index 8a8da4b5..6da496ca 100644 --- a/examples/boilerplate-project-js/checkly.config.js +++ b/examples/boilerplate-project-js/checkly.config.js @@ -23,7 +23,7 @@ const config = defineConfig({ /** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime. * See https://www.checklyhq.com/docs/cli/npm-packages/ */ - runtimeId: '2024.02', + runtimeId: '2024.09', /* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */ checkMatch: '**/__checks__/**/*.check.js', /* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */ diff --git a/examples/boilerplate-project/checkly.config.ts b/examples/boilerplate-project/checkly.config.ts index 941e95f7..5f03ab29 100644 --- a/examples/boilerplate-project/checkly.config.ts +++ b/examples/boilerplate-project/checkly.config.ts @@ -23,7 +23,7 @@ const config = defineConfig({ /** The Checkly Runtime identifier, determining npm packages and the Node.js version available at runtime. * See https://www.checklyhq.com/docs/cli/npm-packages/ */ - runtimeId: '2024.02', + runtimeId: '2024.09', /* A glob pattern that matches the Checks inside your repo, see https://www.checklyhq.com/docs/cli/using-check-test-match/ */ checkMatch: '**/__checks__/**/*.check.ts', /* Global configuration option for Playwright-powered checks. See https://www.checklyhq.com/docs/browser-checks/playwright-test/#global-configuration */