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

chore(deps): update dependency danger to v10 #1305

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 2, 2020

This PR contains the following updates:

Package Type Update Change
danger devDependencies major 3.9.0 -> 10.2.1

Release Notes

danger/danger-js

v10.2.1

Compare Source

  • Wait for close event on spawned process in local git platform - [@​gzaripov]
  • Fix Typo in README.md [@​NotMoni]
  • Fix danger failure on getting diff for files with spaces in file path [@​HonzaMac]
  • Document how to disable transpilation [@​rzgry]
  • Fix get blob url for pr commit [@​doniyor2109]

v10.2.0

Compare Source

  • Take commit hash from CircleCI environment variable [@​valscion]
  • Fix project path with /- in GitLab MR URL [@​pgoudreau]
  • When creating a new PR with createOrUpdatePR, add the description (as done when editing) - [@​sogame]

v10.1.1

Compare Source

v10.1.0

Compare Source

  • Adds support for Bamboo CI [@​tim3trick]
  • Replace regex to a long url repos approach on Bitrise [@​lucasmpaim]
  • Pass process arguments back to the original process [@​f-meloni]
  • When fetching existing labels in createOrAddLabel use pagination to fetch them all - [@​sogame]

v10.0.0

Compare Source

  • Changed JSON patch implementation for better memory performance. [@​dkundel]

    Breaking: JSONPatchForFile will return a different order of operations than previously. It will also return a
    path with the index of the element inserted into an array for add operations.

v9.4.0

Compare Source

  • Vbump (24b0965)
  • Merge pull request #​1018 from sogame/Contributor_url (dcf1472)
  • Add missing contributor url (49b6f27)
  • Merge pull request #​1017 from sogame/Labels_add_debug (e6c7436)
  • Add debug messages for "createLabel" and "addLabels" failures in "createOrAddLabel" (31a1961)

v9.3.0

Compare Source

  • Add the staged flag to danger local command - [@​soyn]
  • Don't use hardcoded userId to update comments if using personal token in Github Actions - [@​rohit-gohri]
  • Disable warning in Github Action if using DANGER_GITHUB_API_TOKEN - [@​rohit-gohri]
  • Update parse-diff library - [@​417-72KI]
  • Fix repository slug in Jenkins provider - [sandratatarevicova]
  • Add Gitlab diff support - [@​rohit-gohri]
  • Fix Typos across danger-js Repo - [@​yohix]
  • Fix @octokit/rest deprecation warning when using .issues.addLabels() - [@​sogame]

v9.2.10

Compare Source

  • Fixes for the homebrew generated binaries - [@​hellocore]

v9.2.9

Compare Source

  • Bitbucket Cloud: Allow DangerCI to get UUID from Bitbucket - [@​hellocore]
  • Update docs for GitLab - [@​orta]

v9.2.8

Compare Source

v9.2.7

Compare Source

  • Maybe fix deploys to GPR for Docker - [@​orta]

v9.2.6

Compare Source

  • Add support for Cirrus CI - [@​RDIL]

v9.2.5

Compare Source

  • Remove additional danger from pr generated json - [@​f-meloni]

v9.2.4

Compare Source

  • Fix github actions checks - [@​f-meloni]

v9.2.3

Compare Source

  • Support more events on GitHub actions - [@​f-meloni]

v9.2.2

Compare Source

  • Fix binary files for BitBucket Server - [@​osmestad]
  • Allow GHE to use checks - [@​adam-bratin]

v9.2.1

Compare Source

  • Fixes for the homebrew generated binaries - [@​hellocore]

v9.2.0

Compare Source

  • Add Buddy.works Pipelines support - [@​kristof0425]
  • Added flag to bypass Jira/Issues - [@​orieken]
  • Improve docs for GitHub Actions - [@​nguyenhuy]

v9.1.8

Compare Source

  • Get GitHub Actions event file pathname from env variable - [@​IljaDaderko]

v9.1.7

Compare Source

  • GitHub Actions docs update - [@​orta]

v9.1.5

Compare Source

  • Take commit hash from bitrise env - [@​f-meloni]

v9.1.4

Compare Source

  • Use new env BITBUCKET_REPO_FULL_NAME in bitbucket pipeline. - [@​Soyn]
  • Take commit hash from CI Source if available - [@​f-meloni]

v9.1.3

Compare Source

  • Updates GitLab API to 10.x - [@​awgeorge]

v9.1.1

Compare Source

  • Fixes TS declarations - [@​orta]
  • Fix Github Actions documentation - [@​ravanscafi]
  • Improve Performance by Caching BitBucket Cloud Commits - [@​hellocore]
  • Add compliment message to comment template on Bitbucket Cloud - [@​hellocore]
  • Add option to set custom icon in messages - [@​rohit-gohri]

v9.1.0

Compare Source

  • Expose BitBucketServerAPI - [@​NMinhNguyen]

v9.0.3

Compare Source

  • Add support OAuth for BitBucket Cloud - [@​hellocore]
  • Allow handleResults to be called without a git object - [@​jtreanor]

v9.0.2

Compare Source

  • Fix for the GitLab dependency making danger not load - [@​f-meloni]

v9.0.1

Compare Source

  • Fixed incorrect main comment template on Bitbucket Cloud - [@​hellocore]

v9.0.0

Compare Source

  • Add BitBucket Cloud & BitBucket Pipelines support - [@​hellocore]
  • Add GitLab missing states - [@​f-meloni]
  • Fixes incorrect slug for builds from forks on Codefresh - [@​stevenp]

v8.0.0

Compare Source

  • Adds GitLab & GitLab CI support - [@​notjosh], [@​bigkraig], [@​jamime]
  • Add support for AppCenter - [@​mrndjo]

v7.1.4

Compare Source

  • Un-hardcodes the repo in danger.github.utils.createOrUpdatePR- [@​ds300]

v7.1.3

Compare Source

  • Cleans up the declarations a little bit - [@​orta]
  • Adds support for Codefresh CI - [@​stevenp]

v7.1.2

Compare Source

  • Update ts-jest to 24.0.2 - [@​friederbluemle]

  • Adds a fix for the default name of Danger in status - [@​orta]

  • Adds danger.git.fileMatch.getKeyedPaths(), providing more convenient access to paths. This replaces
    fileMatch.tap() and fileMatch.debug().

    const components = fileMatch("components/**/*.js", "!**/*.test.js")
    const componentTests = fileMatch("!**/*.test.js")
    
    if (components.edited && !componentTests.edited) {
      warn(
        [
          "This PR modified some components but none of their tests. <br>",
          "That's okay so long as it's refactoring existing code. <br>",
          "Affected files: ",
          components.getKeyedPaths().edited.join(", "),
        ].join("")
      )
    }

    This makes it much simpler to compose a collection of file checks - [@​paulmelnikow]

v7.1.1

Compare Source

v7.1.0

Compare Source

  • Adds Chainsmoker, and expands the Danger DSL with the addition of danger.git.fileMatch.

    const documentation = danger.git.fileMatch("**/*.md")
    const packageJson = danger.git.fileMatch("package.json")
    const lockfile = danger.git.fileMatch("yarn.lock", "package-lock.json")
    
    if (documentation.edited) {
      message("Thanks - We :heart: our [documentarians](http://www.writethedocs.org/)!")
    }
    
    if (packageJson.modified && !lockfile.modified) {
      warn("This PR modified package.json, but not the lockfile")
    }

    This makes it much simpler to compose a collection of file checks - [@​paulmelnikow]

v7.0.19

Compare Source

  • Taken a stab at trying to make the commit status summary to feel better in both Danger & Peril [@​orta][@​dblandin]

v7.0.17

Compare Source

  • Send different build update keys based on the id on Bitbucket [@​f-meloni]

v7.0.16

Compare Source

  • Add support for CodeBuild CI source [@​sharkysharks]

v7.0.15

Compare Source

  • Enable Danger runs with different DangerIDs to post separate statuses [@​randak]
  • Docs: fix typo - [@​hiroppy]
  • Fixed: isCI check for Codeship - [@​msteward]

v7.0.14

Compare Source

  • Fixed: Crash on BitbucketServer when the change type is unknown - [@​f-meloni]
  • Add linesOfCode in GitDSL - [@​ninjaprox]
  • Docs: document GitHubMergeRef type - [@​nornagon]

v7.0.13

Compare Source

  • Adds some Debug logs for babel transformation - [@​orta]

v7.0.12

Compare Source

  • Support multi-line import/require statements in Dangerfiles & possibly fix source-mapping for errors - [@​fbartho]

v7.0.11

Compare Source

  • Return the DangerResults meta after sorting and merging operations - [@​f-meloni]
  • Make bitbucket generated signature less aggressive - [@​f-meloni]

v7.0.10

Compare Source

  • Prepare for release (36de6b0)
  • Don't expect a default export from octokit (d096d18)

v7.0.9

Compare Source

  • Updates the import for octokit at the top of the danger.d.ts - [@​orta]

v7.0.8

Compare Source

  • Handles the previews API correctly - [@​orta]

v7.0.7

Compare Source

  • Removed vm2 from Danger, it's not being used in Peril now - [@​orta]
  • danger pr with --json or --js` now don't require a Dangerfile to be present - [@​orta]

v7.0.4

Compare Source

  • More fixes for GITHUB_URL instead of just DANGER_GITHUB_URL for GitHub Enterprise. - [@​Aghassi]

v7.0.2

Compare Source

  • Fix issue where the PR command could not be run with a GitHub Enterprise URL.
  • Specify filename when loading Babel options. Fixes #​664
    (#​804) - [@​NMinhNguyen]
  • Running Danger on GitHub Actions now runs Danger from source code. Before that, Danger on GitHub Actions is stuck at
    v5.0.0-beta-24. @​dtinth

v7.0.1

Compare Source

  • Taken a stab at trying to make the commit status summary to feel better in both Danger & Peril [@​orta][@​dblandin]

v7.0.0

Compare Source

  • Updates @octokit/rest to v16.x.x - this is a major semver change on their end, which I know it breaks some of
    Artsy/Danger's Peril Dangerfiles, so it's possible that it could break your Dangerfiles too. How do you know?

    Roughly, if you have any code that uses danger.github.api then it's very possible that you need to update your code.

    There are update notes here, but if you're using TypeScript
    then it'll raise the issues at a type-check level. Note, that this version may cause issues if you are using GitHub
    Enterprise, you can get updates here.

v6.1.13

Compare Source

  • Allow sub-processes to pass their own name an href so that it doesn't say made by Danger JS [@​orta]

    This is done by extending the DangerResults object passed back to Danger JS, by adding a meta section to the JSON:

    {
      "markdowns": [],
      "fails": [],
      "warnings": [],
      "messages": [],
      "meta": {
        "runtimeHref": "https://mysite.com",
        "runtimeName": "My Danger Runner"
      }
    }

    "meta" is optional, and will fall back to the DangerJS one.

  • Removed a dependency (voca) now that we're using TypeScript and have access to .includes [@​orta]

v6.1.12

Compare Source

  • Fix issue with detecting Babel if babel-core is installed - [@​sajjadzamani]

v6.1.11

Compare Source

  • Changelog faff (c25eb34)
  • Merge pull request #​787 from cysp/feature/github-actions-docs (09b9a69)
  • Merge pull request #​786 from cysp/feature/github-actions (f7cf264)
  • Update GITHUB_EVENT_TYPE to GITHUB_EVENT_NAME for Actions (1e9ff77)
  • Link to the documentation for GitHub Actions (5e317d4)
  • Merged by Peril (e8f0293)
  • Remove backticks from #​783 (a96e87e)

v6.1.10

Compare Source

  • Use the changelog command (b576ed0)
  • Merge pull request #​783 from randak/add-commit-id (ec0f2b5)
  • Merge branch 'master' into add-commit-id (4be622f)
  • Merge pull request #​784 from sajjadzamani/support-older-babel-versions (0fdcda1)
  • Add support for older babel versions (8aee4e0)
  • Remove IDE generated files (5a837b0)
  • Update changelog.md (e7a6c41)
  • Add commit ID to comment footer (#​168) (28bd18c)

v6.1.9

Compare Source

  • Add commit ID to the comment footer [danger/danger-js#​168] - [@​randak]
  • Add support for COPY change type to fix a BitBucket Server regression in
    danger/danger-js#​764 - [@​sebinsua]
  • Add support for older Babel versions (prior 7) [@​sajjadzamani]

v6.1.8

Compare Source

  • Revert removal of implicit <p> tag from danger/danger-js#​754 and add
    distinction depending on containing markdown or not - [@​hanneskaeufler]

v6.1.7

Compare Source

  • Update comment instead deleting, if it has replies (BitBucket Server) [@​langovoi]
  • Fix BitBucket Server GitDSL [@​langovoi]
  • Add support of paged APIs of BitBucket Server [@​langovoi]

v6.1.6

Compare Source

  • Adds a CLI flag for custom Danger Runners to be able to request a URL to a JSON file instead of receiving the entire
    DSL as a big JSON dump. We're exploring using this in Danger Swift with
    danger/swift#​108 - [@​orta]

v6.1.5

Compare Source

  • Adds html_url to the PR JSON declaration - [@​orta]
  • Adds a way for a sub-process to tell danger-js that it wants a copy of the DSL. This is a potential fix for when you
    have a process that might not be ready to grab the DSL instantly from danger-js. The subprocess can print the message
    danger://send-dsl to stdout and danger-js will re-send the DSL via STDIN.
    danger/swift#​108. - [@​orta]
  • Allows a FakeCI to get a FakePlatform, should fix #​767 - [@​orta]

v6.1.4

Compare Source

  • Fix GitJSONDSL and diffForFile for BitBucket Server - [@​langovoi]

v6.1.3

Compare Source

  • Add support for personal tokens of BitBucket Server - [@​langovoi]
  • Ships a command danger-js which means other languages could also use the command danger and they won't conflict with
    the JS version - [@​orta]

v6.1.2

Compare Source

  • Checks for the JSON results file reported by a subprocess before accessing it - [@​orta]

v6.1.1

Compare Source

  • Allow sub-processes to pass their own name an href so that it doesn't say made by Danger JS [@​orta]

    This is done by extending the DangerResults object passed back to Danger JS, by adding a meta section to the JSON:

    {
      "markdowns": [],
      "fails": [],
      "warnings": [],
      "messages": [],
      "meta": {
        "runtimeHref": "https://mysite.com",
        "runtimeName": "My Danger Runner"
      }
    }

    "meta" is optional, and will fall back to the DangerJS one.

  • Removed a dependency (voca) now that we're using TypeScript and have access to .includes [@​orta]

v6.1.0

Compare Source

  • Add CI integration for Netlify - [@​imorente]

v6.0.7

Compare Source

  • Removes an accidental import - [@​orta]

v6.0.6

Compare Source

  • Adds an internal flag for disabling checks support when being controller by Peril - [@​orta]

v6.0.5

Compare Source

  • Fix danger pr - [@​orta]

v6.0.4

Compare Source

  • Fix GitHub checks API payload - [@​pveyes]

v6.0.3

Compare Source

  • Fix passing stdout from the sub-process back to the user - [@​orta]
  • Fix handling a "pending" status update properly using Bitbucket API - [@​sgtcoolguy]
  • Fix #​614 - Posting status updates to Github using issue workflow broken - [@​sgtcoolguy]
  • Fix vertical alignment in GitHub issue template - [@​patrickkempff]

v6.0.2

Compare Source

  • Does some process faffing (3fa0cbe)

v6.0.0

Compare Source

  • Hah, my computer ran out opf power mid-deploy, and now I have to ship another build to make sure the brew versions of
    Danger JS are set up correctly. - orta

  • Hah, I managed to run the same 'deploy major' command instead. So... Happy v6! - orta

v4.4.10

Compare Source

  • Yarn lockfile (45158c3)
  • try ship a build (b55454a)
  • Merge pull request #​701 from steprescott/proxy-support (6ca39c3)
  • Revert the removal of the https-proxy-agent dependency (bb984cc)
  • Edit CHANGELOG.md (e95d4c5)
  • Move @types/http-proxy-agent from dependencies to devDependencies (4704646)
  • Merge branch 'master' into proxy-support (3a5e156)
  • Add proxy support via HTTP_PROXY & HTTPS_PROXY env vars (b20437f)
  • Release 4.4.8 (149713d)
  • Version faff (1f30ce4)
  • Release 4.4.8 (42ab3a9)
  • Prepare for release (958a583)
  • Merge pull request #​699 from busbud/fix/error-thrown-undefined-comment (7def0dd)
  • updates changelog (88df217)
  • Only delete comments when not undefined (de56cc6)
  • Merged by Peril (d6ca32e)
  • Adds support for using danger-js in an action (2c2ba21)
  • Use TypeScript version of http-proxy-agent (2a7ed4e)
  • Merge pull request #​695 from andykenward/patch-1 (9970570)
  • Update CHANGELOG.md (e89499a)
  • 🐛 apollo link to dangerfile.ts (459bc49)
  • Merge pull request #​693 from markelog/env_transpilation (edf7388)
  • Add logic for "DANGER_DISABLE_TRANSPILATION" env (e4934b3)
  • Merge pull request #​691 from azz/jenkins-dx (f2a723c)
  • Updates the memfs pr dep (3393ff0)
  • Refactor (74baf58)
  • Docs (ee9d408)
  • Support CHANGE_URL and CHANGE_ID in Jenkins (2e1b1e9)
  • Release 4.4.7 (dcc4815)
  • Merged by Peril (37fec3a)
  • Merge pull request #​1 from saamorim/fix-pull-request-parser (3eab065)
  • Allow repository name parsing to have extra valid characters (2b2f054)
  • Make the Danger homebrew script directly push to the homebrew repo (b478682)
  • Release 4.4.6 (22a4f47)
  • Release 4.4.5 (69585ad)
  • Release 4.4.4 (7dc6c74)
  • Add homebrew files to the npm ignore (509c002)
  • Release 4.4.3 (414fac1)
  • Release 4.4.2 (2db3c61)
  • Release 4.4.1 (5b3e5d6)
  • Release 4.4.0 (7d638f7)
  • CHANGELOG (1698cdd)
  • Merge pull request #​671 from thii/standalone-danger (465facd)
  • Remove node 7 on ci and move it to 8 (3e8b218)
  • Create PR to homebrew-tap when releasing (ae70f3b)
  • Add .release-it.json (e81fff5)
  • Move distribution zip file under brew-distribution (85fc52d)
  • Add a script to package danger-js into an executable file (79db92a)
  • Merge pull request #​680 from pedrovereza/vision-typo (51d1b88)
  • Fixes typo in VISION.md (f21e2a4)
  • Adds support for falling back to GITHUB_TOKEN if available (aed6295)
  • Release 4.3.0 (1132886)
  • Release 4.2.0 (18b76c9)
  • Release 4.1.0 (77fd21d)
  • README (fccfe24)
  • Prepare for next release (eca80a4)
  • Merge pull request #​679 from danger/add_create_pr (eec12da)
  • Adds an API for creating and updating PRs. (8930c91)
  • Merge pull request #​678 from danger/package_updates (c6563f8)
  • Update dependencies (d50c38d)
  • Update dependencies (03c19e0)
  • Release 4.0.2 (20cd2f0)
  • Update changelog (da287d8)
  • Merge pull request #​669 from johansteffner/master (d6e2f71)
  • Fix missing PR status update bug (c43273a)
  • Merge pull request #​668 from huafu/fix-ts-issues (4100842)
  • refactors remaining old imports (0491713)
  • fixes typings in tests (6ea2bbd)
  • upgrades deps and config (60217e6)
  • Release 4.0.1 (23eb323)
  • Prepare for next release (3eaa002)
  • Merge pull request #​663 from stefanbuck/fix-659 (12f3deb)
  • FIX-659 Fixed a bug where Danger was throwing an error when removing any existing messages (23a81c9)
  • CHANGELOG + version (aa11035)
  • Merge pull request #​662 from adamnoakes/babel_7_stable (b2366f8)
  • Update to babel 7 stable (41d9842)
  • Release 3.9.0 (7c7cb26)
  • Release it faff (e798c9a)
  • Adds release-it (14546fe)
  • Merge pull request #​658 from Cwright017/master (8b588d6)
  • Added some setup instructions (27c9328)
  • Update version, readme and changelog (55209dd)
  • Add CI integration for Concourse (be8de95)
  • Adds soem debug logs to the vm2 runner (065b2a5)
  • Fix the createOrAddLabel export for Peril (ac4465b)
  • Merge branch 'docs_docs' (e7c08f4)
  • Fix build (fdf035a)
  • Fixes a bug in adding a new label to a repo (5d62ea3)
  • Merged by Peril (a4c420f)
  • Adds a create/update label function to the github utils func (fbbcc1c)
  • Merged by Peril (acf9b5d)
  • CHANGLOG (30e8b1b)
  • More dep updates (702e51d)
  • Improve the docs, and add something about danger local (d04a9fb)
  • Merged by Peril (9b63869)
  • Make a small release (2def262)
  • Adds the potential to override the custom module handler in peril (9eea340)
  • VErsion bump (96b09e3)
  • Merged by Peril (7b5c193)
  • Merge branch 'master' into bitbucket-fixes (e000ed5)
  • Merge pull request #​645 from acecilia/bitbucket-emojis (a6e6b66)
  • Fix changelog (344c561)
  • Fix changelog (6381f5a)
  • Added changelog (a8e08c0)
  • Fix snapshot tests (c8bf885)
  • Add changelog (3b8b257)
  • Fix tests (a06619c)
  • Fix tests (6da69d5)
  • Fix error when trying to obtain a response json when the response code is 204 (which means that there is no response) (cf072a1)
  • Fix link of the PR status, so it opens the web version of the PR, pointing to the Danger comment (7ae4f51)
  • Modify bitbucket template to use unicode emojis, for better backwards compatibility (11d31b2)
  • Merged by Peril (6a9147f)
  • Use the peril bot ID (bbbd4c2)
  • Improves the npm (42eee88)
  • Adds some more logs (8dd07b0)
  • Merge branch 'master' of https://github.com/danger/danger-js into special_markdowns (899ad3b)
  • Adds some docs for comments (9c4107b)
  • Merged by Peril (f57cb72)
  • Adds more logging to handleResultsPostingToPlatform. (4f98c34)
  • Special case just markdown messages WRT the issue/checks hybrid (a97d425)
  • Fix a bug in the docs (b2290a4)
  • Add some more files to the npmignore (47c2fe5)
  • Update the dts (beb84ad)
  • Prepare for release (1f9f3db)
  • Merge pull request #​640 from danger/hybrid_checks (06324ce)
  • When you have empty results, return empty results so that danger deletes the comment (e1ee7ca)
  • CHANGELOG (c71c297)
  • Update wording on the summary (d7355bf)
  • Merge pull request #​639 from danger/more_dep_up (f6313bc)
  • Leave, and update a shorter summary message when using the checks API (3b04c13)
  • Update dev deps (1e67e09)
  • Updates the deps (87b3fc8)
  • Merged by Peril (90ebb01)
  • Merge branch 'master' of https://github.com/danger/danger-js into lodash (d4fb063)
  • Merge pull request #​638 from banzalik/spawn-200kb-limit (fbed484)
  • Spawn 200kb size limit bug (8288b40)
  • Merged by Peril (5b6d284)
  • fixed docs (6468bf9)
  • Revert "Added docs properly" (454e55b)
  • Added docs properly (c874b80)
  • Revert "Updated docs" (6028aa1)
  • Updated docs (3e81fc6)
  • fixed implementation: the env variable should include the http or https strings (13fc14d)
  • Added hability to use a proxy, useful for debugging. Because node-fetch does not support http_proxy and https_proxy env variables, we can add support ourselves. (49235d3)
  • Removes a potential crash (15aa0f2)
  • Merge pull request #​628 from danger/more_error_logs (f7ecf6f)
  • Imprve the logging around the JSON being sent across processes (0b78db4)
  • Prepare for release (1e722ef)
  • Merged by Peril (174f8e1)
  • fix a test (d73c74c)
  • Use sanitized subject instead of raw subject (8128716)
  • Use spawn in danger local (c320382)
  • Use spawn in danger local (dfba1bd)
  • Merged by Peril (17f6860)
  • docs: fix broken RN link (f20d5fd)
  • Merged by Peril (e33a079)
  • Improves error reporting for a status post (45cd55b)
  • Release (ffcac58)
  • Merge branch 'master' of https://github.com/danger/danger-js (575cde2)
  • Merge pull request #​613 from markelog/bitbucket (bc9d119)
  • Handle dashes in BitBucket repo names (836a1f2)
  • Use pullRequestParser in TeamCity provider (a9ac649)
  • Some bug fixes for the iterate on an issue DSL (eb0fc73)
  • New release (79d1881)
  • Merged by Peril (7ae8bee)
  • Updates typescript (e7032eb)
  • Turns on strict mode (009c3d6)
  • Minor refactoring in GitHubUtils to allow Peril to re-create some of the util functions (f4a4391)
  • Update the package (3e8ccff)
  • Merge (626c255)
  • Merged by Peril (c6b5981)
  • Update the dts type generator (1633eff)
  • Use top-level exports in '.d.ts' instead of a module augmentation. (08e8cb1)
  • Version bump (b2a994d)
  • Merge pull request #​601 from danger/add_update_issue (3c64123)
  • Checks refactors (0ead1bb)
  • Force on the machineman for local danger (03c1086)
  • Adds danger.github.utils.createUpdatedIssueWithID (c7ae097)
  • Adds danger.github.utils.createUpdatedIssueWithID (6cefd96)
  • More checks logs (bd833dd)
  • Version bump (ba4e969)
  • Add an await on posting to checks (6914dbf)
  • Version bump (0f06b2b)
  • Uses octokit to grab the PR metadata (45293d2)
  • Adds debugging logss everywhere (0272a67)
  • Let the debug module use stdout instead of stderr during a hyper run (0e57deb)
  • More debugging tools for Peril (4d1906b)
  • More octokit stuff (c5755a2)
  • Update Octokit (5f7b548)
  • Merged by Peril (5c35282)
  • Prepare for release (941f0a7)
  • Better Peril debugging (344af5e)
  • Merged by Peril (257c3d8)
  • Blank the title for now (877463f)
  • Merge master (4a96d22)
  • Updates the version (cfa289d)
  • Stops using deprecated methods (8935b2f)
  • Prepare for release (3c0970c)
  • Prepare for release (65c129c)
  • Merge pull request #​594 from danger/checks (0f46cea)
  • Add support for getting the blob url for a check (6a113f2)
  • Improve docs for checks (0b90375)
  • Adds ome inline warnings (c1186a1)
  • Merge master (162510f)
  • Initial stab at using checks (077db14)
  • Merged by Peril (d86b1f0)
  • Add node 10 to tests (1c243cf)
  • Merge pull request #​596 from danger/multi-files (2ef9e22)
  • Merge pull request #​495 from keplersj/keplersj/markdown-table-template (6649b2a)
  • Merge branch 'master' into keplersj/markdown-table-template (a68433b)
  • Adds support for mutliple danger file runs in a single execution (a829ffa)
  • Support the new ocktokit API (5d95e11)
  • More work on the checks support (73458ae)
  • Gets it building again (f9aa0ee)
  • Closer to checks support (9ef2409)
  • Merged by Peril (64d7ae0)
  • Update vm2 to be a published release (c2adce4)
  • WIP checks (fb39be0)
  • Fix CI (05cd72d)
  • Refactors the comment sides of the GH Platform to work via another object (0495094)
  • Release (f4054fd)
  • Merged by Peril (f94cc13)
  • Merge pull request #​589 from danger/bb (438c71b)
  • Adds more logs to danger process (a52b974)
  • Fix setting the status URL for bitbucket (f64a975)
  • Prepare for release (e5c79bd)
  • Merge pull request #​586 from mxstbr/fix-previous-comments-error-again (d3287ed)
  • Changelog entry (a224e13)
  • Explicitly check for Array of previous comments (b01ed70)
  • Prepare for release (32aab7e)
  • Merge pull request #​585 from mxstbr/fix-previous-comments-bug (485e4bd)
  • Add my name to changelog (2dc959f)
  • Fix previousComments error (ca44a62)
  • Prepare for release (8d76df7)
  • Merged by Peril (388ebc7)
  • Move types dep (ddd3a9e)
  • Add changelog entry (8756380)
  • Add typedefs for p-limit (45a7de4)
  • Limit concurrent API calls (8ad3f9b)
  • Prepare for release (1034b2e)
  • Merge pull request #​579 from dbgrandi/dbgrandi-screwdriver-ci (90df0b8)
  • simplify docs (b0c09c5)
  • update docs (81525f2)
  • Add support for Screwdriver (7e15520)
  • Merge pull request #​578 from Teamop/fix-media-type (c9939fc)
  • replace preview media type of github pull request reviews api (f837624)
  • Merge pull request #​576 from danger/greenkeeper/flow-bin-0.71.0 (d593523)
  • Merge pull request #​575 from Teamop/catch-error (4f74b42)
  • chore(package): update flow-bin to version 0.71.0 (c5a8f90)
  • catch github api error (86b69b6)
  • Release (b91e704)
  • Merge pull request #​569 from danger/std_order ([67ed2ba](https://togithub.com/dange

Renovate configuration

📅 Schedule: "after 10pm every weekday,before 5am every weekday" in timezone America/Los_Angeles.

🚦 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.

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


  • If you want to rebase/retry this PR, check this box

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

@renovate renovate bot force-pushed the renovate/danger-10.x branch 3 times, most recently from 716a40b to d46c084 Compare July 2, 2020 10:04
@renovate renovate bot changed the title chore(deps): update dependency danger to v10 Update dependency danger to v10 Jul 9, 2020
@renovate renovate bot force-pushed the renovate/danger-10.x branch 2 times, most recently from 5454fdd to 2ef5e20 Compare July 9, 2020 17:31
@renovate renovate bot changed the title Update dependency danger to v10 chore(deps): update dependency danger to v10 Jul 9, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant