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 ts-jest to v29 #778

Open
wants to merge 1 commit into
base: dependency-updates
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 10, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
ts-jest (source) 26.5.2 -> 29.0.5 age adoption passing confidence

Release Notes

kulshekhar/ts-jest

v29.0.5

Compare Source

Reverts

v29.0.4

Compare Source

Bug Fixes

v29.0.3

Compare Source

Bug Fixes
Features
  • add useESM option to pathsToModuleNameMapper options (#​3792) (eabe906)

v29.0.2

Compare Source

Bug Fixes

v29.0.1

Compare Source

Bug Fixes
  • legacy: include existing globals config in cached config (#​3803) (e79be47)
Features
  • add typings for ts-jest options via transform config (#​3805) (664b0f2)

v29.0.0

Compare Source

Features
DEPRECATIONS
  • Define ts-jest config under globals is now deprecated. Please define the config via transformer config instead.
BREAKING CHANGES
  • Only Node 14, 16 and 18 are supported
  • Jest 29 is required.

v28.0.8

Compare Source

Bug Fixes

v28.0.7

Compare Source

Bug Fixes

v28.0.6

Compare Source

Bug Fixes

v28.0.5

Compare Source

Bug Fixes

v28.0.4

Compare Source

Bug Fixes

v28.0.3

Compare Source

Bug Fixes

v28.0.2

Compare Source

Bug Fixes

v28.0.1

Compare Source

Bug Fixes

v28.0.0

Compare Source

Bug Fixes
  • legacy invoke Babel processAsync for babel-jest in ESM mode instead of process (#​3430) (0d7356c)
Features
BREAKING CHANGES
  • path-mapping AST transformer is no longer shipped in ts-jest v28. Please use an alternative one like https://github.com/LeDDGroup/typescript-transform-paths instead.
  • Any imports ts-jest/dist/compiler/ts-compiler should change to ts-jest/dist/legacy/compiler/ts-compiler
  • Any imports ts-jest/dist/compiler/ts-jest-compiler should change to ts-jest/dist/legacy/compiler/ts-jest-compiler
  • Any imports ts-jest/dist/config/config-set should change to ts-jest/dist/legacy/config/config-set
  • Minimum support TypeScript version is now 4.3 since Jest 28 requires it.
  • Jest 28 is required.
  • core: Any imports ts-jest/utils should be replaced with ts-jest.
  • core: Starting from Jest 27.4, mocked has been integrated into Jest repo.
  • core: Support for Node.js v10 has been removed as Jest drops support for it.

27.1.5 (2022-05-17)

Bug Fixes

27.1.4 (2022-03-24)

Bug Fixes

27.1.3 (2022-01-14)

Bug Fixes
  • compiler: update memory cache for compiler using received file content (#​3194) (e4d9541)

27.1.2 (2021-12-15)

Bug Fixes
  • stimulate esbuild type to avoid importing esbuild directly (#​3147) (9ace0a9)

27.1.1 (2021-12-07)

Bug Fixes

v27.1.5

Compare Source

Bug Fixes

v27.1.4

Compare Source

Bug Fixes

v27.1.3

Compare Source

Bug Fixes
  • compiler: update memory cache for compiler using received file content (#​3194) (e4d9541)

v27.1.2

Compare Source

Bug Fixes
  • stimulate esbuild type to avoid importing esbuild directly (#​3147) (9ace0a9)

v27.1.1

Compare Source

Bug Fixes

v27.1.0

Compare Source

Features
Code Refactoring

DEPRECATIONS

27.0.7 (2021-10-16)

Bug Fixes

27.0.6 (2021-10-14)

Bug Fixes

27.0.5 (2021-08-14)

Bug Fixes
Code Refactoring

27.0.4 (2021-07-21)

Bug Fixes
  • add @types/jest as optional peerDependencies to solve yarn 2 (#​2756) (5fbf43e)
  • add babel-jest as optional peerDependencies to solve yarn 2 (#​2751) (8bede2e)
  • config: include AST transformer's name and version into cache key (#​2755) (310fb9a), closes #​2753
Features

27.0.3 (2021-06-06)

Bug Fixes
Features

27.0.2 (2021-05-30)

Bug Fixes

27.0.1 (2021-05-26)

Bug Fixes

v27.0.7

Compare Source

Bug Fixes

v27.0.6

Compare Source

Bug Fixes

v27.0.5

Compare Source

Bug Fixes
Code Refactoring

v27.0.4

Compare Source

Bug Fixes
  • add @types/jest as optional peerDependencies to solve yarn 2 (#​2756) (5fbf43e)
  • add babel-jest as optional peerDependencies to solve yarn 2 (#​2751) (8bede2e)
  • config: include AST transformer's name and version into cache key (#​2755) (310fb9a), closes #​2753
Features

v27.0.3

Compare Source

Bug Fixes
Features

v27.0.2

Compare Source

Bug Fixes

v27.0.1

Compare Source

Bug Fixes

v27.0.0

Compare Source

Bug Fixes
Features
Performance Improvements
  • reuse jest file system cache for isolatedModules: false (#​2189) (68f446b)
Code Refactoring

BREAKING CHANGES

import type { TsCompilerInstance } from 'ts-jest/dist/types'

export function factory(compilerInstance: TsCompilerInstance) {
   //...
}
  • One is currently using pathRegex should use exclude with glob patterns.
  • If one currently relies on type check for js files, please set checkJs: true in your tsconfig.
  • Now both isolatedModules: true and isolatedModule: false codes are in one single class TsCompiler which is an instance created in TsJestCompiler based on config option compiler with value typescript or ttypescript.
  • config: packageJson config option is not used in internal ts-jest so this option is now removed.
  • config: One is defining ast transformers in jest.config.js/package.json should change to
// jest.config.js
module.exports = {
   //...
   globals: {
      'ts-jest': {
         astTransformers: {
           before: ['your_before_transformer_path'],
           after: ['your_after_transformer_path'],
           afterDeclarations: ['your_afterDeclarations_transformer_path'],
         }
      }
   }
}

or

// package.json
{
  "jest": {
     "globals": {
        "ts-jest": {
           "astTransformers": {
              "before": ["your_before_transformer_path"],
              "after": ["your_after_transformer_path"],
              "afterDeclarations": ["your_afterDeclarations_transformer_path"]
           }
        }
     }
  }
}
  • One currently refers type in jest.config.js
/** @​typedef {import('ts-jest')} */
module.exports = {
  //...
}

should change to

/** @​typedef {import('ts-jest/dist/types')} */
module.exports = {
  //...
}
  • Remove possibilities to import mocked, createJestPreset, pathsToModuleNameMapper from package entry. One should change to
import { mocked, createJestPreset, pathsToModuleNameMapper } from 'ts-jest/utils'
  • config: One currently uses tsConfig should change to tsconfig in your jest.config.js or package.json.

26.5.6 (2021-05-05)

Code Refactoring
  • refactor(config): show warning message for sourceMap: false (#​2557) (cf60990).

v26.5.6

Compare Source

Code Refactoring
  • refactor(config): show warning message for sourceMap: false (#​2557) (cf60990).

v26.5.5

Compare Source

Bug Fixes

v26.5.4

Compare Source

Bug Fixes

v26.5.3

Compare Source

Bug Fixes

Configuration

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

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

Rebasing: Whenever PR becomes conflicted, 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 Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 4 times, most recently from 152c071 to 857367f Compare September 17, 2022 15:36
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 5 times, most recently from 985fd4f to 2bf3bf7 Compare September 30, 2022 09:38
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 7 times, most recently from f3d6112 to 6daec16 Compare October 11, 2022 05:52
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 4 times, most recently from fba3394 to ab254b0 Compare October 25, 2022 23:35
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 2 times, most recently from 962034b to 81bd760 Compare November 1, 2022 17:47
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch from 81bd760 to ef58445 Compare November 5, 2022 01:05
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 3 times, most recently from 7895ccf to 507058f Compare December 3, 2022 03:18
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 2 times, most recently from 890dace to 2616ddc Compare December 14, 2022 04:07
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 2 times, most recently from 2799a40 to f46455e Compare December 17, 2022 09:07
@renovate renovate bot changed the title Update dependency ts-jest to v29 chore(deps): update dependency ts-jest to v29 Dec 17, 2022
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 2 times, most recently from 35086de to 61c1fff Compare December 27, 2022 02:15
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 4 times, most recently from e6a5b9e to deb67d2 Compare January 11, 2023 21:22
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 6 times, most recently from d90cba1 to b9fe31b Compare January 19, 2023 02:49
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 4 times, most recently from 351cc9d to 59fd246 Compare January 27, 2023 20:59
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 2 times, most recently from ab96034 to 96b89f7 Compare February 4, 2023 05:57
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 5 times, most recently from fb4998a to df0a816 Compare February 22, 2023 08:34
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch 3 times, most recently from 1f7aba3 to 2936408 Compare March 9, 2023 01:18
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch from 2936408 to 843a4b6 Compare March 11, 2023 04:46
@renovate renovate bot force-pushed the renovate/ts-jest-29.x branch from 843a4b6 to 34d14e0 Compare March 14, 2023 11:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants