benawad / codeponder

Marketplace for Code Reviews
279 stars 49 forks source link

fix(deps): update dependency @octokit/rest to v16.15.0 #256

Closed renovate[bot] closed 5 years ago

renovate[bot] commented 5 years ago

This PR contains the following updates:

Package Type Update Change References
@​octokit/rest dependencies minor 16.13.3 -> 16.15.0 source

Release Notes

octokit/rest.js ### [`v16.15.0`](https://togithub.com/octokit/rest.js/releases/v16.15.0) [Compare Source](https://togithub.com/octokit/rest.js/compare/v16.14.1...v16.15.0) ##### Bug Fixes - `name` parameter no longer required for `octokit.repos.createHook()` ([6e53694](https://togithub.com/octokit/rest.js/commit/6e53694)) ##### Features - `sort` and `direction` parameters for `octokit.repos.listForOrg()` ([2f9f5df](https://togithub.com/octokit/rest.js/commit/2f9f5df)) ### [`v16.14.1`](https://togithub.com/octokit/rest.js/releases/v16.14.1) [Compare Source](https://togithub.com/octokit/rest.js/compare/v16.14.0...v16.14.1) ##### Bug Fixes - **typescript:** reference esnext.asynciterable ([#​1229](https://togithub.com/octokit/rest.js/issues/1229)) ([101a246](https://togithub.com/octokit/rest.js/commit/101a246)) ### [`v16.14.0`](https://togithub.com/octokit/rest.js/releases/v16.14.0) [Compare Source](https://togithub.com/octokit/rest.js/compare/v16.13.4...v16.14.0) ##### Features - custom logging ([#​1205](https://togithub.com/octokit/rest.js/issues/1205)) This release adds 4 new methods 1. `octokit.log.debug()` 2. `octokit.log.info()` 3. `octokit.log.warn()` 4. `octokit.log.error()` They can be configured using the `log` client option. By default, `octokit.log.debug()` and `octokit.log.info()` are no-ops, while the other two call `console.warn()` and `console.error()` respectively. This can be used for debugging. The simplest way is to set the `log` option to `console` ```js const octokit = require("@​octokit/rest")({ log: console }) console.request("/") ``` This will log request { method: "GET", baseUrl: "https://api.github.com", headers: { accept: "application/vnd.github.v3+json", "user-agent": "octokit.js/0.0.0-semantically-released Node.js/10.15.0 (macOS Mojave; x64)" }, request: {}, url: "/" } GET / - 200 in 514ms If you like to support a configurable log level, we recommend using the [console-log-level](https://togithub.com/watson/console-log-level) module ```js const octokit = require("@​octokit/rest")({ log: require("console-log-level")({ level: "info" }) }) console.request("/") ``` This will only log GET / - 200 in 514ms ### [`v16.13.4`](https://togithub.com/octokit/rest.js/releases/v16.13.4) [Compare Source](https://togithub.com/octokit/rest.js/compare/v16.13.3...v16.13.4) ##### Bug Fixes - **typescript:** auth.client_id, auth.client_secret → auth.clientId, auth.clientSecret ([#​1227](https://togithub.com/octokit/rest.js/issues/1227)) ([1ac39cd](https://togithub.com/octokit/rest.js/commit/1ac39cd))

Renovate configuration

:date: Schedule: At any time (no schedule defined).

:vertical_traffic_light: Automerge: Enabled.

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

:no_bell: Ignore: Close this PR and you won't be reminded about this update again.



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

renovate[bot] commented 5 years ago

Renovate Ignore Notification

As this PR has been closed unmerged, Renovate will now ignore this update (16.15.0). You will still receive a PR once a newer version is released, so if you wish to permanently ignore this dependency, please add it to the ignoreDeps array of your renovate config.

If this PR was closed by mistake or you changed your mind, you can simply rename this PR and you will soon get a fresh replacement PR opened.