Skip to content

chore(deps): update all non-major dependencies#441

Open
renovate[bot] wants to merge 1 commit intodevfrom
renovate/all-minor-patch
Open

chore(deps): update all non-major dependencies#441
renovate[bot] wants to merge 1 commit intodevfrom
renovate/all-minor-patch

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate bot commented Aug 6, 2019

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

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

Some context: #​793 (comment)

We ended up going with @​JLHwung's PR #​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 Docs: Update README team and sponsors (ESLint Jenkins)

v6.7.0

Compare Source


Configuration

📅 Schedule: (UTC)

  • 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 renovate bot force-pushed the renovate/all-minor-patch branch from a0b2b0d to 96440dc Compare August 8, 2019 12:44
@renovate renovate bot changed the title chore(deps): update dependency js-cookie to ^2.2.1 chore(deps): update all non-major dependencies Aug 8, 2019
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 5f81c77 to 242b37b Compare August 14, 2019 16:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 15 times, most recently from fa4732f to 975546d Compare August 24, 2019 03:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from c998ed4 to fbb648e Compare August 28, 2019 10:29
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from f221fbe to e0407da Compare October 2, 2019 11:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e0407da to fc082db Compare November 11, 2019 23:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fc082db to bc2dc93 Compare November 21, 2019 13:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bc2dc93 to 1a3ad1a Compare December 15, 2019 01:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1a3ad1a to aedc6d5 Compare December 22, 2019 02:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from aedc6d5 to 447cbcf Compare January 18, 2020 19:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 447cbcf to a3bf5b8 Compare February 9, 2020 01:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a3bf5b8 to 98827e3 Compare March 14, 2020 22:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 98827e3 to eebe9a1 Compare April 28, 2020 04:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from eebe9a1 to 94efc0f Compare May 7, 2020 09:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 94efc0f to b1ce76d Compare May 15, 2020 21:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b1ce76d to f41a917 Compare July 1, 2020 20:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f41a917 to 4c68498 Compare July 10, 2020 21:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4c68498 to 8729278 Compare August 21, 2020 05:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8729278 to 797c861 Compare October 27, 2020 14:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 797c861 to 29783d0 Compare November 28, 2020 12:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 29783d0 to 1d0a631 Compare December 8, 2020 08:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 70ccd74 to ad1f38f Compare January 9, 2021 15:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ad1f38f to 016b220 Compare January 22, 2021 20:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 016b220 to b01233b Compare February 9, 2021 01:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants