Skip to content

Update all dependencies#2

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/all
Open

Update all dependencies#2
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/all

Conversation

@renovate
Copy link

@renovate renovate bot commented Jun 1, 2020

This PR contains the following updates:

Package Type Update Change
@apollo/react-hooks dependencies major ^3.1.5 -> ^4.0.0
@testing-library/jest-dom dependencies major ^4.2.4 -> ^5.0.0
@testing-library/react dependencies major ^9.3.2 -> ^10.0.0
@testing-library/user-event dependencies major ^7.1.2 -> ^12.0.0
@types/jest dependencies major ^24.0.0 -> ^26.0.0
typescript (source) dependencies minor ~3.7.2 -> ~3.9.0

Release Notes

apollographql/react-apollo

v4.0.0

Compare Source

⚠️ Deprecation Notice ⚠️

Please note that this is the final version of all React Apollo packages, and that this repository is going to be archived. React Apollo functionality is now directly available from @apollo/client >= 3. While using the @apollo/react-X packages will still work, we recommend using the following imports from @apollo/client directly instead:

  • old: @apollo/react-components --> new: @apollo/client/react/components
  • old: @apollo/react-hoc --> new: @apollo/client/react/hoc
  • old: @apollo/react-ssr --> new: @apollo/client/react/ssr
  • old: @apollo/react-testing --> new: @apollo/client/testing
  • old: @apollo/react-hooks --> new: @apollo/client
Breaking Changes
  • React Apollo 4.0.0 is dependent on @apollo/client >= 3. If you are using apollo-client 2.x and are not ready to update to @apollo/client, please use React Apollo 3.x.

  • The react-apollo package has been fully removed. Please use @apollo/client or @apollo/react-X packages directly.

    @​hwillson in #​4037

  • Due to changes made in Apollo Client, the previous SSR testing pattern of:

    return getDataFromTree(app).then(() => {
      const markup = ReactDOM.renderToString(app);
      expect(markup).toMatch(/Waldo/);
    });

    will no longer work (ReactDOM.renderToString(app) will just return the initial loading state of the component under test). Instead, we can leverage the markup returned when getDataFromTree's Promise resolves:

    return getDataFromTree(app).then((markup) => {
      expect(markup).toMatch(/Waldo/);
    });
  • We are no longer building UMD versions of React Apollo.

testing-library/jest-dom

v5.11.2

Compare Source

Bug Fixes
  • Suggest using toBeEmptyDOMElement instead of toBeEmpty (#​284) (2cd17d3)

v5.11.1

Compare Source

Bug Fixes

v5.11.0

Compare Source

Features
  • extend toBeChecked to support any role that's compatible (#​267) (c135d0b)

v5.10.1

Compare Source

Bug Fixes
  • element not allowed to be disabled being returned as disabled (#​261) (5e39222)

v5.10.0

Compare Source

Features
  • [toBeValid/toBeInvalid] Check aria-invalid on any element (#​259) (14d1630)

v5.9.0

Compare Source

Features

v5.8.0

Compare Source

Features

v5.7.0

Compare Source

Features

v5.6.0

Compare Source

Features

v5.5.0

Compare Source

Features

v5.4.0

Compare Source

Features

v5.3.0

Compare Source

Features

v5.2.0

Compare Source

Features
  • toHaveValue: Enhanced error message with type information… (#​219) (eb51c17)

v5.1.1

Compare Source

Bug Fixes

v5.1.0

Compare Source

Features

v5.0.2

Compare Source

Bug Fixes

v5.0.1

Compare Source

Bug Fixes

v5.0.0

Compare Source

BREAKING CHANGES
  • moving typings to @​types/testing-library__jest-dom
  • This version does not includes types. The next patch release v5.0.1 will. If you need the type definitions please do not update to v.5.0.0.
testing-library/react-testing-library

v10.4.8

Compare Source

Bug Fixes
  • fireEvent: Make sure react dispatches focus/blur events (#​758) (9aac157)

v10.4.7

Compare Source

Bug Fixes
  • unmount: Flush useEffect cleanup functions syncronously (#​746) (b82773c)

v10.4.6

Compare Source

Bug Fixes
  • cleanup: remove scheduler code from flush-microtasks (#​744) (240900c)

v10.4.5

Compare Source

Bug Fixes

v10.4.4

Compare Source

Bug Fixes

v10.4.3

Compare Source

Bug Fixes
  • cleanup: Cleanup should flush microtask queue after unmount (#​632) (aac2e44)

v10.4.2

Compare Source

Bug Fixes
  • cleanup: microtask flushing now supports fake timers (#​720) (5814b29)

v10.4.1

Compare Source

Bug Fixes

v10.4.0

Compare Source

Features

Latest DOM Testing Library release page: https://github.com/testing-library/dom-testing-library/releases/tag/v7.17.0

The big feature is fake timers working with async utils out of the box

v10.3.0

Compare Source

Features

v10.2.1

Compare Source

Bug Fixes

v10.2.0

Compare Source

Features
  • run cleanup() when test runner supports teardown() (#​676) (c91e9a9)

v10.1.0

Compare Source

Features

v10.0.6

Compare Source

Bug Fixes

v10.0.5

Compare Source

Bug Fixes
  • fireEvent: automatically configure fireEvent to be wrapped in act (#​685) (6147830)

v10.0.4

Compare Source

Bug Fixes

v10.0.3

Compare Source

Bug Fixes

v10.0.2

Compare Source

Bug Fixes

v10.0.1

Compare Source

Bug Fixes

v10.0.0

Compare Source

Features
BREAKING CHANGES
Update DOM Testing Library

The latest version of DOM Testing Library has several breaking changes you will want to review the changelog of DOM Testing Library v7.0.0 to ensure you are unaffected.

Drop Node 8

Node 10 or greater is required. Node 8 is out of LTS (#​576) (fccc2cf), closes #​575

remove deprecated cleanup-after-each.js

This file which did nothing but log a warning to the console (#​598) (7942f68)

- import '@​testing-library/react/cleanup-after-each'
+ // nothing! Just remove it

As a general reminder, you should NOT need to use cleanup at all as this is done automatically for you (unless you're using @testing-library/react/pure in which case you know what you're doing... keep using cleanup).

testing-library/user-event

v12.1.1

Compare Source

Bug Fixes

v12.1.0

Compare Source

Features

v12.0.17

Compare Source

Bug Fixes

v12.0.16

Compare Source

Bug Fixes

v12.0.15

Compare Source

Bug Fixes

v12.0.14

Compare Source

Bug Fixes

v12.0.13

Compare Source

Bug Fixes

v12.0.12

Compare Source

Bug Fixes

v12.0.11

Compare Source

Bug Fixes

v12.0.10

Compare Source

Bug Fixes

v12.0.9

Compare Source

Bug Fixes

v12.0.8

Compare Source

Bug Fixes
  • React onChange/onInput events not triggering on input type="file" file upload (#​381) (d4db93c), closes #​380

v12.0.7

Compare Source

Bug Fixes
  • update onChange/input events fired on selected option (#​370) (6acbdb4)

v12.0.6

Compare Source

Bug Fixes
  • add message if type/paste function is called with an invalid element (#​375) (0dd387e)

v12.0.5

Compare Source

Bug Fixes

v12.0.4

Compare Source

Bug Fixes

v12.0.3

Compare Source

Bug Fixes

v12.0.2

Compare Source

Bug Fixes

v12.0.1

Compare Source

Reverts

v12.0.0

Compare Source

Features
  • make several API and implementation improvements (#​348) (e72205a)
  • type: make delay default to 0 (e13df95)
BREAKING CHANGES
  • Remove allAtOnce option on type in favor of delay: 0 or the new paste event
  • Make hover and unhover sync
  • Remove toggleSelectedOptions in favor of deselectOptions
  • (Potentially...) improve correctness of all APIs (so we fire some additional events and improve general correctness). This may or may not break your usage depending on whether you relied on our in-correctness 😅
  • type now actually defaults the delay to 0, so it's not necessarily async anymore. It's only async if you pass a delay.

v11.4.2

Compare Source

Bug Fixes
  • type: allow users to type decimal values (ba1c8d3)

v11.4.1

Compare Source

Bug Fixes

v11.4.0

Compare Source

Features

v11.3.2

Compare Source

Bug Fixes

v11.3.1

Compare Source

Bug Fixes

v11.3.0

Compare Source

Features

v11.2.1

Compare Source

Bug Fixes

v11.2.0

Compare Source

Features

v11.1.0

Compare Source

Features

v11.0.1

Compare Source

Bug Fixes

v11.0.0

Compare Source

Bug Fixes
  • type: wrap type in the asyncWrapper from DOM Testing Library (#​303) (9fe76b4)
BREAKING CHANGES
  • type: The DOM Testing Library version 7.9.0 or greater is required

v10.4.1

Compare Source

Bug Fixes

v10.4.0

Compare Source

Features

v10.3.5

Compare Source

Bug Fixes

v10.3.4

Compare Source

Bug Fixes

v10.3.3

Compare Source

Bug Fixes

v10.3.2

Compare Source

Bug Fixes
  • upload: FileList item function returns file or null instead undefined (#​288) (9634863)

v10.3.1

Compare Source

Bug Fixes
  • type: maxlength handling over multiple type() calls (#​283) (85546ec)

v10.3.0

Compare Source

Features

v10.2.4

Compare Source

Bug Fixes

v10.2.3

Compare Source

Bug Fixes

v10.2.2

Compare Source

Bug Fixes

v10.2.1

Compare Source

Bug Fixes
  • click/dblClick: prevent blur when clicking the same element (#​265) (585f1df)

v10.2.0

Compare Source

Features

v10.1.2

Compare Source

Bug Fixes

v10.1.1

Compare Source

Bug Fixes

v10.1.0

Compare Source

Features

v10.0.2

Compare Source

Bug Fixes

v10.0.1

Compare Source

Bug Fixes
  • tab: Keep focus on the document if there are no focusable elements (420ae03)

v10.0.0

Compare Source

Continuous Integration
  • 🎡 drop support for node 8 (9e957e0)
BREAKING CHANGES
  • 🧨 Drop support for node 8

v9.0.0

Compare Source

Bug Fixes
  • 🐛 type supports fields with previous text (1e8d140)
BREAKING CHANGES
  • 🧨 Using .type() with an input field that had text already inside preserve
    the exisiting value and appends the typed text

v8.1.3

Compare Source

Bug Fixes

v8.1.2

Compare Source

Bug Fixes
  • 190: Add blur events in correct order (00f9d85)

v8.1.1

Compare Source

Bug Fixes

v8.1.0

Compare Source

Features

v8.0.7

Compare Source

Bug Fixes
  • click: correct focus changes based on mouseDown result (#​192) (ed59735)

v8.0.6

Compare Source

Bug Fixes
  • 🐛️ select options even if they are nested in optgroups (#​196) (8ba1b15)

v8.0.5

Compare Source

Bug Fixes

v8.0.4

Compare Source

Bug Fixes
  • click: click no longer blurs when focus changes during onClick event (#​208) (4bcab8c)

v8.0.3

Compare Source

Bug Fixes

v8.0.2

Compare Source

Bug Fixes
  • updated the documentation for the type method (3cfbcbe), closes #​198

v8.0.1

Compare Source

Bug Fixes

v8.0.0

Compare Source

Bug Fixes
  • add focus event for checkbox/radio (225a264)
BREAKING CHANGES
  • a focus event is now fired when clicking on checkbox and radio elements
Microsoft/TypeScript

v3.9.7

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

(note, 3.9.4 was intentionally skipped due to minor complications in publishing)

Downloads are available on:

v3.9.6

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

(note, 3.9.4 was intentionally skipped due to minor complications in publishing)

Downloads are available on:

v3.9.5

This release contains bug fixes in type-checking, emit, and editor scenarios.

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

(note, 3.9.4 was inten


Renovate configuration

📅 Schedule: "before 3am on the first day of the month" (UTC).

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

♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 force-pushed the renovate/all branch 2 times, most recently from 0f9ac74 to 43b9367 Compare June 9, 2020 16:35
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.

1 participant