diff --git a/CHANGELOG.md b/CHANGELOG.md index d6555ded..e3409e1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # gulp changelog +## [4.0.0](https://www.github.com/l3dlp-sandbox/gulp/compare/v3.9.1...v4.0.0) (2024-03-26) + + +### ⚠ BREAKING CHANGES + +* Normalize repository, dropping node <10.13 support (#2758) + +### Features + +* Provide an ESM export ([#2760](https://www.github.com/l3dlp-sandbox/gulp/issues/2760)) ([b00de68](https://www.github.com/l3dlp-sandbox/gulp/commit/b00de681f5ef6ade283d544f62f770f6b27a9e52)) +* Support `.cjs` extension for gulpfiles ([72668c6](https://www.github.com/l3dlp-sandbox/gulp/commit/72668c61e445c81fad23bc6ed24967a3238a648d)) + + +### Bug Fixes + +* Add support for gulp.watch usage w/o opts or callback ([9fc4125](https://www.github.com/l3dlp-sandbox/gulp/commit/9fc412590747b5e20b4c5b52f59446aaf84632f9)) +* Bind src/dest/symlink to the gulp instance to support esm exports (ref standard-things/esm[#797](https://www.github.com/l3dlp-sandbox/gulp/issues/797)) ([5667666](https://www.github.com/l3dlp-sandbox/gulp/commit/5667666ffae15c169f99c7096ca59c05f9440272)) +* Ensure watch allows japanese characters in globs ([72668c6](https://www.github.com/l3dlp-sandbox/gulp/commit/72668c61e445c81fad23bc6ed24967a3238a648d)) +* Ensure watch does not trigger on negated globs ([72668c6](https://www.github.com/l3dlp-sandbox/gulp/commit/72668c61e445c81fad23bc6ed24967a3238a648d)) +* Set chokidar option ignoreIntial: true by default ([355fc4e](https://www.github.com/l3dlp-sandbox/gulp/commit/355fc4e14840fd26db07fe99183e430e8390ae17)) +* Temporary workaround for facebook/Docusaurus[#257](https://www.github.com/l3dlp-sandbox/gulp/issues/257) ([9f4a2e9](https://www.github.com/l3dlp-sandbox/gulp/commit/9f4a2e96506dec1d85804de8884678e72ffc5aa0)) +* Throw better error when watch parameters are invalid (fixes [#1002](https://www.github.com/l3dlp-sandbox/gulp/issues/1002)) ([409f19a](https://www.github.com/l3dlp-sandbox/gulp/commit/409f19aacb9489491c82013e9dee28f06f49e8d6)) + + +### Miscellaneous Chores + +* Normalize repository, dropping node <10.13 support ([#2758](https://www.github.com/l3dlp-sandbox/gulp/issues/2758)) ([72668c6](https://www.github.com/l3dlp-sandbox/gulp/commit/72668c61e445c81fad23bc6ed24967a3238a648d)) + ## 4.0.0 ### Task system changes diff --git a/package.json b/package.json index 5d2a668a..34755d5e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gulp", - "version": "4.0.2", + "version": "4.0.0", "description": "The streaming build system.", "homepage": "https://gulpjs.com", "author": "Gulp Team (https://gulpjs.com/)",