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

Update dependency jest to version 20.0.4 #208

Merged
merged 1 commit into from
Jun 1, 2017
Merged

Conversation

renovate-bot
Copy link
Collaborator

@renovate-bot renovate-bot commented May 11, 2017

This Pull Request updates dependency jest from version 20.0.0 to 20.0.4

Changelog

20.0.4 / 2017-05-24

  • jest-haste-map: recover from duplicate IDs (#3647)
    • jest-haste-map: do not expose any module when ID is duplicate
    • jest-haste-map: build up an index of duplicate IDs
    • jest-haste-map: recover from duplicate module IDs
    • jest-haste-map: fix prettier
    • fix all tests+flow
    • jest-haste-map: address comments
  • Fix retrieve typo (#3639)
    • Fix typo. in README.md
    • Vaidation -> Validation
    • Fix retrieve typo
  • Changed expetected spelling (#3642)
  • Fix typo (#3645)
    • Update jsonlint.js
    • Update reporterValidationErrors.js
  • Fix typos (#3644)
    • Update typos
    • Fix occured -> occurred
  • Fix typos (#3643)
    • Fix typos
    • Update BabylonParser.js
  • fix minor typo (#3641)
  • Fixing typos (#3640)
    small typos for fixing
  • added an 'l' to Vaidation (#3638)
    It was only a comment so no worries
  • fix spelling (#3636)
  • Fix typo. in README.md (#3635)
  • Fix lint.
  • jest-haste-map: add test to check duplicate modules are broken (#3632)
  • jest-haste-map: simplify watch-mode test structure (#3623)
    • jest-haste-map: simplify watch-mode test structure, first step
    • jest-haste-map: simplify watch-mode test structure, final step
  • fixes bug with enableAutomock when automock is set to false (#3624)
  • Fix progress bar in windows (#3626)
    On windows (cmd, powershell, and cmder) the progress bar was broken. The issue is windows doesnt fully support inverse, and so just renders blank spaces. Changing it to a block character (ascii 219) and removing the inverse fixes this, and should still look the same across other terminals that worked before this change.
  • Improves the terse messages in jest-editor (#3615)
    • Improves the terse messages in jest-editor
    • Adds a note about wording for jest-editor inside a test that matches the error it is implicity relying on
    • Adds a note about wording for jest-editor inside a test that matches the error it is implicity relying on
  • Adds prettier defaults for VS Code (#3612)
  • Fix typo in CLI.md (#3600)
    Added the missing closing quote.
  • [docs] Fix regex for ReactNative transformIgnorePatterns (#3596)
    • [docs] Fix regex for ReactNative transformIgnorePatterns
      The current example doesn't matches anything because the `/` is at the end.
      ```
      new RegExp("node_modules/(?!react-native|my-project|react-native-button)/").test('node_modules/')
      false
      new RegExp("node_modules/(?!react-native|my-project|react-native-button)/").test('node_modules/react-native/')
      false
      new RegExp("node_modules/(?!react-native|my-project|react-native-button)/").test('node_modules/my-project/')
      false
      new RegExp("node_modules/(?!react-native|my-project|react-native-button)/").test('node_modules/my-project-foo/')
      false
      ```
      When we put the slash inside the parens, it does what I believe we expect.
      ```
      new RegExp("node_modules/(?!react-native/|my-project/|react-native-button/)").test('node_modules/')
      true
      new RegExp("node_modules/(?!react-native/|my-project/|react-native-button/)").test('node_modules/react-native/')
      false
      new RegExp("node_modules/(?!react-native/|my-project/|react-native-button/)").test('node_modules/my-project/')
      false
      new RegExp("node_modules/(?!react-native/|my-project/|react-native-button/)").test('node_modules/my-project-foo/')
      true
      ```
    • Pulling the slash out of the group
  • [Editor] Ensure that the check for settings always returns (#3591)
  • [Dev] Improves the VS Code default settings, and recommends some extensions which cover the features of the codebase (#3592)

20.0.3 / 2017-05-17

  • v20.0.3
  • Update Changelog
  • v20.0.2

20.0.2 / 2017-05-17

  • Revert setting stack to empty string (#3589)
  • (docs): clarify clear vs reset mocks (#3579)
  • Windows watch mode fix (#3563)
    • Fix interactive watch arrow selection on Windows #3516
    • Refactored fix for #3516 to use replacePathSepForRegex
    • Fixed the failing test on Windows for the #3516 fix
    • Bump regex-slash to 1.0.1 (provides a flow lib def)
    • Update watch-filename-pattern-mode-test.js
    • Code review feedback
    • Fixed lint errors and implemented PR feedback
    • Revert yarn.lock changes
  • Empty stack for ValidateError (#3587)
    • Empty stack for ValidateError
    • Fix indentation in reporter validation errors
  • docs(gettingStarted): add Yarn install (#3588)
    • docs(gettingStarted): add Yarn install
      cc @cpojer
    • Update GettingStarted.md
  • Update fetchCurrentUser-test.js (#3582)
    Changing current example (jQuery test) for simplify the understanding
    The motivation for this change is why the output for current example (in verbose mode) is very strange
  • Fix reporters: default config (#3562)
  • Normalise all version of react (#3566)
  • Audit @flow and "use strict" (#3451)
    • Remove 'use strict' from all files
    • 'use strict' removed from pacakges' sources
    • Strict mode is now enabled automatically by babel
    • 'use strict' check removed from dangerfile
    • Updated contributing guidelines
    • Enable @flow for most files
    • Commit yarn.lock
    • Revert removal of "use strict" in test and mock files
    • Improve annotations for ReportDispatcher
    • Replace "void 0" with "undefined"
    • Update babel-plugin-transform-strict-mode to match transitive deps
  • Updating docs for `.toEqual` (#3556)
    • Updating docs for `.toEqual`
      Fixes #3529
    • Update ExpectAPI.md
  • coverage threshold integration test (#3557)
  • Failure when coverage threshold not met (#3554)
    • Return failure when coverage threshold isn’t met
      See: facebook/jest#3520
      Fixed async calls to each reporter onRunComplete method
    • Run prettier
  • fix PACKAGE typo (#3551)
  • Remove redundant eslint max-len overrides (#3548)
  • Use eslint-plugin-import (#3423)

20.0.1 / 2017-05-11

  • v20.0.1
  • Changelog for 20.0.1
  • Support absolute path to custom extension through haste package (#3537)
  • Fix showConfig test not to include the current Jest version (#3546)
  • expect.hasAssertions should throw when passed arguments (#3526)
    • `expect.hasAssertions()` should not allow useless parameters to limit
      confusion with `expect.assertions(<n>)`.
      Fixes #3517
  • Mention that .babelrc might by cached (#3545)
  • Support stack traces without proper message (#3513)
  • Reset context between test functions (#3506)
  • Add missing yarn lockfile for jest-cli (#3502)
  • Fix broken docs/en links (#3507)
  • Exposing the localized tagline as the page's title (#3544)
    Manually merging the single file change.
  • Replace <rootDir> in testMatch and moduleDirectories (#3538)
  • Enabling Portuguese Brazilian (#3539)
    🇧🇷❤️!
  • Adding Giant Machines to the Companies that use Jest (#3533)
    • Update siteConfig.js
    • Adding in the Giant Machines logo
  • Update package.json (#3527)
  • Improve coverage test (add uncovered lines) (#3509)
  • Fix website yarn start on Windows (#3510)
  • Add ansi-regex to pretty-format deps (#3498)
  • Fix trailling comma (#3489)
    Remove extra trailing at the last line of rules
    • Trailing comma or any other violations is causing .json files stop working
  • Jest 20 blog post and changelog adjustments (#3496)
  • Changes README's generated markers to html comments (#3494)
  • Update config snapshot (#3492)
  • Jest 20 (#3490)
    • Jest 20
    • v20.0.0

@codecov-io
Copy link

codecov-io commented May 11, 2017

Codecov Report

Merging #208 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master     #208   +/-   ##
=======================================
  Coverage   73.74%   73.74%           
=======================================
  Files          19       19           
  Lines        1093     1093           
  Branches      211      211           
=======================================
  Hits          806      806           
  Misses        287      287

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update ffe576d...c1ae25d. Read the comment docs.

@renovate-bot renovate-bot changed the title Update dependency jest to version 20.0.1 Update dependency jest to version 20.0.3 May 17, 2017
@renovate-bot renovate-bot changed the title Update dependency jest to version 20.0.3 Update dependency jest to version 20.0.4 May 24, 2017
@rarkins rarkins merged commit d3d2a20 into master Jun 1, 2017
@rarkins rarkins deleted the renovate/jest-20.x branch June 1, 2017 02:54
@rarkins rarkins removed the ready label Jun 1, 2017
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Dec 16, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
3 participants