Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

chore(deps): update all (major) #442

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 12, 2019

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@types/apollo-upload-client (source) 8.1.3 -> 17.0.2 age adoption passing confidence
@types/mocha (source) 5.2.7 -> 10.0.1 age adoption passing confidence
@types/node (source) 11.15.2 -> 18.15.10 age adoption passing confidence
@types/sinon (source) 7.5.1 -> 10.0.13 age adoption passing confidence
@types/uuid (source) 3.4.6 -> 9.0.1 age adoption passing confidence
@types/ws (source) 6.0.3 -> 8.5.4 age adoption passing confidence
apollo-upload-client 11.0.0 -> 17.0.0 age adoption passing confidence
browserify 16.5.0 -> 17.0.0 age adoption passing confidence
del 5.1.0 -> 7.0.0 age adoption passing confidence
del-cli 3.0.0 -> 5.0.0 age adoption passing confidence
fetch-mock (source) 7.7.3 -> 9.11.0 age adoption passing confidence
graphql ^0.12.0 || ^0.13.0 || ^14.0.0 -> ^0.12.0 || ^0.13.0 || ^14.0.0 || ^16.0.0 age adoption passing confidence
graphql 14.5.8 -> 16.6.0 age adoption passing confidence
keycloak-js (source) 7.0.1 -> 21.0.1 age adoption passing confidence
mocha (source) 6.2.2 -> 10.2.0 age adoption passing confidence
mockttp 0.19.1 -> 3.7.0 age adoption passing confidence
nyc (source) 14.1.1 -> 15.1.0 age adoption passing confidence
sinon (source) 7.5.0 -> 15.0.3 age adoption passing confidence
ts-node (source) 8.5.2 -> 10.9.1 age adoption passing confidence
typescript (source) 3.7.2 -> 5.0.2 age adoption passing confidence
uuid 3.3.3 -> 9.0.0 age adoption passing confidence

Release Notes

jaydenseric/apollo-upload-client

v17.0.0

Compare Source

Major
  • Updated Node.js support to ^12.22.0 || ^14.17.0 || >= 16.0.0.
  • Updated dev dependencies, some of which require newer Node.js versions than previously supported.
  • Removed ./package from the package exports field; the full package.json filename must be used in a require path.
Patch
  • Also run GitHub Actions CI with Node.js v17.
  • Updated the graphql peer dependency to 14 - 16.
  • Refactored tests to remove the fetch-blob dev dependency.
  • Simplified package scripts.
  • Use a new assertBundleSize function to assert module bundle size in tests:
    • Failure message contains details about the bundle size and how much the limit was exceeded.
    • Errors when the surplus is greater than 25% of the limit, suggesting the limit should be reduced.
    • Resolves the minified bundle and its gzipped size for debugging in tests.
  • Tweaked the test function timeLimitPromise error messages.
  • Configured Prettier option singleQuote to the default, false.
  • Documentation tweaks.
  • Amended the changelog entry for v16.0.0.

v16.0.0

Compare Source

Major
Patch
  • Updated dev dependencies.
  • Reverted the more specific package main field path.
  • Renamed imports in the test index module.
  • Increased the bundle size test maximum allowed bundle size.
  • Updated code examples to use deep imports.
  • Amended the changelog entries for v14.0.0 and v15.0.0.

v15.0.0

Compare Source

Major
  • Updated Node.js support to ^12.20 || >= 14.13.
  • Stopped supporting Internet Explorer.
  • Changed @apollo/client from a dependency to a peer dependency, fixing #​251 via #​252.
  • Updated dependencies, some of which require newer Node.js versions than previously supported.
  • Replaced the the package.json exports field public subpath folder mapping (deprecated by Node.js) with a subpath pattern. Deep require paths within apollo-upload-client/public/ must now include the .js file extension.
  • Removed Babel related dependencies, config, and scripts. Published modules now contain more modern ES syntax.
  • Published modules now contain JSDoc comments, which might affect TypeScript projects.
  • The tests are now ESM in .mjs files instead of CJS in .js files.
Patch
  • Stop using hard-rejection to detect unhandled Promise rejections in tests, as Node.js v15+ does this natively.
  • Test the bundle size manually using esbuild and gzip-size, removing size-limit related dev dependencies, config, and scripts.
  • Updated GitHub Actions CI config:
    • Run tests with Node.js v12, v14, v16.
    • Updated actions/checkout to v2.
    • Updated actions/setup-node to v2.
    • Don’t specify the CI environment variable as it’s set by default.
  • More specific package main field path.
  • Simplified JSDoc related package scripts now that jsdoc-md v10 automatically generates a Prettier formatted readme.
  • Added a package test:jsdoc script that checks the readme API docs are up to date with the source JSDoc.
  • Use the .js file extension in internal require paths.
  • Clearer package and function createUploadLink description, fixing #​247.
  • Fixed function createUploadLink option fetchOptions.signal bugs:
    • If the given abort controller signal is already aborted, immediately abort the fetch.
    • Use once: true when adding the abort event listener on the given abort controller signal to avoid a possible memory leak.
  • Updated a URL in the changelog entry for v14.0.0.
  • Documentation updates.
  • The file changelog.md is no longer published.

v14.1.3

Compare Source

Patch
  • Removed the subscriptions-transport-ws peer dependency, via #​235.
  • Updated dependencies.
  • Also run GitHub Actions with Node.js v15.
  • Updated tests to account for the AbortController global being defined in Node.js v15+.

v14.1.2

Compare Source

Patch
  • Updated dependencies.
  • Lint fixes for updated Prettier.
  • Rewrote the tests to use execute from apollo-link instead of ApolloClient query and mutate methods.
  • Ensure the Apollo Link observable terminates with an error when there are both errors and data, fixing #​222.

v14.1.1

Compare Source

Patch
  • Use revertable-globals for tests.
  • Removed no longer necessary formdata-node workarounds in tests.
  • Removed npm-debug.log from the .gitignore file as npm v4.2.0+ doesn’t create it in the current working directory.
  • Support clientAwareness being undefined in Apollo Link context, via #​212.

v14.1.0

Compare Source

Minor
  • Support GET requests, fixing #​151.
Patch
  • Updated the extract-files dependency to v9, updating relevant deep require paths.
  • Added API tests, fixing #​204.
  • Properly support the signal fetch option, fixing #​209.
  • Updated createUploadLink:
    • Alphabetically sorted destructured imports.
    • Removed a redundant fallback value when destructuring clientAwareness from context. It was an obstacle to 100% code coverage because ApolloClient defaults it to an empty object.
    • Unnested some code from the Observable function scope.
    • Fixed the JSDoc default value type for options.uri.
    • Improved code comments.
  • Replaced references to “Apollo Graph Manager” with “Apollo Studio” and updated related URLs.
  • Better npm link in the readme setup instructions.

v14.0.1

Compare Source

Patch

v14.0.0

Compare Source

Major
  • Updated Node.js support to ^10.17.0 || ^12.0.0 || >= 13.7.0.
  • Updated dependencies, some of which (only dev dependencies) require newer Node.js versions than previously supported.
  • Added a package exports field with conditional exports to support native ESM in Node.js and keep internal code private, whilst avoiding the dual package hazard. Published files have been reorganized, so previously undocumented deep imports will need to be rewritten according to the newly documented paths.
  • Support @apollo/client v3, fixing #​174 via #​175.
Patch
  • Added the graphql peer dependency to support a wider range of package managers, via #​196.
  • Removed Node.js v13 and added v14 to the versions tested in GitHub Actions.
  • Simplified the GitHub Actions CI config with the npm install-test command.
  • Use Babel config overrides to ensure .js files are parsed as scripts, eliminating Babel interopRequireDefault helpers from transpilation output.
  • Prettier code examples in source JSDoc.
  • Improved the type ReactNativeFileSubstitute code example.
  • Updated EditorConfig.
  • Improved the documentation about gotchas when inspecting network requests in React Native, via #​193.
  • Changed code examples to use import instead of require.

v13.0.0

Compare Source

Major
  • Updated Node.js support from v8.10+ to v10+.
  • Updated dependencies, some of which require Node.js v10+.
Minor
  • Support uploading files from a server environment, fixing #​172 via #​179 and #​184.
    • Added createUploadLink options:
      • isExtractableFile
      • FormData
      • formDataAppendFile
    • Added exports for the new createUploadLink option defaults:
      • isExtractableFile
      • formDataAppendFile
Patch
  • Removed the now redundant eslint-plugin-import-order-alphabetical dev dependency.
  • Added a size-limit dev dependency.
  • Stop using husky and lint-staged.
  • Ensure GitHub Actions CI runs for pull requests.
  • Use strict mode for scripts.
  • Move Babel config from babel.config.js to src/.babelrc.json.
  • Improved the package prepare:prettier and test:prettier scripts.
  • Configured Prettier option semi to the default, true.
  • Removed package-lock.json from .gitignore and .prettierignore as it’s disabled in .npmrc anyway.
  • Updated external documentation link URLs.
  • Replaced “Apollo Engine” with “Apollo Graph Manager” in comments.
  • Improved the examples in the readme.

v12.1.0

Compare Source

Minor
  • Setup GitHub Sponsors funding:
    • Added .github/funding.yml to display a sponsor button in GitHub.
    • Added a package.json funding field to enable npm CLI funding features.

v12.0.0

Compare Source

Major
  • Updated Node.js support from v8.5+ to v8.10+, to match what the eslint dev dependency now supports. This is unlikely to be a breaking change for the published package.
Patch
  • Updated dev dependencies.
  • Added the eslint-plugin-jsdoc dev dependency.
  • Replaced the size-limit dev dependency with @size-limit/preset-small-lib.
  • Only create a default AbortController instance if signal is not already set in fetch options, fixing #​162 via #​169.
  • Use GitHub Actions instead of Travis for CI.
  • Clarified that Opera Mini isn’t supported in the Browserslist queries and readme “Support” section.
  • Documented polyfills to consider in the readme “Support” section.
  • Updated examples to use @apollo/react-hooks.
browserify/browserify

v17.0.0

Compare Source

  • Upgrade events to v3.x. EventEmitter instances now have an off() method. require('events').once can be used to react to an event being emitted with async/await syntax. (#​1839)
  • Upgrade path-browserify to v1.x. (#​1838)
  • Upgrade stream-browserify to v3.x. require('stream') now matches the Node.js 10+ API. (#​1970)
  • Upgrade util to v0.12. Most notably, util.promisify and util.callbackify are finally available by default in browserify. (#​1844)
  • Add JSON syntax checking. Syntax errors in .json files will now fail to bundle. (#​1700)

v16.5.2

Compare Source

Upgrade browser-resolve to v2.

https://github.com/browserify/browserify/pull/1973

v16.5.1

Compare Source

Remove deprecated mkdirp version in favour of mkdirp-classic.

browserify/browserify@00c913f

Pin dependencies for Node.js 0.8 support.

https://github.com/browserify/browserify/pull/1939

sindresorhus/del

v7.0.0

Compare Source

Breaking
  • Require Node.js 14 (#​143) 106d7d8
  • This package is now pure ESM. Please read this.
  • Moved from a default export to named exports:
    • require('del')import {deleteAsync} from 'del'
    • require('del').syncimport {deleteSync} from 'del'

v6.1.1

Compare Source

v6.1.0

Compare Source

v6.0.0

Compare Source

Breaking
Improvements
sindresorhus/del-cli

v5.0.0

Compare Source

Breaking

v4.0.1

Compare Source

v4.0.0

Compare Source

Breaking
Improvements

v3.0.1

Compare Source

wheresrhys/fetch-mock

v9.11.0: Babel upgrades

Compare Source

In theory, this should not cause anybody any problems

v9.10.10: Fixes various types

Compare Source

v9.10.7: Refactor routes to be wrapped in a class

Compare Source

v9.10.6: Fix mocking requests with bodies in safari

Compare Source

Merge pull request #​585 from lambdalisue/hotfix-584

Patch native fetch on Safari to fix #​584

v9.10.5: Make typescript types available when importing the esm build

Compare Source

v9.10.4: Prevent responses from hanging in node-fetch

Compare Source

v9.10.3: Add matchPartialBody to typings

Compare Source

v9.10.2: Allow response bodies to be inspected

Compare Source

v9.10.1: Correct release with response inspection

Compare Source

v9.10.0: Allow inspecting responses

Compare Source

v9.9.1

Compare Source

v9.9.0: Full support for coercing objects into query string matchers

Compare Source

v9.8.0: Added support for multi-value query string matching

Compare Source

v9.7.0: Added support for sticky routes

Compare Source

v9.6.0: Non-trivial changes to testing of build targets

Compare Source

v9.5.1: Null release to overwrite accidental alpha tagged as latest

Compare Source

v9.5.0: Allow spying on just a single route

Compare Source

v9.4.0: Export full node-fetch signature

Compare Source

v9.3.1: Include cheatsheet

Compare Source

v9.3.0: Allow user defined matchers

Compare Source

v9.2.2: Allow empty string responses

Compare Source

v9.2.1: Better readme spiel

Compare Source

v9.2.0: Shorthand methods to match any fetch call

Compare Source

v9.1.2: Better description in readme

Compare Source

v9.1.1: Fixes bug using body matching in inspection methods

Compare Source

v9.1.0: Implements partial body matching

Compare Source

v9.0.0: Fix ES modules and handle async body matching

Compare Source

v8.3.2: Republish readme

Compare Source

v8.3.1: Fix regression #​493

Compare Source

v8.3.0: Accept all matching options in the first parameter

Compare Source

v8.2.1: Fix linting

Compare Source

v8.1.0: Add support for a URL instance as a matcher

Compare Source

v8.0.3: Fix bug #​477

Compare Source

Shorthand methods such as get() were not applying the shorthand options i.e. {method: 'get'} when called with an object rather than matcher, response, options triples

This release fixes that bug

v8.0.1: Fixes failure to use signal defined directly on Request instance

Compare Source

v8.0.0: Version 8

Compare Source

  • implements ES modules
  • hopefully resolves problems with babel-core clashes
  • adds typescript types
  • removes the UNMATCHED and MATCHED constants, and no longer exports fetchMock as a property, as well as the default, export
  • only includes the whatwg-url polyfill in nodejs
graphql/graphql-js

v16.6.0

Compare Source

v16.6.0 (2022-08-16)

New Feature 🚀
Bug Fix 🐞
Committers: 2

v16.5.0

Compare Source

v16.5.0 (2022-05-09)

New Feature 🚀
Committers: 1

v16.4.0

Compare Source

v16.4.0 (2022-04-25)

New Feature 🚀
Bug Fix 🐞
Docs 📝
2 PRs were merged
Polish 💅
3 PRs were merged
Internal 🏠
26 PRs were merged
Dependency 📦
2 PRs were merged
Committers: 7

v16.3.0

Compare Source

v16.3.0 (2022-01-26)

New Feature 🚀
Bug Fix 🐞
Docs 📝
2 PRs were merged
Polish 💅
7 PRs were merged
Internal 🏠
5 PRs were merged
Dependency 📦
4 PRs were merged
Committers: 6

v16.2.0: v16.2.0

Compare Source

v16.2.0 (2021-12-17)

New Feature 🚀
Docs 📝
Polish 💅
Internal 🏠
2 PRs were merged
Committers: 2

v16.1.0

[Compare Source]


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 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, check this box

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

@renovate renovate bot requested a review from wtrocki as a code owner November 12, 2019 20:23
@renovate renovate bot changed the title chore(deps): update dependency fetch-mock to v8 chore(deps): update all to v8 (major) Nov 15, 2019
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 7ee2650 to d04ba3c Compare December 2, 2019 08:45
@renovate renovate bot changed the title chore(deps): update all to v8 (major) fix(deps): update all (major) Dec 2, 2019
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from 1fc3768 to d098e89 Compare December 4, 2019 22:44
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from cb0b7fb to d1add92 Compare December 15, 2019 12:38
@renovate renovate bot changed the title fix(deps): update all (major) chore(deps): update all (major) Jun 6, 2021
@renovate renovate bot force-pushed the renovate/major-all branch 2 times, most recently from 494c0a3 to ace57fd Compare June 24, 2022 00:14
@renovate renovate bot force-pushed the renovate/major-all branch 4 times, most recently from 03f98c7 to 6d36bfa Compare March 27, 2023 21:31
@renovate renovate bot force-pushed the renovate/major-all branch 3 times, most recently from c6d215c to 2802f53 Compare March 30, 2023 21:40
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.

None yet

0 participants