From d052368422997c9450f8572e6039920a8a27d27e Mon Sep 17 00:00:00 2001 From: "Philip K. Warren" Date: Mon, 26 Feb 2024 13:04:20 -0500 Subject: [PATCH] Update license years and fix makefile Update license years to include 2024. Fix makefile so we rely on the Go compiler to keep $(BIN)/protovalidate-conformance-go updated instead of Make rules (which weren't causing it to be rebuilt when changes to .go files were made). Update generated code to protobuf-go 1.32.0 to match go.mod requirement. --- .gitattributes | 1 + Makefile | 13 +++++++------ buf.gen.yaml | 2 +- celext/lib.go | 2 +- celext/lib_test.go | 2 +- celext/lookups.go | 2 +- celext/lookups_test.go | 2 +- internal/cmd/protovalidate-conformance-go/main.go | 2 +- internal/constraints/cache.go | 2 +- internal/constraints/cache_test.go | 2 +- internal/constraints/lookups.go | 2 +- internal/constraints/lookups_test.go | 2 +- internal/errors/compilation.go | 2 +- internal/errors/runtime.go | 2 +- internal/errors/utils.go | 2 +- internal/errors/utils_test.go | 2 +- internal/errors/validation.go | 2 +- internal/errors/validation_test.go | 2 +- internal/evaluator/any.go | 2 +- internal/evaluator/builder.go | 2 +- internal/evaluator/builder_test.go | 2 +- internal/evaluator/cel.go | 2 +- internal/evaluator/enum.go | 2 +- internal/evaluator/evaluator.go | 2 +- internal/evaluator/field.go | 2 +- internal/evaluator/map.go | 2 +- internal/evaluator/map_test.go | 2 +- internal/evaluator/message.go | 2 +- internal/evaluator/oneof.go | 2 +- internal/evaluator/repeated.go | 2 +- internal/evaluator/value.go | 2 +- internal/expression/ast.go | 2 +- internal/expression/ast_test.go | 2 +- internal/expression/compile.go | 2 +- internal/expression/compile_test.go | 2 +- internal/expression/program.go | 2 +- internal/expression/program_test.go | 2 +- internal/expression/variable.go | 2 +- internal/expression/variable_test.go | 2 +- .../gen/buf/validate/conformance/cases/bool.pb.go | 4 ++-- .../gen/buf/validate/conformance/cases/bytes.pb.go | 4 ++-- .../custom_constraints/custom_constraints.pb.go | 4 ++-- .../gen/buf/validate/conformance/cases/enums.pb.go | 4 ++-- .../conformance/cases/filename-with-dash.pb.go | 4 ++-- .../conformance/cases/ignore_empty_proto2.pb.go | 4 ++-- .../conformance/cases/ignore_empty_proto3.pb.go | 4 ++-- .../validate/conformance/cases/ignore_proto2.pb.go | 4 ++-- .../validate/conformance/cases/ignore_proto3.pb.go | 4 ++-- .../validate/conformance/cases/kitchen_sink.pb.go | 4 ++-- .../gen/buf/validate/conformance/cases/maps.pb.go | 4 ++-- .../buf/validate/conformance/cases/messages.pb.go | 4 ++-- .../buf/validate/conformance/cases/numbers.pb.go | 4 ++-- .../gen/buf/validate/conformance/cases/oneofs.pb.go | 4 ++-- .../conformance/cases/other_package/embed.pb.go | 4 ++-- .../buf/validate/conformance/cases/repeated.pb.go | 4 ++-- .../conformance/cases/required_field_proto2.pb.go | 4 ++-- .../conformance/cases/required_field_proto3.pb.go | 4 ++-- .../buf/validate/conformance/cases/strings.pb.go | 4 ++-- .../cases/subdirectory/in_subdirectory.pb.go | 4 ++-- .../buf/validate/conformance/cases/wkt_any.pb.go | 4 ++-- .../validate/conformance/cases/wkt_duration.pb.go | 4 ++-- .../buf/validate/conformance/cases/wkt_nested.pb.go | 4 ++-- .../validate/conformance/cases/wkt_timestamp.pb.go | 4 ++-- .../validate/conformance/cases/wkt_wrappers.pb.go | 4 ++-- .../cases/yet_another_package/embed2.pb.go | 4 ++-- .../buf/validate/conformance/harness/harness.pb.go | 4 ++-- .../buf/validate/conformance/harness/results.pb.go | 4 ++-- internal/gen/tests/example/v1/example.pb.go | 4 ++-- internal/gen/tests/example/v1/legacy.pb.go | 4 ++-- internal/gen/tests/example/v1/validations.pb.go | 4 ++-- legacy/resolver.go | 2 +- legacy/resolver_test.go | 2 +- legacy/translate.go | 2 +- legacy/translate_test.go | 2 +- proto/tests/example/v1/example.proto | 2 +- proto/tests/example/v1/legacy.proto | 2 +- proto/tests/example/v1/validations.proto | 2 +- resolver/resolver.go | 2 +- validator.go | 2 +- validator_bench_test.go | 2 +- validator_example_test.go | 2 +- validator_test.go | 2 +- 82 files changed, 119 insertions(+), 117 deletions(-) diff --git a/.gitattributes b/.gitattributes index d207b18..4a1c630 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1 +1,2 @@ *.go text eol=lf +internal/gen/**/* linguist-generated=true diff --git a/Makefile b/Makefile index 3fa089b..0f8e0d7 100644 --- a/Makefile +++ b/Makefile @@ -7,11 +7,12 @@ MAKEFLAGS += --warn-undefined-variables MAKEFLAGS += --no-builtin-rules MAKEFLAGS += --no-print-directory BIN := .tmp/bin -COPYRIGHT_YEARS := 2023 +COPYRIGHT_YEARS := 2023-2024 LICENSE_IGNORE := -e internal/testdata/ # Set to use a different compiler. For example, `GO=go1.18rc1 make test`. GO ?= go ARGS ?= --strict --strict_message --strict_error +GOLANGCI_LINT_VERSION ?= v1.56.1 # Set to use a different version of protovalidate-conformance. # Should be kept in sync with the version referenced in proto/buf.lock and # 'buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go' in go.mod. @@ -45,7 +46,7 @@ lint-proto: $(BIN)/buf $(BIN)/buf lint .PHONY: conformance -conformance: $(BIN)/protovalidate-conformance $(BIN)/protovalidate-conformance-go ## Run conformance tests +conformance: $(BIN)/protovalidate-conformance protovalidate-conformance-go ## Run conformance tests $(BIN)/protovalidate-conformance $(ARGS) $(BIN)/protovalidate-conformance-go .PHONY: generate @@ -94,12 +95,12 @@ $(BIN)/license-header: $(BIN) Makefile $(BIN)/golangci-lint: $(BIN) Makefile GOBIN=$(abspath $(@D)) $(GO) install \ - github.com/golangci/golangci-lint/cmd/golangci-lint@v1.56.1 + github.com/golangci/golangci-lint/cmd/golangci-lint@$(GOLANGCI_LINT_VERSION) $(BIN)/protovalidate-conformance: $(BIN) Makefile GOBIN=$(abspath $(BIN)) $(GO) install \ github.com/bufbuild/protovalidate/tools/protovalidate-conformance@$(CONFORMANCE_VERSION) -$(BIN)/protovalidate-conformance-go: $(BIN) Makefile - GOBIN=$(abspath $(BIN)) $(GO) build -o $(BIN)/protovalidate-conformance-go \ - ./internal/cmd/protovalidate-conformance-go +.PHONY: protovalidate-conformance-go +protovalidate-conformance-go: $(BIN) + GOBIN=$(abspath $(BIN)) $(GO) install ./internal/cmd/protovalidate-conformance-go diff --git a/buf.gen.yaml b/buf.gen.yaml index 0e42127..75d6fb9 100644 --- a/buf.gen.yaml +++ b/buf.gen.yaml @@ -7,6 +7,6 @@ managed: - buf.build/envoyproxy/protoc-gen-validate - buf.build/bufbuild/protovalidate plugins: - - plugin: buf.build/protocolbuffers/go:v1.31.0 + - plugin: buf.build/protocolbuffers/go:v1.32.0 out: internal/gen opt: paths=source_relative diff --git a/celext/lib.go b/celext/lib.go index 94bdc71..f84f1f2 100644 --- a/celext/lib.go +++ b/celext/lib.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/celext/lib_test.go b/celext/lib_test.go index bc1e87e..40f3966 100644 --- a/celext/lib_test.go +++ b/celext/lib_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/celext/lookups.go b/celext/lookups.go index cb24d70..23f7abe 100644 --- a/celext/lookups.go +++ b/celext/lookups.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/celext/lookups_test.go b/celext/lookups_test.go index 8ee382f..c30db00 100644 --- a/celext/lookups_test.go +++ b/celext/lookups_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/cmd/protovalidate-conformance-go/main.go b/internal/cmd/protovalidate-conformance-go/main.go index a44dd57..b0b912c 100644 --- a/internal/cmd/protovalidate-conformance-go/main.go +++ b/internal/cmd/protovalidate-conformance-go/main.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/constraints/cache.go b/internal/constraints/cache.go index 0c0c91e..985af71 100644 --- a/internal/constraints/cache.go +++ b/internal/constraints/cache.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/constraints/cache_test.go b/internal/constraints/cache_test.go index 16d4e3d..3a5c2ed 100644 --- a/internal/constraints/cache_test.go +++ b/internal/constraints/cache_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/constraints/lookups.go b/internal/constraints/lookups.go index fa54c2a..5cdf4f5 100644 --- a/internal/constraints/lookups.go +++ b/internal/constraints/lookups.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/constraints/lookups_test.go b/internal/constraints/lookups_test.go index 6fa9423..cdf3208 100644 --- a/internal/constraints/lookups_test.go +++ b/internal/constraints/lookups_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/compilation.go b/internal/errors/compilation.go index fc93a73..e17b466 100644 --- a/internal/errors/compilation.go +++ b/internal/errors/compilation.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/runtime.go b/internal/errors/runtime.go index 329df00..e135253 100644 --- a/internal/errors/runtime.go +++ b/internal/errors/runtime.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/utils.go b/internal/errors/utils.go index cd74822..857d298 100644 --- a/internal/errors/utils.go +++ b/internal/errors/utils.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/utils_test.go b/internal/errors/utils_test.go index ed0e1de..fec363d 100644 --- a/internal/errors/utils_test.go +++ b/internal/errors/utils_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/validation.go b/internal/errors/validation.go index e60408f..0cae7a6 100644 --- a/internal/errors/validation.go +++ b/internal/errors/validation.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/errors/validation_test.go b/internal/errors/validation_test.go index e892208..a52aa3a 100644 --- a/internal/errors/validation_test.go +++ b/internal/errors/validation_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/any.go b/internal/evaluator/any.go index eec2a9b..e4f6c9e 100644 --- a/internal/evaluator/any.go +++ b/internal/evaluator/any.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/builder.go b/internal/evaluator/builder.go index abf32d6..c74ba2b 100644 --- a/internal/evaluator/builder.go +++ b/internal/evaluator/builder.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/builder_test.go b/internal/evaluator/builder_test.go index 5de94cd..4958379 100644 --- a/internal/evaluator/builder_test.go +++ b/internal/evaluator/builder_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/cel.go b/internal/evaluator/cel.go index 84d316e..0461798 100644 --- a/internal/evaluator/cel.go +++ b/internal/evaluator/cel.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/enum.go b/internal/evaluator/enum.go index 4dda61f..a791ed2 100644 --- a/internal/evaluator/enum.go +++ b/internal/evaluator/enum.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/evaluator.go b/internal/evaluator/evaluator.go index ee946d2..132e095 100644 --- a/internal/evaluator/evaluator.go +++ b/internal/evaluator/evaluator.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/field.go b/internal/evaluator/field.go index a773fe0..2c61e40 100644 --- a/internal/evaluator/field.go +++ b/internal/evaluator/field.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/map.go b/internal/evaluator/map.go index ddd0590..5fc51cf 100644 --- a/internal/evaluator/map.go +++ b/internal/evaluator/map.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/map_test.go b/internal/evaluator/map_test.go index 81f7ed0..b9bb861 100644 --- a/internal/evaluator/map_test.go +++ b/internal/evaluator/map_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/message.go b/internal/evaluator/message.go index a94f3a2..8a190c8 100644 --- a/internal/evaluator/message.go +++ b/internal/evaluator/message.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/oneof.go b/internal/evaluator/oneof.go index 2d250ac..2af2e14 100644 --- a/internal/evaluator/oneof.go +++ b/internal/evaluator/oneof.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/repeated.go b/internal/evaluator/repeated.go index 33f5d39..14973bf 100644 --- a/internal/evaluator/repeated.go +++ b/internal/evaluator/repeated.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/evaluator/value.go b/internal/evaluator/value.go index daf6c56..7d500a4 100644 --- a/internal/evaluator/value.go +++ b/internal/evaluator/value.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/expression/ast.go b/internal/expression/ast.go index 4c38f6e..2f699df 100644 --- a/internal/expression/ast.go +++ b/internal/expression/ast.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/expression/ast_test.go b/internal/expression/ast_test.go index 38f7e3f..383b916 100644 --- a/internal/expression/ast_test.go +++ b/internal/expression/ast_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/expression/compile.go b/internal/expression/compile.go index 594ea9a..6c902c5 100644 --- a/internal/expression/compile.go +++ b/internal/expression/compile.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/expression/compile_test.go b/internal/expression/compile_test.go index 456338b..a7ce44f 100644 --- a/internal/expression/compile_test.go +++ b/internal/expression/compile_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/expression/program.go b/internal/expression/program.go index a669102..e7b08c5 100644 --- a/internal/expression/program.go +++ b/internal/expression/program.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/expression/program_test.go b/internal/expression/program_test.go index b30935c..c02fa9a 100644 --- a/internal/expression/program_test.go +++ b/internal/expression/program_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/expression/variable.go b/internal/expression/variable.go index cb3bacb..20e67d6 100644 --- a/internal/expression/variable.go +++ b/internal/expression/variable.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/expression/variable_test.go b/internal/expression/variable_test.go index bb41e97..f70d0a2 100644 --- a/internal/expression/variable_test.go +++ b/internal/expression/variable_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/internal/gen/buf/validate/conformance/cases/bool.pb.go b/internal/gen/buf/validate/conformance/cases/bool.pb.go index b07641b..853bb38 100644 --- a/internal/gen/buf/validate/conformance/cases/bool.pb.go +++ b/internal/gen/buf/validate/conformance/cases/bool.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/bool.proto diff --git a/internal/gen/buf/validate/conformance/cases/bytes.pb.go b/internal/gen/buf/validate/conformance/cases/bytes.pb.go index 57eabe6..425c149 100644 --- a/internal/gen/buf/validate/conformance/cases/bytes.pb.go +++ b/internal/gen/buf/validate/conformance/cases/bytes.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/bytes.proto diff --git a/internal/gen/buf/validate/conformance/cases/custom_constraints/custom_constraints.pb.go b/internal/gen/buf/validate/conformance/cases/custom_constraints/custom_constraints.pb.go index 176f09a..0eef4b6 100644 --- a/internal/gen/buf/validate/conformance/cases/custom_constraints/custom_constraints.pb.go +++ b/internal/gen/buf/validate/conformance/cases/custom_constraints/custom_constraints.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/custom_constraints/custom_constraints.proto diff --git a/internal/gen/buf/validate/conformance/cases/enums.pb.go b/internal/gen/buf/validate/conformance/cases/enums.pb.go index 95ff02b..1f479cf 100644 --- a/internal/gen/buf/validate/conformance/cases/enums.pb.go +++ b/internal/gen/buf/validate/conformance/cases/enums.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/enums.proto diff --git a/internal/gen/buf/validate/conformance/cases/filename-with-dash.pb.go b/internal/gen/buf/validate/conformance/cases/filename-with-dash.pb.go index 7b62789..fe9ab34 100644 --- a/internal/gen/buf/validate/conformance/cases/filename-with-dash.pb.go +++ b/internal/gen/buf/validate/conformance/cases/filename-with-dash.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/filename-with-dash.proto diff --git a/internal/gen/buf/validate/conformance/cases/ignore_empty_proto2.pb.go b/internal/gen/buf/validate/conformance/cases/ignore_empty_proto2.pb.go index 9b392ea..e80ce0e 100644 --- a/internal/gen/buf/validate/conformance/cases/ignore_empty_proto2.pb.go +++ b/internal/gen/buf/validate/conformance/cases/ignore_empty_proto2.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/ignore_empty_proto2.proto diff --git a/internal/gen/buf/validate/conformance/cases/ignore_empty_proto3.pb.go b/internal/gen/buf/validate/conformance/cases/ignore_empty_proto3.pb.go index 0c12976..80c5db3 100644 --- a/internal/gen/buf/validate/conformance/cases/ignore_empty_proto3.pb.go +++ b/internal/gen/buf/validate/conformance/cases/ignore_empty_proto3.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/ignore_empty_proto3.proto diff --git a/internal/gen/buf/validate/conformance/cases/ignore_proto2.pb.go b/internal/gen/buf/validate/conformance/cases/ignore_proto2.pb.go index a422e72..a5fb266 100644 --- a/internal/gen/buf/validate/conformance/cases/ignore_proto2.pb.go +++ b/internal/gen/buf/validate/conformance/cases/ignore_proto2.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/ignore_proto2.proto diff --git a/internal/gen/buf/validate/conformance/cases/ignore_proto3.pb.go b/internal/gen/buf/validate/conformance/cases/ignore_proto3.pb.go index e8a6585..76edf80 100644 --- a/internal/gen/buf/validate/conformance/cases/ignore_proto3.pb.go +++ b/internal/gen/buf/validate/conformance/cases/ignore_proto3.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/ignore_proto3.proto diff --git a/internal/gen/buf/validate/conformance/cases/kitchen_sink.pb.go b/internal/gen/buf/validate/conformance/cases/kitchen_sink.pb.go index e99ed86..b05e038 100644 --- a/internal/gen/buf/validate/conformance/cases/kitchen_sink.pb.go +++ b/internal/gen/buf/validate/conformance/cases/kitchen_sink.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/kitchen_sink.proto diff --git a/internal/gen/buf/validate/conformance/cases/maps.pb.go b/internal/gen/buf/validate/conformance/cases/maps.pb.go index 021ccff..c097a37 100644 --- a/internal/gen/buf/validate/conformance/cases/maps.pb.go +++ b/internal/gen/buf/validate/conformance/cases/maps.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/maps.proto diff --git a/internal/gen/buf/validate/conformance/cases/messages.pb.go b/internal/gen/buf/validate/conformance/cases/messages.pb.go index 0fa6b1f..6924abc 100644 --- a/internal/gen/buf/validate/conformance/cases/messages.pb.go +++ b/internal/gen/buf/validate/conformance/cases/messages.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/messages.proto diff --git a/internal/gen/buf/validate/conformance/cases/numbers.pb.go b/internal/gen/buf/validate/conformance/cases/numbers.pb.go index 2263abd..a65a132 100644 --- a/internal/gen/buf/validate/conformance/cases/numbers.pb.go +++ b/internal/gen/buf/validate/conformance/cases/numbers.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/numbers.proto diff --git a/internal/gen/buf/validate/conformance/cases/oneofs.pb.go b/internal/gen/buf/validate/conformance/cases/oneofs.pb.go index 55b0191..4dfc086 100644 --- a/internal/gen/buf/validate/conformance/cases/oneofs.pb.go +++ b/internal/gen/buf/validate/conformance/cases/oneofs.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/oneofs.proto diff --git a/internal/gen/buf/validate/conformance/cases/other_package/embed.pb.go b/internal/gen/buf/validate/conformance/cases/other_package/embed.pb.go index 7bc465b..9072abf 100644 --- a/internal/gen/buf/validate/conformance/cases/other_package/embed.pb.go +++ b/internal/gen/buf/validate/conformance/cases/other_package/embed.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/other_package/embed.proto diff --git a/internal/gen/buf/validate/conformance/cases/repeated.pb.go b/internal/gen/buf/validate/conformance/cases/repeated.pb.go index 440b676..7edf666 100644 --- a/internal/gen/buf/validate/conformance/cases/repeated.pb.go +++ b/internal/gen/buf/validate/conformance/cases/repeated.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/repeated.proto diff --git a/internal/gen/buf/validate/conformance/cases/required_field_proto2.pb.go b/internal/gen/buf/validate/conformance/cases/required_field_proto2.pb.go index e820db8..d5a10cb 100644 --- a/internal/gen/buf/validate/conformance/cases/required_field_proto2.pb.go +++ b/internal/gen/buf/validate/conformance/cases/required_field_proto2.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/required_field_proto2.proto diff --git a/internal/gen/buf/validate/conformance/cases/required_field_proto3.pb.go b/internal/gen/buf/validate/conformance/cases/required_field_proto3.pb.go index 715469d..7356f3c 100644 --- a/internal/gen/buf/validate/conformance/cases/required_field_proto3.pb.go +++ b/internal/gen/buf/validate/conformance/cases/required_field_proto3.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/required_field_proto3.proto diff --git a/internal/gen/buf/validate/conformance/cases/strings.pb.go b/internal/gen/buf/validate/conformance/cases/strings.pb.go index e518e98..80dbb00 100644 --- a/internal/gen/buf/validate/conformance/cases/strings.pb.go +++ b/internal/gen/buf/validate/conformance/cases/strings.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/strings.proto diff --git a/internal/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory.pb.go b/internal/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory.pb.go index ab6e45f..5b6d670 100644 --- a/internal/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory.pb.go +++ b/internal/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/subdirectory/in_subdirectory.proto diff --git a/internal/gen/buf/validate/conformance/cases/wkt_any.pb.go b/internal/gen/buf/validate/conformance/cases/wkt_any.pb.go index df3b593..7ae71af 100644 --- a/internal/gen/buf/validate/conformance/cases/wkt_any.pb.go +++ b/internal/gen/buf/validate/conformance/cases/wkt_any.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/wkt_any.proto diff --git a/internal/gen/buf/validate/conformance/cases/wkt_duration.pb.go b/internal/gen/buf/validate/conformance/cases/wkt_duration.pb.go index 0ce005d..b82a506 100644 --- a/internal/gen/buf/validate/conformance/cases/wkt_duration.pb.go +++ b/internal/gen/buf/validate/conformance/cases/wkt_duration.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/wkt_duration.proto diff --git a/internal/gen/buf/validate/conformance/cases/wkt_nested.pb.go b/internal/gen/buf/validate/conformance/cases/wkt_nested.pb.go index 1f538aa..2e89e5b 100644 --- a/internal/gen/buf/validate/conformance/cases/wkt_nested.pb.go +++ b/internal/gen/buf/validate/conformance/cases/wkt_nested.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/wkt_nested.proto diff --git a/internal/gen/buf/validate/conformance/cases/wkt_timestamp.pb.go b/internal/gen/buf/validate/conformance/cases/wkt_timestamp.pb.go index 982c34b..9526cb6 100644 --- a/internal/gen/buf/validate/conformance/cases/wkt_timestamp.pb.go +++ b/internal/gen/buf/validate/conformance/cases/wkt_timestamp.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/wkt_timestamp.proto diff --git a/internal/gen/buf/validate/conformance/cases/wkt_wrappers.pb.go b/internal/gen/buf/validate/conformance/cases/wkt_wrappers.pb.go index 7706203..bb56312 100644 --- a/internal/gen/buf/validate/conformance/cases/wkt_wrappers.pb.go +++ b/internal/gen/buf/validate/conformance/cases/wkt_wrappers.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/wkt_wrappers.proto diff --git a/internal/gen/buf/validate/conformance/cases/yet_another_package/embed2.pb.go b/internal/gen/buf/validate/conformance/cases/yet_another_package/embed2.pb.go index 0f60399..db5c80e 100644 --- a/internal/gen/buf/validate/conformance/cases/yet_another_package/embed2.pb.go +++ b/internal/gen/buf/validate/conformance/cases/yet_another_package/embed2.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/cases/yet_another_package/embed2.proto diff --git a/internal/gen/buf/validate/conformance/harness/harness.pb.go b/internal/gen/buf/validate/conformance/harness/harness.pb.go index 578b54f..043142f 100644 --- a/internal/gen/buf/validate/conformance/harness/harness.pb.go +++ b/internal/gen/buf/validate/conformance/harness/harness.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/harness/harness.proto diff --git a/internal/gen/buf/validate/conformance/harness/results.pb.go b/internal/gen/buf/validate/conformance/harness/results.pb.go index ba5ba4e..7cd2c14 100644 --- a/internal/gen/buf/validate/conformance/harness/results.pb.go +++ b/internal/gen/buf/validate/conformance/harness/results.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: buf/validate/conformance/harness/results.proto diff --git a/internal/gen/tests/example/v1/example.pb.go b/internal/gen/tests/example/v1/example.pb.go index d68568e..bba7c3a 100644 --- a/internal/gen/tests/example/v1/example.pb.go +++ b/internal/gen/tests/example/v1/example.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: tests/example/v1/example.proto diff --git a/internal/gen/tests/example/v1/legacy.pb.go b/internal/gen/tests/example/v1/legacy.pb.go index d57b48c..5738579 100644 --- a/internal/gen/tests/example/v1/legacy.pb.go +++ b/internal/gen/tests/example/v1/legacy.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: tests/example/v1/legacy.proto diff --git a/internal/gen/tests/example/v1/validations.pb.go b/internal/gen/tests/example/v1/validations.pb.go index 6ad6264..925fa67 100644 --- a/internal/gen/tests/example/v1/validations.pb.go +++ b/internal/gen/tests/example/v1/validations.pb.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. @@ -14,7 +14,7 @@ // Code generated by protoc-gen-go. DO NOT EDIT. // versions: -// protoc-gen-go v1.31.0 +// protoc-gen-go v1.32.0 // protoc (unknown) // source: tests/example/v1/validations.proto diff --git a/legacy/resolver.go b/legacy/resolver.go index 9d4c244..6165f80 100644 --- a/legacy/resolver.go +++ b/legacy/resolver.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/legacy/resolver_test.go b/legacy/resolver_test.go index 4263792..9163645 100644 --- a/legacy/resolver_test.go +++ b/legacy/resolver_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/legacy/translate.go b/legacy/translate.go index 100c110..aff6fba 100644 --- a/legacy/translate.go +++ b/legacy/translate.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/legacy/translate_test.go b/legacy/translate_test.go index 19ba17a..0c7b437 100644 --- a/legacy/translate_test.go +++ b/legacy/translate_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/proto/tests/example/v1/example.proto b/proto/tests/example/v1/example.proto index c0fe19a..4ea069e 100644 --- a/proto/tests/example/v1/example.proto +++ b/proto/tests/example/v1/example.proto @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/proto/tests/example/v1/legacy.proto b/proto/tests/example/v1/legacy.proto index 91a2b96..c065b21 100644 --- a/proto/tests/example/v1/legacy.proto +++ b/proto/tests/example/v1/legacy.proto @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/proto/tests/example/v1/validations.proto b/proto/tests/example/v1/validations.proto index e10842a..8de169d 100644 --- a/proto/tests/example/v1/validations.proto +++ b/proto/tests/example/v1/validations.proto @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/resolver/resolver.go b/resolver/resolver.go index 9a2cbc7..1f1654e 100644 --- a/resolver/resolver.go +++ b/resolver/resolver.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/validator.go b/validator.go index bf29519..30286d2 100644 --- a/validator.go +++ b/validator.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/validator_bench_test.go b/validator_bench_test.go index 33ea579..6c4d32a 100644 --- a/validator_bench_test.go +++ b/validator_bench_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/validator_example_test.go b/validator_example_test.go index 7e2622b..1b9973e 100644 --- a/validator_example_test.go +++ b/validator_example_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/validator_test.go b/validator_test.go index f722229..3ae53b8 100644 --- a/validator_test.go +++ b/validator_test.go @@ -1,4 +1,4 @@ -// Copyright 2023 Buf Technologies, Inc. +// Copyright 2023-2024 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License.