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 jest from 27.5.1 to 28.0.3 #1216

Closed
wants to merge 5 commits into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 1, 2022

Bumps jest from 27.5.1 to 28.0.3.

Release notes

Sourced from jest's releases.

v28.0.3

Fixes

  • [jest-config] Normalize reporters option defined in presets (#12769)
  • [@jest/reporters] Fix trailing slash in matching coverageThreshold key (#12714)
  • [jest-resolve] Fix (experimental) ESM module mocking for re-exports (#12766)
  • [@jest/transform] Throw better error if an invalid return value if encountered (#12764)

Chore & Maintenance

  • [docs] Fix typo in --shard CLI docs (#12761)

New Contributors

Full Changelog: jestjs/jest@v28.0.2...v28.0.3

v28.0.2

Features

  • [jest-worker] Add JestWorkerFarm helper type (#12753)

Fixes

  • [*] Lower Node 16 requirement to 16.10 from 16.13 due to a Node bug that causes memory and performance issues (#12754)

Full Changelog: jestjs/jest@v28.0.1...v28.0.2

v28.0.1

Features

  • [jest-resolve] Expose ResolverOptions type (#12736)

Fixes

  • [expect] Add missing dependency jest-util (#12744)
  • [jest-circus] Improve test.concurrent (#12748)
  • [jest-resolve] Correctly throw an error if jsdom test environment is used, but not installed (#12749)

Chore & Maintenance

  • [jest-serializer] Remove deprecated module from source tree (#12735)

Full Changelog: jestjs/jest@v28.0.0...v28.0.1

v28.0.0

Blog post: https://jestjs.io/blog/2022/04/25/jest-28

... (truncated)

Changelog

Sourced from jest's changelog.

28.0.3

Fixes

  • [jest-config] Normalize reporters option defined in presets (#12769)
  • [@jest/reporters] Fix trailing slash in matching coverageThreshold key (#12714)
  • [jest-resolve] Fix (experimental) ESM module mocking for re-exports (#12766)
  • [@jest/transform] Throw better error if an invalid return value if encountered (#12764)

Chore & Maintenance

  • [docs] Fix typo in --shard CLI docs (#12761)

28.0.2

Features

  • [jest-worker] Add JestWorkerFarm helper type (#12753)

Fixes

  • [*] Lower Node 16 requirement to 16.10 from 16.13 due to a Node bug that causes memory and performance issues (#12754)

28.0.1

Features

  • [jest-resolve] Expose ResolverOptions type (#12736)

Fixes

  • [expect] Add missing dependency jest-util (#12744)
  • [jest-circus] Improve test.concurrent (#12748)
  • [jest-resolve] Correctly throw an error if jsdom test environment is used, but not installed (#12749)

Chore & Maintenance

  • [jest-serializer] Remove deprecated module from source tree (#12735)

28.0.0

Features

  • [babel-jest] Export createTransformer function (#12399)
  • [expect] Expose AsymmetricMatchers, MatcherFunction and MatcherFunctionWithState interfaces (#12363, #12376)
  • [jest-circus] Support error logging before retry (#12201)
  • [jest-circus, jest-jasmine2] Allowed classes and functions as describe and it/test names (#12484)
  • [jest-cli, jest-config] [BREAKING] Remove testURL config, use testEnvironmentOptions.url instead (#10797)
  • [jest-cli, jest-core] Add --shard parameter for distributed parallel test execution (#12546)
  • [jest-cli] [BREAKING] Remove undocumented --timers option (#12572)

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label May 1, 2022
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jest-28.0.3 branch 4 times, most recently from 80093b5 to 01019a7 Compare May 1, 2022 14:07
@wipfli
Copy link
Contributor

wipfli commented May 2, 2022

Bumps [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest) from 27.5.1 to 28.0.3.
- [Release notes](https://github.com/facebook/jest/releases)
- [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/jest/commits/v28.0.3/packages/jest)

---
updated-dependencies:
- dependency-name: jest
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/jest-28.0.3 branch from 01019a7 to 21aa349 Compare May 3, 2022 18:07
src/geo/edge_insets.test.ts Outdated Show resolved Hide resolved
@HarelM
Copy link
Collaborator

HarelM commented May 4, 2022

Seems like the build is broken and some tests fail. Is this due to this change or is main broken as well?

@wipfli
Copy link
Contributor

wipfli commented May 7, 2022

Fix rollup build test by setting test environment to node. See https://jestjs.io/docs/configuration#testenvironment-string. The error message was something like:

[Error: Could not load ... Cannot access the file system (via "fs.readFile") when using the browser build of Rollup. Make sure you supply a plugin with custom resolveId and load hooks to Rollup.]

@github-actions
Copy link
Contributor

github-actions bot commented May 7, 2022

Bundle size report:

Size Change: 0 B
Total Size Before: 194 kB
Total Size After: 194 kB

Output file Before After Change
maplibre-gl.js 185 kB 185 kB 0 B
maplibre-gl.css 9.25 kB 9.25 kB 0 B
ℹ️ View Details No major changes

@wipfli
Copy link
Contributor

wipfli commented May 7, 2022

playwright-community/jest-playwright#797 we need to wait for jest-playwright-preset to support jest 28...

@wipfli
Copy link
Contributor

wipfli commented May 7, 2022

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 1, 2022

A newer version of jest exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

@wipfli
Copy link
Contributor

wipfli commented Jun 2, 2022

@dependabot recreate

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 2, 2022

Looks like jest is updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jun 2, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/jest-28.0.3 branch June 2, 2022 19:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants