Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

chore(deps): update dependency ts-jest to v26 #1313

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 3, 2020

This PR contains the following updates:

Package Type Update Change
ts-jest (source) devDependencies major 22.4.6 -> 26.1.3

Release Notes

kulshekhar/ts-jest

v26.1.3

Compare Source

Bug Fixes

v26.1.2

Compare Source

Bug Fixes
  • compiler: use resolveModuleNames TypeScript API to get resolved modules for test files (#​1784) (5f26054), closes #​1747
  • config: invalidate cache when other options in tsconfig change (#​1788) (6948855)
Performance Improvements

v26.1.1

Compare Source

Bug Fixes

v26.1.0

Compare Source

Bug Fixes
Features
  • config: show a warning message when TypeScript target version doesn't match with recommended NodeJs version (#​1678) (085bdf5)
  • config: support multiple paths for pathsToModuleNameMapper (#​1690) (a727bd5)
  • support TypeScript 3.9 (#​1653) (fc3d5ad)

v26.0.0

Compare Source

Bug Fixes
  • compiler: return undefined for getScriptVersion when a file doesn't exist in memory cache (#​1641) (6851b8e)
Features
BREAKING CHANGES
  • Requires a minimum of TypeScript v3.8
  • Drop support for Node 8

25.5.1 (2020-05-09)

Bug Fixes
  • compiler: don't resolve files from build folder for projectReferences (#​1614) (74b92d3)
  • config: don't set include value of tsconfig to empty array (#​1606) (8a29aaa)

v25.5.1

Compare Source

Bug Fixes
  • compiler: don't resolve files from build folder for projectReferences (#​1614) (74b92d3)
  • config: don't set include value of tsconfig to empty array (#​1606) (8a29aaa)

v25.5.0

Compare Source

Bug Fixes
  • compiler: make projectReferences work with isolatedModules: false (#​1541) (3e8efbe)
  • compiler: allow using files provided by tsconfig (#​1562) (a9f02bd)
  • config: verify testMatchPatterns contain RegExp instance or string type values (#​1569) (7f85bab)
Features
  • config: add tsconfig alias to tsConfig option (#​1565) (c10eb6d)
  • config: define 'ts-jest' on ConfigGlobals interface of @jest/types (#​1592) (4526392)
Performance Improvements
  • compiler: don’t write compile output to file system but rely on jest cache (#​1561) (d11a4ea)
  • compiler: improve performance for isolatedModules: false (#​1558) (85c09e3)
BREAKING CHANGES
  • Any custom typing files or files which are needed to be compiled and intended to use with jest need to be defined in files option of tsconfig.

For example:

// tsconfig.json
{
   // ...other configs
   "files": [
       "my-custom-typings.d.ts",
       "my-global-module.ts"
   ]
}
  • compiler: incremental and compilerHost options are no longer available. Please remove it from your ts-jest config.

v25.4.0

Compare Source

Bug Fixes
  • compiler: make projectReferences work with isolatedModules: true (#​1527) (aa6b74c)
  • compiler: make sure LanguageService updated with test file information before getting diagnostics for test file (#​1507) (311eaeb)
  • config: set default outDir when allowJs is true and no outDir in tsconfig (#​1502) (1a287ad)
  • config: use original jest config object instead of stringified config (#​1511) (4f0bb33)

25.3.1 (2020-04-03)

Bug Fixes

v25.3.1

Compare Source

Bug Fixes

v25.3.0

Compare Source

Bug Fixes
  • add jest-config to dependencies list (6d9e0d8)
  • always do type check for all files provided to ts-jest transformer for non-watch mode (#​1450) (107e062)
Chores
  • docs: add TROUBLESHOOTING (96cd9b3)
Features
BREAKING CHANGES
  • config: improve diagnostics message (#​1444) (96cd9b3). This will affect to any snapshots or assertion against diagnostics messages

v25.2.1

Compare Source

Bug Fixes
  • compiler: allow transformation of typescript files in node_modules (#​1385) (814405e)
  • docs: fixing slack link and some minor typos in documenation (#​1404) (3e2e008)
  • transformer: add deepUnmock to hoist method list (#​1372) (0fbbc00)
  • util: use resolve package typescript package in yarn workspaces (#​1377) (a63808c)

v25.2.0

Compare Source

Bug Fixes
  • config: let babel-jest handle loading babel config (#​1370)

v25.1.0

Compare Source

Bug Fixes

v25.0.0

Compare Source

Features

v24.3.0

Compare Source

Bug Fixes

v24.2.0

Compare Source

Bug Fixes
  • compiler: pass filename to sha function instead of file extension (ac1ac97)
  • transformers: hoist jest.enableAutomock and jest.disableAutomock (ac50bc3)
  • typescript serviceHost cache miss on Windows operating systems (26ee731)

v24.1.0

Compare Source

Bug Fixes

24.0.2 (2019-04-05)

24.0.1 (2019-03-30)

Bug Fixes
Features

v24.0.2

Compare Source

24.0.2 (2019-04-05)

v24.0.1

Compare Source

Bug Fixes
Features

v24.0.0

Compare Source

Bug Fixes
Features

23.10.4 (2018-10-06)

Bug Fixes
  • cache: adds project's dep versions to cache key (6cacbea), closes #​785
  • cli: change options to better reflect the new presets (68abcfb)
  • helpers: deprecate import from ts-jest, now ts-jest/utils (33ff29f), closes #​782
  • typings: typo in presets definition file (53767ab)
  • typings: wrong import in preset typings + test (94dc4e7)

23.10.3 (2018-09-30)

Bug Fixes
  • compiler: do not force module kind if piping babel (acebc8c), closes #​767
Features
  • helpers: adds a mocked test helper for mock typings (f976135), closes #​576

23.10.2 (2018-09-26)

Bug Fixes
  • cache: resolved tsconfig in cache key + pkg digest (e891608), closes #​749
  • cli: resets testMatch if using testRegex option (31ad0aa), closes #​756
  • diagnostics: throws only for category warning and error (bb28849), closes #​748
  • import: wrong error message when a module exists but fails (e0d6c57)
  • preset: createJestPreset fails with base and no array (3c325e8)
Features
  • cli: CLI 'config:migrate' now detects best preset (febd8d3)
  • preset: adds 2 presets along the default one (9f3d759)
  • preset: adds presets typings and export all presets (f55d895)
  • typings: emit declaration files, filtering out internals (4f10f7e), closes #​745

23.10.1 (2018-09-20)

Bug Fixes
  • compile: js files were never transpiled thru TS (374dca1), closes #​740
  • config: warn instead of forcing ESM interoperability (a2a4be2)
  • windows: normalize paths (c12dfff)

v23.10.5

Compare Source

Bug Fixes

v23.10.4

Compare Source

Bug Fixes
  • cache: adds project's dep versions to cache key (6cacbea), closes #​785
  • cli: change options to better reflect the new presets (68abcfb)
  • helpers: deprecate import from ts-jest, now ts-jest/utils (33ff29f), closes #​782
  • typings: typo in presets definition file (53767ab)
  • typings: wrong import in preset typings + test (94dc4e7)

v23.10.3

Compare Source

Bug Fixes
  • compiler: do not force module kind if piping babel (acebc8c), closes #​767
Features
  • helpers: adds a mocked test helper for mock typings (f976135), closes #​576

v23.10.2

Compare Source

Bug Fixes
  • cache: resolved tsconfig in cache key + pkg digest (e891608), closes #​749
  • cli: resets testMatch if using testRegex option (31ad0aa), closes #​756
  • diagnostics: throws only for category warning and error (bb28849), closes #​748
  • import: wrong error message when a module exists but fails (e0d6c57)
  • preset: createJestPreset fails with base and no array (3c325e8)
Features
  • cli: CLI 'config:migrate' now detects best preset (febd8d3)
  • preset: adds 2 presets along the default one (9f3d759)
  • preset: adds presets typings and export all presets (f55d895)
  • typings: emit declaration files, filtering out internals (4f10f7e), closes #​745

v23.10.1

Compare Source

Bug Fixes
  • compile: js files were never transpiled thru TS (374dca1), closes #​740
  • config: warn instead of forcing ESM interoperability (a2a4be2)
  • windows: normalize paths (c12dfff)

v23.10.0

Compare Source

Bug Fixes
  • babel: fixes the babel 6 hack (c8d51cf)
  • config: jsx should also be considered as js files (6c32a93)
Features
  • hints: warns if transform matches js without allowJs (952cc87)

v23.1.4

Compare Source

v23.1.3

Compare Source

Bug Fixes
  • allow (but deprecate) use of old preprocessor.js (a65079f)
  • big refactor + fixes (mainly cache key + coverage) (e46caae)
  • fixes coverage and tests (09500c2)
  • gracefully load @​babel/core or babel-core (98b2410)
  • hack for babel < 6 so that breakpoints do work (90c74ef), closes #​627
  • resolves correctly config file path (fix #​636) (5ab100c)
  • test rootDir to handle preset-angular (8a6a8f7)
  • wrong error message (c955083)
  • html: correctly transforms html source when needed (9a2d74f)
  • lint: fixes tslint script & lint issues (60ab36e)
  • package: update fs-extra to version 6.0.1 (7e73536)
  • package: update pkg-dir to version 3.0.0 (3fb8f9f)
  • package: update yargs to version 12.0.1 (390ffcd)
  • source-maps: fix source maps options/calls (76e27c1)
  • Typo in utils.ts (#​534) (a650260)
Performance Improvements
  • do not hash cache key, jest does it underneath (fbe4f1f)

v23.1.2

Compare Source

v23.1.1

Compare Source

v23.1.0

Compare Source

v23.0.1

Compare Source

v23.0.0

Compare Source


Renovate configuration

📅 Schedule: "after 10pm every weekday,before 5am every weekday" in timezone America/Los_Angeles.

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ 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 this update again.


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

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot changed the title chore(deps): update dependency ts-jest to v26 Update dependency ts-jest to v26 Jul 9, 2020
@renovate renovate bot changed the title Update dependency ts-jest to v26 chore(deps): update dependency ts-jest to v26 Jul 9, 2020
@renovate renovate bot force-pushed the renovate/ts-jest-26.x branch 2 times, most recently from cf2e812 to d426e74 Compare July 17, 2020 05:08
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant