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 #2199

Merged
merged 3 commits into from
May 11, 2021
Merged

chore(deps): update all dependencies #2199

merged 3 commits into from
May 11, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 10, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@babel/preset-env (source) 7.14.0 -> 7.14.1 age adoption passing confidence
@emotion/react 11.1.5 -> 11.4.0 age adoption passing confidence
@fontsource/open-sans 4.2.2 -> 4.3.0 age adoption passing confidence
@formatjs/cli 4.2.11 -> 4.2.12 age adoption passing confidence
@​percy/cli 1.0.0-beta.48 -> 1.0.0-beta.49 age adoption passing confidence
@pmmmwh/react-refresh-webpack-plugin 0.5.0-beta.6 -> 0.5.0-beta.7 age adoption passing confidence
@pmmmwh/react-refresh-webpack-plugin 0.5.0-beta.4 -> 0.5.0-beta.7 age adoption passing confidence
@preconstruct/cli 2.0.7 -> 2.1.0 age adoption passing confidence
@types/faker 5.5.3 -> 5.5.5 age adoption passing confidence
@types/node 14.14.43 -> 14.14.44 age adoption passing confidence
@types/react-router 5.1.13 -> 5.1.14 age adoption passing confidence
@typescript-eslint/eslint-plugin 4.22.0 -> 4.23.0 age adoption passing confidence
@typescript-eslint/parser 4.22.0 -> 4.23.0 age adoption passing confidence
ajv (source) 8.2.0 -> 8.3.0 age adoption passing confidence
babel-plugin-macros 3.0.1 -> 3.1.0 age adoption passing confidence
core-js 3.11.1 -> 3.12.1 age adoption passing confidence
cypress 7.2.0 -> 7.3.0 age adoption passing confidence
eslint (source) 7.25.0 -> 7.26.0 age adoption passing confidence
fast-equals 2.0.1 -> 2.0.2 age adoption passing confidence
gatsby (changelog) 3.4.0 -> 3.4.2 age adoption passing confidence
gatsby-cli 3.4.0 -> 3.4.1 age adoption passing confidence
jest-localstorage-mock 2.4.10 -> 2.4.12 age adoption passing confidence
postcss (source) 8.2.13 -> 8.2.15 age adoption passing confidence
postcss-import 14.0.1 -> 14.0.2 age adoption passing confidence
prettier (source) 2.2.1 -> 2.3.0 age adoption passing confidence
puppeteer 9.0.0 -> 9.1.1 age adoption passing confidence
react-intl (source) 5.17.4 -> 5.17.5 age adoption passing confidence
thread-loader 3.0.3 -> 3.0.4 age adoption passing confidence
ts-jest (source) 26.5.5 -> 26.5.6 age adoption passing confidence
webpack 5.36.2 -> 5.37.0 age adoption passing confidence
webpack-dev-server 4.0.0-beta.2 -> 4.0.0-beta.3 age adoption passing confidence

Release Notes

babel/babel

v7.14.1

Compare Source

🐛 Bug Fix
📝 Documentation
🏠 Internal
  • babel-parser
  • babel-plugin-proposal-export-namespace-from, babel-plugin-syntax-module-string-names, babel-plugin-transform-modules-amd, babel-plugin-transform-modules-commonjs, babel-plugin-transform-modules-systemjs, babel-plugin-transform-modules-umd
  • babel-core, babel-plugin-proposal-class-properties, babel-plugin-proposal-class-static-block, babel-plugin-proposal-private-methods, babel-plugin-proposal-private-property-in-object, babel-plugin-syntax-class-properties, babel-plugin-transform-flow-comments, babel-plugin-transform-flow-strip-types, babel-plugin-transform-modules-commonjs, babel-plugin-transform-typescript, babel-plugin-transform-unicode-escapes, babel-preset-env, babel-standalone
emotion-js/emotion

v11.4.0

Compare Source

Patch Changes
fontsource/fontsource

v4.3.0

Compare Source

formatjs/formatjs

v4.2.12

pmmmwh/react-refresh-webpack-plugin

v0.5.0-beta.7

Compare Source

v0.5.0-beta.6

Compare Source

v0.5.0-beta.5

Compare Source

preconstruct/preconstruct

v2.1.0

Compare Source

Minor Changes
  • f798f04 #​393 Thanks @​with-heart! - Added support for the tsconfig.declarationMap option. preconstruct now outputs both d.ts and d.ts.map files to dist/declarations/src when the option is enabled.
typescript-eslint/typescript-eslint

v4.23.0

Compare Source

Bug Fixes
  • scope-manager: fix visiting TSAsExpression in assignment (#​3355) (87521a0)
Features
  • experimental-utils: Include getCwd() in RuleContext type (#​3308) (2b75c11)
  • refactor to split AST specification out as its own module (#​2911) (25ea953)

4.22.1 (2021-05-04)

Note: Version bump only for package @​typescript-eslint/typescript-eslint

v4.22.1

Compare Source

Note: Version bump only for package @​typescript-eslint/typescript-eslint

ajv-validator/ajv

v8.3.0

Compare Source

Typescript improvements:

kentcdodds/babel-plugin-macros

v3.1.0

Compare Source

Features
  • support more extensions that babel macros can be written in (#​175) (856e5f4)
zloirock/core-js

v3.12.1

Compare Source

  • Fixed some cases of Function#toString with multiple core-js instances
  • Fixed some possible String#split polyfill problems in V8 5.1

v3.12.0

Compare Source

v3.11.3

Compare Source

  • Native promise-based APIs Promise#{ catch, finally } returns polyfilled Promise instances when it's required

v3.11.2

Compare Source

  • Added a workaround of WebKit ~ iOS 10.3 Safari Promise bug, #​932
  • Promise#then of incorrect native Promise implementations with correct subclassing no longer wrapped
  • Changed the order of Promise feature detection, removed unhandled rejection tracking check in non-browser non-node platforms
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.
eslint/eslint

v7.26.0

Compare Source

  • aaf65e6 Upgrade: eslintrc for ModuleResolver fix (#​14577) (Brandon Mills)
  • ae6dbd1 Fix: track variables, not names in require-atomic-updates (fixes #​14208) (#​14282) (Patrick Ahmetovic)
  • 6a86e50 Chore: remove loose-parser tests (fixes #​14315) (#​14569) (Milos Djermanovic)
  • ee3a3ea Fix: create .eslintrc.cjs for module type (#​14304) (Nitin Kumar)
  • 6791dec Docs: fix example for require-atomic-updates (#​14562) (Milos Djermanovic)
  • 388eb7e Sponsors: Sync README with website (ESLint Jenkins)
  • f071d1e Update: Add automated suggestion to radix rule for parsing decimals (#​14291) (Bryan Mishkin)
  • 0b6a3f3 New: Include XO style guide in eslint --init (#​14193) (Federico Brigante)
planttheidea/fast-equals

v2.0.2

Compare Source

  • Optimize iterables comparisons to not double-iterate
  • Optimize loop-based comparisons for speed
  • Improve cache handling in circular handlers
  • Improve stability of memory by reducing variable instantiation
gatsbyjs/gatsby

v3.4.2

Compare Source

v3.4.1

Compare Source

clarkbw/jest-localstorage-mock

v2.4.12

Compare Source

v2.4.11

Compare Source

postcss/postcss

v8.2.15

Compare Source

v8.2.14

Compare Source

  • Removed source-map from client-side bundle (by Barak Igal).
postcss/postcss-import

v14.0.2

Compare Source

  • Remove remaining direct import of postcss package (#​455, #​456)
prettier/prettier

v2.3.0

Compare Source

diff

🔗 Release Notes

puppeteer/puppeteer

v9.1.1

Compare Source

v9.1.0

Compare Source

Features
Bug Fixes
webpack-contrib/thread-loader

v3.0.4

Compare Source

kulshekhar/ts-jest

v26.5.6

Compare Source

Code Refactoring
  • refactor(config): show warning message for sourceMap: false (#​2557) (cf60990).
webpack/webpack

v5.37.0

Compare Source

Features

  • add output.trustedTypes

Bugfixes

  • fix inclusion of too many chunk in the filename function when using dependOn
  • allow errors to be null in fs callbacks

Developer Experiences

  • make ESM tracking info message less verbose
  • add typings for loaders
webpack/webpack-dev-server

v4.0.0-beta.3

Compare Source

⚠ BREAKING CHANGES
  • the https.ca option was removed in favor the https.cacert option
  • the dev option was renamed to devMiddleware
  • the client.overlay option is true by default and show warnings by default
  • use server port for websocket connection by default, if you proxied webpack-dev-server, please update webpack-cli to v4.7.0 (#​3185) (0c3f817)
  • minimum supported Node.js version is 12.13.0
Features
Bug Fixes
  • improve warning message for open (#​3191) (d473fd9)
  • respect the client.logging option for HMR logging (#​3159) (6f3c6ba)
  • respect client.needClientEntry and client.needHotEntry options (#​3178) (a2b6db9)
  • overlay with warnings (#​3215) (7e18161)
  • help description for options
  • error description for options
  • improve warning message for the open option

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 10, 2021
@vercel
Copy link

vercel bot commented May 10, 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/AgVxAbmcYDa8mfud8HceLFS7AkVY
✅ Preview: https://merchant-center-application-kit-git-renovate-all-commercetools.vercel.app

@changeset-bot
Copy link

changeset-bot bot commented May 10, 2021

🦋 Changeset detected

Latest commit: 47b7ca3

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

This PR includes changesets to release 17 packages
Name Type
@commercetools-frontend/actions-global Patch
@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-backend/express Patch
merchant-center-application-template-starter Patch
@commercetools-frontend/react-notifications Patch
playground Patch
@commercetools-local/visual-testing-app Patch
@commercetools-website/components-playground Patch
@commercetools-frontend/cypress Patch
@commercetools-frontend/mc-html-template Patch
@commercetools-frontend/mc-scripts Patch
@commercetools-frontend/permissions Patch
@commercetools-frontend/jest-preset-mc-app 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 vercel bot temporarily deployed to Preview May 10, 2021 03:26 Inactive
@vercel vercel bot temporarily deployed to Preview May 10, 2021 06:55 Inactive
@vercel vercel bot temporarily deployed to Preview May 10, 2021 13:30 Inactive
@vercel vercel bot temporarily deployed to Preview May 10, 2021 15:59 Inactive
@vercel vercel bot temporarily deployed to Preview May 10, 2021 17:12 Inactive
@vercel vercel bot temporarily deployed to Preview May 10, 2021 19:24 Inactive
@vercel vercel bot temporarily deployed to Preview May 10, 2021 20:52 Inactive
@vercel vercel bot temporarily deployed to Preview May 11, 2021 00:03 Inactive
@vercel vercel bot temporarily deployed to Preview May 11, 2021 08:14 Inactive
@vercel vercel bot temporarily deployed to Preview May 11, 2021 08:37 Inactive
@tdeekens tdeekens merged commit 0bfa161 into main May 11, 2021
@tdeekens tdeekens deleted the renovate/all branch May 11, 2021 08:37
@ghost ghost mentioned this pull request May 11, 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