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

fix(deps): update all dependencies #1734

Merged
merged 3 commits into from
Sep 15, 2020
Merged

fix(deps): update all dependencies #1734

merged 3 commits into from
Sep 15, 2020

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 14, 2020

This PR contains the following updates:

Package Type Update Change
@commercetools-docs/gatsby-theme-docs dependencies patch 7.0.5 -> 7.0.6
@​commercetools-uikit/data-table dependencies minor 10.32.0 -> 10.33.0
@​commercetools-uikit/icons dependencies minor 10.30.1 -> 10.33.0
@​commercetools-uikit/multiline-text-field dependencies minor 10.32.1 -> 10.33.0
@​commercetools-uikit/select-field dependencies minor 10.32.1 -> 10.33.0
@​commercetools-uikit/text-field dependencies minor 10.32.0 -> 10.33.0
@formatjs/cli devDependencies patch 2.11.1 -> 2.11.2
@testing-library/react devDependencies patch 11.0.2 -> 11.0.4
@types/node dependencies patch 14.10.0 -> 14.10.1
@types/node devDependencies patch 14.10.0 -> 14.10.1
ajv dependencies patch 6.12.4 -> 6.12.5
eslint (source) devDependencies minor 7.8.1 -> 7.9.0
eslint-plugin-jest devDependencies patch 24.0.0 -> 24.0.1
eslint-plugin-react-hooks (source) devDependencies patch 4.1.1 -> 4.1.2
mini-css-extract-plugin dependencies patch 0.11.1 -> 0.11.2
moment (source) dependencies minor 2.27.0 -> 2.28.0
msw (source) devDependencies minor 0.20.5 -> 0.21.2
puppeteer devDependencies minor 5.2.1 -> 5.3.0
stylelint (source) devDependencies patch 13.7.0 -> 13.7.1
terser-webpack-plugin dependencies minor 4.1.0 -> 4.2.0

Release Notes

commercetools/commercetools-docs-kit

v7.0.6

Compare Source

formatjs/formatjs

v2.11.2

Compare Source

testing-library/react-testing-library

v11.0.4

Compare Source

