-
Notifications
You must be signed in to change notification settings - Fork 0
Bump express from 4.18.2 to 5.0.1 #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Reviewer's Guide by SourceryThis pull request updates the express dependency from version 4.18.2 to 5.0.1. This includes updating the version in both Sequence diagram for handling a request in Express v5sequenceDiagram
participant User
participant ExpressApp
participant Middleware
participant RouteHandler
User->>ExpressApp: Makes HTTP Request
ExpressApp->>Middleware: Executes Middleware
Middleware-->>ExpressApp: Calls next()
ExpressApp->>RouteHandler: Executes Route Handler
RouteHandler->>ExpressApp: Sends Response
ExpressApp-->>User: Returns HTTP Response
Updated class diagram for Express Request and Response objectsclassDiagram
class Request {
+params: Object
+query: Object
+body: Object
+get(field: string): string
+is(type: string): string
}
note for Request "Request object represents the HTTP request and has properties for query strings, parameters, body, HTTP headers, and more."
class Response {
+status(code: number): Response
+send(body: any): Response
+json(body: Object): Response
+redirect(url: string): Response
+render(view: string, locals: Object): Response
+clearCookie(name: string, options: Object): Response
}
note for Response "Response object represents the HTTP response that an Express app sends when it gets an HTTP request. breaking: res.status() accepts only integers, and input must be greater than 99 and less than 1000"
Request -- Response: Uses
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have skipped reviewing this pull request. It seems to have been created by a bot (hey, dependabot[bot]!). We assume it knows what it's doing!
98ee273 to
0eeb116
Compare
Bumps [express](https://github.com/expressjs/express) from 4.18.2 to 5.0.1. - [Release notes](https://github.com/expressjs/express/releases) - [Changelog](https://github.com/expressjs/express/blob/master/History.md) - [Commits](expressjs/express@4.18.2...5.0.1) --- updated-dependencies: - dependency-name: express dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
0eeb116 to
147d59e
Compare
|
Superseded by #71. |
Bumps express from 4.18.2 to 5.0.1.
Release notes
Sourced from express's releases.
... (truncated)
Changelog
Sourced from express's changelog.
... (truncated)
Commits
d14b2de5.0.12027b87fix(deps): [email protected]2cbf227Link and update captains (#6013)3e1a1ceAdd@bjohansebasto the triage team (#6009)6340d15remove --bail from test script (#5962)344b0225.0.00c49926fix(deps): send@^1.1.0b3906cbfix(deps): serve-static@^2.1.0fed8c2afix(deps): body-parser@^2.0.1bdd81f8Deletebackas a magic string (#5933)Maintainer changes
This version was pushed to npm by ulisesgascon, a new releaser for express since your current version.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by Sourcery
Enhancements: