From 6e47166c7972f0c592614d2ecab718aa2bac9df7 Mon Sep 17 00:00:00 2001 From: Anuraag Agrawal Date: Thu, 16 Jul 2026 09:51:03 +0900 Subject: [PATCH 1/3] Migrate to published license-header package --- poe_tasks.toml | 25 +++++++++++-------------- pyproject.toml | 12 ++++++++++++ uv.lock | 14 ++++++++++++++ 3 files changed, 37 insertions(+), 14 deletions(-) diff --git a/poe_tasks.toml b/poe_tasks.toml index a83412e..5066f4f 100644 --- a/poe_tasks.toml +++ b/poe_tasks.toml @@ -1,17 +1,5 @@ #:schema https://json.schemastore.org/partial-poe.json -[tasks.add-license-header] -help = "Add license header to all source files" -cmd = """ -go run github.com/bufbuild/buf/private/pkg/licenseheader/cmd/license-header@v1.69.0 - --ignore .github --ignore buf.yaml - --ignore buf.gen.yaml - --ignore test/conformance/nonconforming.yaml - --license-type apache - --copyright-holder "Buf Technologies, Inc." - --year-range "2023-2026" -""" - [tasks.bench] help = "Run benchmarks" cmd = "pytest --benchmark-enable --benchmark-only --benchmark-autosave" @@ -36,7 +24,7 @@ sequence = [ "generate-cel", "generate-protovalidate", "generate-test", - "add-license-header", + "format-license-header", "format-protos", ] @@ -59,9 +47,13 @@ sequence = [ "format-python", "format-protos", "format-toml", - "add-license-header" + "format-license-header" ] +[tasks.format-license-header] +help = "Add/update license headers in source files" +cmd = "license-header" + [tasks.format-protos] help = "Apply auto-formatting to protobuf files" sequence = [ @@ -86,9 +78,14 @@ sequence = [ "lint-python", "lint-protos", "lint-toml", + "lint-license-header", { cmd = "uv lock --check" } ] +[tasks.lint-license-header] +help = "Check license headers in source files" +cmd = "license-header --check" + [tasks.lint-protos] help = "Apply linting to protobuf files" sequence = [ diff --git a/pyproject.toml b/pyproject.toml index ae99f1c..7bccf1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,6 +41,7 @@ dev = [ "buf-bin==1.71.0", "fix-protobuf-imports==0.1.7", "google-re2-stubs==0.1.1", + "license-header==0.0.1", "poethepoet==0.48.0", "pytest==9.1.1", "pytest-benchmark==5.2.3", @@ -65,6 +66,17 @@ build-backend = "hatchling.build" source = "vcs" raw-options = { fallback_version = "0.0.0" } +## License headers +[tool.licenseheader] +copyright-holder = "Buf Technologies, Inc." +year-range = "2025-2026" +ignore = [ + ".github", + "buf.yaml", + "buf.gen.yaml", + "test/conformance/nonconforming.yaml", +] + [tool.pytest] addopts = [ "--benchmark-disable", diff --git a/uv.lock b/uv.lock index 78c0515..223ff30 100644 --- a/uv.lock +++ b/uv.lock @@ -189,6 +189,18 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/82/3d/14ce75ef66813643812f3093ab17e46d3a206942ce7376d31ec2d36229e7/lark-1.3.1-py3-none-any.whl", hash = "sha256:c629b661023a014c37da873b4ff58a817398d12635d3bbb2c5a03be7fe5d1e12", size = 113151, upload-time = "2025-10-27T18:25:54.882Z" }, ] +[[package]] +name = "license-header" +version = "0.0.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "tomli" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/12/d7/b5022800c7a5df156c12197045e12560e071196d1b962312db023bd9e9d7/license_header-0.0.1.tar.gz", hash = "sha256:752b5e8ee5ce78a682baa1f677d1575837ea5b8d01602ff40219fbf9cf6d05d1", size = 8943, upload-time = "2026-07-14T08:31:20.144Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/90/ce/a8636febaa4bdd24da2c106d4154278ba3a20b39ed6e01046dded532d4e9/license_header-0.0.1-py3-none-any.whl", hash = "sha256:dc45b544370155260e409713eb5ebb00f878e5d2630c4bcb9a6d045e18505b44", size = 13399, upload-time = "2026-07-14T08:31:19.061Z" }, +] + [[package]] name = "packaging" version = "26.2" @@ -375,6 +387,7 @@ dev = [ { name = "buf-bin" }, { name = "fix-protobuf-imports" }, { name = "google-re2-stubs" }, + { name = "license-header" }, { name = "poethepoet" }, { name = "protobuf" }, { name = "pytest" }, @@ -400,6 +413,7 @@ dev = [ { name = "buf-bin", specifier = "==1.71.0" }, { name = "fix-protobuf-imports", specifier = "==0.1.7" }, { name = "google-re2-stubs", specifier = "==0.1.1" }, + { name = "license-header", specifier = "==0.0.1" }, { name = "poethepoet", specifier = "==0.48.0" }, { name = "protobuf", specifier = ">=5" }, { name = "protobuf", marker = "python_full_version >= '3.14'", specifier = ">=6.31.0" }, From 7778d26c2b701c9441f16a814b2c8b9b205eed91 Mon Sep 17 00:00:00 2001 From: Anuraag Agrawal Date: Thu, 16 Jul 2026 09:51:33 +0900 Subject: [PATCH 2/3] Apply formatting --- proto/buf/validate/validate.proto | 4 ++-- protovalidate/__init__.py | 4 ++-- protovalidate/_gen/__init__.py | 4 ++-- protovalidate/_gen/buf/__init__.py | 4 ++-- protovalidate/_gen/buf/validate/__init__.py | 4 ++-- protovalidate/_gen/buf/validate/validate_pb.py | 4 ++-- protovalidate/internal/__init__.py | 4 ++-- protovalidate/internal/cel_field_presence.py | 4 ++-- protovalidate/internal/extra_func.py | 4 ++-- protovalidate/internal/legacy.py | 4 ++-- protovalidate/internal/rules.py | 4 ++-- protovalidate/internal/string_format.py | 4 ++-- protovalidate/validator.py | 4 ++-- scripts/generate_cel.py | 4 ++-- scripts/generate_protovalidate.py | 4 ++-- test/__init__.py | 4 ++-- test/conformance/__init__.py | 4 ++-- test/conformance/runner.py | 4 ++-- test/conformance/test_conformance.py | 4 ++-- test/gen/__init__.py | 4 ++-- test/gen/bench/__init__.py | 4 ++-- test/gen/bench/v1/__init__.py | 4 ++-- test/gen/bench/v1/bench_pb.py | 4 ++-- test/gen/bench/v1/bench_pb2.py | 4 ++-- test/gen/bench/v1/bench_pb2.pyi | 4 ++-- test/gen/bench/v1/native_pb.py | 4 ++-- test/gen/bench/v1/native_pb2.py | 4 ++-- test/gen/bench/v1/native_pb2.pyi | 4 ++-- test/gen/buf/__init__.py | 4 ++-- test/gen/buf/validate/__init__.py | 4 ++-- test/gen/buf/validate/conformance/__init__.py | 4 ++-- test/gen/buf/validate/conformance/cases/__init__.py | 4 ++-- test/gen/buf/validate/conformance/cases/bool_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/bool_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/bool_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/bytes_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/bytes_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/bytes_pb2.pyi | 4 ++-- .../buf/validate/conformance/cases/custom_rules/__init__.py | 4 ++-- .../conformance/cases/custom_rules/custom_rules_pb.py | 4 ++-- .../conformance/cases/custom_rules/custom_rules_pb2.py | 4 ++-- .../conformance/cases/custom_rules/custom_rules_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/enums_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/enums_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/enums_pb2.pyi | 4 ++-- .../buf/validate/conformance/cases/filename_with_dash_pb.py | 4 ++-- .../buf/validate/conformance/cases/filename_with_dash_pb2.py | 4 ++-- .../buf/validate/conformance/cases/filename_with_dash_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/groups_editions_pb.py | 4 ++-- .../gen/buf/validate/conformance/cases/groups_editions_pb2.py | 4 ++-- .../buf/validate/conformance/cases/groups_editions_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/groups_proto2_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/groups_proto2_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/groups_proto2_pb2.pyi | 4 ++-- .../buf/validate/conformance/cases/ignore_empty_proto2_pb.py | 4 ++-- .../buf/validate/conformance/cases/ignore_empty_proto2_pb2.py | 4 ++-- .../validate/conformance/cases/ignore_empty_proto2_pb2.pyi | 4 ++-- .../buf/validate/conformance/cases/ignore_empty_proto3_pb.py | 4 ++-- .../buf/validate/conformance/cases/ignore_empty_proto3_pb2.py | 4 ++-- .../validate/conformance/cases/ignore_empty_proto3_pb2.pyi | 4 ++-- .../conformance/cases/ignore_empty_proto_editions_pb.py | 4 ++-- .../conformance/cases/ignore_empty_proto_editions_pb2.py | 4 ++-- .../conformance/cases/ignore_empty_proto_editions_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/ignore_proto2_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/ignore_proto3_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.pyi | 4 ++-- .../validate/conformance/cases/ignore_proto_editions_pb.py | 4 ++-- .../validate/conformance/cases/ignore_proto_editions_pb2.py | 4 ++-- .../validate/conformance/cases/ignore_proto_editions_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/kitchen_sink_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/library_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/library_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/library_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/maps_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/maps_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/maps_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/messages_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/messages_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/messages_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/numbers_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/numbers_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/numbers_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/oneofs_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/oneofs_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/oneofs_pb2.pyi | 4 ++-- .../buf/validate/conformance/cases/other_package/__init__.py | 4 ++-- .../buf/validate/conformance/cases/other_package/embed_pb.py | 4 ++-- .../buf/validate/conformance/cases/other_package/embed_pb2.py | 4 ++-- .../validate/conformance/cases/other_package/embed_pb2.pyi | 4 ++-- .../validate/conformance/cases/predefined_rules_proto2_pb.py | 4 ++-- .../validate/conformance/cases/predefined_rules_proto2_pb2.py | 4 ++-- .../conformance/cases/predefined_rules_proto2_pb2.pyi | 4 ++-- .../validate/conformance/cases/predefined_rules_proto3_pb.py | 4 ++-- .../validate/conformance/cases/predefined_rules_proto3_pb2.py | 4 ++-- .../conformance/cases/predefined_rules_proto3_pb2.pyi | 4 ++-- .../conformance/cases/predefined_rules_proto_editions_pb.py | 4 ++-- .../conformance/cases/predefined_rules_proto_editions_pb2.py | 4 ++-- .../conformance/cases/predefined_rules_proto_editions_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/repeated_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/repeated_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/repeated_pb2.pyi | 4 ++-- .../validate/conformance/cases/required_field_proto2_pb.py | 4 ++-- .../validate/conformance/cases/required_field_proto2_pb2.py | 4 ++-- .../validate/conformance/cases/required_field_proto2_pb2.pyi | 4 ++-- .../validate/conformance/cases/required_field_proto3_pb.py | 4 ++-- .../validate/conformance/cases/required_field_proto3_pb2.py | 4 ++-- .../validate/conformance/cases/required_field_proto3_pb2.pyi | 4 ++-- .../conformance/cases/required_field_proto_editions_pb.py | 4 ++-- .../conformance/cases/required_field_proto_editions_pb2.py | 4 ++-- .../conformance/cases/required_field_proto_editions_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/strings_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/strings_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/strings_pb2.pyi | 4 ++-- .../buf/validate/conformance/cases/subdirectory/__init__.py | 4 ++-- .../conformance/cases/subdirectory/in_subdirectory_pb.py | 4 ++-- .../conformance/cases/subdirectory/in_subdirectory_pb2.py | 4 ++-- .../conformance/cases/subdirectory/in_subdirectory_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_any_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_any_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_any_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_duration_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_duration_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_duration_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_field_mask_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.py | 4 ++-- .../gen/buf/validate/conformance/cases/wkt_field_mask_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_nested_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_nested_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_nested_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_timestamp_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_wrappers_pb.py | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.py | 4 ++-- test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.pyi | 4 ++-- .../conformance/cases/yet_another_package/__init__.py | 4 ++-- .../conformance/cases/yet_another_package/embed2_pb.py | 4 ++-- .../conformance/cases/yet_another_package/embed2_pb2.py | 4 ++-- .../conformance/cases/yet_another_package/embed2_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/harness/__init__.py | 4 ++-- test/gen/buf/validate/conformance/harness/harness_pb.py | 4 ++-- test/gen/buf/validate/conformance/harness/harness_pb2.py | 4 ++-- test/gen/buf/validate/conformance/harness/harness_pb2.pyi | 4 ++-- test/gen/buf/validate/conformance/harness/results_pb.py | 4 ++-- test/gen/buf/validate/conformance/harness/results_pb2.py | 4 ++-- test/gen/buf/validate/conformance/harness/results_pb2.pyi | 4 ++-- test/gen/buf/validate/validate_pb.py | 4 ++-- test/gen/buf/validate/validate_pb2.py | 4 ++-- test/gen/buf/validate/validate_pb2.pyi | 4 ++-- test/gen/cel/__init__.py | 4 ++-- test/gen/cel/expr/__init__.py | 4 ++-- test/gen/cel/expr/checked_pb.py | 4 ++-- test/gen/cel/expr/checked_pb2.py | 4 ++-- test/gen/cel/expr/checked_pb2.pyi | 4 ++-- test/gen/cel/expr/conformance/__init__.py | 4 ++-- test/gen/cel/expr/conformance/conformance_service_pb.py | 4 ++-- test/gen/cel/expr/conformance/conformance_service_pb2.py | 4 ++-- test/gen/cel/expr/conformance/conformance_service_pb2.pyi | 4 ++-- test/gen/cel/expr/conformance/env_config_pb.py | 4 ++-- test/gen/cel/expr/conformance/env_config_pb2.py | 4 ++-- test/gen/cel/expr/conformance/env_config_pb2.pyi | 4 ++-- test/gen/cel/expr/conformance/test/__init__.py | 4 ++-- test/gen/cel/expr/conformance/test/simple_pb.py | 4 ++-- test/gen/cel/expr/conformance/test/simple_pb2.py | 4 ++-- test/gen/cel/expr/conformance/test/simple_pb2.pyi | 4 ++-- test/gen/cel/expr/conformance/test/suite_pb.py | 4 ++-- test/gen/cel/expr/conformance/test/suite_pb2.py | 4 ++-- test/gen/cel/expr/conformance/test/suite_pb2.pyi | 4 ++-- test/gen/cel/expr/eval_pb.py | 4 ++-- test/gen/cel/expr/eval_pb2.py | 4 ++-- test/gen/cel/expr/eval_pb2.pyi | 4 ++-- test/gen/cel/expr/explain_pb.py | 4 ++-- test/gen/cel/expr/explain_pb2.py | 4 ++-- test/gen/cel/expr/explain_pb2.pyi | 4 ++-- test/gen/cel/expr/syntax_pb.py | 4 ++-- test/gen/cel/expr/syntax_pb2.py | 4 ++-- test/gen/cel/expr/syntax_pb2.pyi | 4 ++-- test/gen/cel/expr/value_pb.py | 4 ++-- test/gen/cel/expr/value_pb2.py | 4 ++-- test/gen/cel/expr/value_pb2.pyi | 4 ++-- test/gen/cel/policy/__init__.py | 4 ++-- test/gen/cel/policy/policy_pb.py | 4 ++-- test/gen/cel/policy/policy_pb2.py | 4 ++-- test/gen/cel/policy/policy_pb2.pyi | 4 ++-- test/gen/tests/__init__.py | 4 ++-- test/gen/tests/example/__init__.py | 4 ++-- test/gen/tests/example/v1/__init__.py | 4 ++-- test/gen/tests/example/v1/validations_pb.py | 4 ++-- test/gen/tests/example/v1/validations_pb2.py | 4 ++-- test/gen/tests/example/v1/validations_pb2.pyi | 4 ++-- test/proto/bench/v1/bench.proto | 4 ++-- test/proto/bench/v1/native.proto | 4 ++-- test/proto/buf/validate/conformance/cases/bool.proto | 4 ++-- test/proto/buf/validate/conformance/cases/bytes.proto | 4 ++-- .../conformance/cases/custom_rules/custom_rules.proto | 4 ++-- test/proto/buf/validate/conformance/cases/enums.proto | 4 ++-- .../buf/validate/conformance/cases/filename-with-dash.proto | 4 ++-- .../buf/validate/conformance/cases/groups_editions.proto | 4 ++-- test/proto/buf/validate/conformance/cases/groups_proto2.proto | 4 ++-- .../buf/validate/conformance/cases/ignore_empty_proto2.proto | 4 ++-- .../buf/validate/conformance/cases/ignore_empty_proto3.proto | 4 ++-- .../conformance/cases/ignore_empty_proto_editions.proto | 4 ++-- test/proto/buf/validate/conformance/cases/ignore_proto2.proto | 4 ++-- test/proto/buf/validate/conformance/cases/ignore_proto3.proto | 4 ++-- .../validate/conformance/cases/ignore_proto_editions.proto | 4 ++-- test/proto/buf/validate/conformance/cases/kitchen_sink.proto | 4 ++-- test/proto/buf/validate/conformance/cases/library.proto | 4 ++-- test/proto/buf/validate/conformance/cases/maps.proto | 4 ++-- test/proto/buf/validate/conformance/cases/messages.proto | 4 ++-- test/proto/buf/validate/conformance/cases/numbers.proto | 4 ++-- test/proto/buf/validate/conformance/cases/oneofs.proto | 4 ++-- .../buf/validate/conformance/cases/other_package/embed.proto | 4 ++-- .../validate/conformance/cases/predefined_rules_proto2.proto | 4 ++-- .../validate/conformance/cases/predefined_rules_proto3.proto | 4 ++-- .../conformance/cases/predefined_rules_proto_editions.proto | 4 ++-- test/proto/buf/validate/conformance/cases/repeated.proto | 4 ++-- .../validate/conformance/cases/required_field_proto2.proto | 4 ++-- .../validate/conformance/cases/required_field_proto3.proto | 4 ++-- .../conformance/cases/required_field_proto_editions.proto | 4 ++-- test/proto/buf/validate/conformance/cases/strings.proto | 4 ++-- .../conformance/cases/subdirectory/in_subdirectory.proto | 4 ++-- test/proto/buf/validate/conformance/cases/wkt_any.proto | 4 ++-- test/proto/buf/validate/conformance/cases/wkt_duration.proto | 4 ++-- .../proto/buf/validate/conformance/cases/wkt_field_mask.proto | 4 ++-- test/proto/buf/validate/conformance/cases/wkt_nested.proto | 4 ++-- test/proto/buf/validate/conformance/cases/wkt_timestamp.proto | 4 ++-- test/proto/buf/validate/conformance/cases/wkt_wrappers.proto | 4 ++-- .../conformance/cases/yet_another_package/embed2.proto | 4 ++-- test/proto/buf/validate/conformance/harness/harness.proto | 4 ++-- test/proto/buf/validate/conformance/harness/results.proto | 4 ++-- test/proto/buf/validate/validate.proto | 4 ++-- test/proto/tests/example/v1/validations.proto | 4 ++-- test/test_benchmark.py | 4 ++-- test/test_format.py | 4 ++-- test/test_matches.py | 4 ++-- test/test_validate.py | 4 ++-- test/versions.py | 4 ++-- 242 files changed, 484 insertions(+), 484 deletions(-) diff --git a/proto/buf/validate/validate.proto b/proto/buf/validate/validate.proto index 56117c8..01ea1bd 100644 --- a/proto/buf/validate/validate.proto +++ b/proto/buf/validate/validate.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/protovalidate/__init__.py b/protovalidate/__init__.py index 40f5575..16db945 100644 --- a/protovalidate/__init__.py +++ b/protovalidate/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/protovalidate/_gen/__init__.py b/protovalidate/_gen/__init__.py index ec2179d..cc9e301 100644 --- a/protovalidate/_gen/__init__.py +++ b/protovalidate/_gen/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/protovalidate/_gen/buf/__init__.py b/protovalidate/_gen/buf/__init__.py index ec2179d..cc9e301 100644 --- a/protovalidate/_gen/buf/__init__.py +++ b/protovalidate/_gen/buf/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/protovalidate/_gen/buf/validate/__init__.py b/protovalidate/_gen/buf/validate/__init__.py index ec2179d..cc9e301 100644 --- a/protovalidate/_gen/buf/validate/__init__.py +++ b/protovalidate/_gen/buf/validate/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/protovalidate/_gen/buf/validate/validate_pb.py b/protovalidate/_gen/buf/validate/validate_pb.py index 2da2ab9..f9515d5 100644 --- a/protovalidate/_gen/buf/validate/validate_pb.py +++ b/protovalidate/_gen/buf/validate/validate_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/protovalidate/internal/__init__.py b/protovalidate/internal/__init__.py index 2c33a80..124d74b 100644 --- a/protovalidate/internal/__init__.py +++ b/protovalidate/internal/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/protovalidate/internal/cel_field_presence.py b/protovalidate/internal/cel_field_presence.py index 7fae60a..7ee528a 100644 --- a/protovalidate/internal/cel_field_presence.py +++ b/protovalidate/internal/cel_field_presence.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/protovalidate/internal/extra_func.py b/protovalidate/internal/extra_func.py index a93f12b..52a2b4d 100644 --- a/protovalidate/internal/extra_func.py +++ b/protovalidate/internal/extra_func.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/protovalidate/internal/legacy.py b/protovalidate/internal/legacy.py index e3440c4..e566f03 100644 --- a/protovalidate/internal/legacy.py +++ b/protovalidate/internal/legacy.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/protovalidate/internal/rules.py b/protovalidate/internal/rules.py index ebf0ec3..4da967f 100644 --- a/protovalidate/internal/rules.py +++ b/protovalidate/internal/rules.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/protovalidate/internal/string_format.py b/protovalidate/internal/string_format.py index db5350c..b003085 100644 --- a/protovalidate/internal/string_format.py +++ b/protovalidate/internal/string_format.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/protovalidate/validator.py b/protovalidate/validator.py index ac88c1f..625161f 100644 --- a/protovalidate/validator.py +++ b/protovalidate/validator.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/scripts/generate_cel.py b/scripts/generate_cel.py index 7af137b..4a419a5 100644 --- a/scripts/generate_cel.py +++ b/scripts/generate_cel.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/scripts/generate_protovalidate.py b/scripts/generate_protovalidate.py index 8004061..4bd52b3 100644 --- a/scripts/generate_protovalidate.py +++ b/scripts/generate_protovalidate.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/__init__.py b/test/__init__.py index 2c33a80..124d74b 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/conformance/__init__.py b/test/conformance/__init__.py index 2c33a80..124d74b 100644 --- a/test/conformance/__init__.py +++ b/test/conformance/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/conformance/runner.py b/test/conformance/runner.py index 8c47a7a..c6ee7b5 100644 --- a/test/conformance/runner.py +++ b/test/conformance/runner.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/conformance/test_conformance.py b/test/conformance/test_conformance.py index 59fe5e0..3c9d78d 100644 --- a/test/conformance/test_conformance.py +++ b/test/conformance/test_conformance.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/__init__.py b/test/gen/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/__init__.py +++ b/test/gen/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/bench/__init__.py b/test/gen/bench/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/bench/__init__.py +++ b/test/gen/bench/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/bench/v1/__init__.py b/test/gen/bench/v1/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/bench/v1/__init__.py +++ b/test/gen/bench/v1/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/bench/v1/bench_pb.py b/test/gen/bench/v1/bench_pb.py index cb208fd..ea3a00f 100644 --- a/test/gen/bench/v1/bench_pb.py +++ b/test/gen/bench/v1/bench_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/bench/v1/bench_pb2.py b/test/gen/bench/v1/bench_pb2.py index b8af4d3..4da4cdb 100644 --- a/test/gen/bench/v1/bench_pb2.py +++ b/test/gen/bench/v1/bench_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/bench/v1/bench_pb2.pyi b/test/gen/bench/v1/bench_pb2.pyi index 59669ec..0686f2b 100644 --- a/test/gen/bench/v1/bench_pb2.pyi +++ b/test/gen/bench/v1/bench_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/bench/v1/native_pb.py b/test/gen/bench/v1/native_pb.py index 3cefee3..f5bb85e 100644 --- a/test/gen/bench/v1/native_pb.py +++ b/test/gen/bench/v1/native_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/bench/v1/native_pb2.py b/test/gen/bench/v1/native_pb2.py index cc3dcd0..ef66f62 100644 --- a/test/gen/bench/v1/native_pb2.py +++ b/test/gen/bench/v1/native_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/bench/v1/native_pb2.pyi b/test/gen/bench/v1/native_pb2.pyi index ddffa19..2a632eb 100644 --- a/test/gen/bench/v1/native_pb2.pyi +++ b/test/gen/bench/v1/native_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/__init__.py b/test/gen/buf/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/buf/__init__.py +++ b/test/gen/buf/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/__init__.py b/test/gen/buf/validate/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/buf/validate/__init__.py +++ b/test/gen/buf/validate/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/__init__.py b/test/gen/buf/validate/conformance/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/buf/validate/conformance/__init__.py +++ b/test/gen/buf/validate/conformance/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/__init__.py b/test/gen/buf/validate/conformance/cases/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/buf/validate/conformance/cases/__init__.py +++ b/test/gen/buf/validate/conformance/cases/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/bool_pb.py b/test/gen/buf/validate/conformance/cases/bool_pb.py index 5aadcb6..40f236f 100644 --- a/test/gen/buf/validate/conformance/cases/bool_pb.py +++ b/test/gen/buf/validate/conformance/cases/bool_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/bool_pb2.py b/test/gen/buf/validate/conformance/cases/bool_pb2.py index 7624fb0..a765541 100644 --- a/test/gen/buf/validate/conformance/cases/bool_pb2.py +++ b/test/gen/buf/validate/conformance/cases/bool_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/bool_pb2.pyi b/test/gen/buf/validate/conformance/cases/bool_pb2.pyi index 8d72193..3f87b48 100644 --- a/test/gen/buf/validate/conformance/cases/bool_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/bool_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/bytes_pb.py b/test/gen/buf/validate/conformance/cases/bytes_pb.py index 71616e3..ab38b5f 100644 --- a/test/gen/buf/validate/conformance/cases/bytes_pb.py +++ b/test/gen/buf/validate/conformance/cases/bytes_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/bytes_pb2.py b/test/gen/buf/validate/conformance/cases/bytes_pb2.py index 73ad804..2ae9b79 100644 --- a/test/gen/buf/validate/conformance/cases/bytes_pb2.py +++ b/test/gen/buf/validate/conformance/cases/bytes_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/bytes_pb2.pyi b/test/gen/buf/validate/conformance/cases/bytes_pb2.pyi index 7a59b43..0e46452 100644 --- a/test/gen/buf/validate/conformance/cases/bytes_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/bytes_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/custom_rules/__init__.py b/test/gen/buf/validate/conformance/cases/custom_rules/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/buf/validate/conformance/cases/custom_rules/__init__.py +++ b/test/gen/buf/validate/conformance/cases/custom_rules/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb.py b/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb.py index e6a5395..b23f4d0 100644 --- a/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb.py +++ b/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.py b/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.py index 3f35d80..b60314d 100644 --- a/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.py +++ b/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.pyi b/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.pyi index d637729..c9d216e 100644 --- a/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/enums_pb.py b/test/gen/buf/validate/conformance/cases/enums_pb.py index fb7ac50..a945f26 100644 --- a/test/gen/buf/validate/conformance/cases/enums_pb.py +++ b/test/gen/buf/validate/conformance/cases/enums_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/enums_pb2.py b/test/gen/buf/validate/conformance/cases/enums_pb2.py index 5cebf3e..c978f09 100644 --- a/test/gen/buf/validate/conformance/cases/enums_pb2.py +++ b/test/gen/buf/validate/conformance/cases/enums_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/enums_pb2.pyi b/test/gen/buf/validate/conformance/cases/enums_pb2.pyi index ccd76a0..925e45c 100644 --- a/test/gen/buf/validate/conformance/cases/enums_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/enums_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/filename_with_dash_pb.py b/test/gen/buf/validate/conformance/cases/filename_with_dash_pb.py index a6bd06a..0ab2b72 100644 --- a/test/gen/buf/validate/conformance/cases/filename_with_dash_pb.py +++ b/test/gen/buf/validate/conformance/cases/filename_with_dash_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.py b/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.py index f51169d..7e4ffc2 100644 --- a/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.py +++ b/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.pyi b/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.pyi index 4b224f8..c8945e1 100644 --- a/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/groups_editions_pb.py b/test/gen/buf/validate/conformance/cases/groups_editions_pb.py index 90c2fdc..3134d5e 100644 --- a/test/gen/buf/validate/conformance/cases/groups_editions_pb.py +++ b/test/gen/buf/validate/conformance/cases/groups_editions_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/groups_editions_pb2.py b/test/gen/buf/validate/conformance/cases/groups_editions_pb2.py index e479d1d..5f7f4fa 100644 --- a/test/gen/buf/validate/conformance/cases/groups_editions_pb2.py +++ b/test/gen/buf/validate/conformance/cases/groups_editions_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/groups_editions_pb2.pyi b/test/gen/buf/validate/conformance/cases/groups_editions_pb2.pyi index 92cc163..223919b 100644 --- a/test/gen/buf/validate/conformance/cases/groups_editions_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/groups_editions_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/groups_proto2_pb.py b/test/gen/buf/validate/conformance/cases/groups_proto2_pb.py index 55cbbdc..d37484e 100644 --- a/test/gen/buf/validate/conformance/cases/groups_proto2_pb.py +++ b/test/gen/buf/validate/conformance/cases/groups_proto2_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.py b/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.py index 50ee6a7..7de682a 100644 --- a/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.py +++ b/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.pyi b/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.pyi index e464a0b..2752833 100644 --- a/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb.py b/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb.py index 278203d..d1d64c0 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb.py +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.py b/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.py index eb7347d..5b9159c 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.py +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.pyi b/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.pyi index 3a8f379..115c41d 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb.py b/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb.py index ce46cb9..5787173 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb.py +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.py b/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.py index 626ac13..399589a 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.py +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.pyi b/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.pyi index 5d2f98e..047aed7 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb.py b/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb.py index cdfc7c8..aa81d1d 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb.py +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.py b/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.py index 13c6759..66783a2 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.py +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.pyi b/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.pyi index 671c608..f2d528b 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto2_pb.py b/test/gen/buf/validate/conformance/cases/ignore_proto2_pb.py index f15cc76..4232bb5 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto2_pb.py +++ b/test/gen/buf/validate/conformance/cases/ignore_proto2_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.py b/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.py index 9f7f36e..4347306 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.py +++ b/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.pyi b/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.pyi index 0c93970..9e384a2 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto3_pb.py b/test/gen/buf/validate/conformance/cases/ignore_proto3_pb.py index 2b36d8d..ed7e076 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto3_pb.py +++ b/test/gen/buf/validate/conformance/cases/ignore_proto3_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.py b/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.py index a04d0f8..4c2e329 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.py +++ b/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.pyi b/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.pyi index 1993b63..dd5ccf1 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb.py b/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb.py index 9dd22ea..f708140 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb.py +++ b/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.py b/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.py index 4994315..858c4cf 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.py +++ b/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.pyi b/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.pyi index b9da45a..22eb499 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/kitchen_sink_pb.py b/test/gen/buf/validate/conformance/cases/kitchen_sink_pb.py index e012038..9014bd4 100644 --- a/test/gen/buf/validate/conformance/cases/kitchen_sink_pb.py +++ b/test/gen/buf/validate/conformance/cases/kitchen_sink_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.py b/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.py index 42c5787..6257f50 100644 --- a/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.py +++ b/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.pyi b/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.pyi index 5fbae7f..584f618 100644 --- a/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/library_pb.py b/test/gen/buf/validate/conformance/cases/library_pb.py index 29c18ff..62f2a9f 100644 --- a/test/gen/buf/validate/conformance/cases/library_pb.py +++ b/test/gen/buf/validate/conformance/cases/library_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/library_pb2.py b/test/gen/buf/validate/conformance/cases/library_pb2.py index 86fa830..52ec4f4 100644 --- a/test/gen/buf/validate/conformance/cases/library_pb2.py +++ b/test/gen/buf/validate/conformance/cases/library_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/library_pb2.pyi b/test/gen/buf/validate/conformance/cases/library_pb2.pyi index 4660bc3..d54c05c 100644 --- a/test/gen/buf/validate/conformance/cases/library_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/library_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/maps_pb.py b/test/gen/buf/validate/conformance/cases/maps_pb.py index f1c9fe6..4f5aadb 100644 --- a/test/gen/buf/validate/conformance/cases/maps_pb.py +++ b/test/gen/buf/validate/conformance/cases/maps_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/maps_pb2.py b/test/gen/buf/validate/conformance/cases/maps_pb2.py index 4752971..86ee8f2 100644 --- a/test/gen/buf/validate/conformance/cases/maps_pb2.py +++ b/test/gen/buf/validate/conformance/cases/maps_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/maps_pb2.pyi b/test/gen/buf/validate/conformance/cases/maps_pb2.pyi index aa68a9d..5ddca5a 100644 --- a/test/gen/buf/validate/conformance/cases/maps_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/maps_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/messages_pb.py b/test/gen/buf/validate/conformance/cases/messages_pb.py index 287b175..946cb41 100644 --- a/test/gen/buf/validate/conformance/cases/messages_pb.py +++ b/test/gen/buf/validate/conformance/cases/messages_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/messages_pb2.py b/test/gen/buf/validate/conformance/cases/messages_pb2.py index 9076011..9e21adb 100644 --- a/test/gen/buf/validate/conformance/cases/messages_pb2.py +++ b/test/gen/buf/validate/conformance/cases/messages_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/messages_pb2.pyi b/test/gen/buf/validate/conformance/cases/messages_pb2.pyi index 595fef9..d2dba95 100644 --- a/test/gen/buf/validate/conformance/cases/messages_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/messages_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/numbers_pb.py b/test/gen/buf/validate/conformance/cases/numbers_pb.py index 42b759f..b470764 100644 --- a/test/gen/buf/validate/conformance/cases/numbers_pb.py +++ b/test/gen/buf/validate/conformance/cases/numbers_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/numbers_pb2.py b/test/gen/buf/validate/conformance/cases/numbers_pb2.py index 8f85a78..242f4b0 100644 --- a/test/gen/buf/validate/conformance/cases/numbers_pb2.py +++ b/test/gen/buf/validate/conformance/cases/numbers_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/numbers_pb2.pyi b/test/gen/buf/validate/conformance/cases/numbers_pb2.pyi index a773afc..fbb8152 100644 --- a/test/gen/buf/validate/conformance/cases/numbers_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/numbers_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/oneofs_pb.py b/test/gen/buf/validate/conformance/cases/oneofs_pb.py index 106d7b0..238c2cd 100644 --- a/test/gen/buf/validate/conformance/cases/oneofs_pb.py +++ b/test/gen/buf/validate/conformance/cases/oneofs_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/oneofs_pb2.py b/test/gen/buf/validate/conformance/cases/oneofs_pb2.py index 5dce068..a02949e 100644 --- a/test/gen/buf/validate/conformance/cases/oneofs_pb2.py +++ b/test/gen/buf/validate/conformance/cases/oneofs_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/oneofs_pb2.pyi b/test/gen/buf/validate/conformance/cases/oneofs_pb2.pyi index 9001bd6..0cbf30f 100644 --- a/test/gen/buf/validate/conformance/cases/oneofs_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/oneofs_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/other_package/__init__.py b/test/gen/buf/validate/conformance/cases/other_package/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/buf/validate/conformance/cases/other_package/__init__.py +++ b/test/gen/buf/validate/conformance/cases/other_package/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/other_package/embed_pb.py b/test/gen/buf/validate/conformance/cases/other_package/embed_pb.py index fc12cc4..4742f3a 100644 --- a/test/gen/buf/validate/conformance/cases/other_package/embed_pb.py +++ b/test/gen/buf/validate/conformance/cases/other_package/embed_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.py b/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.py index 38bb43d..ae52d79 100644 --- a/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.py +++ b/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.pyi b/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.pyi index 7bed319..e793971 100644 --- a/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb.py b/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb.py index 1ab16f9..fe834a4 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb.py +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.py b/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.py index bf8ded8..f00f0d2 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.py +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.pyi b/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.pyi index da92744..b679010 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb.py b/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb.py index 4786333..864c701 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb.py +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.py b/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.py index 222c37e..97d2274 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.py +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.pyi b/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.pyi index 6bf980e..0e04b13 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb.py b/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb.py index 24c125f..06549a7 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb.py +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.py b/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.py index 4b990c7..f873510 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.py +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.pyi b/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.pyi index 2a5dc7b..182585b 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/repeated_pb.py b/test/gen/buf/validate/conformance/cases/repeated_pb.py index b900e34..bc4d136 100644 --- a/test/gen/buf/validate/conformance/cases/repeated_pb.py +++ b/test/gen/buf/validate/conformance/cases/repeated_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/repeated_pb2.py b/test/gen/buf/validate/conformance/cases/repeated_pb2.py index 74ea647..f6ccab1 100644 --- a/test/gen/buf/validate/conformance/cases/repeated_pb2.py +++ b/test/gen/buf/validate/conformance/cases/repeated_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/repeated_pb2.pyi b/test/gen/buf/validate/conformance/cases/repeated_pb2.pyi index f3c5272..674e687 100644 --- a/test/gen/buf/validate/conformance/cases/repeated_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/repeated_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto2_pb.py b/test/gen/buf/validate/conformance/cases/required_field_proto2_pb.py index c276972..2704c4c 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto2_pb.py +++ b/test/gen/buf/validate/conformance/cases/required_field_proto2_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.py b/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.py index 4775c2d..48cd36b 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.py +++ b/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.pyi b/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.pyi index b2016d4..04f783f 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto3_pb.py b/test/gen/buf/validate/conformance/cases/required_field_proto3_pb.py index c883e3f..97a0ebb 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto3_pb.py +++ b/test/gen/buf/validate/conformance/cases/required_field_proto3_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.py b/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.py index 67961e1..0cf76c3 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.py +++ b/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.pyi b/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.pyi index 5b5963e..5c19b02 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb.py b/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb.py index 05cecb0..989bc54 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb.py +++ b/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.py b/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.py index f367f9d..daa288c 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.py +++ b/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.pyi b/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.pyi index 2b6d974..f59892f 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/strings_pb.py b/test/gen/buf/validate/conformance/cases/strings_pb.py index 9130096..49c7e72 100644 --- a/test/gen/buf/validate/conformance/cases/strings_pb.py +++ b/test/gen/buf/validate/conformance/cases/strings_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/strings_pb2.py b/test/gen/buf/validate/conformance/cases/strings_pb2.py index 46eafa6..a5cdd6c 100644 --- a/test/gen/buf/validate/conformance/cases/strings_pb2.py +++ b/test/gen/buf/validate/conformance/cases/strings_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/strings_pb2.pyi b/test/gen/buf/validate/conformance/cases/strings_pb2.pyi index 4d9bc87..a200177 100644 --- a/test/gen/buf/validate/conformance/cases/strings_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/strings_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/subdirectory/__init__.py b/test/gen/buf/validate/conformance/cases/subdirectory/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/buf/validate/conformance/cases/subdirectory/__init__.py +++ b/test/gen/buf/validate/conformance/cases/subdirectory/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb.py b/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb.py index 66ae777..6571775 100644 --- a/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb.py +++ b/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.py b/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.py index faa9c83..b405190 100644 --- a/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.py +++ b/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.pyi b/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.pyi index 332169f..a6c18fa 100644 --- a/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_any_pb.py b/test/gen/buf/validate/conformance/cases/wkt_any_pb.py index 59fd13b..ce9c943 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_any_pb.py +++ b/test/gen/buf/validate/conformance/cases/wkt_any_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_any_pb2.py b/test/gen/buf/validate/conformance/cases/wkt_any_pb2.py index c875a7f..8efc583 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_any_pb2.py +++ b/test/gen/buf/validate/conformance/cases/wkt_any_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_any_pb2.pyi b/test/gen/buf/validate/conformance/cases/wkt_any_pb2.pyi index 316b77f..b8b8ded 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_any_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/wkt_any_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_duration_pb.py b/test/gen/buf/validate/conformance/cases/wkt_duration_pb.py index 25af9f2..e4eb1e8 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_duration_pb.py +++ b/test/gen/buf/validate/conformance/cases/wkt_duration_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.py b/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.py index e95146f..5535220 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.py +++ b/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.pyi b/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.pyi index f83c19b..1b83632 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb.py b/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb.py index 27b5823..10d1c92 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb.py +++ b/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.py b/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.py index d09eff7..7c7cfa8 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.py +++ b/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.pyi b/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.pyi index 27f98c9..f230414 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_nested_pb.py b/test/gen/buf/validate/conformance/cases/wkt_nested_pb.py index 6426c33..408bf2b 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_nested_pb.py +++ b/test/gen/buf/validate/conformance/cases/wkt_nested_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.py b/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.py index 8f7ae7a..5dd13bf 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.py +++ b/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.pyi b/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.pyi index 3e3e1fc..76e883a 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb.py b/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb.py index 172ee21..4e96db0 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb.py +++ b/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.py b/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.py index 32e56ad..479a7e7 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.py +++ b/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.pyi b/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.pyi index d3ceb61..80e0264 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb.py b/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb.py index d4f9222..2e05c96 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb.py +++ b/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.py b/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.py index 434d52a..8b83323 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.py +++ b/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.pyi b/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.pyi index 08dd885..54f8d86 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/yet_another_package/__init__.py b/test/gen/buf/validate/conformance/cases/yet_another_package/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/buf/validate/conformance/cases/yet_another_package/__init__.py +++ b/test/gen/buf/validate/conformance/cases/yet_another_package/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb.py b/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb.py index b69d5c8..20099f4 100644 --- a/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb.py +++ b/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.py b/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.py index 04b3e9c..2301bfa 100644 --- a/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.py +++ b/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.pyi b/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.pyi index 510adb7..7bdd33b 100644 --- a/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/harness/__init__.py b/test/gen/buf/validate/conformance/harness/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/buf/validate/conformance/harness/__init__.py +++ b/test/gen/buf/validate/conformance/harness/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/harness/harness_pb.py b/test/gen/buf/validate/conformance/harness/harness_pb.py index 3972e03..e77f655 100644 --- a/test/gen/buf/validate/conformance/harness/harness_pb.py +++ b/test/gen/buf/validate/conformance/harness/harness_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/harness/harness_pb2.py b/test/gen/buf/validate/conformance/harness/harness_pb2.py index 88c3ad7..c0f315b 100644 --- a/test/gen/buf/validate/conformance/harness/harness_pb2.py +++ b/test/gen/buf/validate/conformance/harness/harness_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/harness/harness_pb2.pyi b/test/gen/buf/validate/conformance/harness/harness_pb2.pyi index 54ae557..1f1a9e6 100644 --- a/test/gen/buf/validate/conformance/harness/harness_pb2.pyi +++ b/test/gen/buf/validate/conformance/harness/harness_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/harness/results_pb.py b/test/gen/buf/validate/conformance/harness/results_pb.py index 523c604..dd9959f 100644 --- a/test/gen/buf/validate/conformance/harness/results_pb.py +++ b/test/gen/buf/validate/conformance/harness/results_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/harness/results_pb2.py b/test/gen/buf/validate/conformance/harness/results_pb2.py index 21639ed..a4ec95f 100644 --- a/test/gen/buf/validate/conformance/harness/results_pb2.py +++ b/test/gen/buf/validate/conformance/harness/results_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/conformance/harness/results_pb2.pyi b/test/gen/buf/validate/conformance/harness/results_pb2.pyi index bdd236a..81b05f3 100644 --- a/test/gen/buf/validate/conformance/harness/results_pb2.pyi +++ b/test/gen/buf/validate/conformance/harness/results_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/validate_pb.py b/test/gen/buf/validate/validate_pb.py index 2da2ab9..f9515d5 100644 --- a/test/gen/buf/validate/validate_pb.py +++ b/test/gen/buf/validate/validate_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/validate_pb2.py b/test/gen/buf/validate/validate_pb2.py index 47eb22f..b597186 100644 --- a/test/gen/buf/validate/validate_pb2.py +++ b/test/gen/buf/validate/validate_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/buf/validate/validate_pb2.pyi b/test/gen/buf/validate/validate_pb2.pyi index 4c6254e..c081b10 100644 --- a/test/gen/buf/validate/validate_pb2.pyi +++ b/test/gen/buf/validate/validate_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/__init__.py b/test/gen/cel/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/cel/__init__.py +++ b/test/gen/cel/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/__init__.py b/test/gen/cel/expr/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/cel/expr/__init__.py +++ b/test/gen/cel/expr/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/checked_pb.py b/test/gen/cel/expr/checked_pb.py index d8c473b..c7f299a 100644 --- a/test/gen/cel/expr/checked_pb.py +++ b/test/gen/cel/expr/checked_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/checked_pb2.py b/test/gen/cel/expr/checked_pb2.py index cedbcc3..b0a0119 100644 --- a/test/gen/cel/expr/checked_pb2.py +++ b/test/gen/cel/expr/checked_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/checked_pb2.pyi b/test/gen/cel/expr/checked_pb2.pyi index cafce07..28ef305 100644 --- a/test/gen/cel/expr/checked_pb2.pyi +++ b/test/gen/cel/expr/checked_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/__init__.py b/test/gen/cel/expr/conformance/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/cel/expr/conformance/__init__.py +++ b/test/gen/cel/expr/conformance/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/conformance_service_pb.py b/test/gen/cel/expr/conformance/conformance_service_pb.py index ca98cbe..f0fd61c 100644 --- a/test/gen/cel/expr/conformance/conformance_service_pb.py +++ b/test/gen/cel/expr/conformance/conformance_service_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/conformance_service_pb2.py b/test/gen/cel/expr/conformance/conformance_service_pb2.py index 2e7f024..a695535 100644 --- a/test/gen/cel/expr/conformance/conformance_service_pb2.py +++ b/test/gen/cel/expr/conformance/conformance_service_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/conformance_service_pb2.pyi b/test/gen/cel/expr/conformance/conformance_service_pb2.pyi index 6e5f5aa..1e48272 100644 --- a/test/gen/cel/expr/conformance/conformance_service_pb2.pyi +++ b/test/gen/cel/expr/conformance/conformance_service_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/env_config_pb.py b/test/gen/cel/expr/conformance/env_config_pb.py index 3a862b2..62b1513 100644 --- a/test/gen/cel/expr/conformance/env_config_pb.py +++ b/test/gen/cel/expr/conformance/env_config_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/env_config_pb2.py b/test/gen/cel/expr/conformance/env_config_pb2.py index 4ebdc7e..7d57d6d 100644 --- a/test/gen/cel/expr/conformance/env_config_pb2.py +++ b/test/gen/cel/expr/conformance/env_config_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/env_config_pb2.pyi b/test/gen/cel/expr/conformance/env_config_pb2.pyi index d7f1da2..46fdc03 100644 --- a/test/gen/cel/expr/conformance/env_config_pb2.pyi +++ b/test/gen/cel/expr/conformance/env_config_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/test/__init__.py b/test/gen/cel/expr/conformance/test/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/cel/expr/conformance/test/__init__.py +++ b/test/gen/cel/expr/conformance/test/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/test/simple_pb.py b/test/gen/cel/expr/conformance/test/simple_pb.py index 68ca5e6..22b94a5 100644 --- a/test/gen/cel/expr/conformance/test/simple_pb.py +++ b/test/gen/cel/expr/conformance/test/simple_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/test/simple_pb2.py b/test/gen/cel/expr/conformance/test/simple_pb2.py index 5891e56..c9c48a4 100644 --- a/test/gen/cel/expr/conformance/test/simple_pb2.py +++ b/test/gen/cel/expr/conformance/test/simple_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/test/simple_pb2.pyi b/test/gen/cel/expr/conformance/test/simple_pb2.pyi index b0d4699..47ab68c 100644 --- a/test/gen/cel/expr/conformance/test/simple_pb2.pyi +++ b/test/gen/cel/expr/conformance/test/simple_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/test/suite_pb.py b/test/gen/cel/expr/conformance/test/suite_pb.py index c3256e1..0f5c0c4 100644 --- a/test/gen/cel/expr/conformance/test/suite_pb.py +++ b/test/gen/cel/expr/conformance/test/suite_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/test/suite_pb2.py b/test/gen/cel/expr/conformance/test/suite_pb2.py index 7731e54..d8cab73 100644 --- a/test/gen/cel/expr/conformance/test/suite_pb2.py +++ b/test/gen/cel/expr/conformance/test/suite_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/conformance/test/suite_pb2.pyi b/test/gen/cel/expr/conformance/test/suite_pb2.pyi index 3b61804..baec1cd 100644 --- a/test/gen/cel/expr/conformance/test/suite_pb2.pyi +++ b/test/gen/cel/expr/conformance/test/suite_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/eval_pb.py b/test/gen/cel/expr/eval_pb.py index a88a92a..c7446b3 100644 --- a/test/gen/cel/expr/eval_pb.py +++ b/test/gen/cel/expr/eval_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/eval_pb2.py b/test/gen/cel/expr/eval_pb2.py index adba9f1..f5c5461 100644 --- a/test/gen/cel/expr/eval_pb2.py +++ b/test/gen/cel/expr/eval_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/eval_pb2.pyi b/test/gen/cel/expr/eval_pb2.pyi index 5ec53fb..f951a1d 100644 --- a/test/gen/cel/expr/eval_pb2.pyi +++ b/test/gen/cel/expr/eval_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/explain_pb.py b/test/gen/cel/expr/explain_pb.py index 9e8e83e..bef3d46 100644 --- a/test/gen/cel/expr/explain_pb.py +++ b/test/gen/cel/expr/explain_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/explain_pb2.py b/test/gen/cel/expr/explain_pb2.py index 5b9dac0..c33954e 100644 --- a/test/gen/cel/expr/explain_pb2.py +++ b/test/gen/cel/expr/explain_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/explain_pb2.pyi b/test/gen/cel/expr/explain_pb2.pyi index 51bd906..ca4664c 100644 --- a/test/gen/cel/expr/explain_pb2.pyi +++ b/test/gen/cel/expr/explain_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/syntax_pb.py b/test/gen/cel/expr/syntax_pb.py index 49c8896..f4e9b01 100644 --- a/test/gen/cel/expr/syntax_pb.py +++ b/test/gen/cel/expr/syntax_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/syntax_pb2.py b/test/gen/cel/expr/syntax_pb2.py index c694b52..76ecff3 100644 --- a/test/gen/cel/expr/syntax_pb2.py +++ b/test/gen/cel/expr/syntax_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/syntax_pb2.pyi b/test/gen/cel/expr/syntax_pb2.pyi index d23dc4f..5044071 100644 --- a/test/gen/cel/expr/syntax_pb2.pyi +++ b/test/gen/cel/expr/syntax_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/value_pb.py b/test/gen/cel/expr/value_pb.py index 6d07345..90155fd 100644 --- a/test/gen/cel/expr/value_pb.py +++ b/test/gen/cel/expr/value_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/value_pb2.py b/test/gen/cel/expr/value_pb2.py index 947064c..a3ec866 100644 --- a/test/gen/cel/expr/value_pb2.py +++ b/test/gen/cel/expr/value_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/expr/value_pb2.pyi b/test/gen/cel/expr/value_pb2.pyi index c556d3d..e759481 100644 --- a/test/gen/cel/expr/value_pb2.pyi +++ b/test/gen/cel/expr/value_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/policy/__init__.py b/test/gen/cel/policy/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/cel/policy/__init__.py +++ b/test/gen/cel/policy/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/policy/policy_pb.py b/test/gen/cel/policy/policy_pb.py index c988500..65c7bf1 100644 --- a/test/gen/cel/policy/policy_pb.py +++ b/test/gen/cel/policy/policy_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/policy/policy_pb2.py b/test/gen/cel/policy/policy_pb2.py index a3f4f14..b05109e 100644 --- a/test/gen/cel/policy/policy_pb2.py +++ b/test/gen/cel/policy/policy_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/cel/policy/policy_pb2.pyi b/test/gen/cel/policy/policy_pb2.pyi index d7e5ede..91c7ad8 100644 --- a/test/gen/cel/policy/policy_pb2.pyi +++ b/test/gen/cel/policy/policy_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/tests/__init__.py b/test/gen/tests/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/tests/__init__.py +++ b/test/gen/tests/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/tests/example/__init__.py b/test/gen/tests/example/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/tests/example/__init__.py +++ b/test/gen/tests/example/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/tests/example/v1/__init__.py b/test/gen/tests/example/v1/__init__.py index ec2179d..cc9e301 100644 --- a/test/gen/tests/example/v1/__init__.py +++ b/test/gen/tests/example/v1/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/tests/example/v1/validations_pb.py b/test/gen/tests/example/v1/validations_pb.py index 8fadcfe..d47874d 100644 --- a/test/gen/tests/example/v1/validations_pb.py +++ b/test/gen/tests/example/v1/validations_pb.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/tests/example/v1/validations_pb2.py b/test/gen/tests/example/v1/validations_pb2.py index e2f56fc..3629fed 100644 --- a/test/gen/tests/example/v1/validations_pb2.py +++ b/test/gen/tests/example/v1/validations_pb2.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/gen/tests/example/v1/validations_pb2.pyi b/test/gen/tests/example/v1/validations_pb2.pyi index bdd8041..d455df7 100644 --- a/test/gen/tests/example/v1/validations_pb2.pyi +++ b/test/gen/tests/example/v1/validations_pb2.pyi @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/bench/v1/bench.proto b/test/proto/bench/v1/bench.proto index bc5f7c4..5bda36c 100644 --- a/test/proto/bench/v1/bench.proto +++ b/test/proto/bench/v1/bench.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/bench/v1/native.proto b/test/proto/bench/v1/native.proto index 8ba611b..134abac 100644 --- a/test/proto/bench/v1/native.proto +++ b/test/proto/bench/v1/native.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/bool.proto b/test/proto/buf/validate/conformance/cases/bool.proto index 26ce95a..e5b2303 100644 --- a/test/proto/buf/validate/conformance/cases/bool.proto +++ b/test/proto/buf/validate/conformance/cases/bool.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/bytes.proto b/test/proto/buf/validate/conformance/cases/bytes.proto index 70da7c7..c5e588f 100644 --- a/test/proto/buf/validate/conformance/cases/bytes.proto +++ b/test/proto/buf/validate/conformance/cases/bytes.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/custom_rules/custom_rules.proto b/test/proto/buf/validate/conformance/cases/custom_rules/custom_rules.proto index d7dc988..12ca667 100644 --- a/test/proto/buf/validate/conformance/cases/custom_rules/custom_rules.proto +++ b/test/proto/buf/validate/conformance/cases/custom_rules/custom_rules.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/enums.proto b/test/proto/buf/validate/conformance/cases/enums.proto index a727529..62e1025 100644 --- a/test/proto/buf/validate/conformance/cases/enums.proto +++ b/test/proto/buf/validate/conformance/cases/enums.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/filename-with-dash.proto b/test/proto/buf/validate/conformance/cases/filename-with-dash.proto index e5b46d7..1d8be0f 100644 --- a/test/proto/buf/validate/conformance/cases/filename-with-dash.proto +++ b/test/proto/buf/validate/conformance/cases/filename-with-dash.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/groups_editions.proto b/test/proto/buf/validate/conformance/cases/groups_editions.proto index dc61c29..3ce3b46 100644 --- a/test/proto/buf/validate/conformance/cases/groups_editions.proto +++ b/test/proto/buf/validate/conformance/cases/groups_editions.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/groups_proto2.proto b/test/proto/buf/validate/conformance/cases/groups_proto2.proto index b963594..3ba95b5 100644 --- a/test/proto/buf/validate/conformance/cases/groups_proto2.proto +++ b/test/proto/buf/validate/conformance/cases/groups_proto2.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/ignore_empty_proto2.proto b/test/proto/buf/validate/conformance/cases/ignore_empty_proto2.proto index 2c72a2c..7819afb 100644 --- a/test/proto/buf/validate/conformance/cases/ignore_empty_proto2.proto +++ b/test/proto/buf/validate/conformance/cases/ignore_empty_proto2.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/ignore_empty_proto3.proto b/test/proto/buf/validate/conformance/cases/ignore_empty_proto3.proto index 4d749ec..424ac06 100644 --- a/test/proto/buf/validate/conformance/cases/ignore_empty_proto3.proto +++ b/test/proto/buf/validate/conformance/cases/ignore_empty_proto3.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/ignore_empty_proto_editions.proto b/test/proto/buf/validate/conformance/cases/ignore_empty_proto_editions.proto index fed9174..b502e39 100644 --- a/test/proto/buf/validate/conformance/cases/ignore_empty_proto_editions.proto +++ b/test/proto/buf/validate/conformance/cases/ignore_empty_proto_editions.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/ignore_proto2.proto b/test/proto/buf/validate/conformance/cases/ignore_proto2.proto index fc14dab..fbfd335 100644 --- a/test/proto/buf/validate/conformance/cases/ignore_proto2.proto +++ b/test/proto/buf/validate/conformance/cases/ignore_proto2.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/ignore_proto3.proto b/test/proto/buf/validate/conformance/cases/ignore_proto3.proto index 97fc2c3..59d15c1 100644 --- a/test/proto/buf/validate/conformance/cases/ignore_proto3.proto +++ b/test/proto/buf/validate/conformance/cases/ignore_proto3.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/ignore_proto_editions.proto b/test/proto/buf/validate/conformance/cases/ignore_proto_editions.proto index 2c5355c..6dd45a3 100644 --- a/test/proto/buf/validate/conformance/cases/ignore_proto_editions.proto +++ b/test/proto/buf/validate/conformance/cases/ignore_proto_editions.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/kitchen_sink.proto b/test/proto/buf/validate/conformance/cases/kitchen_sink.proto index aed3368..174b60b 100644 --- a/test/proto/buf/validate/conformance/cases/kitchen_sink.proto +++ b/test/proto/buf/validate/conformance/cases/kitchen_sink.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/library.proto b/test/proto/buf/validate/conformance/cases/library.proto index 7f05287..778e6f4 100644 --- a/test/proto/buf/validate/conformance/cases/library.proto +++ b/test/proto/buf/validate/conformance/cases/library.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/maps.proto b/test/proto/buf/validate/conformance/cases/maps.proto index 4a14705..178d565 100644 --- a/test/proto/buf/validate/conformance/cases/maps.proto +++ b/test/proto/buf/validate/conformance/cases/maps.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/messages.proto b/test/proto/buf/validate/conformance/cases/messages.proto index f20a1f8..43f2398 100644 --- a/test/proto/buf/validate/conformance/cases/messages.proto +++ b/test/proto/buf/validate/conformance/cases/messages.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/numbers.proto b/test/proto/buf/validate/conformance/cases/numbers.proto index e7a16e8..a8e0a80 100644 --- a/test/proto/buf/validate/conformance/cases/numbers.proto +++ b/test/proto/buf/validate/conformance/cases/numbers.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/oneofs.proto b/test/proto/buf/validate/conformance/cases/oneofs.proto index 7d37e31..bc84253 100644 --- a/test/proto/buf/validate/conformance/cases/oneofs.proto +++ b/test/proto/buf/validate/conformance/cases/oneofs.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/other_package/embed.proto b/test/proto/buf/validate/conformance/cases/other_package/embed.proto index 7b26930..a9cc0df 100644 --- a/test/proto/buf/validate/conformance/cases/other_package/embed.proto +++ b/test/proto/buf/validate/conformance/cases/other_package/embed.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/predefined_rules_proto2.proto b/test/proto/buf/validate/conformance/cases/predefined_rules_proto2.proto index 2f23991..7b75774 100644 --- a/test/proto/buf/validate/conformance/cases/predefined_rules_proto2.proto +++ b/test/proto/buf/validate/conformance/cases/predefined_rules_proto2.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/predefined_rules_proto3.proto b/test/proto/buf/validate/conformance/cases/predefined_rules_proto3.proto index 12a065d..35e6b63 100644 --- a/test/proto/buf/validate/conformance/cases/predefined_rules_proto3.proto +++ b/test/proto/buf/validate/conformance/cases/predefined_rules_proto3.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/predefined_rules_proto_editions.proto b/test/proto/buf/validate/conformance/cases/predefined_rules_proto_editions.proto index a378830..b1e8481 100644 --- a/test/proto/buf/validate/conformance/cases/predefined_rules_proto_editions.proto +++ b/test/proto/buf/validate/conformance/cases/predefined_rules_proto_editions.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/repeated.proto b/test/proto/buf/validate/conformance/cases/repeated.proto index 9477fb1..4479551 100644 --- a/test/proto/buf/validate/conformance/cases/repeated.proto +++ b/test/proto/buf/validate/conformance/cases/repeated.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/required_field_proto2.proto b/test/proto/buf/validate/conformance/cases/required_field_proto2.proto index 850a539..0c1bef7 100644 --- a/test/proto/buf/validate/conformance/cases/required_field_proto2.proto +++ b/test/proto/buf/validate/conformance/cases/required_field_proto2.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/required_field_proto3.proto b/test/proto/buf/validate/conformance/cases/required_field_proto3.proto index b32d2a9..0823f3c 100644 --- a/test/proto/buf/validate/conformance/cases/required_field_proto3.proto +++ b/test/proto/buf/validate/conformance/cases/required_field_proto3.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/required_field_proto_editions.proto b/test/proto/buf/validate/conformance/cases/required_field_proto_editions.proto index 5e53bee..eae82ec 100644 --- a/test/proto/buf/validate/conformance/cases/required_field_proto_editions.proto +++ b/test/proto/buf/validate/conformance/cases/required_field_proto_editions.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/strings.proto b/test/proto/buf/validate/conformance/cases/strings.proto index 04c20fa..1da1b36 100644 --- a/test/proto/buf/validate/conformance/cases/strings.proto +++ b/test/proto/buf/validate/conformance/cases/strings.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/subdirectory/in_subdirectory.proto b/test/proto/buf/validate/conformance/cases/subdirectory/in_subdirectory.proto index de2fd2a..616c1b0 100644 --- a/test/proto/buf/validate/conformance/cases/subdirectory/in_subdirectory.proto +++ b/test/proto/buf/validate/conformance/cases/subdirectory/in_subdirectory.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/wkt_any.proto b/test/proto/buf/validate/conformance/cases/wkt_any.proto index 92ae903..0f5bed7 100644 --- a/test/proto/buf/validate/conformance/cases/wkt_any.proto +++ b/test/proto/buf/validate/conformance/cases/wkt_any.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/wkt_duration.proto b/test/proto/buf/validate/conformance/cases/wkt_duration.proto index 556ea7b..8c14558 100644 --- a/test/proto/buf/validate/conformance/cases/wkt_duration.proto +++ b/test/proto/buf/validate/conformance/cases/wkt_duration.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/wkt_field_mask.proto b/test/proto/buf/validate/conformance/cases/wkt_field_mask.proto index 3923b21..55c85a9 100644 --- a/test/proto/buf/validate/conformance/cases/wkt_field_mask.proto +++ b/test/proto/buf/validate/conformance/cases/wkt_field_mask.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/wkt_nested.proto b/test/proto/buf/validate/conformance/cases/wkt_nested.proto index 8da2703..c04fb29 100644 --- a/test/proto/buf/validate/conformance/cases/wkt_nested.proto +++ b/test/proto/buf/validate/conformance/cases/wkt_nested.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/wkt_timestamp.proto b/test/proto/buf/validate/conformance/cases/wkt_timestamp.proto index b7ca36a..dd52ad7 100644 --- a/test/proto/buf/validate/conformance/cases/wkt_timestamp.proto +++ b/test/proto/buf/validate/conformance/cases/wkt_timestamp.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/wkt_wrappers.proto b/test/proto/buf/validate/conformance/cases/wkt_wrappers.proto index 57a09f0..5ee0833 100644 --- a/test/proto/buf/validate/conformance/cases/wkt_wrappers.proto +++ b/test/proto/buf/validate/conformance/cases/wkt_wrappers.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/cases/yet_another_package/embed2.proto b/test/proto/buf/validate/conformance/cases/yet_another_package/embed2.proto index d2a988d..e1696aa 100644 --- a/test/proto/buf/validate/conformance/cases/yet_another_package/embed2.proto +++ b/test/proto/buf/validate/conformance/cases/yet_another_package/embed2.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/harness/harness.proto b/test/proto/buf/validate/conformance/harness/harness.proto index af2846e..b04a8ed 100644 --- a/test/proto/buf/validate/conformance/harness/harness.proto +++ b/test/proto/buf/validate/conformance/harness/harness.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/conformance/harness/results.proto b/test/proto/buf/validate/conformance/harness/results.proto index c6f15c9..695c941 100644 --- a/test/proto/buf/validate/conformance/harness/results.proto +++ b/test/proto/buf/validate/conformance/harness/results.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/buf/validate/validate.proto b/test/proto/buf/validate/validate.proto index 56117c8..01ea1bd 100644 --- a/test/proto/buf/validate/validate.proto +++ b/test/proto/buf/validate/validate.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/proto/tests/example/v1/validations.proto b/test/proto/tests/example/v1/validations.proto index 09d44ee..d761c4b 100644 --- a/test/proto/tests/example/v1/validations.proto +++ b/test/proto/tests/example/v1/validations.proto @@ -1,10 +1,10 @@ -// Copyright 2023-2026 Buf Technologies, Inc. +// Copyright (c) 2025-2026 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. // You may obtain a copy of the License at // -// http://www.apache.org/licenses/LICENSE-2.0 +// http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/test_benchmark.py b/test/test_benchmark.py index 4d59ca9..4faed68 100644 --- a/test/test_benchmark.py +++ b/test/test_benchmark.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/test_format.py b/test/test_format.py index cf375a7..732976d 100644 --- a/test/test_format.py +++ b/test/test_format.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/test_matches.py b/test/test_matches.py index 290acbb..abbe984 100644 --- a/test/test_matches.py +++ b/test/test_matches.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/test_validate.py b/test/test_validate.py index 0408cbc..751ec1a 100644 --- a/test/test_validate.py +++ b/test/test_validate.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, diff --git a/test/versions.py b/test/versions.py index 4342b4c..628e83b 100644 --- a/test/versions.py +++ b/test/versions.py @@ -1,10 +1,10 @@ -# Copyright 2023-2026 Buf Technologies, Inc. +# Copyright (c) 2025-2026 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. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, From f872b627cd9663347eaf1b8dad7c2fa64b08a566 Mon Sep 17 00:00:00 2001 From: Anuraag Agrawal Date: Thu, 16 Jul 2026 09:53:22 +0900 Subject: [PATCH 3/3] Regenerate code --- protovalidate/_gen/__init__.py | 1 - protovalidate/_gen/buf/__init__.py | 1 - protovalidate/_gen/buf/validate/__init__.py | 1 - test/gen/__init__.py | 1 - test/gen/bench/__init__.py | 1 - test/gen/bench/v1/__init__.py | 1 - test/gen/bench/v1/bench_pb2.py | 2 +- test/gen/bench/v1/bench_pb2.pyi | 1 - test/gen/bench/v1/native_pb2.py | 2 +- test/gen/bench/v1/native_pb2.pyi | 1 - test/gen/buf/__init__.py | 1 - test/gen/buf/validate/__init__.py | 1 - test/gen/buf/validate/conformance/__init__.py | 1 - test/gen/buf/validate/conformance/cases/__init__.py | 1 - test/gen/buf/validate/conformance/cases/bool_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/bool_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/bytes_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/bytes_pb2.pyi | 1 - .../gen/buf/validate/conformance/cases/custom_rules/__init__.py | 1 - .../validate/conformance/cases/custom_rules/custom_rules_pb2.py | 2 +- .../conformance/cases/custom_rules/custom_rules_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/enums_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/enums_pb2.pyi | 1 - .../buf/validate/conformance/cases/filename_with_dash_pb2.py | 2 +- .../buf/validate/conformance/cases/filename_with_dash_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/groups_editions_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/groups_editions_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/groups_proto2_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/groups_proto2_pb2.pyi | 1 - .../buf/validate/conformance/cases/ignore_empty_proto2_pb2.py | 2 +- .../buf/validate/conformance/cases/ignore_empty_proto2_pb2.pyi | 1 - .../buf/validate/conformance/cases/ignore_empty_proto3_pb2.py | 2 +- .../buf/validate/conformance/cases/ignore_empty_proto3_pb2.pyi | 1 - .../conformance/cases/ignore_empty_proto_editions_pb2.py | 2 +- .../conformance/cases/ignore_empty_proto_editions_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.pyi | 1 - .../buf/validate/conformance/cases/ignore_proto_editions_pb2.py | 2 +- .../validate/conformance/cases/ignore_proto_editions_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/library_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/library_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/maps_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/maps_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/messages_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/messages_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/numbers_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/numbers_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/oneofs_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/oneofs_pb2.pyi | 1 - .../buf/validate/conformance/cases/other_package/__init__.py | 1 - .../buf/validate/conformance/cases/other_package/embed_pb2.py | 2 +- .../buf/validate/conformance/cases/other_package/embed_pb2.pyi | 1 - .../validate/conformance/cases/predefined_rules_proto2_pb2.py | 2 +- .../validate/conformance/cases/predefined_rules_proto2_pb2.pyi | 1 - .../validate/conformance/cases/predefined_rules_proto3_pb2.py | 2 +- .../validate/conformance/cases/predefined_rules_proto3_pb2.pyi | 1 - .../conformance/cases/predefined_rules_proto_editions_pb2.py | 2 +- .../conformance/cases/predefined_rules_proto_editions_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/repeated_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/repeated_pb2.pyi | 1 - .../buf/validate/conformance/cases/required_field_proto2_pb2.py | 2 +- .../validate/conformance/cases/required_field_proto2_pb2.pyi | 1 - .../buf/validate/conformance/cases/required_field_proto3_pb2.py | 2 +- .../validate/conformance/cases/required_field_proto3_pb2.pyi | 1 - .../conformance/cases/required_field_proto_editions_pb2.py | 2 +- .../conformance/cases/required_field_proto_editions_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/strings_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/strings_pb2.pyi | 1 - .../gen/buf/validate/conformance/cases/subdirectory/__init__.py | 1 - .../conformance/cases/subdirectory/in_subdirectory_pb2.py | 2 +- .../conformance/cases/subdirectory/in_subdirectory_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/wkt_any_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/wkt_any_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/wkt_duration_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/wkt_duration_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/wkt_nested_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/wkt_nested_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.pyi | 1 - test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.py | 2 +- test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.pyi | 1 - .../validate/conformance/cases/yet_another_package/__init__.py | 1 - .../conformance/cases/yet_another_package/embed2_pb2.py | 2 +- .../conformance/cases/yet_another_package/embed2_pb2.pyi | 1 - test/gen/buf/validate/conformance/harness/__init__.py | 1 - test/gen/buf/validate/conformance/harness/harness_pb2.py | 2 +- test/gen/buf/validate/conformance/harness/harness_pb2.pyi | 1 - test/gen/buf/validate/conformance/harness/results_pb2.py | 2 +- test/gen/buf/validate/conformance/harness/results_pb2.pyi | 1 - test/gen/buf/validate/validate_pb2.py | 2 +- test/gen/buf/validate/validate_pb2.pyi | 1 - test/gen/cel/__init__.py | 1 - test/gen/cel/expr/__init__.py | 1 - test/gen/cel/expr/checked_pb2.py | 2 +- test/gen/cel/expr/checked_pb2.pyi | 1 - test/gen/cel/expr/conformance/__init__.py | 1 - test/gen/cel/expr/conformance/conformance_service_pb2.py | 2 +- test/gen/cel/expr/conformance/conformance_service_pb2.pyi | 1 - test/gen/cel/expr/conformance/env_config_pb2.py | 2 +- test/gen/cel/expr/conformance/env_config_pb2.pyi | 1 - test/gen/cel/expr/conformance/test/__init__.py | 1 - test/gen/cel/expr/conformance/test/simple_pb2.py | 2 +- test/gen/cel/expr/conformance/test/simple_pb2.pyi | 1 - test/gen/cel/expr/conformance/test/suite_pb2.py | 2 +- test/gen/cel/expr/conformance/test/suite_pb2.pyi | 1 - test/gen/cel/expr/eval_pb2.py | 2 +- test/gen/cel/expr/eval_pb2.pyi | 1 - test/gen/cel/expr/explain_pb2.py | 2 +- test/gen/cel/expr/explain_pb2.pyi | 1 - test/gen/cel/expr/syntax_pb2.py | 2 +- test/gen/cel/expr/syntax_pb2.pyi | 1 - test/gen/cel/expr/value_pb2.py | 2 +- test/gen/cel/expr/value_pb2.pyi | 1 - test/gen/cel/policy/__init__.py | 1 - test/gen/cel/policy/policy_pb2.py | 2 +- test/gen/cel/policy/policy_pb2.pyi | 1 - test/gen/tests/__init__.py | 1 - test/gen/tests/example/__init__.py | 1 - test/gen/tests/example/v1/__init__.py | 1 - test/gen/tests/example/v1/validations_pb2.py | 2 +- test/gen/tests/example/v1/validations_pb2.pyi | 1 - 127 files changed, 52 insertions(+), 127 deletions(-) diff --git a/protovalidate/_gen/__init__.py b/protovalidate/_gen/__init__.py index cc9e301..e7c353f 100644 --- a/protovalidate/_gen/__init__.py +++ b/protovalidate/_gen/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/protovalidate/_gen/buf/__init__.py b/protovalidate/_gen/buf/__init__.py index cc9e301..e7c353f 100644 --- a/protovalidate/_gen/buf/__init__.py +++ b/protovalidate/_gen/buf/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/protovalidate/_gen/buf/validate/__init__.py b/protovalidate/_gen/buf/validate/__init__.py index cc9e301..e7c353f 100644 --- a/protovalidate/_gen/buf/validate/__init__.py +++ b/protovalidate/_gen/buf/validate/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/__init__.py b/test/gen/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/__init__.py +++ b/test/gen/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/bench/__init__.py b/test/gen/bench/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/bench/__init__.py +++ b/test/gen/bench/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/bench/v1/__init__.py b/test/gen/bench/v1/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/bench/v1/__init__.py +++ b/test/gen/bench/v1/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/bench/v1/bench_pb2.py b/test/gen/bench/v1/bench_pb2.py index 4da4cdb..34be1d4 100644 --- a/test/gen/bench/v1/bench_pb2.py +++ b/test/gen/bench/v1/bench_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: bench/v1/bench.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/bench/v1/bench_pb2.pyi b/test/gen/bench/v1/bench_pb2.pyi index 0686f2b..eed43d2 100644 --- a/test/gen/bench/v1/bench_pb2.pyi +++ b/test/gen/bench/v1/bench_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from ...buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper diff --git a/test/gen/bench/v1/native_pb2.py b/test/gen/bench/v1/native_pb2.py index ef66f62..dafd019 100644 --- a/test/gen/bench/v1/native_pb2.py +++ b/test/gen/bench/v1/native_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: bench/v1/native.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/bench/v1/native_pb2.pyi b/test/gen/bench/v1/native_pb2.pyi index 2a632eb..edf22db 100644 --- a/test/gen/bench/v1/native_pb2.pyi +++ b/test/gen/bench/v1/native_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from ...buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import wrappers_pb2 as _wrappers_pb2 from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/__init__.py b/test/gen/buf/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/buf/__init__.py +++ b/test/gen/buf/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/buf/validate/__init__.py b/test/gen/buf/validate/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/buf/validate/__init__.py +++ b/test/gen/buf/validate/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/buf/validate/conformance/__init__.py b/test/gen/buf/validate/conformance/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/buf/validate/conformance/__init__.py +++ b/test/gen/buf/validate/conformance/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/buf/validate/conformance/cases/__init__.py b/test/gen/buf/validate/conformance/cases/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/buf/validate/conformance/cases/__init__.py +++ b/test/gen/buf/validate/conformance/cases/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/buf/validate/conformance/cases/bool_pb2.py b/test/gen/buf/validate/conformance/cases/bool_pb2.py index a765541..c6ab618 100644 --- a/test/gen/buf/validate/conformance/cases/bool_pb2.py +++ b/test/gen/buf/validate/conformance/cases/bool_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/bool.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/bool_pb2.pyi b/test/gen/buf/validate/conformance/cases/bool_pb2.pyi index 3f87b48..29bf689 100644 --- a/test/gen/buf/validate/conformance/cases/bool_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/bool_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message diff --git a/test/gen/buf/validate/conformance/cases/bytes_pb2.py b/test/gen/buf/validate/conformance/cases/bytes_pb2.py index 2ae9b79..c7feb22 100644 --- a/test/gen/buf/validate/conformance/cases/bytes_pb2.py +++ b/test/gen/buf/validate/conformance/cases/bytes_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/bytes.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/bytes_pb2.pyi b/test/gen/buf/validate/conformance/cases/bytes_pb2.pyi index 0e46452..b4045be 100644 --- a/test/gen/buf/validate/conformance/cases/bytes_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/bytes_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message diff --git a/test/gen/buf/validate/conformance/cases/custom_rules/__init__.py b/test/gen/buf/validate/conformance/cases/custom_rules/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/buf/validate/conformance/cases/custom_rules/__init__.py +++ b/test/gen/buf/validate/conformance/cases/custom_rules/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.py b/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.py index b60314d..dca8617 100644 --- a/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.py +++ b/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/custom_rules/custom_rules.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.pyi b/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.pyi index c9d216e..41abee7 100644 --- a/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/custom_rules/custom_rules_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from ......buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper diff --git a/test/gen/buf/validate/conformance/cases/enums_pb2.py b/test/gen/buf/validate/conformance/cases/enums_pb2.py index c978f09..d2f4fa6 100644 --- a/test/gen/buf/validate/conformance/cases/enums_pb2.py +++ b/test/gen/buf/validate/conformance/cases/enums_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/enums.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/enums_pb2.pyi b/test/gen/buf/validate/conformance/cases/enums_pb2.pyi index 925e45c..d5b483c 100644 --- a/test/gen/buf/validate/conformance/cases/enums_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/enums_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate.conformance.cases.other_package import embed_pb2 as _embed_pb2 from .....buf.validate.conformance.cases.yet_another_package import embed2_pb2 as _embed2_pb2 from .....buf.validate import validate_pb2 as _validate_pb2 diff --git a/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.py b/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.py index 7e4ffc2..43564f0 100644 --- a/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.py +++ b/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/filename-with-dash.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.pyi b/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.pyi index c8945e1..043e89f 100644 --- a/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/filename_with_dash_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import descriptor as _descriptor from typing import ClassVar as _ClassVar diff --git a/test/gen/buf/validate/conformance/cases/groups_editions_pb2.py b/test/gen/buf/validate/conformance/cases/groups_editions_pb2.py index 5f7f4fa..ee2288f 100644 --- a/test/gen/buf/validate/conformance/cases/groups_editions_pb2.py +++ b/test/gen/buf/validate/conformance/cases/groups_editions_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/groups_editions.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/groups_editions_pb2.pyi b/test/gen/buf/validate/conformance/cases/groups_editions_pb2.pyi index 223919b..08883ec 100644 --- a/test/gen/buf/validate/conformance/cases/groups_editions_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/groups_editions_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message diff --git a/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.py b/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.py index 7de682a..794521d 100644 --- a/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.py +++ b/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/groups_proto2.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.pyi b/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.pyi index 2752833..ff2c162 100644 --- a/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/groups_proto2_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.py b/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.py index 5b9159c..fe273e5 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.py +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/ignore_empty_proto2.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.pyi b/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.pyi index 115c41d..98d4749 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto2_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.py b/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.py index 399589a..64e8c57 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.py +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/ignore_empty_proto3.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.pyi b/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.pyi index 047aed7..203d384 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto3_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.py b/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.py index 66783a2..40508c6 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.py +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/ignore_empty_proto_editions.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.pyi b/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.pyi index f2d528b..c07187f 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/ignore_empty_proto_editions_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.py b/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.py index 4347306..d50235c 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.py +++ b/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/ignore_proto2.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.pyi b/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.pyi index 9e384a2..780c517 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/ignore_proto2_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.py b/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.py index 4c2e329..836b5e8 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.py +++ b/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/ignore_proto3.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.pyi b/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.pyi index dd5ccf1..afe9277 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/ignore_proto3_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.py b/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.py index 858c4cf..d8e3689 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.py +++ b/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/ignore_proto_editions.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.pyi b/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.pyi index 22eb499..be241e2 100644 --- a/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/ignore_proto_editions_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.py b/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.py index 6257f50..e50faef 100644 --- a/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.py +++ b/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/kitchen_sink.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.pyi b/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.pyi index 584f618..1239f9a 100644 --- a/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/kitchen_sink_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import any_pb2 as _any_pb2 from google.protobuf import duration_pb2 as _duration_pb2 diff --git a/test/gen/buf/validate/conformance/cases/library_pb2.py b/test/gen/buf/validate/conformance/cases/library_pb2.py index 52ec4f4..ed5e051 100644 --- a/test/gen/buf/validate/conformance/cases/library_pb2.py +++ b/test/gen/buf/validate/conformance/cases/library_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/library.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/library_pb2.pyi b/test/gen/buf/validate/conformance/cases/library_pb2.pyi index d54c05c..ce6e5fa 100644 --- a/test/gen/buf/validate/conformance/cases/library_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/library_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message diff --git a/test/gen/buf/validate/conformance/cases/maps_pb2.py b/test/gen/buf/validate/conformance/cases/maps_pb2.py index 86ee8f2..569b53a 100644 --- a/test/gen/buf/validate/conformance/cases/maps_pb2.py +++ b/test/gen/buf/validate/conformance/cases/maps_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/maps.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/maps_pb2.pyi b/test/gen/buf/validate/conformance/cases/maps_pb2.pyi index 5ddca5a..6a54363 100644 --- a/test/gen/buf/validate/conformance/cases/maps_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/maps_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/messages_pb2.py b/test/gen/buf/validate/conformance/cases/messages_pb2.py index 9e21adb..ebf51f0 100644 --- a/test/gen/buf/validate/conformance/cases/messages_pb2.py +++ b/test/gen/buf/validate/conformance/cases/messages_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/messages.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/messages_pb2.pyi b/test/gen/buf/validate/conformance/cases/messages_pb2.pyi index d2dba95..184a7ac 100644 --- a/test/gen/buf/validate/conformance/cases/messages_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/messages_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate.conformance.cases.other_package import embed_pb2 as _embed_pb2 from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/numbers_pb2.py b/test/gen/buf/validate/conformance/cases/numbers_pb2.py index 242f4b0..8259d63 100644 --- a/test/gen/buf/validate/conformance/cases/numbers_pb2.py +++ b/test/gen/buf/validate/conformance/cases/numbers_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/numbers.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/numbers_pb2.pyi b/test/gen/buf/validate/conformance/cases/numbers_pb2.pyi index fbb8152..6151f7a 100644 --- a/test/gen/buf/validate/conformance/cases/numbers_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/numbers_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message diff --git a/test/gen/buf/validate/conformance/cases/oneofs_pb2.py b/test/gen/buf/validate/conformance/cases/oneofs_pb2.py index a02949e..ed2fe3f 100644 --- a/test/gen/buf/validate/conformance/cases/oneofs_pb2.py +++ b/test/gen/buf/validate/conformance/cases/oneofs_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/oneofs.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/oneofs_pb2.pyi b/test/gen/buf/validate/conformance/cases/oneofs_pb2.pyi index 0cbf30f..bdae241 100644 --- a/test/gen/buf/validate/conformance/cases/oneofs_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/oneofs_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message diff --git a/test/gen/buf/validate/conformance/cases/other_package/__init__.py b/test/gen/buf/validate/conformance/cases/other_package/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/buf/validate/conformance/cases/other_package/__init__.py +++ b/test/gen/buf/validate/conformance/cases/other_package/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.py b/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.py index ae52d79..72d0ee7 100644 --- a/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.py +++ b/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/other_package/embed.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.pyi b/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.pyi index e793971..c8838f5 100644 --- a/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/other_package/embed_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from ......buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.py b/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.py index f00f0d2..f4025f2 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.py +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/predefined_rules_proto2.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.pyi b/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.pyi index b679010..064c4ba 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto2_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import duration_pb2 as _duration_pb2 from google.protobuf import timestamp_pb2 as _timestamp_pb2 diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.py b/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.py index 97d2274..3fa3736 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.py +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/predefined_rules_proto3.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.pyi b/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.pyi index 0e04b13..12c6256 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto3_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate.conformance.cases import predefined_rules_proto2_pb2 as _predefined_rules_proto2_pb2 from .....buf.validate.conformance.cases import predefined_rules_proto_editions_pb2 as _predefined_rules_proto_editions_pb2 from .....buf.validate import validate_pb2 as _validate_pb2 diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.py b/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.py index f873510..da82b36 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.py +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/predefined_rules_proto_editions.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.pyi b/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.pyi index 182585b..36a3bd2 100644 --- a/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/predefined_rules_proto_editions_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import duration_pb2 as _duration_pb2 from google.protobuf import timestamp_pb2 as _timestamp_pb2 diff --git a/test/gen/buf/validate/conformance/cases/repeated_pb2.py b/test/gen/buf/validate/conformance/cases/repeated_pb2.py index f6ccab1..f47f2fa 100644 --- a/test/gen/buf/validate/conformance/cases/repeated_pb2.py +++ b/test/gen/buf/validate/conformance/cases/repeated_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/repeated.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/repeated_pb2.pyi b/test/gen/buf/validate/conformance/cases/repeated_pb2.pyi index 674e687..6b7883b 100644 --- a/test/gen/buf/validate/conformance/cases/repeated_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/repeated_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate.conformance.cases.other_package import embed_pb2 as _embed_pb2 from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import any_pb2 as _any_pb2 diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.py b/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.py index 48cd36b..b41544b 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.py +++ b/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/required_field_proto2.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.pyi b/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.pyi index 04f783f..d266c35 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/required_field_proto2_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.py b/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.py index 0cf76c3..e1f6d5d 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.py +++ b/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/required_field_proto3.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.pyi b/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.pyi index 5c19b02..424e670 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/required_field_proto3_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.py b/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.py index daa288c..eff78ff 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.py +++ b/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/required_field_proto_editions.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.pyi b/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.pyi index f59892f..4c9ae45 100644 --- a/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/required_field_proto_editions_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/strings_pb2.py b/test/gen/buf/validate/conformance/cases/strings_pb2.py index a5cdd6c..e9fa8b9 100644 --- a/test/gen/buf/validate/conformance/cases/strings_pb2.py +++ b/test/gen/buf/validate/conformance/cases/strings_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/strings.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/strings_pb2.pyi b/test/gen/buf/validate/conformance/cases/strings_pb2.pyi index a200177..170ad8e 100644 --- a/test/gen/buf/validate/conformance/cases/strings_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/strings_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message diff --git a/test/gen/buf/validate/conformance/cases/subdirectory/__init__.py b/test/gen/buf/validate/conformance/cases/subdirectory/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/buf/validate/conformance/cases/subdirectory/__init__.py +++ b/test/gen/buf/validate/conformance/cases/subdirectory/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.py b/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.py index b405190..1b81f0d 100644 --- a/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.py +++ b/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/subdirectory/in_subdirectory.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.pyi b/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.pyi index a6c18fa..df145f3 100644 --- a/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/subdirectory/in_subdirectory_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from ......buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import descriptor as _descriptor from typing import ClassVar as _ClassVar diff --git a/test/gen/buf/validate/conformance/cases/wkt_any_pb2.py b/test/gen/buf/validate/conformance/cases/wkt_any_pb2.py index 8efc583..7726d2c 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_any_pb2.py +++ b/test/gen/buf/validate/conformance/cases/wkt_any_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/wkt_any.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/wkt_any_pb2.pyi b/test/gen/buf/validate/conformance/cases/wkt_any_pb2.pyi index b8b8ded..b61da69 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_any_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/wkt_any_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import any_pb2 as _any_pb2 from google.protobuf import timestamp_pb2 as _timestamp_pb2 diff --git a/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.py b/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.py index 5535220..c29b2bd 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.py +++ b/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/wkt_duration.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.pyi b/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.pyi index 1b83632..1b39124 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/wkt_duration_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import duration_pb2 as _duration_pb2 from google.protobuf import timestamp_pb2 as _timestamp_pb2 diff --git a/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.py b/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.py index 7c7cfa8..e7c04ac 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.py +++ b/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/wkt_field_mask.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.pyi b/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.pyi index f230414..d0f9462 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/wkt_field_mask_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import field_mask_pb2 as _field_mask_pb2 from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.py b/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.py index 5dd13bf..104654f 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.py +++ b/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/wkt_nested.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.pyi b/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.pyi index 76e883a..7a65bef 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/wkt_nested_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message diff --git a/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.py b/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.py index 479a7e7..0f2cffa 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.py +++ b/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/wkt_timestamp.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.pyi b/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.pyi index 80e0264..2fe63cb 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/wkt_timestamp_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import duration_pb2 as _duration_pb2 from google.protobuf import timestamp_pb2 as _timestamp_pb2 diff --git a/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.py b/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.py index 8b83323..6db6b7d 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.py +++ b/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/wkt_wrappers.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.pyi b/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.pyi index 54f8d86..64a2fb8 100644 --- a/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/wkt_wrappers_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import wrappers_pb2 as _wrappers_pb2 from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/cases/yet_another_package/__init__.py b/test/gen/buf/validate/conformance/cases/yet_another_package/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/buf/validate/conformance/cases/yet_another_package/__init__.py +++ b/test/gen/buf/validate/conformance/cases/yet_another_package/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.py b/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.py index 2301bfa..e96ef51 100644 --- a/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.py +++ b/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/cases/yet_another_package/embed2.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.pyi b/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.pyi index 7bdd33b..286df11 100644 --- a/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.pyi +++ b/test/gen/buf/validate/conformance/cases/yet_another_package/embed2_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from ......buf.validate import validate_pb2 as _validate_pb2 from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper from google.protobuf import descriptor as _descriptor diff --git a/test/gen/buf/validate/conformance/harness/__init__.py b/test/gen/buf/validate/conformance/harness/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/buf/validate/conformance/harness/__init__.py +++ b/test/gen/buf/validate/conformance/harness/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/buf/validate/conformance/harness/harness_pb2.py b/test/gen/buf/validate/conformance/harness/harness_pb2.py index c0f315b..d276ee4 100644 --- a/test/gen/buf/validate/conformance/harness/harness_pb2.py +++ b/test/gen/buf/validate/conformance/harness/harness_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/harness/harness.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/harness/harness_pb2.pyi b/test/gen/buf/validate/conformance/harness/harness_pb2.pyi index 1f1a9e6..f00b86f 100644 --- a/test/gen/buf/validate/conformance/harness/harness_pb2.pyi +++ b/test/gen/buf/validate/conformance/harness/harness_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import any_pb2 as _any_pb2 from google.protobuf import descriptor_pb2 as _descriptor_pb2 diff --git a/test/gen/buf/validate/conformance/harness/results_pb2.py b/test/gen/buf/validate/conformance/harness/results_pb2.py index a4ec95f..0626850 100644 --- a/test/gen/buf/validate/conformance/harness/results_pb2.py +++ b/test/gen/buf/validate/conformance/harness/results_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/conformance/harness/results.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/conformance/harness/results_pb2.pyi b/test/gen/buf/validate/conformance/harness/results_pb2.pyi index 81b05f3..b949407 100644 --- a/test/gen/buf/validate/conformance/harness/results_pb2.pyi +++ b/test/gen/buf/validate/conformance/harness/results_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....buf.validate.conformance.harness import harness_pb2 as _harness_pb2 from google.protobuf import any_pb2 as _any_pb2 from google.protobuf import descriptor_pb2 as _descriptor_pb2 diff --git a/test/gen/buf/validate/validate_pb2.py b/test/gen/buf/validate/validate_pb2.py index b597186..44e087d 100644 --- a/test/gen/buf/validate/validate_pb2.py +++ b/test/gen/buf/validate/validate_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: buf/validate/validate.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/buf/validate/validate_pb2.pyi b/test/gen/buf/validate/validate_pb2.pyi index c081b10..1ae0052 100644 --- a/test/gen/buf/validate/validate_pb2.pyi +++ b/test/gen/buf/validate/validate_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from google.protobuf import descriptor_pb2 as _descriptor_pb2 from google.protobuf import duration_pb2 as _duration_pb2 from google.protobuf import field_mask_pb2 as _field_mask_pb2 diff --git a/test/gen/cel/__init__.py b/test/gen/cel/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/cel/__init__.py +++ b/test/gen/cel/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/cel/expr/__init__.py b/test/gen/cel/expr/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/cel/expr/__init__.py +++ b/test/gen/cel/expr/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/cel/expr/checked_pb2.py b/test/gen/cel/expr/checked_pb2.py index b0a0119..4333ea3 100644 --- a/test/gen/cel/expr/checked_pb2.py +++ b/test/gen/cel/expr/checked_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: cel/expr/checked.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/cel/expr/checked_pb2.pyi b/test/gen/cel/expr/checked_pb2.pyi index 28ef305..88e3720 100644 --- a/test/gen/cel/expr/checked_pb2.pyi +++ b/test/gen/cel/expr/checked_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from ...cel.expr import syntax_pb2 as _syntax_pb2 from google.protobuf import empty_pb2 as _empty_pb2 from google.protobuf import struct_pb2 as _struct_pb2 diff --git a/test/gen/cel/expr/conformance/__init__.py b/test/gen/cel/expr/conformance/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/cel/expr/conformance/__init__.py +++ b/test/gen/cel/expr/conformance/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/cel/expr/conformance/conformance_service_pb2.py b/test/gen/cel/expr/conformance/conformance_service_pb2.py index a695535..8ceeaaa 100644 --- a/test/gen/cel/expr/conformance/conformance_service_pb2.py +++ b/test/gen/cel/expr/conformance/conformance_service_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: cel/expr/conformance/conformance_service.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/cel/expr/conformance/conformance_service_pb2.pyi b/test/gen/cel/expr/conformance/conformance_service_pb2.pyi index 1e48272..b9facb6 100644 --- a/test/gen/cel/expr/conformance/conformance_service_pb2.pyi +++ b/test/gen/cel/expr/conformance/conformance_service_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from ....cel.expr import checked_pb2 as _checked_pb2 from ....cel.expr import eval_pb2 as _eval_pb2 from ....cel.expr import syntax_pb2 as _syntax_pb2 diff --git a/test/gen/cel/expr/conformance/env_config_pb2.py b/test/gen/cel/expr/conformance/env_config_pb2.py index 7d57d6d..be4070e 100644 --- a/test/gen/cel/expr/conformance/env_config_pb2.py +++ b/test/gen/cel/expr/conformance/env_config_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: cel/expr/conformance/env_config.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/cel/expr/conformance/env_config_pb2.pyi b/test/gen/cel/expr/conformance/env_config_pb2.pyi index 46fdc03..2b4fb1b 100644 --- a/test/gen/cel/expr/conformance/env_config_pb2.pyi +++ b/test/gen/cel/expr/conformance/env_config_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from ....cel.expr import checked_pb2 as _checked_pb2 from google.protobuf import struct_pb2 as _struct_pb2 from google.protobuf import descriptor_pb2 as _descriptor_pb2 diff --git a/test/gen/cel/expr/conformance/test/__init__.py b/test/gen/cel/expr/conformance/test/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/cel/expr/conformance/test/__init__.py +++ b/test/gen/cel/expr/conformance/test/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/cel/expr/conformance/test/simple_pb2.py b/test/gen/cel/expr/conformance/test/simple_pb2.py index c9c48a4..21f11ae 100644 --- a/test/gen/cel/expr/conformance/test/simple_pb2.py +++ b/test/gen/cel/expr/conformance/test/simple_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: cel/expr/conformance/test/simple.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/cel/expr/conformance/test/simple_pb2.pyi b/test/gen/cel/expr/conformance/test/simple_pb2.pyi index 47ab68c..b27f787 100644 --- a/test/gen/cel/expr/conformance/test/simple_pb2.pyi +++ b/test/gen/cel/expr/conformance/test/simple_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....cel.expr import checked_pb2 as _checked_pb2 from .....cel.expr import eval_pb2 as _eval_pb2 from .....cel.expr import value_pb2 as _value_pb2 diff --git a/test/gen/cel/expr/conformance/test/suite_pb2.py b/test/gen/cel/expr/conformance/test/suite_pb2.py index d8cab73..892a409 100644 --- a/test/gen/cel/expr/conformance/test/suite_pb2.py +++ b/test/gen/cel/expr/conformance/test/suite_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: cel/expr/conformance/test/suite.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/cel/expr/conformance/test/suite_pb2.pyi b/test/gen/cel/expr/conformance/test/suite_pb2.pyi index baec1cd..ac6449d 100644 --- a/test/gen/cel/expr/conformance/test/suite_pb2.pyi +++ b/test/gen/cel/expr/conformance/test/suite_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from .....cel.expr import checked_pb2 as _checked_pb2 from .....cel.expr import eval_pb2 as _eval_pb2 from .....cel.expr import value_pb2 as _value_pb2 diff --git a/test/gen/cel/expr/eval_pb2.py b/test/gen/cel/expr/eval_pb2.py index f5c5461..d4fa6d4 100644 --- a/test/gen/cel/expr/eval_pb2.py +++ b/test/gen/cel/expr/eval_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: cel/expr/eval.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/cel/expr/eval_pb2.pyi b/test/gen/cel/expr/eval_pb2.pyi index f951a1d..9525987 100644 --- a/test/gen/cel/expr/eval_pb2.pyi +++ b/test/gen/cel/expr/eval_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from google.protobuf import any_pb2 as _any_pb2 from ...cel.expr import value_pb2 as _value_pb2 from google.protobuf.internal import containers as _containers diff --git a/test/gen/cel/expr/explain_pb2.py b/test/gen/cel/expr/explain_pb2.py index c33954e..2455844 100644 --- a/test/gen/cel/expr/explain_pb2.py +++ b/test/gen/cel/expr/explain_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: cel/expr/explain.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/cel/expr/explain_pb2.pyi b/test/gen/cel/expr/explain_pb2.pyi index ca4664c..e368e9e 100644 --- a/test/gen/cel/expr/explain_pb2.pyi +++ b/test/gen/cel/expr/explain_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from ...cel.expr import value_pb2 as _value_pb2 from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor diff --git a/test/gen/cel/expr/syntax_pb2.py b/test/gen/cel/expr/syntax_pb2.py index 76ecff3..001b337 100644 --- a/test/gen/cel/expr/syntax_pb2.py +++ b/test/gen/cel/expr/syntax_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: cel/expr/syntax.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/cel/expr/syntax_pb2.pyi b/test/gen/cel/expr/syntax_pb2.pyi index 5044071..e51c0d1 100644 --- a/test/gen/cel/expr/syntax_pb2.pyi +++ b/test/gen/cel/expr/syntax_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from google.protobuf import duration_pb2 as _duration_pb2 from google.protobuf import struct_pb2 as _struct_pb2 from google.protobuf import timestamp_pb2 as _timestamp_pb2 diff --git a/test/gen/cel/expr/value_pb2.py b/test/gen/cel/expr/value_pb2.py index a3ec866..ae26af1 100644 --- a/test/gen/cel/expr/value_pb2.py +++ b/test/gen/cel/expr/value_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: cel/expr/value.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/cel/expr/value_pb2.pyi b/test/gen/cel/expr/value_pb2.pyi index e759481..2a048d6 100644 --- a/test/gen/cel/expr/value_pb2.pyi +++ b/test/gen/cel/expr/value_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from google.protobuf import any_pb2 as _any_pb2 from google.protobuf import struct_pb2 as _struct_pb2 from google.protobuf.internal import containers as _containers diff --git a/test/gen/cel/policy/__init__.py b/test/gen/cel/policy/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/cel/policy/__init__.py +++ b/test/gen/cel/policy/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/cel/policy/policy_pb2.py b/test/gen/cel/policy/policy_pb2.py index b05109e..6cf53dc 100644 --- a/test/gen/cel/policy/policy_pb2.py +++ b/test/gen/cel/policy/policy_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: cel/policy/policy.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/cel/policy/policy_pb2.pyi b/test/gen/cel/policy/policy_pb2.pyi index 91c7ad8..a82e8f1 100644 --- a/test/gen/cel/policy/policy_pb2.pyi +++ b/test/gen/cel/policy/policy_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from google.protobuf.internal import containers as _containers from google.protobuf import descriptor as _descriptor from google.protobuf import message as _message diff --git a/test/gen/tests/__init__.py b/test/gen/tests/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/tests/__init__.py +++ b/test/gen/tests/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/tests/example/__init__.py b/test/gen/tests/example/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/tests/example/__init__.py +++ b/test/gen/tests/example/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/tests/example/v1/__init__.py b/test/gen/tests/example/v1/__init__.py index cc9e301..e7c353f 100644 --- a/test/gen/tests/example/v1/__init__.py +++ b/test/gen/tests/example/v1/__init__.py @@ -11,5 +11,4 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from __future__ import annotations diff --git a/test/gen/tests/example/v1/validations_pb2.py b/test/gen/tests/example/v1/validations_pb2.py index 3629fed..e2f657e 100644 --- a/test/gen/tests/example/v1/validations_pb2.py +++ b/test/gen/tests/example/v1/validations_pb2.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- # Copyright (c) 2025-2026 Buf Technologies, Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); @@ -12,7 +13,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -# -*- coding: utf-8 -*- # Generated by the protocol buffer compiler. DO NOT EDIT! # source: tests/example/v1/validations.proto # Protobuf Python Version: 5.26.0 diff --git a/test/gen/tests/example/v1/validations_pb2.pyi b/test/gen/tests/example/v1/validations_pb2.pyi index d455df7..3e74bae 100644 --- a/test/gen/tests/example/v1/validations_pb2.pyi +++ b/test/gen/tests/example/v1/validations_pb2.pyi @@ -11,7 +11,6 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. - from ....buf.validate import validate_pb2 as _validate_pb2 from google.protobuf import timestamp_pb2 as _timestamp_pb2 from google.protobuf.internal import containers as _containers