Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump gulp from 4.0.2 to 5.0.0 #5038

Merged
merged 2 commits into from
Jun 10, 2024
Merged

Commits on Jun 3, 2024

  1. Bump gulp from 4.0.2 to 5.0.0

    Bumps [gulp](https://github.com/gulpjs/gulp) from 4.0.2 to 5.0.0.
    - [Release notes](https://github.com/gulpjs/gulp/releases)
    - [Changelog](https://github.com/gulpjs/gulp/blob/master/CHANGELOG.md)
    - [Commits](gulpjs/gulp@v4.0.2...v5.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: gulp
      dependency-type: direct:development
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    b365bcd View commit details
    Browse the repository at this point in the history
  2. Stop binary files being encoded with UTF-8

    Gulp v5 changes the way that streams are encoded [1]:
    
    > Our streams now default to UTF-8 encoding. Previously, our streams took whatever data was emitted without considering any encoding. However, in this release, we resolved a 10 year old issue to support custom encodings and we default these to UTF-8. Most usage of gulp won’t need to change anything, but certain plugins may produce non-UTF-8 output and you’ll need to set `{ encoding: false }` on your gulp streams.
    
    As the fonts and images are binary we need to set `encoding: false` to avoid them being corrupted.
    
    [1]: https://medium.com/gulpjs/announcing-gulp-v5-c67d077dbdb7#8f65
    36degrees committed Jun 3, 2024
    Configuration menu
    Copy the full SHA
    a15f6a5 View commit details
    Browse the repository at this point in the history