hare icon indicating copy to clipboard operation
hare copied to clipboard

chore(deps): update all non-major dependencies

Open renovate[bot] opened this issue 6 years ago • 0 comments

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@nuxtjs/axios ^5.5.4 -> ^5.13.6 age adoption passing confidence
@nuxtjs/eslint-config ^1.0.1 -> ^1.1.2 age adoption passing confidence
ava (source) ^2.2.0 -> ^2.4.0 age adoption passing confidence
babel-eslint ^10.0.2 -> ^10.1.0 age adoption passing confidence
bunyan ^1.8.12 -> ^1.8.15 age adoption passing confidence
cross-env ^5.2.0 -> ^5.2.1 age adoption passing confidence
eslint (source) ^6.1.0 -> ^6.8.0 age adoption passing confidence
eslint-plugin-nuxt ^0.4.3 -> ^0.5.2 age adoption passing confidence
husky ^3.0.2 -> ^3.1.0 age adoption passing confidence
js-cookie ^2.2.0 -> ^2.2.1 age adoption passing confidence
js-yaml ^3.13.1 -> ^3.14.1 age adoption passing confidence
koa (source) ^2.7.0 -> ^2.16.1 age adoption passing confidence
koa-body ^4.1.0 -> ^4.2.0 age adoption passing confidence
koa-compress ^3.0.0 -> ^3.1.0 age adoption passing confidence
koa-proxies ^0.8.1 -> ^0.12.4 age adoption passing confidence
koa-session ^5.12.2 -> ^5.13.1 age adoption passing confidence
lint-staged ^9.2.1 -> ^9.5.0 age adoption passing confidence
mkdirp ^0.5.1 -> ^0.5.6 age adoption passing confidence
negotiator ^0.6.2 -> ^0.6.4 age adoption passing confidence
nodemon (source) ^1.19.1 -> ^1.19.4 age adoption passing confidence
npm (source) >=5.0.0 -> >=5.10.0 age adoption passing confidence
nuxt (source) ^2.8.1 -> ^2.18.1 age adoption passing confidence
nuxt-property-decorator ^2.3.0 -> ^2.9.1 age adoption passing confidence
rimraf ^2.6.3 -> ^2.7.1 age adoption passing confidence
sass-loader ^7.1.0 -> ^7.3.1 age adoption passing confidence
vue-chartjs (source) ^3.4.2 -> ^3.5.1 age adoption passing confidence
vue-clipboard2 ^0.3.0 -> ^0.3.3 age adoption passing confidence
vue-i18n (source) ^8.12.0 -> ^8.28.2 age adoption passing confidence

Release Notes

nuxt-community/axios-module (@​nuxtjs/axios)

v5.13.6

Compare Source

v5.13.5

Compare Source

v5.13.4

Compare Source

v5.13.3

Compare Source

v5.13.2

Compare Source

v5.13.1

Compare Source

v5.13.0

Compare Source

Features
  • support baseUrl and browserBaseUrl to handle casing typos (8904847)
Bug Fixes
  • add x-forwarded-port and x-forwarded-proto to proxyHeaderIgnore defaults (#​465) (a1a1894)
5.12.5 (2021-01-04)
Bug Fixes
5.12.4 (2020-12-14)
Bug Fixes
5.12.3 (2020-11-30)
Bug Fixes
5.12.2 (2020-08-25)
Bug Fixes
  • types: extend Axios.AxiosRequestConfig with "progress" option (#​408) (ea4ea7e)
Docs
  • Migrate docs to nuxt/content (#​404)
5.12.1 (2020-08-05)
Bug Fixes

v5.12.5

Compare Source

v5.12.4

Compare Source

v5.12.3

Compare Source

v5.12.2

Compare Source

v5.12.1

Compare Source

v5.12.0

Compare Source

Features
Bug Fixes
  • types: add axios-retry type def for more options (#​378) (40a0c58)
  • types: add prefix, port, host options to axios types (#​381) (301805b)

v5.11.0

Compare Source

Features
  • experimental runtimeConfig support (07ca13c)
Bug Fixes
5.10.3 (2020-04-30)
Bug Fixes
  • globalName fallback for nuxt < 2.2.0 (12da6c8)
5.10.2 (2020-04-27)
Bug Fixes
5.10.1 (2020-04-22)

v5.10.3

Compare Source

v5.10.2

Compare Source

v5.10.1

Compare Source

v5.10.0

Compare Source

Features
  • plugin: enable server brotli if supported (closes #​276) (074f98c)
Bug Fixes
5.9.7 (2020-03-30)
Bug Fixes
5.9.6 (2020-03-27)
Bug Fixes
  • module: always set protocol to https when https: true is set (#​344) (6f82570)
5.9.5 (2020-02-02)
Bug Fixes
5.9.4 (2020-01-30)
Bug Fixes
5.9.3 (2020-01-11)
Bug Fixes
5.9.2 (2020-01-02)
5.9.1 (2020-01-02)

v5.9.7

Compare Source

v5.9.6

Compare Source

v5.9.5

Compare Source

v5.9.4

Compare Source

v5.9.3

Compare Source

v5.9.2

Compare Source

v5.9.1

Compare Source

v5.9.0

Compare Source

Features
Bug Fixes

v5.8.0

Compare Source

Features
5.7.1 (2019-10-22)
Bug Fixes

v5.7.1

Compare Source

v5.7.0

Compare Source

Features
Bug Fixes

v5.6.0

Compare Source

Features
5.5.4 (2019-06-05)
Bug Fixes
  • ignore content-length header (41ff27a)
5.5.3 (2019-05-30)
Bug Fixes
nuxt/eslint-config (@​nuxtjs/eslint-config)

v1.1.2

Compare Source

v1.1.1

Compare Source

v1.1.0

Compare Source

Features

  • Warn console and debugger in dev (#​56)
avajs/ava (ava)

v2.4.0: 2.4.0

Compare Source

Experimental t.try() assertions

Thanks to the amazing work and patience of @​qlonik we're shipping a new assertion! t.try() lets you perform assertions and decide whether to commit or discard their outcome. All kinds of interesting things can be built on top of this, from fuzzy testers to new test interfaces and more.

We're excited to get this out there, but it's not quite done yet. For now you have to opt in to this new feature. Being opt-in, we may make changes (breaking ones even!) until we feel this is stable.

To opt in, configure AVA with the following:

package.json:

{
  "ava": {
    "nonSemVerExperiments": {
      "tryAssertion": true
    }
  }
}

ava.config.js:

export default {
	nonSemVerExperiments: {
		tryAssertion: true
	}
};

We'd love to hear your feedback. Please join us in this issue: https://github.com/avajs/ava/issues/2250

Also, if you're looking to help out with the remaining issues so that we can ship this without the opt-in, have a look at this project: https://github.com/orgs/avajs/projects/1

Thanks again @​qlonik!

Other changes

All changes

v2.3.0...v2.4.0

Thanks

Thank you @​jeremenichelli, @​jamesgeorge007, @​dongjae93, @​qlonik and @​tryzniak. We couldn't have done this without you!

Get involved

We welcome new contributors. AVA is a friendly place to get started in open source. We have a great article on getting started contributing and a comprehensive contributing guide.

v2.3.0: 2.3.0

Compare Source

Changes

  • We've fixed some bugs to improve watch mode. ffa62ce 9e8d28f
  • AVA now prints an error when it receives non-existent test files on the command line. f01d05f
  • When using the TAP reporter, remaining tests are now included in failed test count. Failed hooks are no longer treated as test failures, and logs are printed. 8628976
  • Internal errors that may occur for some edge cases are now printed. b27cb8d
  • TTY in the worker processes should follow the new APIs in Node.js 12.7.0 (when used with those Node.js versions). 7dcb473
  • AVA now handles stage-4 syntax like dynamic import, and stage-3 syntax like BigInt, numeric separators and class properties that are supported by V8. 9baca8c
  • AVA now supports dynamic import through our stage-4 preset.
  • AVA now uses import-local@^3.0.2 which fixes issues with Lerna projects.
  • For our TypeScript users, we've changed the default type of t.context to unknown, in line with TypeScript's changes in their 3.5 release. 2fc7d56

All changes

v2.2.0...v2.3.0

Thanks

Thank you @​MarchWorks, @​yovasx2 and @​bobthekingofegypt. We couldn't have done this without you!

Get involved

We welcome new contributors. AVA is a friendly place to get started in open source. We have a great article on getting started contributing and a comprehensive contributing guide.

babel/babel-eslint (babel-eslint)

v10.1.0

Compare Source

v10.0.3

Compare Source

Fixes https://github.com/babel/babel-eslint/issues/791, also https://github.com/eslint/eslint/issues/12117

Some context: https://github.com/babel/babel-eslint/pull/793#issuecomment-524435971

We ended up going with @​JLHwung's PR https://github.com/babel/babel-eslint/pull/794 which uses ESLint's deps instead of going with peerDeps since it really depends on the version being used and we don't want users to have to install it directly on their own.

babel-eslint is patching patches of the dependencies of ESLint itself so these kinds of issues have happened in the past. We'll need to look into figuring out how to have a more solid way of modifying behavior instead of this monkeypatching type of thing for future releases.

trentm/node-bunyan (bunyan)

v1.8.15

Compare Source

v1.8.14

Compare Source

v1.8.13

Compare Source

kentcdodds/cross-env (cross-env)

v5.2.1

Compare Source

Bug Fixes
eslint/eslint (eslint)

v6.8.0

Compare Source

v6.7.2

Compare Source

  • bc435a9 Fix: isSpaceBetweenTokens() recognizes spaces in JSXText (fixes #​12614) (#​12616) (Toru Nagashima)
  • 4928d51 Fix: don't ignore the entry directory (fixes #​12604) (#​12607) (Toru Nagashima)
  • b41677a Docs: Clarify suggestion's data in Working with Rules (refs #​12606) (#​12617) (Milos Djermanovic)
  • ea16de4 Fix: Support tagged template literal generics in no-unexpected-multiline (#​11698) (Brad Zacher)
  • fa6415d Sponsors: Sync README with website (ESLint Jenkins)
  • e1e158b Sponsors: Sync README with website (ESLint Jenkins)

v6.7.1

Compare Source

  • dd1e9f4 Fix: revert changes to key-spacing due to regression (#​12598) (Kai Cataldo)
  • [c644b54](https://redirect

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR is behind base branch, 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, check this box

This PR was generated by Mend Renovate. View the repository job log.

renovate[bot] avatar Aug 06 '19 14:08 renovate[bot]

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: yarn.lock
This script must be run as root

renovate[bot] avatar Jun 23 '22 22:06 renovate[bot]