Skip to content

Commit 02f3bde

Browse files
Merge pull request #873 from balena-io/joshbwlng/cron-parser
Update cron-parser to v5
2 parents 7eb8df8 + 4472175 commit 02f3bde

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"ajv": "^8.17.1",
5656
"busboy": "^1.6.0",
5757
"commander": "^13.1.0",
58-
"cron-parser": "^4.9.0",
58+
"cron-parser": "^5.0.6",
5959
"deep-freeze": "^0.0.1",
6060
"eventemitter3": "^5.0.1",
6161
"express-session": "^1.18.1",

src/tasks/index.ts

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Schema } from 'ajv';
2-
import cronParser from 'cron-parser';
2+
import { CronExpressionParser } from 'cron-parser';
33
import { tasks as tasksEnv } from '../config-loader/env.js';
44
import { addPureHook } from '../sbvr-api/hooks.js';
55
import * as sbvrUtils from '../sbvr-api/sbvr-utils.js';
@@ -77,11 +77,12 @@ export function setup(): void {
7777
request.values.is_scheduled_to_execute_on__time == null
7878
) {
7979
try {
80-
request.values.is_scheduled_to_execute_on__time = cronParser
81-
.parseExpression(request.values.is_scheduled_with__cron_expression)
82-
.next()
83-
.toDate()
84-
.toISOString();
80+
request.values.is_scheduled_to_execute_on__time =
81+
CronExpressionParser.parse(
82+
request.values.is_scheduled_with__cron_expression,
83+
)
84+
.next()
85+
.toISOString();
8586
} catch {
8687
throw new Error(
8788
`Invalid cron expression: ${request.values.is_scheduled_with__cron_expression}`,

test/08-tasks.test.ts

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { PineTest } from 'pinejs-client-supertest';
66
import { testInit, testDeInit, testLocalServer } from './lib/test-init.js';
77
import { env } from '@balena/pinejs';
88
import type Model from '@balena/pinejs/out/tasks/tasks.js';
9-
import cronParser from 'cron-parser';
9+
import { CronExpressionParser } from 'cron-parser';
1010
import { PINE_TEST_SIGNALS } from './lib/common.js';
1111

1212
const actorId = 1;
@@ -241,7 +241,7 @@ describe('08 task tests', function () {
241241
it('should set scheduled execution time when cron expression is provided', async () => {
242242
// Create a task to create a new device record in 3s
243243
const cron = '0 0 2,8,12,14 * * *';
244-
const expectedSchedule = cronParser.parseExpression(cron).next().toDate();
244+
const expectedSchedule = CronExpressionParser.parse(cron).next().toDate();
245245
const task = await createTask(pineTest, apikey, {
246246
is_executed_by__handler: 'create_device',
247247
is_executed_with__parameter_set: {
@@ -363,8 +363,7 @@ describe('08 task tests', function () {
363363
},
364364
});
365365

366-
const nextExecutionDate = cronParser
367-
.parseExpression(cron)
366+
const nextExecutionDate = CronExpressionParser.parse(cron)
368367
.next()
369368
.toISOString();
370369
await waitFor(async () => {

0 commit comments

Comments
 (0)