chore: upgrade dependencies and bump to go 1.22
This commit is contained in:
		
							
								
								
									
										8
									
								
								vendor/google.golang.org/protobuf/encoding/prototext/decode.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										8
									
								
								vendor/google.golang.org/protobuf/encoding/prototext/decode.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -21,7 +21,7 @@ import (
 | 
			
		||||
	"google.golang.org/protobuf/reflect/protoregistry"
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
// Unmarshal reads the given []byte into the given proto.Message.
 | 
			
		||||
// Unmarshal reads the given []byte into the given [proto.Message].
 | 
			
		||||
// The provided message must be mutable (e.g., a non-nil pointer to a message).
 | 
			
		||||
func Unmarshal(b []byte, m proto.Message) error {
 | 
			
		||||
	return UnmarshalOptions{}.Unmarshal(b, m)
 | 
			
		||||
@@ -51,7 +51,7 @@ type UnmarshalOptions struct {
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Unmarshal reads the given []byte and populates the given proto.Message
 | 
			
		||||
// Unmarshal reads the given []byte and populates the given [proto.Message]
 | 
			
		||||
// using options in the UnmarshalOptions object.
 | 
			
		||||
// The provided message must be mutable (e.g., a non-nil pointer to a message).
 | 
			
		||||
func (o UnmarshalOptions) Unmarshal(b []byte, m proto.Message) error {
 | 
			
		||||
@@ -739,7 +739,9 @@ func (d decoder) skipValue() error {
 | 
			
		||||
			case text.ListClose:
 | 
			
		||||
				return nil
 | 
			
		||||
			case text.MessageOpen:
 | 
			
		||||
				return d.skipMessageValue()
 | 
			
		||||
				if err := d.skipMessageValue(); err != nil {
 | 
			
		||||
					return err
 | 
			
		||||
				}
 | 
			
		||||
			default:
 | 
			
		||||
				// Skip items. This will not validate whether skipped values are
 | 
			
		||||
				// of the same type or not, same behavior as C++
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										4
									
								
								vendor/google.golang.org/protobuf/encoding/prototext/encode.go
									
									
									
										generated
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								vendor/google.golang.org/protobuf/encoding/prototext/encode.go
									
									
									
										generated
									
									
										vendored
									
									
								
							@@ -33,7 +33,7 @@ func Format(m proto.Message) string {
 | 
			
		||||
	return MarshalOptions{Multiline: true}.Format(m)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Marshal writes the given proto.Message in textproto format using default
 | 
			
		||||
// Marshal writes the given [proto.Message] in textproto format using default
 | 
			
		||||
// options. Do not depend on the output being stable. It may change over time
 | 
			
		||||
// across different versions of the program.
 | 
			
		||||
func Marshal(m proto.Message) ([]byte, error) {
 | 
			
		||||
@@ -97,7 +97,7 @@ func (o MarshalOptions) Format(m proto.Message) string {
 | 
			
		||||
	return string(b)
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// Marshal writes the given proto.Message in textproto format using options in
 | 
			
		||||
// Marshal writes the given [proto.Message] in textproto format using options in
 | 
			
		||||
// MarshalOptions object. Do not depend on the output being stable. It may
 | 
			
		||||
// change over time across different versions of the program.
 | 
			
		||||
func (o MarshalOptions) Marshal(m proto.Message) ([]byte, error) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user