Bug Fixes
  • Trigger ongot-/onlostpointercapture when calling got-/lostpointercapture (#​786) (c546a6f)

v11.0.3

Compare Source

Bug Fixes
  • Trigger onPointerEnter/Leave when calling pointerEnter/Leave (#​784) (c7b5622)
ajv-validator/ajv

v6.12.5

Compare Source

Fix uri scheme validation (@​ChALkeR).
Fix boolean schemas with strictKeywords option (#​1270)

eslint/eslint

v7.9.0

Compare Source

  • 3ca2700 Fix: Corrected notice for invalid (:) plugin names (#​13473) (Josh Goldberg)
  • fc5783d Docs: Fix leaky anchors in v4 migration page (#​13635) (Timo Tijhof)
  • f1d07f1 Docs: Provide install commands for Yarn (#​13661) (Nikita Baksalyar)
  • 29d1cdc Fix: prefer-destructuring removes comments (refs #​13678) (#​13682) (Milos Djermanovic)
  • b4da0a7 Docs: fix typo in working with plugins docs (#​13683) (啸生)
  • 6f87db7 Update: fix id-length false negatives on Object.prototype property names (#​13670) (Milos Djermanovic)
  • 361ac4d Fix: NonOctalDecimalIntegerLiteral is decimal integer (fixes #​13588) (#​13664) (Milos Djermanovic)
  • f260716 Docs: update outdated link (#​13677) (klkhan)
  • 5138c91 Docs: add missing eslint directive comments in no-await-in-loop (#​13673) (Milos Djermanovic)
  • 17b58b5 Docs: clarify correct example in no-return-await (fixes #​13656) (#​13657) (Milos Djermanovic)
  • 9171f0a Chore: fix typo (#​13660) (Nitin Kumar)
  • 6d9f8fb Sponsors: Sync README with website (ESLint Jenkins)
  • 97b0dd9 Sponsors: Sync README with website (ESLint Jenkins)
  • deab125 Sponsors: Sync README with website (ESLint Jenkins)
  • bf2e367 Sponsors: Sync README with website (ESLint Jenkins)
  • 8929208 Sponsors: Sync README with website (ESLint Jenkins)
jest-community/eslint-plugin-jest

v24.0.1

Compare Source

Bug Fixes
webpack-contrib/mini-css-extract-plugin

v0.11.2

Compare Source

moment/moment

v2.28.0

Compare Source

  • Release Sept 13, 2020

Fix bug where .format() modifies original instance, and locale updates

mswjs/msw

v0.21.2

Compare Source

Bug fixes

  • Fixes type annotations of ResponseTransformer to drop the usage of the unknown generics causing type violations in strict mode (#​381, #​382).

v0.21.1

Compare Source

Bug fixes

  • Fixes an issue that resulted into TypeScript violations in strict mode (#​377, #​379).

v0.21.0

Compare Source

This release contains changes to the mockServiceWorker.js file. Please follow the instructions in your browser to upgrade the Service Worker file.

Breaking changes

  • ctx.fetch utility now returns the entire response, not just the body (#​373).
- const body = await ctx.fetch(req)
+ const response = await ctx.fetch(req)
+ const body = await response.json()

Features

  • Adds support for mocking any GraphQL operation regardless of its type via graphql.operation API (#​343).
import { graphql } from 'msw'

graphql.operation((req, res, ctx) => {
const { query, variables } = req.body

// Execute any GraphQL operation against a mock schema
// and return the response.
return executeSchema(mockSchema, { query, variables })
})

- Adds support for request and response body type generics to `rest.*` request handlers (#​345, #​352).
```ts
import { rest } from 'msw'

interface UserResponseBodyType {
  firstName: string
}

rest.get<never, UserResponseBodyType>('/user', (req, res, ctx) => {
  return res(ctx.json({ firstName: ‘John’ })
})

interface TodoRequestBodyType {
  title: string
}

type TodoResponseBodyType = string[]

rest.post<TodoRequestBodyType, TodoResponseBodyType>('/todo', (req, res, ctx) => {
  const { title } = req.body
  return res(ctx.json(['one', title]))
})
  • Adds support to rest.head() request handler to match HEAD method requests (#​356).
  • Adds findWorker option to worker.start() to locate the mock Service Worker script at a custom location (#​335, #​351).
  • Adds a keepalive mechanism between a client and the Service Worker to prevent the worker to be terminated due to inactivity (#​367, #​371).
  • ctx.json now supports any data types that can be serialized to a valid JSON (#​349, #​350).

Bug fixes

  • Fixes an issue that resulted into custom options to worker.start() not being deeply merged with the default ones (#​347, #​348).
  • Fixes an issue that resulted into ctx.json() utility function accepting only objects. Now it accepts any data that can be stringified into JSON (#​349, #​350).
  • Fixes an issue that resulted into “The “superCtor” argument must be of type function
    ”error message when using setupServer (mswjs/node-request-interceptor#​49, mswjs/node-request-interceptor#​50).
  • GET and HEAD requests now forcefully contain no request body (#​361, #​366).

Internals

  • Adjusts internal tooling to support contributors with Windows machines (#​363, #​364).
  • Updates dependencies (#​376).
puppeteer/puppeteer

v5.3.0

Compare Source

Highlights
  • Chromium 86.0.4240.0 (r800071)
  • Support configuring the browser download path PUPPETEER_DOWNLOAD_PATH (#​6014)
  • Add page.waitForTimeout (and subsequently, frame.waitForTimeout) and deprecates the page.waitFor and frame.waitFor methods (#​6268).
Raw notes

030fcaa - chore: mark version v5.3.0 (#​6412)
4ce600a - chore: Remove target debug-unit and add unit-debug (#​6411)
62ac167 - feat(chromium): roll Chromium to r800071 (#​6407)
35cfbe1 - docs(troubleshooting.md): updated commands (#​6296)
ce6ae35 - doc(contributing): add info on bisecting upstream changes (#​6402)
e22ca4c - chore: extend Firefox launch test deadline by a month (#​6403)
2470d1e - chore: update documentation on rolling chromium (#​6399)
b6bbfd0 - fix: ensure frame.url() includes the query string (#​6398)
7b24e54 - fix: revise interesting classification for AXNodes (#​6334)
13ea347 - feat: support configuring the browser download path (#​6014)
615cd37 - chore: use https URL for license info (#​6279)
b4c1e45 - docs: fix setuid sandbox link (#​6310)
054d782 - fix(Launcher): use wait-for-process Firefox option (#​6315)
996e82c - test(install): check for Firefox binary, clean up messages (#​6316)
142f88c - docs(troubleshooting): update Alpine Chromium version (#​6320)
8e29b7a - chore: rename serializeTree parameter (#​6308)
1d08e27 - docs(troubleshooting.md) fix error in docker guidelines (#​6267)
9bc063b - chore: assert location value of ConsoleMessage in tests (#​6282)
713e990 - chore: upgrade Mitt to 2.1 (#​6287)
21552f8 - feat: page.waitForTimeout (#​6268)
3a15c06 - chore: test Connection class in the browser (#​6269)
a47b556 - docs(api): fix typo in elementHandle.evaluateHandle() (#​6276)
8c1a586 - fix: handle promise for reading protocol stream of trace (#​6270)
15d1906 - feat: add web test runner (#​6200)
13f8fe6 - chore(docs): page.emulateVisionDeficiency docs (#​6231)
e3933dd - chore: mark 5.2.1-post (#​6257)

stylelint/stylelint

v13.7.1

Compare Source

  • Fixed: double-slash disable comments when followed by another comment (#​4913).
webpack-contrib/terser-webpack-plugin

v4.2.0

Compare Source

Features
Bug Fixes

Renovate 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 Sep 14, 2020
@changeset-bot
Copy link

changeset-bot bot commented Sep 14, 2020

🦋 Changeset is good to go

Latest commit: d153f83

We got this.

This PR includes changesets to release 15 packages
Name Type
merchant-center-application-template-starter Patch
@commercetools-backend/express Patch
@commercetools-frontend/application-config Patch
@commercetools-frontend/application-shell-connectors Patch
@commercetools-frontend/application-shell Patch
@commercetools-frontend/jest-preset-mc-app Patch
@commercetools-frontend/mc-scripts Patch
@commercetools-frontend/react-notifications Patch
playground Patch
@commercetools-local/visual-testing-app Patch
@commercetools-website/custom-applications Patch
@commercetools-website/components-playground Patch
@commercetools-frontend/mc-html-template Patch
@commercetools-frontend/permissions Patch
@commercetools-frontend/mc-http-server 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 Sep 14, 2020

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/p6n4hiru1
✅ Preview: https://merchant-center-application-kit-git-renovate-all.commercetools.vercel.app

@vercel vercel bot temporarily deployed to Preview September 15, 2020 11:43 Inactive
@tdeekens tdeekens added the 🚀 Status: ship it Triggers an merge if rules match via bot label Sep 15, 2020
@kodiakhq kodiakhq bot merged commit 178ff31 into master Sep 15, 2020
@kodiakhq kodiakhq bot deleted the renovate/all branch September 15, 2020 12:01
@ghost ghost mentioned this pull request Sep 15, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🚀 Status: ship it Triggers an merge if rules match via bot 🤖 Type: Dependencies Dependency updates or something similar
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants