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 all dependencies #246

Closed
wants to merge 1 commit into from
Closed

Update all dependencies #246

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Apr 1, 2020

This PR contains the following updates:

Package Type Update Change
@apollo/react-hooks dependencies major ^3.0.1 -> ^4.0.0
@apollo/react-ssr dependencies major ^3.0.1 -> ^4.0.0
@storybook/addon-actions devDependencies major ^5.3.17 -> ^6.0.0
@storybook/addon-knobs devDependencies major ^5.3.17 -> ^6.0.0
@storybook/addon-storyshots devDependencies major ^5.3.17 -> ^6.0.0
@storybook/addon-storysource devDependencies major ^5.3.19 -> ^6.0.0
@storybook/addons devDependencies major ^5.3.17 -> ^6.0.0
@storybook/react devDependencies major ^5.3.17 -> ^6.0.0
babel-jest devDependencies major ^25.1.0 -> ^26.0.0
eslint (source) devDependencies major ^6.2.2 -> ^7.0.0
graphql dependencies major ^14.4.2 -> ^15.0.0
immer dependencies major ^5.0.0 -> ^7.0.0
jest (source) devDependencies major ^25.1.0 -> ^26.0.0
next-apollo dependencies major ^3.1.5 -> ^5.0.0
url-loader devDependencies major ^3.0.0 -> ^4.0.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.

storybookjs/storybook

v6.0.7

Compare Source

Bug Fixes
  • Addon-docs: Fix extractArgTypes for unknown component (#​12012)
Maintenance
  • UI:pdate upgrade command in about section (#​11934)
  • Build: Remove documentation scripts and fix README (#​12015)
Dependency Upgrades
  • Bump jest-specific-snapshot to v4 (#​11939)

v6.0.6

Compare Source

Bug Fixes
  • CLI: Fix upgrade to warn when no packages found (#​11993)
  • Addon-docs: Fix blocks type export (#​11987)
  • CLI: Fix RN link (#​11973)

v6.0.5

Compare Source

Bug Fixes
  • CLI: Fix welcome links on Introduction MDX (#​11949)

v6.0.4

Compare Source

Bug Fixes
  • Source-loader: Fix .add detection (#​11920)

v6.0.3

Compare Source

Bug Fixes
  • Essentials: Fix missing toolbars addon (#​11910)

v6.0.2

Compare Source

Bug Fixes
  • CLI: Fix csf-hoist-story-annotations codemod for variable default exports (#​11895)

v6.0.1

Compare Source

Bug Fixes
  • Core: Fix support for main.ts/preview.ts files (#​11885)
  • Addon-docs: Fix ArgsTable regression (#​11889)

v6.0.0

Compare Source

Storybook 6.0 is here!

facebook/jest

v26.3.0

Compare Source

Features
  • [jest-circus, jest-jasmine2] Include failureDetails property in test results (#​9496)
  • [jest-each, jest-jasmine, jest-circus] Add support for .concurrent.each (#​9326)
Fixes
  • [jest-config] Add .pnp.js to transformIgnorePatterns defaults (#​10383)
  • [jest-leak-detector] Wait properly for GC runs due to changes in Node 14.7 (#​10366)
  • [jest-worker] Downgrade minimum node version to 10.13 (#​10352)
  • [docs] Update snapshot testing documentation(#​10359)

v26.2.2

Compare Source

Fixes
  • [jest-cli] Use correct file name to override existing jest config on init (#​10337)
  • [jest-haste-map] Properly detect support for native find (#​10346)

v26.2.1

Compare Source

Fixes
  • [jest-worker] Make sure to work with Node TS typings v12 (#​10336)

v26.2.0

Compare Source

Features
  • [jest-core, jest-circus, jest-reporter, jest-runner] Added support for reporting individual test cases using jest-circus (#​10227)
  • [jest-config, jest-reporter, jest-runner, jest-test-sequencer] Add slowTestThreshold configuration option (#​9366)
  • [jest-haste-map] Watchman crawler now includes dotfiles (#​10075)
  • [jest-worker] Added support for workers to send custom messages to parent in jest-worker (#​10293)
  • [jest-worker] Support passing resourceLimits (#​10335)
  • [pretty-format] Added support for serializing custom elements (web components) (#​10217)
Fixes
  • [expect] Match symbols and bigints in any() (#​10223)
  • [jest-changed-files] Use git diff instead of git log for --changedSince (#​10155)
  • [jest-console] Add missing console.timeLog for compatibility with Node (#​10209)
  • [jest-haste-map] Check find binary supports the -iname parameter (#​10308)
  • [jest-snapshot] Strip added indentation for inline error snapshots (#​10217)
Chore & Maintenance

v26.1.0

Compare Source

Features
  • [jest-mock] Export Mock, MockInstance, SpyInstance types (#​10138)
  • [jest-config] Support config files exporting (async) functions (#​10001)
  • [jest-cli, jest-core] Add --selectProjects CLI argument to filter test suites by project name (#​8612)
  • [jest-cli, jest-init] Add coverageProvider to jest --init prompts (#​10044)
Fixes
  • [jest-console] getConsoleOutput to receive global stack trace config and use it to format stack trace (#​10081)
  • [jest-jasmine2] Stop adding : after an error that has no message (#​9990)
  • [jest-diff] Control no diff message color with commonColor in diff options (#​9997)
  • [jest-snapshot] Fix TypeScript compilation (#​10008)
Chore & Maintenance
  • [docs] Correct confusing filename in enableAutomock example (#​10055)
  • [jest-core] 🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉🎉 (#​10000)
  • [jest-core, jest-reporters, jest-test-result, jest-types] Cleanup displayName type (#​10049)
  • [jest-runtime] Jest-internal sandbox escape hatch (#​9907)
  • [jest-fake-timers] Update now param type to support Date in addition to number. (#​10169)
  • [docs] Add param to setSystemTime docs and remove preceding period from it and getRealSystemTime (#​10169)
  • [jest-snapshot, jest-util] Replace make-dir with fs.mkdir (#​10136)
  • [docs] Added parcel-bundler documentation inside readme.md file
Performance
  • [jest-core, jest-transform, jest-haste-map] Improve Jest startup time and test runtime, particularly when running with coverage, by caching micromatch and avoiding recreating RegExp instances (#​10131)

v26.0.1

Compare Source

Fixes
  • [jest-circus] Backward compatibility for deprecated DescribeBlock.tests to not break e.g. Detox reporter

v26.0.0

Compare Source

Features
  • [jest-environment-jsdom] [BREAKING] Upgrade jsdom to v16 (#​9606)
  • [@jest/fake-timers] Add possibility to use a modern implementation of fake timers, backed by @sinonjs/fake-timers (#​7776)
  • [jest-runtime] Add createMockFromModule as an alias for genMockFromModule (#​9962)
Fixes
  • [babel-jest] Handle null being passed to createTransformer (#​9955)
  • [jest-circus, jest-console, jest-jasmine2, jest-reporters, jest-util, pretty-format] Fix time durating formatting and consolidate time formatting code (#​9765)
  • [jest-circus] [BREAKING] Fail tests if a test takes a done callback and have return values (#​9129)
  • [jest-circus] [BREAKING] Throw a proper error if a test / hook is defined asynchronously (#​8096)
  • [jest-circus] Throw more descriptive error if hook is defined inside test (#​9957)
  • [jest-circus] [BREAKING] Align execution order of tests to match jasmine's top to bottom order (#​9965)
  • [jest-config, jest-resolve] [BREAKING] Remove support for browser field (#​9943)
  • [jest-haste-map] Stop reporting files as changed when they are only accessed (#​7347)
  • [jest-resolve] Show relative path from root dir for module not found errors (#​9963)
  • [jest-runtime] Fix absolute path moduleNameMapper + jest.mock bug (#​8727)
Chore & Maintenance
  • [*] [BREAKING] TypeScript definitions requires a minimum of TypeScript v3.8 (#​9823)
  • [*] [BREAKING] Drop support for Node 8 (#​9423)
  • [*] Upgrade to chalk@4 (#​9752)
  • [*] Remove usage of realpath-native (#​9952)
  • [docs] Fix example reference implementation to use Jest with Phabricator (#​8662)
  • [docs] Added default compiler to tranform (#​8583)
  • [docs] Updated Testing Frameworks guide with React; make it generic (#​9106)
  • [expect, jest-mock, pretty-format] [BREAKING] Remove build-es5 from package (#​9945)
  • [@jest/fake-timers, @​jest/environment] [BREAKING] Rename LolexFakeTimers to ModernFakeTimers (#​9960)
  • [jest-haste-map] [BREAKING] removed providesModuleNodeModules (#​8535)
  • [jest-runtime] [BREAKING] Remove long-deprecated require.requireActual and require.requireMock methods (#​9854)
eslint/eslint

v7.6.0

Compare Source

  • ecb2b73 Update: require meta for fixable rules in RuleTester (refs #​13349) (#​13489) (Milos Djermanovic)
  • 6fb4edd Docs: fix broken links in developer guide (#​13518) (Sam Chen)
  • 318fe10 Fix: Do not output undefined as line and column when it's unavailable (#​13519) (haya14busa)
  • 493b5b4 Sponsors: Sync README with website (ESLint Jenkins)
  • f100143 Sponsors: Sync README with website (ESLint Jenkins)
  • 16b10fe Fix: Update the chatroom link to go directly to help channel (#​13536) (Nicholas C. Zakas)
  • f937eb9 Sponsors: Sync README with website (ESLint Jenkins)
  • e71e298 Update: Change no-duplicate-case to comparing tokens (fixes #​13485) (#​13494) (Yosuke Ota)
  • 6c4aea4 Docs: add ECMAScript 2020 to README (#​13510) (Milos Djermanovic)

v7.5.0

Compare Source

v7.4.0

Compare Source

v7.3.1

Compare Source

v7.3.0

Compare Source

v7.2.0

Compare Source

  • b735a48 Update: add enforceForFunctionPrototypeMethods option to no-extra-parens (#​12895) (Milos Djermanovic)
  • 27ef73f Update: reporter locr of func-call-spacing (refs #​12334) (#​13311) (Anix)
  • 353bfe9 Update: handle parentheses in multiline-ternary (fixes #​13195) (#​13367) (Milos Djermanovic)
  • a7fd343 Update: keyword-spacing unexpected space loc improve (refs #​12334) (#​13377) (Anix)
  • e49732e Fix: Ignore import expressions in no-unused-expressions rule (#​13387) (Veniamin Krol)
  • 220349f Chore: Remove duplicate health files (#​13380) (Nicholas C. Zakas)
  • dd949ae Update: support ?? operator, import.meta, and export * as ns (#​13196) (Toru Nagashima)
  • d5fce9f Update: enable es2020 environment in --init (#​13357) (Milos Djermanovic)
  • 21b1583 Docs: fixed broken hash link for working-with-rules.md (#​13386) (Yosuke Ota)
  • b76aef7 Update: Improve report location for template-tag-spacing (refs #​12334) (#​13203) (Milos Djermanovic)
  • 578efad Chore: update no-unused-vars caughtErrors in eslint-config-eslint (#​13351) (Milos Djermanovic)
  • 426088c Fix: no-unused-vars updated location to last reference (fixes #​13181) (#​13354) (Anix)
  • cb50b69 Update: Improve location for no-mixed-spaces-and-tabs (refs #​12334) (#​13365) (Milos Djermanovic)
  • f858f2a Chore: Add Tidelift to funding.yml (#​13371) (Nicholas C. Zakas)
  • ee30e5d Sponsors: Sync README with website (ESLint Jenkins)
  • c29bd9f Chore: Add breaking/core change link to issue templates (#​13344) (Kai Cataldo)
  • d55490f Sponsors: Sync README with website (ESLint Jenkins)

v7.1.0

Compare Source

v7.0.0

Compare Source


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 60a4985 to 0411714 Compare April 7, 2020 16:33
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from a3a75cb to c1d3222 Compare May 4, 2020 18:19
@MrOrz
Copy link
Member

MrOrz commented May 5, 2020

Blocked by storybookjs/storybook#10631

@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 1bdd113 to 9fd1c66 Compare June 10, 2020 20:36
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 799c709 to 5433413 Compare July 22, 2020 06:20
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 6b8652e to c5ba3fe Compare August 11, 2020 06:47
@MrOrz MrOrz closed this Apr 15, 2021
@MrOrz MrOrz deleted the branch dev April 15, 2021 15:03
@MrOrz MrOrz deleted the renovate/all branch October 2, 2023 14:40
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.

None yet

2 participants