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: update dependency ts-jest to v27 (release-bot/next-v14.x) - autoclosed #1838

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 28, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
ts-jest (source) ^26.0.0 -> ^27.0.0 age adoption passing confidence

Release Notes

kulshekhar/ts-jest

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

Configuration

📅 Schedule: At any time (no schedule defined).

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

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

🔕 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 added the 📦 v14 Apply this label to a pull request, if it has to be cherry-picked to the v14.x-branch after merging. label May 28, 2021
@renovate renovate bot force-pushed the renovate/release-bot/next-v14.x-ts-jest-27.x branch 2 times, most recently from 4bfb0e7 to 214cc07 Compare June 7, 2021 13:41
bors bot added a commit that referenced this pull request Jun 7, 2021
1844: feat: update Jest to version 27 r=ZauberNerd a=herschel666

The Canarist tests aren't helpful here, because the dependency tree of the Canarist test monorepo contains both Jest v26 & Jest v27 packages. This won't work.

closes #1760 #1761 #1831 #1832 #1838 #1839

<details>
<summary>Bors merge bot cheat sheet</summary>

We are using [bors-ng](https://github.com/bors-ng/bors-ng) to automate merging of our pull requests. The following table provides a summary of commands that are available to reviewers (members of this repository with push access) and delegates (in case of `bors delegate+` or `bors delegate=[list]`).

| Syntax | Description |
| --- | --- |
| bors merge | Run the test suite and push to master if it passes. Short for "reviewed: looks good." |
| bors merge- | Cancel an r+, r=, merge, or merge= |
| bors try | Run the test suite without pushing to master. |
| bors try- | Cancel a try |
| bors delegate+ | Allow the pull request author to merge their changes. |
| bors delegate=[list] | Allow the listed users to r+ this pull request's changes. |
| bors retry | Run the previous command a second time. |

This is a short collection of opinionated commands. For a full list of the commands read the [bors reference](https://bors.tech/documentation/).

</details>


Co-authored-by: Emanuel Kluge <[email protected]>
bors bot added a commit that referenced this pull request Jun 8, 2021
1844: feat: update Jest to version 27 r=herschel666 a=herschel666

The Canarist tests aren't helpful here, because the dependency tree of the Canarist test monorepo contains both Jest v26 & Jest v27 packages. This won't work.

closes #1760 #1761 #1831 #1832 #1838 #1839

<details>
<summary>Bors merge bot cheat sheet</summary>

We are using [bors-ng](https://github.com/bors-ng/bors-ng) to automate merging of our pull requests. The following table provides a summary of commands that are available to reviewers (members of this repository with push access) and delegates (in case of `bors delegate+` or `bors delegate=[list]`).

| Syntax | Description |
| --- | --- |
| bors merge | Run the test suite and push to master if it passes. Short for "reviewed: looks good." |
| bors merge- | Cancel an r+, r=, merge, or merge= |
| bors try | Run the test suite without pushing to master. |
| bors try- | Cancel a try |
| bors delegate+ | Allow the pull request author to merge their changes. |
| bors delegate=[list] | Allow the listed users to r+ this pull request's changes. |
| bors retry | Run the previous command a second time. |

This is a short collection of opinionated commands. For a full list of the commands read the [bors reference](https://bors.tech/documentation/).

</details>


Co-authored-by: Emanuel Kluge <[email protected]>
herschel666 pushed a commit that referenced this pull request Jun 8, 2021
...and widen peer-dependency ranges where necessary.

closes #1838 #1839 #1761
@renovate renovate bot changed the title chore: update dependency ts-jest to v27 (release-bot/next-v14.x) chore: update dependency ts-jest to v27 (release-bot/next-v14.x) - autoclosed Jun 8, 2021
@renovate renovate bot closed this Jun 8, 2021
@renovate renovate bot deleted the renovate/release-bot/next-v14.x-ts-jest-27.x branch June 8, 2021 08:25
@renovate renovate bot changed the title chore: update dependency ts-jest to v27 (release-bot/next-v14.x) - autoclosed chore: update dependency ts-jest to v27 (release-bot/next-v14.x) Jun 14, 2021
@renovate renovate bot reopened this Jun 14, 2021
@renovate renovate bot restored the renovate/release-bot/next-v14.x-ts-jest-27.x branch June 14, 2021 08:56
@renovate renovate bot force-pushed the renovate/release-bot/next-v14.x-ts-jest-27.x branch from 214cc07 to 94ce306 Compare June 14, 2021 08:57
Base automatically changed from release-bot/next-v14.x to v14.x June 14, 2021 12:21
@renovate renovate bot changed the title chore: update dependency ts-jest to v27 (release-bot/next-v14.x) chore: update dependency ts-jest to v27 (release-bot/next-v14.x) - autoclosed Jun 22, 2021
@renovate renovate bot closed this Jun 22, 2021
@renovate renovate bot deleted the renovate/release-bot/next-v14.x-ts-jest-27.x branch June 22, 2021 15:53
@renovate renovate bot changed the title chore: update dependency ts-jest to v27 (release-bot/next-v14.x) - autoclosed chore: update dependency ts-jest to v27 (release-bot/next-v14.x) Jun 23, 2021
@renovate renovate bot reopened this Jun 23, 2021
@renovate renovate bot restored the renovate/release-bot/next-v14.x-ts-jest-27.x branch June 23, 2021 11:58
@renovate renovate bot changed the title chore: update dependency ts-jest to v27 (release-bot/next-v14.x) chore: update dependency ts-jest to v27 (release-bot/next-v14.x) - autoclosed Jul 4, 2021
@renovate renovate bot closed this Jul 4, 2021
@renovate renovate bot deleted the renovate/release-bot/next-v14.x-ts-jest-27.x branch July 4, 2021 21:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
📦 v14 Apply this label to a pull request, if it has to be cherry-picked to the v14.x-branch after merging.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant