Skip to content

Update dependency probot to v14 [SECURITY]#62

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

Update dependency probot to v14 [SECURITY]#62
renovate[bot] wants to merge 1 commit intomasterfrom
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) ^6.0.0^14.0.0 age confidence

GitHub Vulnerability Alerts

CVE-2023-50728

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

Release Notes

probot/probot (probot)

v14.3.2

Compare Source

Bug Fixes
  • deps: update dependency yaml to v2.8.3 [security] (79b556e)

v14.3.1

Compare Source

Bug Fixes
  • cli: turn off strict args parsing to re-allow using receive command with args (#​2304) (67a30d1)

v14.3.0

Compare Source

Bug Fixes
Features
  • replace dotenv with node native parseEnv, when using deno runtime use deno >2.7.0 (#​2265) (c94ac6e)

v14.2.4

Compare Source

Bug Fixes

v14.2.3

Compare Source

Bug Fixes

v14.2.2

Compare Source

Bug Fixes

v14.2.1

Compare Source

Bug Fixes

v14.2.0

Compare Source

Features

v14.1.0

Compare Source

Features
  • remove sourcemaps, ensure only erasableSyntaxOnly is enforced (#​2253) (94b8929)

v14.0.6

Compare Source

Bug Fixes

v14.0.5

Compare Source

Bug Fixes

v14.0.4

Compare Source

Bug Fixes

v14.0.3

Compare Source

Bug Fixes

v14.0.2

Compare Source

Bug Fixes

v14.0.1

Compare Source

Bug Fixes
  • add explicit undefined to optional types, and update webhooks types (#​1979) (05179ff)

v14.0.0

Compare Source

BREAKING CHANGES
  • Probot is now an ESM only library
  • drop Node > 20.17 and Node 21 support
  • Switch to GitHub's OpenAPI specification for Webhooks (from @octokit/webhooks v13)
  • Remove legacy REST enpoint method access. Users will now have to use the octokit.rest.* methods
  • Remove express server from within Probot.
  • All properties marked as private in Typescript, including Probot#state, are now private class fields.
  • createNodeMiddleware() is now an async function
  • @sentry/node needs to be installed separately if needed
  • ioredis needs to be installed separately if needed
  • The built-in server now listens on localhost by default instead of 0.0.0.0.

Probot v14 Migration Guide

ESM Only Package

Probot is now exclusively an ESM package. Either migrate to ESM (recommended), or use `require(esm).

Migrating to ESM:

  1. Update package.json:
{
  "type": "module"
}
  1. Replace all CommonJS require() statements with ESM import syntax
  2. Update your TypeScript configuration:
{
  "compilerOptions": {
    "module": "node16",
    "moduleResolution": "node16"
  }
}

For require(esm):

  • For TypeScript 5.7-5.8: Use "module": "nodenext" and "moduleResolution": "nodenext"
  • For TypeScript 5.9+: Use "module": "node20" and "moduleResolution": "node20"

Node.js Version Requirements

  • Minimum supported version: Node.js 20.18+ and 22+
  • Node.js 21 support has been dropped

Webhook Type Definitions

Replace webhook type imports:

// Before
import { WebhookEvent } from "@​octokit/webhooks-types";

// After
import { WebhookEvent } from "@​octokit/openapi-webhooks-types-migration";

REST API Access Pattern

Legacy endpoint methods have been removed:

app.on("issues.opened", async (context) => {
  // Before
  // const issue = await context.octokit.issues.get(context.issue());

  // After
  const issue = await context.octokit.rest.issues.get(context.issue());
});

Express Server Removal

The built-in Express server has been removed. To use Express:

  1. Install Express:
npm install express
  1. Update your Probot setup:
import Express from "express";
import { createNodeMiddleware, createProbot } from "probot";

const express = Express();

const app = (probot) => {
  probot.on("push", async () => {
    probot.log.info("Push event received");
  });
};

const middleware = await createNodeMiddleware(app, {
  webhooksPath: "/api/github/webhooks",
  probot: createProbot({
    env: {
      APP_ID,
      PRIVATE_KEY,
      WEBHOOK_SECRET,
    },
  }),
});

express.use(middleware);
express.use(Express.json());
express.get("/custom-route", (req, res) => {
  res.json({ status: "ok" });
});

express.listen(3000, () => {
  console.log(`Server is running at http://localhost:3000`);
});

HTTP Server no longer listens on 0.0.0.0 by default

The built-in HTTP server will now listen on localhost by default, instead of listening on all available interfaces.
If you wish to change this behaviour, you can use the HOST environment variable, or the --host variable for the probot run command.

env HOST=0.0.0.0 <start script>
probot run --host=0.0.0.0 app.js

Asynchronous Middleware Initialization

createNodeMiddleware() is now asynchronous:

import { createNodeMiddleware } from "probot";
import app from "../app.js";

// Before
// const middleware = createNodeMiddleware(app);

// After
const middleware = await createNodeMiddleware(app);

v13.4.7

Compare Source

Bug Fixes

v13.4.6

Compare Source

Bug Fixes

v13.4.5

Compare Source

Bug Fixes

v13.4.4

Compare Source

Bug Fixes
  • deps: update Octokit dependencies that have ReDos vulnerability (816f2f7)

v13.4.3

Compare Source

Bug Fixes

v13.4.2

Compare Source

Bug Fixes

v13.4.1

Compare Source

Bug Fixes

v13.4.0

Compare Source

Features

v13.3.10

Compare Source

Bug Fixes

v13.3.9

Compare Source

Bug Fixes

v13.3.8

Compare Source

Bug Fixes

v13.3.7

Compare Source

Bug Fixes

v13.3.6

Compare Source

Bug Fixes

v13.3.5

Compare Source

Bug Fixes

v13.3.4

Compare Source

Bug Fixes

v13.3.0

Compare Source

Features
  • set x-github-delivery header to event.id for all requests sent from context.octokit in event handlers (#​2027) (12944d5)

v13.2.2

Compare Source

Bug Fixes
  • deps: update dependencies pino to v9, pino-http to v10 (#​2007) (ef7b9df)

v13.2.1

Compare Source

Bug Fixes

v13.2.0

Compare Source

Features

v13.1.2

Compare Source

Bug Fixes
  • deps: update dependency express to v4.19.2 [security] (b1d3ac3)

v13.1.1

Compare Source

Bug Fixes

v13.1.0

Compare Source

Features

v13.0.2

Compare Source

Bug Fixes
  • deps: update dependency commander to v12 (737835f)

v13.0.1

Compare Source

Bug Fixes

v13.0.0

Compare Source

Features
BREAKING CHANGES
  • Drop support for NodeJS < 18
  • replace node-fetch with the Fetch API
  • default webhookPath is now /api/github/webhooks
  • probot receive now only supports payloads in JSON format, previously also (unintionally) allowed JS.
  • Probot now requires that payloads be passed as string to the .verify(), .verifyAndReceive() methods. Passing objects is no longer supported
  • The middleware no longer accepts parsed payloads. You will have to pass it as a string
Note on Vercel deployments:

Set NODEJS_HELPERS environment variable to 0 in order to prevent Vercel from parsing the response body.
See Disable Helpers for detail.

v12.4.0

Compare Source

Features
  • set x-github-delivery header to event.id for all requests sent from context.octokit in event handlers (#​2026) (f1985e5)

v12.3.4

Compare Source

Bug Fixes

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


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 4 times, most recently from f268052 to 8d99104 Compare January 11, 2024 05:18
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch 2 times, most recently from 88941df to 5a5a025 Compare January 18, 2024 02:58
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 5a5a025 to b5ae208 Compare January 30, 2024 23:29
@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 b5ae208 to d5c3a4f Compare January 31, 2024 05:52
@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 d5c3a4f to 0ca18a8 Compare February 5, 2024 02:40
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Feb 5, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 0ca18a8 to af592ba Compare February 6, 2024 02:24
@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 af592ba to 7d80904 Compare February 26, 2024 05:25
@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 7d80904 to 42685cd Compare February 27, 2024 11:49
@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 42685cd to 41e3cf5 Compare March 1, 2024 23:13
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Mar 1, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 41e3cf5 to ad60ae4 Compare March 2, 2024 08:31
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Mar 2, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from ad60ae4 to acdc682 Compare March 13, 2024 20:52
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Mar 13, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from acdc682 to a1fcd85 Compare March 14, 2024 05:56
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Mar 14, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from a1fcd85 to 57a20b9 Compare March 21, 2024 23:52
@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 57a20b9 to 02faac0 Compare March 23, 2024 11:59
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 1585304 to 17113fb Compare April 23, 2024 06:00
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Apr 23, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 17113fb to da68dc9 Compare April 25, 2024 17:56
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Apr 25, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from da68dc9 to 876b987 Compare April 26, 2024 23:47
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] Apr 26, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 876b987 to eca84d6 Compare May 2, 2024 11:49
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] May 2, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from eca84d6 to 95090cd Compare May 3, 2024 02:10
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] May 3, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 95090cd to ab1c850 Compare May 9, 2024 17:52
@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 ab1c850 to 477010f Compare May 10, 2024 23:41
@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 477010f to 7db86c6 Compare May 23, 2024 20:52
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] May 23, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 7db86c6 to 42799de Compare May 24, 2024 02:28
@renovate renovate Bot changed the title fix(deps): update dependency probot to v13 [security] fix(deps): update dependency probot to v12 [security] May 24, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 42799de to 15a46cf Compare June 5, 2024 05:33
@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 15a46cf to eaf60e9 Compare June 6, 2024 02:45
@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 eaf60e9 to ff271ad Compare June 27, 2024 14:45
@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 ff271ad to 9ece8b4 Compare June 28, 2024 05:37
@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 9ece8b4 to 368e61d Compare July 14, 2024 20:30
@renovate renovate Bot changed the title fix(deps): update dependency probot to v12 [security] fix(deps): update dependency probot to v13 [security] Jul 14, 2024
@renovate renovate Bot force-pushed the renovate/npm-probot-vulnerability branch from 368e61d to ec303d2 Compare July 15, 2024 17:42
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