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

Merged
merged 4 commits into from
Jun 7, 2021
Merged

fix(deps): update all dependencies #2247

merged 4 commits into from
Jun 7, 2021

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 7, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commercetools-docs/gatsby-theme-docs 16.2.0 -> 16.3.0 age adoption passing confidence
@commercetools-docs/ui-kit 16.2.0 -> 16.3.0 age adoption passing confidence
@commercetools-docs/writing-style 3.0.5 -> 3.0.6 age adoption passing confidence
@fontsource/open-sans 4.4.2 -> 4.4.5 age adoption passing confidence
@formatjs/cli 4.2.16 -> 4.2.19 age adoption passing confidence
@pmmmwh/react-refresh-webpack-plugin 0.5.0-beta.8 -> 0.5.0-rc.0 age adoption passing confidence
@sentry/browser 6.4.1 -> 6.5.1 age adoption passing confidence
@sentry/node 6.4.1 -> 6.5.1 age adoption passing confidence
@testing-library/jest-dom 5.12.0 -> 5.13.0 age adoption passing confidence
@types/faker 5.5.5 -> 5.5.6 age adoption passing confidence
@types/react-router 5.1.14 -> 5.1.15 age adoption passing confidence
@typescript-eslint/eslint-plugin 4.25.0 -> 4.26.0 age adoption passing confidence
@typescript-eslint/parser 4.25.0 -> 4.26.0 age adoption passing confidence
ajv (source) 8.5.0 -> 8.6.0 age adoption passing confidence
core-js 3.13.1 -> 3.14.0 age adoption passing confidence
css-minimizer-webpack-plugin 3.0.0 -> 3.0.1 age adoption passing confidence
eslint (source) 7.27.0 -> 7.28.0 age adoption passing confidence
eslint-formatter-pretty 4.0.0 -> 4.1.0 age adoption passing confidence
execa 5.0.1 -> 5.1.1 age adoption passing confidence
formik (source) 2.2.8 -> 2.2.9 age adoption passing confidence
gatsby (changelog) 3.6.1 -> 3.6.2 age adoption passing confidence
jest-localstorage-mock 2.4.13 -> 2.4.14 age adoption passing confidence
postcss-modules 4.0.0 -> 4.1.3 age adoption passing confidence
prettier (source) 2.3.0 -> 2.3.1 age adoption passing confidence
react-intl (source) 5.18.1 -> 5.20.1 age adoption passing confidence
react-modal 3.13.1 -> 3.14.2 age adoption passing confidence
start-server-and-test 1.12.3 -> 1.12.5 age adoption passing confidence
terser-webpack-plugin 5.1.2 -> 5.1.3 age adoption passing confidence

Release Notes

commercetools/commercetools-docs-kit

v16.3.0

Compare Source

Patch Changes
fontsource/fontsource

v4.4.5

Compare Source

formatjs/formatjs

v4.2.19

v4.2.18

v4.2.17

pmmmwh/react-refresh-webpack-plugin

v0.5.0-rc.0

Compare Source

v0.5.0-beta.9

Compare Source

getsentry/sentry-javascript

v6.5.1

Compare Source

  • [nextjs] fix: Prevent webpack 5 from crashing server (#​3642)
  • [eslint] build: Upgrade to eslint 7.27.0 (#​3639)
  • [nextjs] test: Add nextjs integration tests for Server and Browser (#​3632)
  • [browser] ref: Don't send session duration in browser environments (#​3616)
  • [hub] fix: Correctly compute session durations (#​3616)

v6.5.0

Compare Source

  • [angular] fix: prevent memory leak when the root view is removed (#​3594)
  • [browser] fix: Do not trigger session on meaningless navigation (#​3608)
  • [nextjs] feat: Frontend + withSentry Performance Monitoring (#​3580)
  • [react] fix: Use history object for init transaction name (#​3609)
testing-library/jest-dom

v5.13.0

Compare Source

Features
typescript-eslint/typescript-eslint

v4.26.0

Compare Source

Bug Fixes
Features
  • eslint-plugin: [member-ordering] add callback as an ordering type of node (#​3354) (d134b1f)
  • eslint-plugin: [space-infix-ops] Add support for Union and intersection of type declarations (#​3360) (3d29323)
  • scope-manager: reduce generated lib file size (#​3468) (258116b)
ajv-validator/ajv

v8.6.0

Compare Source

Track evaluated properties with patternProperties that have always valid schemas (e.g., true) (@​P0lip, #​1626)
Option int32range to disable number range checking for int32 and uint32 type in JTD schemas

zloirock/core-js

v3.14.0

Compare Source

  • Added polyfill of stable sort in { Array, %TypedArray% }.prototype.sort, #​769, #​941
  • Fixed Safari 14.0- %TypedArray%.prototype.sort validation of arguments bug
  • .at marked as supported from V8 9.2
webpack-contrib/css-minimizer-webpack-plugin

v3.0.1

Compare Source

eslint/eslint

v7.28.0

Compare Source

sindresorhus/eslint-formatter-pretty

v4.1.0

Compare Source

sindresorhus/execa

v5.1.1

Compare Source

  • Fix error message when user passes a single array argument (#​468) 2b9c0e1

v5.1.0

Compare Source

formium/formik

v2.2.9

Compare Source

Patch Changes
gatsbyjs/gatsby

v3.6.2

Compare Source

clarkbw/jest-localstorage-mock

v2.4.14

Compare Source

css-modules/postcss-modules

v4.1.3

Compare Source

  • Fixed package contents

v4.1.1

Compare Source

v4.1.0

Compare Source

prettier/prettier

v2.3.1

Compare Source

diff

Support TypeScript 4.3 (#​10945 by @​sosukesuzuki)
override modifiers in class elements
class Foo extends  {
  override method() {}
}
static index signatures ([key: KeyType]: ValueType) in classes
class Foo {
  static [key: string]: Bar;
}
get / set in type declarations
interface Foo {
  set foo(value);
  get foo(): string;
}
Preserve attributes order for element node (#​10958 by @​dcyriller)
{{!-- Input --}}
<MyComponent
  {{! this is a comment for arg 1}}
  @&#8203;arg1="hello"
  {{on "clik" this.modify}}
  @&#8203;arg2="hello"
  {{! this is a comment for arg 3}}
  @&#8203;arg3="hello"
  @&#8203;arg4="hello"
  {{! this is a comment for arg 5}}
  @&#8203;arg5="hello"
  ...arguments
/>
{{!-- Prettier stable --}}
<MyComponent
  @&#8203;arg1="hello"
  @&#8203;arg2="hello"
  @&#8203;arg3="hello"
  @&#8203;arg4="hello"
  @&#8203;arg5="hello"
  ...arguments
  {{on "clik" this.modify}}
  {{! this is a comment for arg 1}}
  {{! this is a comment for arg 3}}
  {{! this is a comment for arg 5}}
/>
{{!-- Prettier main --}}
<MyComponent
  {{! this is a comment for arg 1}}
  @&#8203;arg1="hello"
  {{on "clik" this.modify}}
  @&#8203;arg2="hello"
  {{! this is a comment for arg 3}}
  @&#8203;arg3="hello"
  @&#8203;arg4="hello"
  {{! this is a comment for arg 5}}
  @&#8203;arg5="hello"
  ...arguments
/>
Track cursor position properly when it’s at the end of the range to format (#​10938 by @​j-f1)

Previously, if the cursor was at the end of the range to format, it would simply be placed back at the end of the updated range.
Now, it will be repositioned if Prettier decides to add additional code to the end of the range (such as a semicolon).

// Input (<|> represents the cursor)
const someVariable = myOtherVariable<|>
// range to format:  ^^^^^^^^^^^^^^^

// Prettier stable
const someVariable = myOtherVariable;<|>
// range to format:  ^^^^^^^^^^^^^^^

// Prettier main
const someVariable = myOtherVariable<|>;
// range to format:  ^^^^^^^^^^^^^^^
Break the LHS of type alias that has complex type parameters (#​10901 by @​sosukesusuzki)
// Input
type FieldLayoutWith<
  T extends string,
  S extends unknown = { width: string }
> = {
  type: T;
  code: string;
  size: S;
};

// Prettier stable
type FieldLayoutWith<T extends string, S extends unknown = { width: string }> =
  {
    type: T;
    code: string;
    size: S;
  };

// Prettier main
type FieldLayoutWith<
  T extends string,
  S extends unknown = { width: string }
> = {
  type: T;
  code: string;
  size: S;
};
Break the LHS of assignments that has complex type parameters (#​10916 by @​sosukesuzuki)
// Input
const map: Map<
  Function,
  Map<string | void, { value: UnloadedDescriptor }>
> = new Map();

// Prettier stable
const map: Map<Function, Map<string | void, { value: UnloadedDescriptor }>> =
  new Map();

// Prettier main
const map: Map<
  Function,
  Map<string | void, { value: UnloadedDescriptor }>
> = new Map();
Fix incorrectly wrapped arrow functions with return types (#​10940 by @​thorn0)
// Input
longfunctionWithCall12("bla", foo, (thing: string): complex<type<something>> => {
  code();
});

// Prettier stable
longfunctionWithCall12("bla", foo, (thing: string): complex<
  type<something>
> => {
  code();
});

// Prettier main
longfunctionWithCall12(
  "bla",
  foo,
  (thing: string): complex<type<something>> => {
    code();
  }
);
Avoid breaking call expressions after assignments with complex type arguments (#​10949 by @​sosukesuzuki)
// Input
const foo = call<{
  prop1: string;
  prop2: string;
  prop3: string;
}>();

// Prettier stable
const foo =
  call<{
    prop1: string;
    prop2: string;
    prop3: string;
  }>();

// Prettier main
const foo = call<{
  prop1: string;
  prop2: string;
  prop3: string;
}>();
Fix order of override modifiers (#​10961 by @​sosukesuzuki)
// Input
class Foo extends Bar {
  abstract override foo: string;
}

// Prettier stable
class Foo extends Bar {
  abstract override foo: string;
}

// Prettier main
class Foo extends Bar {
  abstract override foo: string;
}
reactjs/react-modal

v3.14.2

Compare Source

  • 172879e [chore] Don't allow .log in on releases.

v3.14.1

Compare Source

  • fc62ab1 Fixing lint error and PR suggestion change to use double quotes
  • ce94d86 Working on lint error
  • 7e732d7 Wrapping getComputedStyle in try catch per PR review
  • 31d59b2 Adding a check to see if the element is a prototype of Element before getting the computed style
  • 827796d [fixed] Ensure after-open css transitions work in Safari 14 & Mobile Safari
  • 76df16b [chore] regenerate package-lock.
  • 4fbe228 bump prop-types to 15.7.2
  • a5f959a [chore] update packages.
  • 8050773 [chore] clean up all element leaks between tests.
bahmutov/start-server-and-test

v1.12.5

Compare Source

Bug Fixes
  • deps: update dependency execa to v5.1.1 (b6b09bc)

v1.12.4

Compare Source

Bug Fixes
  • deps: update dependency execa to v5.1.0 (c546d00)
webpack-contrib/terser-webpack-plugin

v5.1.3

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 Jun 7, 2021
@changeset-bot
Copy link

changeset-bot bot commented Jun 7, 2021

🦋 Changeset detected

Latest commit: 8fcb7a2

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 Patch
@commercetools-frontend/babel-preset-mc-app Patch
@commercetools-frontend/create-mc-app Patch
@commercetools-frontend/eslint-config-mc-app 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/sentry 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/cypress Patch
@commercetools-frontend/actions-global Patch
@commercetools-frontend/application-shell-connectors Patch
@commercetools-frontend/l10n Patch
@commercetools-frontend/permissions 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 Jun 7, 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/EqpLcLUdXTahKybr69W4SkULiAtK
✅ Preview: https://merchant-center-application-kit-git-renovate-all-commercetools.vercel.app

@renovate renovate bot force-pushed the renovate/all branch from 14140dd to 68212e1 Compare June 7, 2021 06:07
@vercel vercel bot temporarily deployed to Preview June 7, 2021 06:07 Inactive
@renovate renovate bot force-pushed the renovate/all branch from 68212e1 to ac9b671 Compare June 7, 2021 06:10
@vercel vercel bot temporarily deployed to Preview June 7, 2021 06:14 Inactive
@renovate renovate bot force-pushed the renovate/all branch from ac9b671 to e292d33 Compare June 7, 2021 09:21
@vercel vercel bot temporarily deployed to Preview June 7, 2021 09:21 Inactive
@vercel vercel bot temporarily deployed to Preview June 7, 2021 09:29 Inactive
@vercel vercel bot temporarily deployed to Preview June 7, 2021 09:37 Inactive
@vercel vercel bot temporarily deployed to Preview June 7, 2021 10:34 Inactive
@vercel vercel bot temporarily deployed to Preview June 7, 2021 12:40 Inactive
@vercel vercel bot temporarily deployed to Preview June 7, 2021 12:48 Inactive
@tdeekens tdeekens merged commit f8f759b into main Jun 7, 2021
@tdeekens tdeekens deleted the renovate/all branch June 7, 2021 13:01
@ghost ghost mentioned this pull request Jun 7, 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