Skip to content

Commit

Permalink
chore(release): 4.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [4.0.0](v3.0.6...v4.0.0) (2023-03-30)

### Bug Fixes

* correctly parse weekday ranges that include sunday ([#283](#283)) ([2fb78b5](2fb78b5))
* specify types for legacy support ([7288c13](7288c13))

### chore

* drop support for node14 ([d47ac6a](d47ac6a))

### Features

* esm only build ([58cbdd7](58cbdd7))

### BREAKING CHANGES

* If your environment does not support conditional exports, you have to import the schedulers from cron-schedule/dist/schedulers instead of cron-schedule/schedulers.

Signed-off-by: Pascal Sthamer <[email protected]>
* Support for node14 is dropped,
due to its EOL in the next month and missing ESM module support

Signed-off-by: Pascal Sthamer <[email protected]>
* The package is now ESM only. A CommonJS or IIFE build is no longer provided.
* The minimum required version of Node.js is now 14
* utils are no longer exposed
* schedulers are no longer exposed in the default entry point.
Import them from `cron-schedule/schedulers/interval-based.js` and
`cron-schedule/schedulers/timer-based.js` instead.

Signed-off-by: Pascal Sthamer <[email protected]>
  • Loading branch information
semantic-release-bot committed Mar 30, 2023
1 parent 6fd9711 commit f25f3a4
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
# [4.0.0](https://github.com/P4sca1/cron-schedule/compare/v3.0.6...v4.0.0) (2023-03-30)


### Bug Fixes

* correctly parse weekday ranges that include sunday ([#283](https://github.com/P4sca1/cron-schedule/issues/283)) ([2fb78b5](https://github.com/P4sca1/cron-schedule/commit/2fb78b57e7382f3c2bbde529f80bf8de5843062b))
* specify types for legacy support ([7288c13](https://github.com/P4sca1/cron-schedule/commit/7288c132d40b2270fa4d6aada2e31c345dfc3810))


### chore

* drop support for node14 ([d47ac6a](https://github.com/P4sca1/cron-schedule/commit/d47ac6aeeb439be73bf646455350c7d91d5b19f6))


### Features

* esm only build ([58cbdd7](https://github.com/P4sca1/cron-schedule/commit/58cbdd7af9ecf521093d5532ad174c8d69933cd7))


### BREAKING CHANGES

* If your environment does not support conditional exports, you have to import the schedulers from cron-schedule/dist/schedulers instead of cron-schedule/schedulers.

Signed-off-by: Pascal Sthamer <[email protected]>
* Support for node14 is dropped,
due to its EOL in the next month and missing ESM module support

Signed-off-by: Pascal Sthamer <[email protected]>
* The package is now ESM only. A CommonJS or IIFE build is no longer provided.
* The minimum required version of Node.js is now 14
* utils are no longer exposed
* schedulers are no longer exposed in the default entry point.
Import them from `cron-schedule/schedulers/interval-based.js` and
`cron-schedule/schedulers/timer-based.js` instead.

Signed-off-by: Pascal Sthamer <[email protected]>

# [4.0.0-next.3](https://github.com/P4sca1/cron-schedule/compare/v4.0.0-next.2...v4.0.0-next.3) (2023-03-30)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "cron-schedule",
"description": "A zero-dependency cron parser and scheduler for Node.js, Deno and the browser.",
"version": "4.0.0-next.3",
"version": "4.0.0",
"license": "MIT",
"repository": {
"type": "git",
Expand Down

0 comments on commit f25f3a4

Please sign in to comment.