Skip to content

chore(deps): update dependency ts-jest to v26.5.6 #362

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

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Aug 26, 2020

This PR contains the following updates:

Package Change Age Confidence
ts-jest (source) 26.2.0 -> 26.5.6 age confidence

Release Notes

kulshekhar/ts-jest (ts-jest)

v26.5.6

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.5

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.4

Compare Source

Features

BREAKING CHANGES

  • By default, ts-jest will use sourceMap option from your tsconfig. If users want to have sourcemap on, they need to either remove sourceMap or set sourceMap: true in tsconfig

26.5.5 (2021-04-15)

Bug Fixes

v26.5.3

Compare Source

Bug Fixes

26.5.4 (2021-03-17)

Bug Fixes

v26.5.2

Compare Source

Bug Fixes

26.5.3 (2021-03-03)

Bug Fixes

v26.5.1

Compare Source

Bug Fixes

26.5.2 (2021-02-21)

Bug Fixes

v26.5.0

Compare Source

Bug Fixes
  • config: invalidate Jest transform cache when astTransformers value changes (#​2345) (d726016)
Features

26.5.1 (2021-02-09)

Features

v26.4.4

Compare Source

Code Refactoring
BREAKING CHANGES
  • 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.4.4 (2020-11-08)

Bug Fixes
Features

26.4.3 (2020-10-26)

Bug Fixes
Features

26.4.2 (2020-10-23)

Features
Performance Improvements
  • compiler: speed up bootstrap time for isolatedModules:false (#​2055) (230b5dd)
DEPRECATIONS
  • config: deprecate tsConfig in favor of tsconfig (#​1997)
  • config: deprecate packageJson since internal codes don't use it anymore (#​2034)

26.4.1 (2020-09-29)

Bug Fixes

v26.4.3

Compare Source

Code Refactoring
BREAKING CHANGES
  • 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.4.4 (2020-11-08)

Bug Fixes
Features

26.4.3 (2020-10-26)

Bug Fixes
Features

26.4.2 (2020-10-23)

Features
Performance Improvements
  • compiler: speed up bootstrap time for isolatedModules:false (#​2055) (230b5dd)
DEPRECATIONS
  • config: deprecate tsConfig in favor of tsconfig (#​1997)
  • config: deprecate packageJson since internal codes don't use it anymore (#​2034)

26.4.1 (2020-09-29)

Bug Fixes

v26.4.2

Compare Source

Code Refactoring
BREAKING CHANGES
  • 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.4.4 (2020-11-08)

Bug Fixes
Features

26.4.3 (2020-10-26)

Bug Fixes
Features

26.4.2 (2020-10-23)

Features
Performance Improvements
  • compiler: speed up bootstrap time for isolatedModules:false (#​2055) (230b5dd)
DEPRECATIONS
  • config: deprecate tsConfig in favor of tsconfig (#​1997)
  • config: deprecate packageJson since internal codes don't use it anymore (#​2034)

26.4.1 (2020-09-29)

Bug Fixes

v26.4.1

Compare Source

Code Refactoring
BREAKING CHANGES
  • 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, createJestPr

</details>

---

### 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.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/d0whc3r/node-gdrive).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4yOC4wIiwidXBkYXRlZEluVmVyIjoiNDEuNjAuNCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->

@renovate renovate bot force-pushed the renovate/ts-jest-26.x branch from 4d2bfc7 to a62a152 Compare September 20, 2020 10:48
@renovate renovate bot changed the title chore(deps): update dependency ts-jest to v26.3.0 chore(deps): update dependency ts-jest to v26.4.0 Sep 20, 2020
@renovate renovate bot force-pushed the renovate/ts-jest-26.x branch from a62a152 to 6b3003b Compare September 29, 2020 10:44
@renovate renovate bot changed the title chore(deps): update dependency ts-jest to v26.4.0 chore(deps): update dependency ts-jest to v26.4.1 Sep 29, 2020
@renovate renovate bot force-pushed the renovate/ts-jest-26.x branch from 6b3003b to 5cbc59e Compare October 29, 2020 05:59
@renovate renovate bot changed the title chore(deps): update dependency ts-jest to v26.4.1 chore(deps): update dependency ts-jest to v26.4.3 Oct 29, 2020
@renovate renovate bot force-pushed the renovate/ts-jest-26.x branch from 5cbc59e to 1400bab Compare November 28, 2020 11:56
@renovate renovate bot changed the title chore(deps): update dependency ts-jest to v26.4.3 chore(deps): update dependency ts-jest to v26.4.4 Nov 28, 2020
@renovate renovate bot force-pushed the renovate/ts-jest-26.x branch from 1400bab to 35ce7a2 Compare January 30, 2021 15:54
@renovate renovate bot changed the title chore(deps): update dependency ts-jest to v26.4.4 chore(deps): update dependency ts-jest to v26.5.0 Jan 30, 2021
@renovate renovate bot force-pushed the renovate/ts-jest-26.x branch from 35ce7a2 to 95823fc Compare February 10, 2021 20:59
@renovate renovate bot changed the title chore(deps): update dependency ts-jest to v26.5.0 chore(deps): update dependency ts-jest to v26.5.1 Feb 10, 2021
@renovate renovate bot force-pushed the renovate/ts-jest-26.x branch from 95823fc to bedd97d Compare April 26, 2021 14:59
@renovate renovate bot changed the title chore(deps): update dependency ts-jest to v26.5.1 chore(deps): update dependency ts-jest to v26.5.5 Apr 26, 2021
@renovate renovate bot force-pushed the renovate/ts-jest-26.x branch from bedd97d to 9f9a399 Compare May 9, 2021 23:02
@renovate renovate bot changed the title chore(deps): update dependency ts-jest to v26.5.5 chore(deps): update dependency ts-jest to v26.5.6 May 9, 2021
@renovate renovate bot force-pushed the renovate/ts-jest-26.x branch from 9f9a399 to 3cc1cf2 Compare November 20, 2022 15:33
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