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

chore(deps): update dependency jest-environment-jsdom to v30.0.0-alpha.6 #264

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 12, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
jest-environment-jsdom (source) 30.0.0-alpha.2 -> 30.0.0-alpha.6 age adoption passing confidence

Release Notes

jestjs/jest (jest-environment-jsdom)

v30.0.0-alpha.6

Compare Source

Features
  • [babel-jest] Add option excludeJestPreset to allow opting out of babel-preset-jest (#​15164)
  • [jest-circus, jest-test-result] Add startedAt timestamp in TestCaseResultObject within onTestCaseResult (#​15145)
  • [jest-config] Show rootDir in error message when a preset fails to load (#​15194)
  • [jest-config] Support loading TS config files using esbuild-register via docblock loader (#​15190)
  • [jest-config] allow passing TS config loader options via docblock comment (#​15234)
  • [expect, @​jest/expect] [BREAKING] Add type inference for function parameters in CalledWith assertions (#​15129)
  • [@jest/expect-utils] Properly compare all types of TypedArrays (#​15178)
  • [jest-resolver] Support file:// URLs as paths (#​15154)
  • [jest-runtime] Add unstable_unmockModule (#​15080)
  • [expect] Use Array.isArray to check if an array is an Array (#​15101)
  • [@jest/create-cache-key-function] Correct the return type of createCacheKey (#​15159)
  • [pretty-format] Fixed a bug where "anonymous custom elements" were not being printed as expected. (#​15138)
  • [jest-worker] Properly handle a circular reference error when worker tries to send an assertion fails where either the expected or actual value is circular (#​15191)
  • [jest-worker] Properly handle a BigInt when worker tries to send an assertion fails where either the expected or actual value is BigInt (#​15191)
Performance
  • [jest-runner] Better cleanup source-map-support after test to resolve (minor) memory leak (#​15233)
Chore & Maintenance
  • [*] [BREAKING] Drop support for Node.js versions 14, 19 and 21 (#​14460, #​15118)
  • [babel-jest, @​jest/transform] Update babel-plugin-istanbul to v6 (#​15156)
  • [babel-plugin-jest-hoist] Move unnecessary dependencies to devDependencies (#​15010)
New Contributors

Full Changelog: jestjs/jest@v30.0.0-alpha.5...v30.0.0-alpha.6

v30.0.0-alpha.5

Compare Source

Features
  • [@jest/util-snapshot] Extract utils used by tooling from jest-snapshot into its own package (#​15095)
  • [jest-each] Introduce %$ option to add number of the test to its title (#​14710)
Fixes
  • [jest-config] Allow Node16/NodeNext/Bundler moduleResolution in project's tsconfig (#​14739)
  • [BREAKING] Specifying testPathPatterns when programmatically calling watch must be specified as `new
Chore & Maintenance
  • [*] Increase version of micromatch to ^4.0.7 (#​15082)
  • [docs] Revised documentation for .toHaveBeenCalled() to accurately depict its functionality. (#​14853)
New Contributors

Full Changelog: jestjs/jest@v30.0.0-alpha.4...v30.0.0-alpha.5

v30.0.0-alpha.4

Compare Source

Features
  • [jest-circus] Add a retryImmediately option to jest.retryTimes (#​14696)
  • [@jest/core] Support --outputFile option for --listTests (#​14980)
  • [@jest/environment] [BREAKING] Remove deprecated jest.genMockFromModule() (#​15042)
  • [@jest/environment] [BREAKING] Remove unnecessary defensive code (#​15045)
  • [jest-matcher-utils] Add SERIALIZABLE_PROPERTIES to allow custom serialization of objects (#​14893)
  • [jest-reporters] Add support for DEC mode 2026 (#​15008)
  • [jest-runtime] Support import.meta.resolve (#​14930)
  • [jest-runtime] [BREAKING] Make it mandatory to pass globalConfig to the Runtime constructor (#​15044)
  • [@jest/types] Improve argument type inference passed to test and describe callback functions from each tables (#​14920)
Fixes
  • [expect] Improve diff for failing expect.objectContaining (#​15038)
  • [jest-changed-files] Print underlying errors when VCS commands fail (#​15052)
  • [jest-changed-files] Abort sl root call if output resembles a steam locomotive (#​15053)
  • [jest-each] Allow $keypath templates with null or undefined values (#​14831)
  • [@jest/expect-utils] Catch circular references within arrays when matching objects (#​14894)
  • [@jest/expect-utils] Fix not addressing to Sets and Maps as objects without keys (#​14873)
  • [jest-util] Add missing dependency on jest-regex-util (#​15030)
Chore & Maintenance
  • [@jest/reporters] Upgrade istanbul-lib-source-maps (#​14924)
  • [jest-util] Upgrade picomatch to v4 (#​14653 & #​14885)
  • [docs] Link NestJS documentation on testing with Jest (#​14940)
New Contributors

Full Changelog: jestjs/jest@v30.0.0-alpha.3...v30.0.0-alpha.4

v30.0.0-alpha.3

Compare Source

Features
  • [jest-circus] Add a waitBeforeRetry option to jest.retryTimes (#​14738)
  • [jest-circus, jest-jasmine2] Allow setupFilesAfterEnv to export an async function (#​10962)
  • [jest-config] Loads config file from provided path in package.json (#​14044)
  • [jest-config] Allow loading jest.config.cts files (#​14070)
  • [@jest/core] Group together open handles with the same stack trace (#​13417, & #​14789)
  • [@jest/core] [BREAKING] Changed --filter to accept an object with shape { filtered: Array<string> } to match documentation (#​13319)
  • [@jest/environment-jsdom-abstract] Introduce new package which abstracts over the jsdom environment, allowing usage of custom versions of JSDOM (#​14717)
  • [jest-environment-node] Update jest environment with dispose symbols Symbol (#​14888 & #​14909)
  • [jest-mock] Add support for the Explicit Resource Management proposal to use the using keyword with jest.spyOn(object, methodName) (#​14895)
  • [jest-runtime] Support import.meta.filename and import.meta.dirname (available from Node 20.11)
  • [jest-circus] Replace recursive makeTestResults implementation with iterative one (#​14760)
  • [jest-circus] Omit expect.hasAssertions() errors if a test already has errors (#​14866)
  • [jest-cli] [BREAKING] Validate CLI flags that require arguments receives them (#​14783)
  • [jest-config] Support testTimeout in project config (#​14697)
  • [jest-config] Support coverageReporters in project config (#​14697)
  • [jest-config] Allow reporters in project config (#​14768)
  • [pretty-format] [BREAKING] Print ArrayBuffer and DataView correctly (#​14290)
Performance
  • [jest-haste-map] Only spawn one process to check for watchman installation (#​14826)
Chore & Maintenance
  • [*] [BREAKING] Upgrade to glob@10 (#​14509)
  • [*] Use TypeError over Error where appropriate (#​14799)
  • [jest-schemas] Upgrade @sinclair/typebox (#​14775)
  • [docs] Append to NODE_OPTIONS, not overwrite (#​14730)
  • [docs] Updated .toHaveBeenCalled() documentation to correctly reflect its functionality (#​14842)
New Contributors

Full Changelog: jestjs/jest@v30.0.0-alpha.2...v30.0.0-alpha.3


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/patch-jest-monorepo branch 3 times, most recently from 06d9af6 to 876806a Compare April 12, 2024 21:20
@renovate renovate bot force-pushed the renovate/patch-jest-monorepo branch 10 times, most recently from 36f29b3 to 51dbe7b Compare May 2, 2024 15:28
@renovate renovate bot force-pushed the renovate/patch-jest-monorepo branch from 51dbe7b to 4cea76a Compare May 16, 2024 00:52
@renovate renovate bot changed the title chore(deps): update dependency jest-environment-jsdom to v30.0.0-alpha.3 chore(deps): update dependency jest-environment-jsdom to v30.0.0-alpha.4 May 16, 2024
@renovate renovate bot force-pushed the renovate/patch-jest-monorepo branch from 4cea76a to 556c9d2 Compare June 2, 2024 13:46
@renovate renovate bot changed the title chore(deps): update dependency jest-environment-jsdom to v30.0.0-alpha.4 chore(deps): update dependency jest-environment-jsdom to v30.0.0-alpha.5 Jun 2, 2024
@renovate renovate bot force-pushed the renovate/patch-jest-monorepo branch from 556c9d2 to 6b67aaa Compare August 11, 2024 07:57
@renovate renovate bot changed the title chore(deps): update dependency jest-environment-jsdom to v30.0.0-alpha.5 chore(deps): update dependency jest-environment-jsdom to v30.0.0-alpha.6 Aug 11, 2024
@renovate renovate bot force-pushed the renovate/patch-jest-monorepo branch 2 times, most recently from e250f17 to 672314e Compare October 3, 2024 18:13
@renovate renovate bot force-pushed the renovate/patch-jest-monorepo branch from 672314e to 8a09896 Compare October 3, 2024 18:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants