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 core dependencies (master) (major) #2981

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 11, 2022

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mdx-js/react (source) ^1.6.22 -> ^2.0.0 age adoption passing confidence
actions/github-script v3 -> v6 age adoption passing confidence
actions/setup-node v1 -> v2 age adoption passing confidence
babel-plugin-emotion (source) 10.2.2 -> 11.0.0 age adoption passing confidence
concurrently 6.5.1 -> 7.0.0 age adoption passing confidence
crazy-max/ghaction-docker-meta v1 -> v3 age adoption passing confidence
express-rate-limit 5.5.1 -> 6.2.1 age adoption passing confidence
get-port 5.1.1 -> 6.0.0 age adoption passing confidence
github-markdown-css 4.0.0 -> 5.1.0 age adoption passing confidence
globby 11.1.0 -> 13.1.1 age adoption passing confidence
history 4.10.1 -> 5.2.0 age adoption passing confidence
http-errors 1.8.1 -> 2.0.0 age adoption passing confidence
i18next (source) 20.6.1 -> 21.6.11 age adoption passing confidence
jest-junit 12.3.0 -> 13.0.0 age adoption passing confidence
js-yaml 3.14.1 -> 4.1.0 age adoption passing confidence
jsdom 17.0.0 -> 19.0.0 age adoption passing confidence
kleur 3.0.3 -> 4.1.4 age adoption passing confidence
lint-staged 11.2.6 -> 12.3.3 age adoption passing confidence
lru-cache 6.0.0 -> 7.3.1 age adoption passing confidence
marked (source) 3.0.8 -> 4.0.12 age adoption passing confidence
marocchino/sticky-pull-request-comment v1 -> v2 age adoption passing confidence
mime 2.6.0 -> 3.0.0 age adoption passing confidence
minimatch 3.0.4 -> 4.1.1 age adoption passing confidence
nock 12.0.3 -> 13.2.4 age adoption passing confidence
node 16.13.2-alpine -> 17.5.0-alpine age adoption passing confidence
node-html-parser 4.1.5 -> 5.2.0 age adoption passing confidence
npm (source) 7.24.2 -> 8.5.0 age adoption passing confidence
ora 5.4.1 -> 6.0.1 age adoption passing confidence
puppeteer 10.4.0 -> 13.3.1 age adoption passing confidence
react-router 5.2.1 -> 6.2.1 age adoption passing confidence
react-router-dom 5.3.0 -> 6.2.1 age adoption passing confidence
selfsigned 1.10.14 -> 2.0.0 age adoption passing confidence
treosh/lighthouse-ci-action v3 -> v8 age adoption passing confidence
webpack-dev-server 3.11.3 -> 4.7.4 age adoption passing confidence

Release Notes

mdx-js/mdx

v2.0.0

Compare Source

Welcome to MDX 2! See the of the website for everything:

Changelog since last RC ##### `@mdx-js/mdx`
@mdx-js/react
@mdx-js/loader
@mdx-js/esbuild
remark-mdx
#### New Contributors

Thanks @​redallen, @​lonyele, @​PaulieScanlon, @​pd4d10, @​Gowee, @​mskelton, @​ihupoo, @​remcohaszing, @​loreanvictor, @​ChrisChinchilla, @​glitteringkatie, @​mvasilkov, @​jablko, @​michaeloliverx, @​yordis, @​rodrez, @​imballinst, @​gaearon.

Full Changelog: mdx-js/mdx@v1.6.3...2.0.0

actions/github-script

v6

Compare Source

v5

Compare Source

v4

Compare Source

actions/setup-node

v2

Compare Source

emotion-js/emotion

v11.0.0

Major Changes
  • b8476e08 #​1675 Thanks @​mitchellhamilton! - Rename babel-plugin-emotion to @emotion/babel-plugin. Please replace "plugins": ["emotion"] with "plugins": ["@​emotion"] in your Babel config.
open-cli-tools/concurrently

v7.0.0

Compare Source

🎉 🥂 Happy 2022!

Breaking changes

  • Dropped support for Node 10. Minimum version is now 12.20.
  • concurrently() API now has a different return value. Please refer to the docs.

Functional changes

  • Added --group flag/option to run process in parallel but print output in sequence - #​75, #​79, #​272
  • Codebase converted to TypeScript. Some bugs may arise due to this, but I hope not!

API Changes

  • concurrently can now be imported as an ES Module! Just do import concurrently from 'concurrently'.
  • concurrently() now returns the commands alongside a promise for the result - #​209

New Contributors

crazy-max/ghaction-docker-meta

v3

Compare Source

v2

Compare Source

nfriedly/express-rate-limit

v6.2.1

Compare Source

Fixed
  • Use the default value for an option when undefined is passed to the rate
    limiter.

v6.2.0

Compare Source

Added
  • Export the MemoryStore, so it can now be imported as a named import
    (import { MemoryStore } from 'express-rate-limit').
Fixed
  • Deprecate the onLimitReached option (this was supposed to be deprecated in
    v6.0.0 itself); developers should use a custom handler function that checks if
    the rate limit has been exceeded instead.

v6.1.0

Compare Source

Added
  • Added a named export rateLimit in case the default import does not work.
Fixed
  • Added a named export default, so Typescript CommonJS developers can
    default-import the library (import rateLimit from 'express-rate-limit').

v6.0.5

Compare Source

Fixed
  • Use named imports for ExpressJS types so users do not need to enable the
    esModuleInterop flag in their Typescript compiler configuration.

v6.0.4

Compare Source

Fixed
  • Upload the built package as a .tgz to GitHub releases.
Changed
  • Add main and module fields to package.json. This helps tools such as
    ESLint that do not yet support the exports field.
  • Bumped the minimum node.js version in package-lock.json to match
    package.json

v6.0.3

Compare Source

Changed

v6.0.2

Compare Source

Fixed
  • Ensure CommonJS projects can import the module.
Added
  • Add additional tests that test:
    • importing the library in js-cjs, js-esm, ts-cjs, ts-esm
      environments.
    • usage of the library with external stores (redis, mongo, memcached,
      precise).
Changed
  • Use esbuild to generate ESM and CJS output.
    This reduces the size of the built package from 138 kb to 13kb and build time
    to 4 ms! 🚀
  • Use dts-bundle-generator
    to generate a single Typescript declaration file.

v6.0.1

Compare Source

Fixed
  • Ensure CommonJS projects can import the module.

v6.0.0

Compare Source

Added
  • express 4.x as a peer dependency.
  • Better Typescript support (the library was rewritten in Typescript).
  • Export the package as both ESM and CJS.
  • Publish the built package (.tgz file) on GitHub releases as well as the npm
    registry.
  • Issue and PR templates.
  • A contributing guide.
Changed
  • Rename the draft_polli_ratelimit_headers option to standardHeaders.
  • Rename the headers option to legacyHeaders.
  • Retry-After header is now sent if either legacyHeaders or
    standardHeaders is set.
  • Allow keyGenerator to be an async function/return a promise.
  • Change the way custom stores are defined.
    • Add the init method for stores to set themselves up using options passed
      to the middleware.
    • Rename the incr method to increment.
    • Allow the increment, decrement, resetKey and resetAll methods to
      return a promise.
    • Old stores will automatically be promisified and used.
  • The package can now only be used with NodeJS version 12.9.0 or greater.
  • The onLimitReached configuration option is now deprecated. Replace it with a
    custom handler that checks the number of hits.
Removed
  • Remove the deprecated limiter.resetIp method (use the limiter.resetKey
    method instead).
  • Remove the deprecated options delayMs, delayAfter (the delay functionality
    was moved to the
    express-slow-down package)
    and global (use a key generator that returns a constant value).
sindresorhus/get-port

v6.0.0

Compare Source

Breaking
  • Require Node.js 12.20 c08a4ae
  • This package is now pure ESM. Please read this.
  • require('get-port').makeRange => import {portsNumbers] from 'get-port'
Improvements
sindresorhus/github-markdown-css

v5.1.0

Compare Source

v5.0.0

Compare Source

Breaking
sindresorhus/globby

v13.1.1

Compare Source

v13.1.0

Compare Source

v13.0.0

Compare Source

Breaking
  • Rename generateGlobTasks to generateGlobTasksSync (#​221) 51c8f68
  • Remove ignore option for isGitIgnored and isGitIgnoredSync (#​225) 2e43cc4
    • This option never worked correctly.
Improvements
Fixes

v12.2.0

Compare Source

v12.1.0

Compare Source

v12.0.2

Compare Source

  • Ensure async method is completely async e167725

v12.0.1

Compare Source

v12.0.0

Compare Source

Breaking
  • Require Node.js 12.20 (#​181) 5c32b4a
  • This package is now pure ESM. Please read this.
  • This package now uses named exports instead of a default export
    • globby{globby}
    • globby.sync{globbySync}
    • globby.stream{globbyStream}
    • globby.generateGlobTasks{generateGlobTasks}
    • globby.hasMagic{isDynamicPattern}
    • globby.gitignore{isGitIgnored}
    • globby.gitignore.sync{isGitIgnoredSync}
-const globby = require('globby');
+import {globby} from 'globby';
remix-run/history

v5.2.0

Compare Source

🐛 Bug fixes
  • Fixed a few type declarations and deprecated the following types:
    • State (now set to unknown which will require consumer type narrowing)
    • PartialPath (use Partial<Path> instead)
    • PartialLocation (use Partial<Location> instead)
  • Fixed a regression related to the createPath return value (#​813)
✨ Features
  • We now use statically analyzable CJS exports. This enables named imports in Node ESM scripts (See the commit).

Full Changelog: remix-run/history@v5.1.0...v5.2.0

v5.1.0

Compare Source

Because the prior 5.0.2 release removed the State type parameter from Location, this was technically a breaking change. To correct for this, I'm bumping this as a minor release. It won't affect runtime code, but it may affect your development experience and tests if you were using that parameter.

The State type export is also restored, so you shouldn't have issues with installing React Router v6.

Oh, by the way, did you hear we released React Router v6?

Full Changelog: remix-run/history@v5.0.3...v5.1.0

v5.0.3

Compare Source

Fixed parsePath adding incorrectly adding search

v5.0.2

Compare Source

Just a couple fixes:

  • Fixed search params persisting on redirects
  • Changed the location.state type to any and removed the generic on Location

Full Changelog: remix-run/history@v5.0.1...v5.0.2

v5.0.1

Compare Source

This patch release contains a tiny TypeScript update to use the built-in Partial utility for PartialPath and PartialLocation. We always love it when we can ship just a little less code!

🙏 Credits

Thanks to @​liuhanqu, @​hanquliu, @​chaance and @​mjackson for your contributions!

v5.0.0

Compare Source

Today we are very pleased to announce the stable release of history version 5!

Overview

This version includes many enhancements and fixes a few important issues with the library.

New Features
  • Hash history now has support for location.state
  • Better history.block API, with support for retrying transitions
  • Full TypeScript declarations and IntelliSense docs
  • Adds development and production builds for <script type=module> users
  • Both browser and hash history have support for iframes (custom window objects)
  • About 50% smaller than v4 (and no dependencies)
Bugfixes
  • Fixed some long-standing encoding issues with location.pathname
  • Removed unfixable warnings about pushing the same path in hash history
  • Renamed browser global to HistoryLibrary so it doesn't conflict with window.History
Breaking Changes
  • Removed support for browsers that do not support the HTML5 history API (no pushState)
  • Removed relative pathname support in hash history and memory history
  • Removed getUserConfirmation, keyLength, and hashType APIs
Usage

Please refer to our installation guide for instructions about how to install the library.

There is also a getting started guide as well as a complete API reference in the docs folder.

We are very excited about this release, especially because it will serve as the foundation for the upcoming release of React Router version 6.

Thank you for your support. Enjoy! 😀

jshttp/http-errors

v2.0.0

Compare Source

==================

  • Drop support for Node.js 0.6
  • Remove I'mateapot export; use ImATeapot instead
  • Remove support for status being non-first argument
  • Rename UnorderedCollection constructor to TooEarly
  • deps: depd@2.0.0
    • Replace internal eval usage with Function constructor
    • Use instance methods on process to check for listeners
  • deps: statuses@2.0.1
    • Fix messaging casing of 418 I'm a Teapot
    • Remove code 306
    • Rename 425 Unordered Collection to standard 425 Too Early
i18next/i18next

v21.6.11

Compare Source

  • make sure key and additionally optional defaultValue are passed to parseMissingKeyHandler function 1445

v21.6.10

Compare Source

  • fix: types for hasLoadedNamespace 1724

v21.6.9

Compare Source

  • fix: respect skipOnVariables option passed in t function also for $t() usage

v21.6.8

Compare Source

  • fix: respect skipOnVariables option passed in t function

v21.6.7

Compare Source

  • fix: consistently lowercase new formatter names internally

v21.6.6

Compare Source

  • fix: deepFind fallback when accessing missing flat dotted key 1719

v21.6.5

Compare Source

  • fix: passed format parameter value truncation in options argument for custom formatter 1715

v21.6.4

Compare Source

  • fix: skipOnVariables (and all other interpolation options should respect defaults) 1711

v21.6.3

Compare Source

  • types: wait option does not exist anymore for react-i18next

v21.6.2

Compare Source

  • remove console.log statement

v21.6.1

Compare Source

  • make sure key and additionally optional defaultValue are passed to parseMissingKeyHandler function 1445

v21.6.0

Compare Source

  • add _zero suffix lookup if count === 0 1705

v21.5.6

Compare Source

  • fix: correct defaults for plural forms (if supplied) 1703

v21.5.5

Compare Source

  • fix: prevent TypeError when using returnObjects: true with non string values 1702

v21.5.4

Compare Source

  • include version info in generated package.json of esm dist

v21.5.3

Compare Source

  • do not use options.interpolation reference

v21.5.2

Compare Source

  • missing named exports for TypeScript usage 1692

v21.5.1

Compare Source

  • add package.json to exports subpath

v21.5.0

Compare Source

  • named exports for esm usage 1681

v21.4.2

Compare Source

  • trim multiple formatters, fixes 1689

v21.4.1

Compare Source

  • rtl fix for -arab language codes

v21.4.0

Compare Source

  • bind all i18next functions to this, this way you can for example just use t() instead of i18n.t() 1682

v21.3.3

Compare Source

  • apply default interpolation formatter when interpolation options don't specify one 1680

v21.3.2

Compare Source

  • formatter typescript declarations 1679

v21.3.1

Compare Source

  • get rid of internal isDummy check to prevent react-native issue 1675

v21.3.0

Compare Source

  • adds support for formats provided by Intl API (number, currency, datetime, relativedate, list)

v21.2.6

Compare Source

  • optimize do skip natural language detection also if user provided nsSeparator option is passed via direct options

v21.2.5

Compare Source

  • do skip natural language detection also if user provided nsSeparator option is passed 1665

v21.2.4

Compare Source

  • optimize Intl api check

v21.2.3

Compare Source

  • fix Intl.PluralRules fallback

v21.2.2

Compare Source

  • log error if Intl.PluralRules API is not available

v21.2.1

Compare Source

  • do skip natural language detection, if user provided keySeparator option is passed 1670

v21.2.0

Compare Source

  • provide bundled esm distributable 1667

v21.1.1

Compare Source

  • optimize natural language detection 1661

v21.1.0

Compare Source

  • A new RTL support added for ckb language code

v21.0.2

Compare Source

  • fix defaultNS regression if translation namespace is defined in ns option, fixes #​1658

v21.0.1

Compare Source

  • fix typescript typo for skipOnVariables

v21.0.0

Compare Source

This is a major breaking release:

  • introduce new v4 json format (intl plural forms with ordinal support), simplifyPluralSuffix not used anymore
  • skipOnVariables by default now is true
  • automatically detect natural language keys (no need to set nsSeparator or keySeparator to false)
  • remove deprecated whitelist features
  • introduce new i18next.resolvedLanguage property

➡️ check out


Configuration

📅 Schedule: "before 3am on Monday" (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, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/master-major-all-core-dependencies branch from 5f0ca25 to 69a57dd Compare February 13, 2022 05:49
@juanpicado juanpicado closed this Feb 13, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants