mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-02 19:12:26 -06:00
[chore] update dependencies (#4422)
- github.com/jackc/pgx/v5 v5.7.5 -> v5.7.6 - github.com/ncruces/go-sqlite3 v0.28.0 -> v0.29.0 - github.com/tdewolff/minify/v2 v2.24.2 -> v2.24.3 - golang.org/x/oauth2 v0.30.0 -> v0.31.0 - golang.org/x/sys v0.35.0 -> v0.36.0 - golang.org/x/text v0.28.0 -> v0.29.0 Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4422 Co-authored-by: kim <grufwub@gmail.com> Co-committed-by: kim <grufwub@gmail.com>
This commit is contained in:
parent
9b7db51436
commit
a6429b5410
78 changed files with 1439 additions and 1189 deletions
3
vendor/github.com/jackc/pgx/v5/pgproto3/authentication_cleartext_password.go
generated
vendored
3
vendor/github.com/jackc/pgx/v5/pgproto3/authentication_cleartext_password.go
generated
vendored
|
|
@ -9,8 +9,7 @@ import (
|
|||
)
|
||||
|
||||
// AuthenticationCleartextPassword is a message sent from the backend indicating that a clear-text password is required.
|
||||
type AuthenticationCleartextPassword struct {
|
||||
}
|
||||
type AuthenticationCleartextPassword struct{}
|
||||
|
||||
// Backend identifies this message as sendable by the PostgreSQL backend.
|
||||
func (*AuthenticationCleartextPassword) Backend() {}
|
||||
|
|
|
|||
3
vendor/github.com/jackc/pgx/v5/pgproto3/authentication_ok.go
generated
vendored
3
vendor/github.com/jackc/pgx/v5/pgproto3/authentication_ok.go
generated
vendored
|
|
@ -9,8 +9,7 @@ import (
|
|||
)
|
||||
|
||||
// AuthenticationOk is a message sent from the backend indicating that authentication was successful.
|
||||
type AuthenticationOk struct {
|
||||
}
|
||||
type AuthenticationOk struct{}
|
||||
|
||||
// Backend identifies this message as sendable by the PostgreSQL backend.
|
||||
func (*AuthenticationOk) Backend() {}
|
||||
|
|
|
|||
3
vendor/github.com/jackc/pgx/v5/pgproto3/copy_done.go
generated
vendored
3
vendor/github.com/jackc/pgx/v5/pgproto3/copy_done.go
generated
vendored
|
|
@ -4,8 +4,7 @@ import (
|
|||
"encoding/json"
|
||||
)
|
||||
|
||||
type CopyDone struct {
|
||||
}
|
||||
type CopyDone struct{}
|
||||
|
||||
// Backend identifies this message as sendable by the PostgreSQL backend.
|
||||
func (*CopyDone) Backend() {}
|
||||
|
|
|
|||
3
vendor/github.com/jackc/pgx/v5/pgproto3/gss_enc_request.go
generated
vendored
3
vendor/github.com/jackc/pgx/v5/pgproto3/gss_enc_request.go
generated
vendored
|
|
@ -10,8 +10,7 @@ import (
|
|||
|
||||
const gssEncReqNumber = 80877104
|
||||
|
||||
type GSSEncRequest struct {
|
||||
}
|
||||
type GSSEncRequest struct{}
|
||||
|
||||
// Frontend identifies this message as sendable by a PostgreSQL frontend.
|
||||
func (*GSSEncRequest) Frontend() {}
|
||||
|
|
|
|||
1
vendor/github.com/jackc/pgx/v5/pgproto3/row_description.go
generated
vendored
1
vendor/github.com/jackc/pgx/v5/pgproto3/row_description.go
generated
vendored
|
|
@ -56,7 +56,6 @@ func (*RowDescription) Backend() {}
|
|||
// Decode decodes src into dst. src must contain the complete message with the exception of the initial 1 byte message
|
||||
// type identifier and 4 byte message length.
|
||||
func (dst *RowDescription) Decode(src []byte) error {
|
||||
|
||||
if len(src) < 2 {
|
||||
return &invalidMessageFormatErr{messageType: "RowDescription"}
|
||||
}
|
||||
|
|
|
|||
3
vendor/github.com/jackc/pgx/v5/pgproto3/ssl_request.go
generated
vendored
3
vendor/github.com/jackc/pgx/v5/pgproto3/ssl_request.go
generated
vendored
|
|
@ -10,8 +10,7 @@ import (
|
|||
|
||||
const sslRequestNumber = 80877103
|
||||
|
||||
type SSLRequest struct {
|
||||
}
|
||||
type SSLRequest struct{}
|
||||
|
||||
// Frontend identifies this message as sendable by a PostgreSQL frontend.
|
||||
func (*SSLRequest) Frontend() {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue