fix(deps): update dependency probot to v14 - #176
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
from
August 7, 2025 01:51
26071a0 to
401a0aa
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
from
August 31, 2025 09:46
401a0aa to
d75d5d5
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
from
September 25, 2025 21:14
d75d5d5 to
987ae57
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
3 times, most recently
from
October 11, 2025 04:35
f75e9d3 to
e1fe426
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
2 times, most recently
from
October 15, 2025 17:04
55576d7 to
9f1d8b9
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
from
October 21, 2025 20:45
9f1d8b9 to
16c955f
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
4 times, most recently
from
November 14, 2025 18:54
138b35a to
ccd489f
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
from
December 3, 2025 19:47
ccd489f to
a9021be
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
2 times, most recently
from
January 23, 2026 18:34
6be2044 to
bf9731a
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
2 times, most recently
from
February 17, 2026 15:50
dbcc079 to
a677bce
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
from
March 5, 2026 20:57
a677bce to
d106102
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
2 times, most recently
from
March 20, 2026 05:29
1ccae94 to
2e14622
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
from
March 27, 2026 12:32
2e14622 to
07b2f33
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
from
April 4, 2026 00:29
07b2f33 to
019f430
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
2 times, most recently
from
May 18, 2026 10:40
2959dba to
2ca20da
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
from
May 28, 2026 18:41
2ca20da to
197f3f4
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
from
July 12, 2026 09:50
197f3f4 to
f4e5487
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
2 times, most recently
from
August 14, 2026 18:36
a67d79f to
25fdd32
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
2 times, most recently
from
August 26, 2026 23:51
880d861 to
7546c7d
Compare
renovate
Bot
force-pushed
the
renovate/probot-14.x
branch
from
September 2, 2026 21:39
7546c7d to
0e8e3dd
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^13.0.0→^14.0.0Release Notes
probot/probot (probot)
v14.3.2Compare Source
Bug Fixes
v14.3.1Compare Source
Bug Fixes
v14.3.0Compare Source
Bug Fixes
Features
v14.2.4Compare Source
Bug Fixes
v14.2.3Compare Source
Bug Fixes
v14.2.2Compare Source
Bug Fixes
v14.2.1Compare Source
Bug Fixes
runif we send SIGINT (#2251) (02862ce)v14.2.0Compare Source
Features
v14.1.0Compare Source
Features
erasableSyntaxOnlyis enforced (#2253) (94b8929)v14.0.6Compare Source
Bug Fixes
v14.0.5Compare Source
Bug Fixes
v14.0.4Compare Source
Bug Fixes
v14.0.3Compare Source
Bug Fixes
v14.0.2Compare Source
Bug Fixes
v14.0.1Compare Source
Bug Fixes
v14.0.0Compare Source
BREAKING CHANGES
@octokit/webhooksv13)octokit.rest.*methodsprivatein Typescript, includingProbot#state, are now private class fields.createNodeMiddleware()is now an async function@sentry/nodeneeds to be installed separately if neededioredisneeds to be installed separately if neededlocalhostby default instead of0.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:
package.json:{ "type": "module" }require()statements with ESMimportsyntax{ "compilerOptions": { "module": "node16", "moduleResolution": "node16" } }For
require(esm):"module": "nodenext"and"moduleResolution": "nodenext""module": "node20"and"moduleResolution": "node20"Node.js Version Requirements
Webhook Type Definitions
Replace webhook type imports:
REST API Access Pattern
Legacy endpoint methods have been removed:
Express Server Removal
The built-in Express server has been removed. To use Express:
HTTP Server no longer listens on
0.0.0.0by defaultThe built-in HTTP server will now listen on
localhostby default, instead of listening on all available interfaces.If you wish to change this behaviour, you can use the
HOSTenvironment variable, or the--hostvariable for theprobot runcommand.Asynchronous Middleware Initialization
createNodeMiddleware()is now asynchronous:Configuration
📅 Schedule: (UTC)
🚦 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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.