fix(deps): update dependency probot to v12 - autoclosed #63
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:
^10.9.0
->^12.0.0
Release Notes
probot/probot (probot)
v12.3.3
Compare Source
Bug Fixes
@octokit/webhooks
security update (#1911) (02d81f8)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
probot receive
support complex Probot apps (#1714) (eff5553)v12.2.7
Compare Source
Bug Fixes
--base-url
option andGHE_HOST
(#1719) (68c9b91)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
v12.2.2
Compare Source
Bug Fixes
v12.2.1
Compare Source
Bug Fixes
hbs
(#1638) (dd9f5ae)v12.2.0
Compare Source
Features
GH_ORG
environment variable (#1606) (992b480)v12.1.4
Compare Source
Bug Fixes
ApplicationFunction
(#1631) (073f087)v12.1.3
Compare Source
Bug Fixes
v12.1.2
Compare Source
Bug Fixes
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
@octokit/webhooks
to v9 (#1559) (4b3ae0e)BREAKING CHANGES
@octokit/webhooks
v9webhookPath
option onnew Probot({})
for the webhooks middlewareCo-authored-by: wolfy1339 [email protected]
v11.4.1
Compare Source
Bug Fixes
baseUrl
on Octokit constructor instead of Probot constructor (#1552) (453ddd2)v11.4.0
Compare Source
Features
v11.3.2
Compare Source
Bug Fixes
NO_SMEE_SETUP
to"true"
(#1544) (acd47a6)v11.3.1
Compare Source
Bug Fixes
HOST
environment variable is set (#1538) (4d70d69)v11.3.0
Compare Source
Features
v11.2.4
Compare Source
Bug Fixes
server.load()
(#1517) (8cc1590)v11.2.3
Compare Source
Bug Fixes
v11.2.2
Compare Source
Bug Fixes
v11.2.1
Compare Source
Bug Fixes
@octokit/plugin-rest-endpoint-methods
to v5 (#1511) (9342caf)v11.2.0
Compare Source
Features
v11.1.1
Compare Source
Bug Fixes
v11.1.0
Compare Source
Features
onAny
andonError
methods from@octokit/webhooks
(#1480) (9a24f9d)v11.0.6
Compare Source
Bug Fixes
v11.0.5
Compare Source
Bug Fixes
v11.0.4
Compare Source
Bug Fixes
context.pullRequest
method (#1461) (a5779ff)v11.0.3
Compare Source
Bug Fixes
v11.0.2
Compare Source
Bug Fixes
options.webhookProxy
fromProbot
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
v4probot.server
property removed. Build your own server instead usingimport { Server } from "probot"
probot.load()
is now asynchronous and no longer returns the instanceexpress-async-errors
is no longer used.Probot
constructor parameter no longer supported increateNodeMiddleware(app, { Probot })
. Pass aprobot
instance instead:createNodeMiddleware(app, { probot })
getOptions()
has been removed. Use{ probot: createProbot() }
insteadprobot.load(appFn)
no longer acceptsappFn
to be a path string. Pass the actual function instead.probot.setup()
removed. Use the newServer
class instead:If you have more than one app function, combine them in a function instead
probot.start()
/probot.stop()
removed. Use the newServer
class instead:REDIS_URL
is ignored when usingProbot
constructor. Usenew Probot({ redisConfig: redis://... })
insteadProbot
constructor no longer reads environment variables. Pass options instead, orimport { createProbot } from "probot"
insteadProbot.run()
has been removed. Useimport { run} from "probot"
insteadcontext.github
has been removed. Usecontext.octokit
insteadcontext.event
has been removed. Usecontext.name
insteadapp.route()
has been removed. Use thegetRouter()
argument from the app function instead:(app, { getRouter }) => { ... }
app.router
has been removed. UsegetRouter()
from the app function instead:(app, { getRouter }) => { ... }
probot.logger
has been removed. Useprobot.log
insteadnew Probot({ id })
has been removed. Usenew Probot({ appId })
insteadnew Probot({ cert })
has been removed. Usenew Probot({ privateKey })
insteadprobot.webhook
has been removed. Useprobot.webhooks
insteadcreateProbot(options)
no longer supports any keys besidesoverrides
,defaults
, orenv
options.throttleOptions
has been removed. Setoptions.Octokit
toProbotOctokit.defaults({ throttle })
insteadimport { Application } from probot
has been removed. Useimport { Probot } from probot
instead, the APIs are the sameConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.
This PR has been generated by Mend Renovate. View repository job log here.