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(deps): update all dependencies #2212

Merged
merged 2 commits into from
May 17, 2021
Merged

chore(deps): update all dependencies #2212

merged 2 commits into from
May 17, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 17, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/client (source) 3.3.16 -> 3.3.18 age adoption passing confidence
@babel/core (source) 7.14.0 -> 7.14.2 age adoption passing confidence
@babel/plugin-proposal-export-namespace-from (source) 7.12.13 -> 7.14.2 age adoption passing confidence
@babel/plugin-proposal-logical-assignment-operators (source) 7.13.8 -> 7.14.2 age adoption passing confidence
@babel/plugin-proposal-object-rest-spread (source) 7.13.8 -> 7.14.2 age adoption passing confidence
@babel/plugin-transform-classes (source) 7.13.0 -> 7.14.2 age adoption passing confidence
@babel/plugin-transform-react-display-name (source) 7.12.13 -> 7.14.2 age adoption passing confidence
@babel/plugin-transform-runtime (source) 7.13.15 -> 7.14.2 age adoption passing confidence
@babel/preset-env (source) 7.14.1 -> 7.14.2 age adoption passing confidence
@commercetools-test-data/core 2.3.0 -> 2.4.0 age adoption passing confidence
@commitlint/cli 12.1.1 -> 12.1.4 age adoption passing confidence
@commitlint/config-conventional 12.1.1 -> 12.1.4 age adoption passing confidence
@formatjs/cli 4.2.12 -> 4.2.14 age adoption passing confidence
@pmmmwh/react-refresh-webpack-plugin 0.5.0-beta.7 -> 0.5.0-beta.8 age adoption passing confidence
@sentry/browser 6.3.6 -> 6.4.0 age adoption passing confidence
@sentry/node 6.3.6 -> 6.4.0 age adoption passing confidence
@testing-library/react 11.2.6 -> 11.2.7 age adoption passing confidence
@types/node 14.14.44 -> 14.14.45 age adoption passing confidence
ajv (source) 8.3.0 -> 8.4.0 age adoption passing confidence
cypress 7.2.0 -> 7.3.0 age adoption passing confidence
fast-equals 2.0.2 -> 2.0.3 age adoption passing confidence
gatsby (changelog) 3.4.2 -> 3.5.0 age adoption passing confidence
gatsby-cli 3.4.1 -> 3.5.0 age adoption passing confidence
gatsby-plugin-emotion 6.4.0 -> 6.5.0 age adoption passing confidence
gatsby-source-filesystem 3.4.0 -> 3.5.0 age adoption passing confidence
postcss-loader 5.2.0 -> 5.3.0 age adoption passing confidence
react-intl (source) 5.17.5 -> 5.17.7 age adoption passing confidence
start-server-and-test 1.12.1 -> 1.12.2 age adoption passing confidence
terser-webpack-plugin 5.1.1 -> 5.1.2 age adoption passing confidence

Release Notes

apollographql/apollo-client

v3.3.18

Compare Source

Bug fixes
  • Add "sideEffects": false to all generated/published package.json files, to improve dead code elimination for nested entry points like @apollo/client/cache.

    @​benjamn in #​8213

v3.3.17

Compare Source

Bug fixes
  • Make useReactiveVar(rv) recheck the latest rv() value in its useEffect callback, and immediately update state if the value has already changed, rather than calling rv.onNextChange(setValue) to listen for future changes.

    @​benjamn in #​8135
babel/babel

v7.14.2

Compare Source

🐛 Bug Fix
💅 Polish
  • babel-helper-module-transforms, babel-plugin-transform-modules-commonjs
📝 Documentation
🏠 Internal
🏃‍♀️ Performance
commercetools/test-data

v2.4.0

Compare Source

Patch Changes
conventional-changelog/commitlint

v12.1.4

Compare Source

fix node v10 support

v12.1.3

Compare Source

Bug Fixes

v12.1.2

Compare Source

Bug Fixes
formatjs/formatjs

v4.2.14

v4.2.13

pmmmwh/react-refresh-webpack-plugin

v0.5.0-beta.8

Compare Source

getsentry/sentry-javascript

v6.4.0

Compare Source

  • [core] feat: initalScope in SDK Options (#​3544)
  • [node] feat: Release Health for Node (Session Aggregates) (#​3319)
  • [node] feat: Autoload Database Integrations in Node environment (#​3483)
  • [react] feat: Add support for React 17 Error Boundaries (#​3532)
  • [tracing] fix: Generate TTFB (Time to first byte) from span data (#​3515)
testing-library/react-testing-library

v11.2.7

Compare Source

Bug Fixes
ajv-validator/ajv

v8.4.0

Compare Source

JSON Type Definition schema options:

  • parseDate: parse timestamp type as Date objects.
  • allowDate: non-standard - allow date without time with timestamp type.
cypress-io/cypress

v7.3.0

Compare Source

Released 05/10/2021

Features:

  • Component tests can now be launched via the Module API by passing testingType: 'component' via the new testingType property. The testingType will default to e2e. Addresses #​16302.
  • cy.intercept() now accepts a times option in the RouteMatcher. times will specify the number of times that a particular cy.intercept() should be applied. Addresses #​4460 and #​8531.
  • cy.intercept() now accepts invocation using cy.intercept(url, routeMatcher, handler), where url is a regular expression. Previously, this only worked if url was a string. Addresses #​16390.
  • Cypress will now automatically get environment variables for LayerCI when recording to the Dashboard. Addresses #​16101.
  • Setting the env var DEBUG=cypress:server:record:ci-info will print commit information and CI provider information that's sent to the Dashboard as debug logs. Addresses #​16236.
  • Cypress can now use the certificate authority specified in NPM config if CYPRESS_DOWNLOAD_USE_CA is specified. See "Using a custom CA" for more information. Addresses #​8825.

Bugfixes:

  • Cypress will no longer incorrectly redirect the AUT window to /__/ when location.href is set to a relative path within the call stack of an XHR event handler. Fixes #​3975 and #​7439.
  • Cypress now properly handles when a form submit or anchor tag target is set to _top or _parent so that it no longer redirects the parent frame. Fixes #​1244.
  • Fixed a regression in 6.5.0 that could cause Cypress to crash with a RangeError: Maximum call stack size exceeded at _deconstructPacket error. Most commonly, this occurred when handling network errors with cy.request(). Fixes #​15101.
  • Fixed a regression in 7.0.0 that caused the Test Runner to crash with an ERR_INVALID_ARG_TYPE type error when testing a binary file upload. Fixes #​15898 and #​16223.
  • When verifying Cypress, we now listen for the 'close' event instead of the 'exit' event in an effort to fix some situations where the browser cannot be found even though it is on the system. Addressed in #​16312.
  • Fixed a regression in 6.5.0 that caused a node warning about .then() only accepting functions to display. Fixes #​15281.
  • cy.intercept() now adds a access-control-expose-headers: '*' header by default for CORS requests unless overridden. Fixes #​15050.
  • Improved the way that cy.intercept() and cy.route() requests with multiple aliases are displayed in the command log. Addressed in #​16382.
  • Cypress.cookies.debug(true) will now correctly show cookie-related messages on the console. Fixes #​15032.
  • cy.log() will now show all arguments, not only the first 2. Fixes #​16068.
  • .select() now correctly selects option elements with values that have   characters. Fixes #​16045.
  • The e2e and component configuration values will now correctly show when previewing resolved configuration in the Test Runner. Fixes #​16282.
  • When passing the —quiet flag, Cypress will no longer print uploading output to Stdout. Fixes #​16268.
  • When pressing the / hotkey in Firefox, Cypress will select the SpecList's SearchInput as it does in other browsers. Fixes #​16309.
  • Cypress will now detect the default installation location of the Visual Studio Code editors on Windows machines. Fixes #​15080.
  • Changing files extensions when creating a new test file should no longer add extra dots to the filename on Windows machines. Fixes #​16131.

Dependency Updates:

  • Upgraded classnames from 2.2.6 to 2.3.1. Addressed in #​8337.
  • Upgraded color-string from 1.5.4 to 1.5.5. Addressed in #​16362.
  • Upgraded lodash from 4.17.19 to 4.17.21. Addressed in #​16406.
  • Upgraded registry-js from 1.13.0 to 1.15.0. Addressed in #​16409.
  • Upgraded url-parse from 1.4.7 to 1.5.0. Addressed in #​16408.
planttheidea/fast-equals

v2.0.3

Compare Source

  • Fix #​50 - copy-pasta in cacheable check
gatsbyjs/gatsby

v3.5.0

Compare Source

webpack-contrib/postcss-loader

v5.3.0

Compare Source

Features
bahmutov/start-server-and-test

v1.12.2

Compare Source

Bug Fixes
webpack-contrib/terser-webpack-plugin

v5.1.2

Compare Source


Configuration

📅 Schedule: "before 3am on Monday" (UTC).

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

👻 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 added the 🤖 Type: Dependencies Dependency updates or something similar label May 17, 2021
@changeset-bot
Copy link

changeset-bot bot commented May 17, 2021

🦋 Changeset detected

Latest commit: 0406306

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 23 packages
Name Type
@commercetools-frontend/application-components Patch
@commercetools-frontend/application-config Patch
@commercetools-frontend/application-shell-connectors Patch
@commercetools-frontend/application-shell Patch
@commercetools-frontend/babel-preset-mc-app Patch
@commercetools-frontend/cypress Patch
@commercetools-frontend/i18n Patch
@commercetools-frontend/jest-preset-mc-app Patch
@commercetools-frontend/mc-html-template Patch
@commercetools-frontend/mc-scripts Patch
@commercetools-frontend/react-notifications Patch
@commercetools-frontend/sdk Patch
@commercetools-frontend/sentry Patch
@commercetools-backend/express Patch
@commercetools-backend/loggers Patch
merchant-center-application-template-starter Patch
playground Patch
@commercetools-local/visual-testing-app Patch
@commercetools-website/custom-applications Patch
@commercetools-website/components-playground Patch
@commercetools-frontend/permissions Patch
@commercetools-frontend/actions-global Patch
@commercetools-frontend/l10n Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@vercel
Copy link

vercel bot commented May 17, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/commercetools/merchant-center-application-kit/3CqLtyam1rSdeTz5kFFX59hXweJi
✅ Preview: https://merchant-center-application-kit-git-renovate-all-commercetools.vercel.app

@vercel vercel bot temporarily deployed to Preview May 17, 2021 05:26 Inactive
@vercel vercel bot temporarily deployed to Preview May 17, 2021 08:15 Inactive
@vercel vercel bot temporarily deployed to Preview May 17, 2021 08:25 Inactive
@vercel vercel bot temporarily deployed to Preview May 17, 2021 08:43 Inactive
@tdeekens tdeekens merged commit 5961c01 into main May 17, 2021
@tdeekens tdeekens deleted the renovate/all branch May 17, 2021 08:57
@ghost ghost mentioned this pull request May 17, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🤖 Type: Dependencies Dependency updates or something similar
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants