Skip to content

Update all non-major dependencies #2261

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

Merged
merged 1 commit into from
Oct 14, 2019

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Oct 11, 2019

This PR contains the following updates:

Package Type Update Change
@babel/core (source) devDependencies patch 7.6.2 -> 7.6.4
@babel/preset-env (source) devDependencies patch 7.6.2 -> 7.6.3
@typescript-eslint/eslint-plugin devDependencies minor 2.3.2 -> 2.4.0
@typescript-eslint/eslint-plugin-tslint devDependencies minor 2.3.2 -> 2.4.0
@typescript-eslint/parser devDependencies minor 2.3.2 -> 2.4.0
core-js dependencies minor 3.2.1 -> 3.3.2
coveralls devDependencies patch 3.0.6 -> 3.0.7
firebase-functions dependencies minor 3.2.0 -> 3.3.0
firebase-functions devDependencies minor 3.2.0 -> 3.3.0
firebase-tools devDependencies minor 7.4.0 -> 7.5.0
husky devDependencies patch 3.0.8 -> 3.0.9
lerna devDependencies minor 3.16.4 -> 3.17.0
rollup devDependencies patch 1.23.0 -> 1.23.1
webpack devDependencies patch 4.41.0 -> 4.41.1
yargs (source) devDependencies minor 14.0.0 -> 14.2.0

Release Notes

babel/babel

v7.6.4

Compare Source

👓 Spec Compliance
🐛 Bug Fix

v7.6.3

Compare Source

👓 Spec Compliance
🚀 New Feature
🐛 Bug Fix
  • babel-plugin-transform-block-scoping
  • babel-parser
  • babel-plugin-transform-react-constant-elements, babel-traverse
  • babel-generator, babel-parser, babel-plugin-transform-block-scoping, babel-plugin-transform-flow-comments, babel-plugin-transform-flow-strip-types, babel-plugin-transform-typescript
💅 Polish
🏠 Internal
  • Other
  • babel-cli, babel-core, babel-generator, babel-helper-fixtures, babel-helper-transform-fixture-test-runner, babel-node, babel-plugin-transform-react-jsx-source, babel-plugin-transform-runtime, babel-preset-env, babel-preset-react
🏃‍♀️ Performance
typescript-eslint/typescript-eslint

v2.4.0

Compare Source

Bug Fixes
  • eslint-plugin: [promise-function-async] Should not report… (#​1023) (514bed9)
  • support long running "watch" lint sessions (#​973) (854620e)
Features

2.3.3 (2019-10-07)

Bug Fixes
  • eslint-plugin: [class-name-casing] allow unicode letters (#​1043) (47895c0)
  • eslint-plugin: [efrt] support constructor arguments (#​1021) (60943e6)
  • experimental-utils: remove Rule.meta.extraDescription (#​1036) (192e23d)

2.3.2 (2019-09-30)

Bug Fixes
  • eslint-plugin: [no-unnec-type-arg] undefined symbol crash (#​1007) (cdf9294)
  • typescript-estree: correct ClassDeclarationBase type (#​1008) (8ce3a81)
  • typescript-estree: handle optional computed prop w/o type (#​1026) (95c13fe)

2.3.1 (2019-09-23)

Bug Fixes
  • eslint-plugin: [cons-type-assns] handle namespaced types (#​975) (c3c8b86)
  • eslint-plugin: [pfa] Allow async getter/setter in classes (#​980) (e348cb2)
  • typescript-estree: parsing error for await in non-async func (#​988) (19abbe0)

v2.3.3

Compare Source

Bug Fixes
  • eslint-plugin: [promise-function-async] Should not report… (#​1023) (514bed9)
  • support long running "watch" lint sessions (#​973) (854620e)
Features

2.3.3 (2019-10-07)

Bug Fixes
  • eslint-plugin: [class-name-casing] allow unicode letters (#​1043) (47895c0)
  • eslint-plugin: [efrt] support constructor arguments (#​1021) (60943e6)
  • experimental-utils: remove Rule.meta.extraDescription (#​1036) (192e23d)

2.3.2 (2019-09-30)

Bug Fixes
  • eslint-plugin: [no-unnec-type-arg] undefined symbol crash (#​1007) (cdf9294)
  • typescript-estree: correct ClassDeclarationBase type (#​1008) (8ce3a81)
  • typescript-estree: handle optional computed prop w/o type (#​1026) (95c13fe)

2.3.1 (2019-09-23)

Bug Fixes
  • eslint-plugin: [cons-type-assns] handle namespaced types (#​975) (c3c8b86)
  • eslint-plugin: [pfa] Allow async getter/setter in classes (#​980) (e348cb2)
  • typescript-estree: parsing error for await in non-async func (#​988) (19abbe0)
zloirock/core-js

v3.3.2

Compare Source

  • Fixed compatibility of core-js-compat with Node 6 and Yarn, #​669

v3.3.1

Compare Source

  • Fixed a NPM publishing issue

v3.3.0

Compare Source

  • String#{ matchAll, replaceAll } throws an error on non-global regex argument per the decision from TC39 meetings (+ this PR). It's a breaking change, but since it's a breaking change in the ES spec, it's added at the minor release
  • globalThis moved to stable ES, per October TC39 meeting
  • Promise.any moved to stage 3, some minor internal changes, per October TC39 meeting
  • String#replaceAll moved to stage 3, per October TC39 meeting
  • Added iterator helpers stage 2 proposal:
    • Iterator
      • Iterator.from
      • Iterator#asIndexedPairs
      • Iterator#drop
      • Iterator#every
      • Iterator#filter
      • Iterator#find
      • Iterator#flatMap
      • Iterator#forEach
      • Iterator#map
      • Iterator#reduce
      • Iterator#some
      • Iterator#take
      • Iterator#toArray
      • Iterator#@​@​toStringTag
    • AsyncIterator
      • AsyncIterator.from
      • AsyncIterator#asIndexedPairs
      • AsyncIterator#drop
      • AsyncIterator#every
      • AsyncIterator#filter
      • AsyncIterator#find
      • AsyncIterator#flatMap
      • AsyncIterator#forEach
      • AsyncIterator#map
      • AsyncIterator#reduce
      • AsyncIterator#some
      • AsyncIterator#take
      • AsyncIterator#toArray
      • AsyncIterator#@​@​toStringTag
  • Updated Map#upsert (Map#updateOrInsert before) proposal
    • Moved to stage 2, per October TC39 meeting
    • Map#updateOrInsert renamed to Map#upsert
    • Added WeakMap#upsert
    • You can don't pass one of the callbacks
  • Added a workaround for iOS Safari MessageChannel + bfcache bug, #​624
  • Added a workaround for Chrome 33 / Android 4.4.4 Promise bug, #​640
  • Replaced broken URL constructor in Safari and URLSearchParams in Chrome 66-, #​656
  • Added compat data for Node up to 12.11, FF 69, Samsung up to 10.2 and Phantom 1.9
  • Math.hypot marked as not supported in Chrome 77 since a bug in this method was not fixed before the stable Chrome 77 release
  • Fixed unnecessary exposing on Symbol.matchAll in esnext.string.match-all, #​626
  • Fixed missed cases access the .next method once, at the beginning, of the iteration protocol
  • Show similar postinstall messages only once per npm i, #​597, thanks @​remy
nickmerwin/node-coveralls

v3.0.7

Compare Source

firebase/firebase-functions

v3.3.0

Compare Source

  • Add a helper function for the Firebase Emulator suite.
firebase/firebase-tools

v7.5.0

Compare Source

  • Firestore Emulator now serves WebChannel traffic on the same port as gRPC.
  • Fix bug where emulators could not find free ports on Windows Subsystem for Linux.
  • Fixes invalid JSON output in auth.export within a scripting environment.
typicode/husky

v3.0.9

Compare Source

  • Reduce dependencies: replace is-ci with ci-info #​579
lerna/lerna

v3.17.0

Compare Source

Features
  • link: Use publishConfig.directory as symlink source if it exists to allow linking sub-directories (#​2274) (d04ce8e)

3.16.5 (2019-10-07)

Bug Fixes
  • bootstrap: Run lifecycle scripts in topological queue instead of batches (#​2224) (d8d33f7)
  • child-process: Use Set to manage book-keeping instead of mutable integer (5dbea32)

3.16.4 (2019-07-24)

Bug Fixes
  • conventional-commits: Avoid duplicate root changelog entries with custom --tag-version-prefix (8adeac1), closes #​2197
  • conventional-commits: Preserve tag prefix in fixed changelog comparison links (11cf6d2), closes #​2197
  • pack-directory: Use correct property when packing subdirectories (1575396)
  • publish: Pass correct arguments to packDirectory() (b1aade3)

3.16.3 (2019-07-23)

Bug Fixes
  • publish: Identify tagged packages correctly with custom --tag-version-prefix (f4cbd4d), closes #​2195

3.16.2 (2019-07-22)

Bug Fixes
  • create-symlink: Generate shims for missing bin scripts for Windows (c3f7998)
  • create-symlink: Use octal notation for chmod values (03f80b7)
  • deps: npm-lifecycle@^3.1.2 (25edebf), closes #​2189
  • deps: Switch to actively-maintained @zkochan/cmd-shim (60d1100)
  • integration: Limit concurrency of bootstrap --hoist test (f25854d)

3.16.1 (2019-07-19)

Bug Fixes

v3.16.5

Compare Source

Features
  • link: Use publishConfig.directory as symlink source if it exists to allow linking sub-directories (#​2274) (d04ce8e)

3.16.5 (2019-10-07)

Bug Fixes
  • bootstrap: Run lifecycle scripts in topological queue instead of batches (#​2224) (d8d33f7)
  • child-process: Use Set to manage book-keeping instead of mutable integer (5dbea32)

3.16.4 (2019-07-24)

Bug Fixes
  • conventional-commits: Avoid duplicate root changelog entries with custom --tag-version-prefix (8adeac1), closes #​2197
  • conventional-commits: Preserve tag prefix in fixed changelog comparison links (11cf6d2), closes #​2197
  • pack-directory: Use correct property when packing subdirectories (1575396)
  • publish: Pass correct arguments to packDirectory() (b1aade3)

3.16.3 (2019-07-23)

Bug Fixes
  • publish: Identify tagged packages correctly with custom --tag-version-prefix (f4cbd4d), closes #​2195

3.16.2 (2019-07-22)

Bug Fixes
  • create-symlink: Generate shims for missing bin scripts for Windows (c3f7998)
  • create-symlink: Use octal notation for chmod values (03f80b7)
  • deps: npm-lifecycle@^3.1.2 (25edebf), closes #​2189
  • deps: Switch to actively-maintained @zkochan/cmd-shim (60d1100)
  • integration: Limit concurrency of bootstrap --hoist test (f25854d)

3.16.1 (2019-07-19)

Bug Fixes
rollup/rollup

v1.23.1

Compare Source

2019-10-05

Bug Fixes
  • Fix a regression where the node types had a specific minimal version (#​3143)
Pull Requests
webpack/webpack

v4.41.1

Compare Source

Bugfixes

  • fix incorrect request shortening when directory looks similar to parent directory
  • fix crash when timezone is unknown
yargs/yargs

v14.2.0

Compare Source

Bug Fixes
Features
  • deps: introduce yargs-parser with support for unknown-options-as-args (#​1440) (4d21520)

v14.1.0

Compare Source

Bug Fixes
Features
  • deps: introduce yargs-parser with support for unknown-options-as-args (#​1440) (4d21520)

Renovate configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

👻 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 Renovate Bot. View repository job log here.

@renovate-bot renovate-bot force-pushed the renovate/all-minor-patch branch from c975e23 to 07a6995 Compare October 14, 2019 17:06
@hsubox76 hsubox76 merged commit 0323453 into firebase:master Oct 14, 2019
@renovate-bot renovate-bot deleted the renovate/all-minor-patch branch October 14, 2019 20:17
@hsubox76 hsubox76 added this to the next milestone Oct 14, 2019
@firebase firebase locked and limited conversation to collaborators Nov 14, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants