TiagoDanin / Add-License-Bot

Generate LICENSE file from package.json
https://tiagodanin.github.io/Add-License-Bot/
MIT License
6 stars 2 forks source link

fix(deps): update dependency probot to v10.9.0 #88

Closed renovate[bot] closed 3 years ago

renovate[bot] commented 4 years ago

This PR contains the following updates:

Package Type Update Change
probot (source) dependencies minor 10.8.0 -> 10.9.0

Release Notes

probot/probot ### [`v10.9.0`](https://togithub.com/probot/probot/releases/v10.9.0) [Compare Source](https://togithub.com/probot/probot/compare/v10.8.1...v10.9.0) ##### Features - deprecate `new Application({ throttleOptions })` ([#​1365](https://togithub.com/probot/probot/issues/1365)) ([f537204](https://togithub.com/probot/probot/commit/f5372049870347fde8115c8520cac514f3703678)) ### [`v10.8.1`](https://togithub.com/probot/probot/releases/v10.8.1) [Compare Source](https://togithub.com/probot/probot/compare/v10.8.0...v10.8.1) ##### Bug Fixes - use `@probot/octokit-plugin-config` for `context.config` ([#​1362](https://togithub.com/probot/probot/issues/1362)) ([a235671](https://togithub.com/probot/probot/commit/a235671fe939c62958eb95ac6fd4d720bc9c73f1)) If you mocked http requests for configuration files, you will have to adapt them. Instead of returning a JSON response with a `{ content }` object, where `content` is a base64 encoded version of your raw configuration, you can now return the content without encoding directly. Example Before ```js nock("https://api.github.com") .get("/repos/wip/app/contents/.github%2Fwip.yml") .reply(200, { content: Buffer.from("terms: 🚧").toString("base64"), }); ``` After ```js nock("https://api.github.com") .get("/repos/wip/app/contents/.github%2Fwip.yml") .reply(200, "terms: 🚧"); ```

Renovate configuration

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

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

:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

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



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