Skip to content

Update dependency probot to v12 [SECURITY]#32

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/npm-probot-vulnerability
Open

Update dependency probot to v12 [SECURITY]#32
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/npm-probot-vulnerability

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate Bot commented Dec 16, 2023

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
probot (source) ^4.0.0^12.3.3 age confidence

Unauthenticated Denial of Service in the octokit/webhooks library

CVE-2023-50728 / GHSA-pwfr-8pq7-x9qv

More information

Details

Impact

Versions v9.26.0, v10.9.x), v11.1.x, v12.0.x all contained the code that would throw the error.

Specifically, during a pentest we encountered a bug in the octokit/webhooks library (a dependency of Probot, a framework for building Github Apps). The resulting request was found to cause an uncaught exception that ends the nodejs process.

The problem is caused by an issue with error handling in the @​octokit/webhooks library because the error can be undefined in some cases.

Credit goes to @​pb82 (for the early analysis) and @​rh-tguittet (for discovery).

Patches

Maintenance releases for the Error being thrown by the verify method in octokit/webhooks.js

Maintenance release for the reference for octokit/webhooks.js in app.js

Maintenance release for the reference for octokit/webhooks.js in octokit.js

Maintenance release for the reference for octokit/webhooks.js in Protobot

Workarounds

It is recommend that all users upgrade to the latest version of octokit/webhooks.js or use one of the updated back ported versions.

Severity

  • CVSS Score: 8.2 / 10 (High)
  • Vector String: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


Release Notes

probot/probot (probot)

v12.3.3

Compare Source

Bug Fixes

v12.3.2

Compare Source

Bug Fixes

v12.3.1

Compare Source

Bug Fixes

v12.3.0

Compare Source

Features

v12.2.9

Compare Source

Bug Fixes

v12.2.8

Compare Source

Bug Fixes

v12.2.7

Compare Source

Bug Fixes

v12.2.6

Compare Source

Bug Fixes

v12.2.5

Compare Source

Bug Fixes

v12.2.4

Compare Source

Bug Fixes

v12.2.3

Compare Source

Bug Fixes
  • deps: bump eventsource from 1.1.0 to 2.0.2 (7fd06d6)

v12.2.2

Compare Source

Bug Fixes

v12.2.1

Compare Source

Bug Fixes

v12.2.0

Compare Source

Features
  • customize account name for manifest creation flow using GH_ORG environment variable (#​1606) (992b480)

v12.1.4

Compare Source

Bug Fixes

v12.1.3

Compare Source

Bug Fixes

v12.1.2

Compare Source

Bug Fixes
  • typescript: add types for context.{repo,issue,pullRequest} (#​1622) (638a3b2)

v12.1.1

Compare Source

Bug Fixes

v12.1.0

Compare Source

Features

v12.0.0

Compare Source

Features
BREAKING CHANGES
  • remove '*' event
  • app.webhooks.middleware has been removed in @octokit/webhooks v9
  • removes the webhookPath option on new Probot({}) for the webhooks middleware

v11.4.1

Compare Source

Bug Fixes
  • support setting baseUrl on Octokit constructor instead of Probot constructor (#​1552) (453ddd2)

v11.4.0

Compare Source

Features

v11.3.2

Compare Source

Bug Fixes

v11.3.1

Compare Source

Bug Fixes
  • setup: do not enter setup mode if HOST environment variable is set (#​1538) (4d70d69)

v11.3.0

Compare Source

Features

v11.2.4

Compare Source

Bug Fixes

v11.2.3

Compare Source

Bug Fixes

v11.2.2

Compare Source

Bug Fixes
  • add workaround for "appId option is required" when in setup mode (#​1513) (e11b91e)

v11.2.1

Compare Source

Bug Fixes

v11.2.0

Compare Source

Features

v11.1.1

Compare Source

Bug Fixes

v11.1.0

Compare Source

Features
  • add onAny and onError methods from @octokit/webhooks (#​1480) (9a24f9d)

v11.0.6

Compare Source

Bug Fixes

v11.0.5

Compare Source

Bug Fixes
  • clarify error message in case of invalid app authentication (#​1465) thanks @​eXpire163 (5f1831b)

v11.0.4

Compare Source

Bug Fixes
  • TypeScript: fix description of context.pullRequest method (#​1461) (a5779ff)

v11.0.3

Compare Source

Bug Fixes

v11.0.2

Compare Source

Bug Fixes
  • typescript: remove options.webhookProxy from Probot constructor (#​1459) (01bb678)

v11.0.1

Compare Source

Bug Fixes

v11.0.0

Compare Source

BREAKING CHANGES

For a smooth upgrade, make sure to update to the latest Probot v10 version first (npm install probot@10), run your tests, and address all deprecation messages. Nearly all removed APIs have previously been deprecated.

  • deprecated context.octokit.* have been removed via @octokit/plugin-rest-endpoint-methods v4

  • probot.server property removed. Build your own server instead using import { Server } from "probot"

  • probot.load() is now asynchronous and no longer returns the instance

  • express-async-errors is no longer used.

  • Probot constructor parameter no longer supported in createNodeMiddleware(app, { Probot }). Pass a probot instance instead: createNodeMiddleware(app, { probot })

  • getOptions() has been removed. Use { probot: createProbot() } instead

  • probot.load(appFn) no longer accepts appFn to be a path string. Pass the actual function instead.

  • probot.setup() removed. Use the new Server class instead:

    const { Server, Probot } = require("probot")
    const server = new Server({
      // optional:
      host,
      port,
      webhookPath,
      webhookProxy,
      Probot: Probot.defaults({ id, privateKey, ... })
    })
    
    // load probot app function
    await server.load((app) => {})
    
    // start listening to requests
    await server.start()
    // stop server with: await server.stop()

    If you have more than one app function, combine them in a function instead

    const app1 = require("./app1")
    const app2 = require("./app2")
    
    module.exports = function app ({ probot, getRouter }) {
      await app1({ probot, getRouter })
      await app2({ probot, getRouter })
    }
  • probot.start() / probot.stop() removed. Use the new Server class instead:

    const { Server, Probot } = require("probot")
    const server = new Server({
      Probot: Probot.defaults({ id, privateKey, ... })
      // optional:
      host,
      port,
      webhookPath,
      webhookProxy,
    })
    
    // load probot app function
    await server.load((app) => {})
    
    // start listening to requests
    await server.start()
    // stop server with: await server.stop()
  • REDIS_URL is ignored when using Probot constructor. Use new Probot({ redisConfig: redis://... }) instead

  • Probot constructor no longer reads environment variables. Pass options instead, or import { createProbot } from "probot" instead

  • Probot.run() has been removed. Use import { run} from "probot" instead

  • context.github has been removed. Use context.octokit instead

  • context.event has been removed. Use context.name instead

  • app.route() has been removed. Use the getRouter() argument from the app function instead: (app, { getRouter }) => { ... }

  • app.router has been removed. Use getRouter() from the app function instead: (app, { getRouter }) => { ... }

  • probot.logger has been removed. Use probot.log instead

  • new Probot({ id }) has been removed. Use new Probot({ appId }) instead

  • new Probot({ cert }) has been removed. Use new Probot({ privateKey }) instead

  • probot.webhook has been removed. Use probot.webhooks instead

  • createProbot(options) no longer supports any keys besides overrides, defaults, or env

  • options.throttleOptions has been removed. Set options.Octokit to ProbotOctokit.defaults({ throttle }) instead

  • import { Application } from probot has been removed. Use import { Probot } from probot instead, the APIs are the same

v10.19.0

Compare Source

Features

v10.18.0

Compare Source

Features
Deprecations
  • probot.load() (3d4b363)
  • probot.start() / probot.stop() / probot.setup() (7a8f268)
  • Deprecates new Probot({ id }) (a94fdca)
Bug Fixes
  • `createProbot() without options (8c01e90)
  • load app function only once when using createNodeMiddleware (#​1432) (60b702b)
  • server: log error requests as [METHOD] /[PATH] [STATUS] - [NUM]ms, e.g POST / 500 - 123ms (9d767e1)

v10.17.3

Compare Source

Bug Fixes

v10.17.2

Compare Source

Bug Fixes

v10.17.1

Compare Source

Bug Fixes
  • set default log level correctly to "info" (49153b8)

v10.17.0

Compare Source

Features
  • import { run } from "probot". Deprecates Probot.run() (f35b58a)
  • new Probot({ baseUrl }). Deprecates GHE_HOST / GHE_PROTOCOL when using with the Probot constructor (7abbef7)
  • new Probot({ logLevel }). Deprecates LOG_LEVEL when using Probot constructor (7c46218)
  • deprecate INSTALLATION_TOKEN_TTL (dfc59fc)
  • deprecate LOG_FORMAT, LOG_LEVEL_IN_STRING, SENTRY_DSN environment variables when using Probot constructor. Pass a custom log instance instead: (514c764)
  • deprecate REDIS_URL environment variable when using with the Probot constructor. Use new Probot({ redisConfig: "redis://..." }) instead (1dbd999)

v10.16.0

Compare Source

Features

v10.15.0

Compare Source

Features

v10.14.1

Compare Source

Bug Fixes

v10.14.0

Compare Source

Features
  • deprecate { Application } export. Use { Probot } instead, it has the same APIs now. (#​1408) (0e52e05)

v10.13.0

Compare Source

Features

v10.12.0

Compare Source

Features
  • getRouter argument for app function (({ app, getRouter }) => {}) (#​1406) (de3adc1)

v10.11.0

Compare Source

Features

v10.10.2

Compare Source

Bug Fixes
  • stop using .webhooks.on("*", handler) in favor of `.webhooks.onAny(handler) (ab6fcb1)

v10.10.1

Compare Source

Bug Fixes

v10.10.0

Compare Source

Features

v10.9.5

Compare Source

Bug Fixes
  • use webhooks.onError() instead of deprecated webhooks.on("error", ...) (#​1390) (a5b36b3)

v10.9.4

Compare Source

Bug Fixes
  • typescript: TypeScript issues TS2305,TS2707,TS7006 (41ee70c), closes #​1387

v10.9.3

Compare Source

Bug Fixes

v10.9.2

Compare Source

Bug Fixes

v10.9.1

Compare Source

Bug Fixes
  • do not overwrite options.throttle passed to {Octokit: ProbotOctokit.defaults(options)} (#​1373) (9483546)

v10.9.0

Compare Source

Features

v10.8.1

Compare Source

Bug Fixes
  • use @probot/octokit-plugin-config for context.config (#​1362) (a235671)

    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

    nock("https://api.github.com")
      .get("/repos/wip/app/contents/.github%2Fwip.yml")
      .reply(200, {
        content: Buffer.from("terms: 🚧").toString("base64"),
      });

    After

    nock("https://api.github.com")
      .get("/repos/wip/app/contents/.github%2Fwip.yml")
      .reply(200, "terms: 🚧");

v10.8.0

Compare Source

Features

v10.7.1

Compare Source

Bug Fixes

v10.7.0

Compare Source

Features
  • setup: support registration using an existing GitHub app (#​1345) (d907bbd)

v10.6.0

Compare Source

Features

v10.5.0

Compare Source

Features

v10.4.1

Compare Source

Bug Fixes

v10.4.0

Compare Source

Features

v10.3.0

Compare Source

Features

v10.2.0

Compare Source

Features
  • sentry: set user ID to installation.id and username to repository owner login (when present) (#​1337) (4cf7de9)

v10.1.5

Compare Source

Bug Fixes

v10.1.4

Compare Source

Bug Fixes
  • prevent double new lines when using LOG_FORMAT=json (86c1973)

v10.1.3

Compare Source

Bug Fixes
  • "Cannot find module ../lib/private-key" error when running probot receive (#​1332) (d671d82)

v10.1.2

Compare Source

Bug Fixes
  • trigger release to update docs on probot.github.com (4c88da9)

v10.1.1

Compare Source

v10 release notes

This is the first stable release for v10. See all breaking changes and new features at
https://github.com/probot/probot/releases/tag/v10.0.0

Bug Fixes
  • app.auth(installationId) returns octokit instance with all required installation authentication settings (#​1326) (410302f)

v10.1.0

Compare Source

Features

v10.0.1

Compare Source

Bug Fixes

v10.0.0

Compare Source

Breaking changes
  • @octokit/rest has been updated from v16 to v17. See release notes. Important: If you currently mocked context.github.* methods in your test, replace these with http mocks using nock instead, otherwise your tests will create methods that no longer exist and you will see errors in production although your tests passed. See wip/app#238 for an example

  • URL parameters are now always encoded when using context.github.* methods. For example, if you use context.github.repos.getContent( owner, repo, path ) make sure to not encode the value for path. Also if you were mocking http requests in your tests, replace e.g. repos/octocat/hello-world/contents/.github/config.yml with repos/octocat/hello-world/contents/.github%2Fconfig.yml

  • require Node 10.21+

  • Logging: an object with extra information must be passed as first argument. Passing it as last argument is no longer supported.

    before

    context.log.info('something happened', {extra: 'info'})

    after

    context.log.info({extra: 'info'}, 'something happened')
  • The logging output changed. Before, probot used bunyan with all kind of hacks and customizations for its log output. Now we use pino. We still do the formatting and sending errors to Sentry in the same process, but the logic is now encapsulated in @probot/pino. We might decouple it in future as part of making Probot more suitable for serverless/function environments

  • context.issue() now returns .issue_number instead of .number. Use context.pullRequest() for octokit.pulls.* method calls.

  • registry_package event was renamed to package

  • The probot package no longer exports Octokit. Use ProbotOctokit instead.

    const { ProbotOctokit, ProbotOctokitCore } = require('probot')
  • Probot no longer accepts options.throttlingOptions. In order to disable throttling for testing, set options.Octokit to ProbotOctokit.defaults({ retry: { enabled: false }, throttle: { enabled: false } }):

    const { Probot, ProbotOctokit } = require('probot')
    
    const probot = new Probot({
      Octokit: ProbotOctokit.defaults({ retry: { enabled: false }, throttle: { enabled: false } })
    })
  • Undocumented & untested APIs removed

    • probot.errorHandler
    • probot.httpServer
    • app.log.target has been removed.
    • router option for Application contructor: new Application({ router })
Features

image

  • Significant lower memory usage
  • update to @octokit/rest to v17
  • update to @octokit/webhooks to v7
  • context.pullRequest()
  • probot.log (probot.logger is now deprecated)
  • probot.stop() (Replaces undocumented probot.httpServer)
  • replace bunyan with pino for logging
  • use a single Octokit instance with JWT auth
Bug Fixes
  • use JWT auth for marketplace endpoints

v9.15.1

Compare Source

Bug Fixes
  • revert bad v9.15.0 release (d3a8594)

v9.15.0

Compare Source

bad release, sorry

v9.14.2

Compare Source

Bug Fixes

v9.14.1

Compare Source

Bug Fixes

v9.14.0

Compare Source

Features

v9.13.2

Compare Source

Bug Fixes

v9.13.1

Compare Source

v9.13.0

Compare Source

Features

v9.12.0

Compare Source

Features
  • GET /probot/stats is deprecated and will be removed in v10 (#​1268) (1c31415)

v9.11.7

Compare Source

Bug Fixes

v9.11.6

Compare Source

Bug Fixes

v9.11.5

Compare Source

Bug Fixes

v9.11.4

Compare Source

Bug Fixes

v9.11.3

Compare Source

Bug Fixes

v9.11.2

Compare Source

Bug Fixes
  • github: Octokit is optional (6aeeabc)

v9.11.1

Compare Source

Bug Fixes

v9.11.0

Compare Source

Features

v9.10.2

Compare Source

Bug Fixes
  • package: update commander to version 5.0.0 (694f4fd)

v9.10.1

Compare Source

Bug Fixes
  • Revert "feat: mention that app must be activated after install (#​1155)" (45a21fc)

v9.10.0

Compare Source

Features

v9.9.8

Compare Source

Bug Fixes

v9.9.7

Compare Source

Bug Fixes

v9.9.6

Compare Source

Bug Fixes

v9.9.5

Compare Source

Bug Fixes
  • package: update cache-manager to version 3.0.0 (fbf6031)

v9.9.4

Compare Source

Bug Fix

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • ""
  • 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.

🔕 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch 3 times, most recently from 6955843 to 748c600 Compare January 10, 2024 20:30
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch 3 times, most recently from 912fa99 to 3373257 Compare January 19, 2024 02:50
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 3373257 to e741a12 Compare January 30, 2024 02:52
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Jan 30, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from e741a12 to dd85111 Compare January 31, 2024 08:26
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Jan 31, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from dd85111 to d7c922f Compare February 4, 2024 14:21
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Feb 4, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from d7c922f to 5563bec Compare February 6, 2024 02:49
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Feb 6, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 5563bec to 6b18f26 Compare February 26, 2024 05:48
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Feb 26, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 6b18f26 to ec11fd9 Compare February 27, 2024 05:45
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Feb 27, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from ec11fd9 to 0091960 Compare February 29, 2024 11:59
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Feb 29, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 0091960 to c288eb1 Compare March 1, 2024 17:40
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Mar 1, 2024
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Mar 12, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch 2 times, most recently from df35949 to 70f2949 Compare March 13, 2024 20:45
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Mar 13, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 70f2949 to 3678ea4 Compare March 21, 2024 05:38
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Mar 21, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 3678ea4 to 6800dda Compare March 23, 2024 05:52
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 956b4d3 to ab74658 Compare April 22, 2024 05:43
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Apr 22, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from ab74658 to 0d9a30a Compare April 26, 2024 20:59
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Apr 26, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 0d9a30a to 7e77c66 Compare April 27, 2024 20:46
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Apr 27, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 7e77c66 to fe85cfc Compare May 1, 2024 11:34
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] May 1, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from fe85cfc to 4f49f8d Compare May 2, 2024 14:59
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] May 2, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 4f49f8d to c82448b Compare May 9, 2024 14:39
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] May 9, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from c82448b to a2073f1 Compare May 10, 2024 23:24
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] May 10, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from a2073f1 to bbe4cd8 Compare May 24, 2024 05:27
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] May 24, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from bbe4cd8 to 067737b Compare May 25, 2024 05:28
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] May 25, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 067737b to 73c6aed Compare June 5, 2024 05:50
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Jun 5, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 73c6aed to 2ff5442 Compare June 6, 2024 02:32
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Jun 6, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 2ff5442 to 06895fd Compare June 27, 2024 14:47
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Jun 27, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 06895fd to 2762a12 Compare June 28, 2024 02:43
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Jun 28, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 2762a12 to 9318f54 Compare July 15, 2024 11:51
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Jul 15, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 9318f54 to e04a19b Compare July 18, 2024 23:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants