From 28c596b464debd3842edeba70fbaad126684ce06 Mon Sep 17 00:00:00 2001 From: Timo Stamm Date: Wed, 18 Jun 2025 21:01:06 +0200 Subject: [PATCH 1/3] Update copyright years --- .../build/buf/protovalidate/conformance/FileDescriptorUtil.java | 2 +- .../src/main/java/build/buf/protovalidate/conformance/Main.java | 2 +- .../src/test/java/build/buf/protovalidate/ValidatorTest.java | 2 +- gradle.properties | 2 +- src/main/java/build/buf/protovalidate/AnyEvaluator.java | 2 +- src/main/java/build/buf/protovalidate/AstExpression.java | 2 +- src/main/java/build/buf/protovalidate/CelPrograms.java | 2 +- src/main/java/build/buf/protovalidate/CompiledProgram.java | 2 +- src/main/java/build/buf/protovalidate/Config.java | 2 +- src/main/java/build/buf/protovalidate/CustomDeclarations.java | 2 +- src/main/java/build/buf/protovalidate/CustomOverload.java | 2 +- src/main/java/build/buf/protovalidate/DescriptorMappings.java | 2 +- .../java/build/buf/protovalidate/EmbeddedMessageEvaluator.java | 2 +- src/main/java/build/buf/protovalidate/EnumEvaluator.java | 2 +- src/main/java/build/buf/protovalidate/Evaluator.java | 2 +- src/main/java/build/buf/protovalidate/EvaluatorBuilder.java | 2 +- src/main/java/build/buf/protovalidate/Expression.java | 2 +- src/main/java/build/buf/protovalidate/FieldEvaluator.java | 2 +- src/main/java/build/buf/protovalidate/FieldPathUtils.java | 2 +- src/main/java/build/buf/protovalidate/Format.java | 2 +- src/main/java/build/buf/protovalidate/Ipv4.java | 2 +- src/main/java/build/buf/protovalidate/Ipv6.java | 2 +- src/main/java/build/buf/protovalidate/ListElementValue.java | 2 +- src/main/java/build/buf/protovalidate/ListEvaluator.java | 2 +- src/main/java/build/buf/protovalidate/MapEvaluator.java | 2 +- src/main/java/build/buf/protovalidate/MessageEvaluator.java | 2 +- .../java/build/buf/protovalidate/MessageOneofEvaluator.java | 2 +- src/main/java/build/buf/protovalidate/MessageValue.java | 2 +- src/main/java/build/buf/protovalidate/NowVariable.java | 2 +- src/main/java/build/buf/protovalidate/ObjectValue.java | 2 +- src/main/java/build/buf/protovalidate/OneofEvaluator.java | 2 +- src/main/java/build/buf/protovalidate/ProtoAdapter.java | 2 +- src/main/java/build/buf/protovalidate/RuleCache.java | 2 +- src/main/java/build/buf/protovalidate/RuleResolver.java | 2 +- src/main/java/build/buf/protovalidate/RuleViolation.java | 2 +- src/main/java/build/buf/protovalidate/RuleViolationHelper.java | 2 +- .../build/buf/protovalidate/UnknownDescriptorEvaluator.java | 2 +- src/main/java/build/buf/protovalidate/Uri.java | 2 +- src/main/java/build/buf/protovalidate/ValidateLibrary.java | 2 +- src/main/java/build/buf/protovalidate/ValidationResult.java | 2 +- src/main/java/build/buf/protovalidate/Validator.java | 2 +- src/main/java/build/buf/protovalidate/ValidatorFactory.java | 2 +- src/main/java/build/buf/protovalidate/ValidatorImpl.java | 2 +- src/main/java/build/buf/protovalidate/Value.java | 2 +- src/main/java/build/buf/protovalidate/ValueEvaluator.java | 2 +- src/main/java/build/buf/protovalidate/Variable.java | 2 +- src/main/java/build/buf/protovalidate/Violation.java | 2 +- .../buf/protovalidate/exceptions/CompilationException.java | 2 +- .../build/buf/protovalidate/exceptions/ExecutionException.java | 2 +- .../build/buf/protovalidate/exceptions/ValidationException.java | 2 +- src/test/java/build/buf/protovalidate/CustomOverloadTest.java | 2 +- src/test/java/build/buf/protovalidate/FormatTest.java | 2 +- src/test/java/build/buf/protovalidate/ValidationResultTest.java | 2 +- .../build/buf/protovalidate/ValidatorCelExpressionTest.java | 2 +- .../java/build/buf/protovalidate/ValidatorConstructionTest.java | 2 +- .../buf/protovalidate/ValidatorDifferentJavaPackagesTest.java | 2 +- .../build/buf/protovalidate/ValidatorDynamicMessageTest.java | 2 +- src/test/java/build/buf/protovalidate/ValidatorImportTest.java | 2 +- src/test/resources/proto/validationtest/custom_rules.proto | 2 +- src/test/resources/proto/validationtest/import_test.proto | 2 +- src/test/resources/proto/validationtest/predefined.proto | 2 +- src/test/resources/proto/validationtest/required.proto | 2 +- src/test/resources/proto/validationtest/validationtest.proto | 2 +- 63 files changed, 63 insertions(+), 63 deletions(-) diff --git a/conformance/src/main/java/build/buf/protovalidate/conformance/FileDescriptorUtil.java b/conformance/src/main/java/build/buf/protovalidate/conformance/FileDescriptorUtil.java index b6a0d8813..7a26f911d 100644 --- a/conformance/src/main/java/build/buf/protovalidate/conformance/FileDescriptorUtil.java +++ b/conformance/src/main/java/build/buf/protovalidate/conformance/FileDescriptorUtil.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/conformance/src/main/java/build/buf/protovalidate/conformance/Main.java b/conformance/src/main/java/build/buf/protovalidate/conformance/Main.java index d02409129..63f5c1795 100644 --- a/conformance/src/main/java/build/buf/protovalidate/conformance/Main.java +++ b/conformance/src/main/java/build/buf/protovalidate/conformance/Main.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/conformance/src/test/java/build/buf/protovalidate/ValidatorTest.java b/conformance/src/test/java/build/buf/protovalidate/ValidatorTest.java index d7d55453c..dc6623f4a 100644 --- a/conformance/src/test/java/build/buf/protovalidate/ValidatorTest.java +++ b/conformance/src/test/java/build/buf/protovalidate/ValidatorTest.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/gradle.properties b/gradle.properties index 2d53922ba..5204de590 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,7 +5,7 @@ protovalidate.version = v0.13.3 protovalidate.conformance.args = --strict_message --strict_error --expected_failures=expected-failures.yaml # Argument to the license-header CLI -license-header.years = 2023-2024 +license-header.years = 2023-2025 # Version of the cel-spec that this implementation is conformant with cel.spec.version = v0.24.0 diff --git a/src/main/java/build/buf/protovalidate/AnyEvaluator.java b/src/main/java/build/buf/protovalidate/AnyEvaluator.java index cbcd1e63b..d19f30e18 100644 --- a/src/main/java/build/buf/protovalidate/AnyEvaluator.java +++ b/src/main/java/build/buf/protovalidate/AnyEvaluator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/AstExpression.java b/src/main/java/build/buf/protovalidate/AstExpression.java index 1fcd3ebbf..845c3e7f9 100644 --- a/src/main/java/build/buf/protovalidate/AstExpression.java +++ b/src/main/java/build/buf/protovalidate/AstExpression.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/CelPrograms.java b/src/main/java/build/buf/protovalidate/CelPrograms.java index 6dbd25f1d..520f01ca7 100644 --- a/src/main/java/build/buf/protovalidate/CelPrograms.java +++ b/src/main/java/build/buf/protovalidate/CelPrograms.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/CompiledProgram.java b/src/main/java/build/buf/protovalidate/CompiledProgram.java index ae7e3e94b..8f39e82d5 100644 --- a/src/main/java/build/buf/protovalidate/CompiledProgram.java +++ b/src/main/java/build/buf/protovalidate/CompiledProgram.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/Config.java b/src/main/java/build/buf/protovalidate/Config.java index 8c1214b98..289bc7171 100644 --- a/src/main/java/build/buf/protovalidate/Config.java +++ b/src/main/java/build/buf/protovalidate/Config.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/CustomDeclarations.java b/src/main/java/build/buf/protovalidate/CustomDeclarations.java index 25f57845e..0de52970b 100644 --- a/src/main/java/build/buf/protovalidate/CustomDeclarations.java +++ b/src/main/java/build/buf/protovalidate/CustomDeclarations.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/CustomOverload.java b/src/main/java/build/buf/protovalidate/CustomOverload.java index 2bf7f93a9..bc377a52c 100644 --- a/src/main/java/build/buf/protovalidate/CustomOverload.java +++ b/src/main/java/build/buf/protovalidate/CustomOverload.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/DescriptorMappings.java b/src/main/java/build/buf/protovalidate/DescriptorMappings.java index 0a6758fdf..a5906d395 100644 --- a/src/main/java/build/buf/protovalidate/DescriptorMappings.java +++ b/src/main/java/build/buf/protovalidate/DescriptorMappings.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/EmbeddedMessageEvaluator.java b/src/main/java/build/buf/protovalidate/EmbeddedMessageEvaluator.java index ea0214f84..63af08dc3 100644 --- a/src/main/java/build/buf/protovalidate/EmbeddedMessageEvaluator.java +++ b/src/main/java/build/buf/protovalidate/EmbeddedMessageEvaluator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/EnumEvaluator.java b/src/main/java/build/buf/protovalidate/EnumEvaluator.java index 6167f159e..e3036f90b 100644 --- a/src/main/java/build/buf/protovalidate/EnumEvaluator.java +++ b/src/main/java/build/buf/protovalidate/EnumEvaluator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/Evaluator.java b/src/main/java/build/buf/protovalidate/Evaluator.java index a12e6c899..e4e04de1b 100644 --- a/src/main/java/build/buf/protovalidate/Evaluator.java +++ b/src/main/java/build/buf/protovalidate/Evaluator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/EvaluatorBuilder.java b/src/main/java/build/buf/protovalidate/EvaluatorBuilder.java index 2e62e0624..04f8e40ae 100644 --- a/src/main/java/build/buf/protovalidate/EvaluatorBuilder.java +++ b/src/main/java/build/buf/protovalidate/EvaluatorBuilder.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/Expression.java b/src/main/java/build/buf/protovalidate/Expression.java index f5e02e6c1..638128d68 100644 --- a/src/main/java/build/buf/protovalidate/Expression.java +++ b/src/main/java/build/buf/protovalidate/Expression.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/FieldEvaluator.java b/src/main/java/build/buf/protovalidate/FieldEvaluator.java index 4dfcfb6ff..5faf8a873 100644 --- a/src/main/java/build/buf/protovalidate/FieldEvaluator.java +++ b/src/main/java/build/buf/protovalidate/FieldEvaluator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/FieldPathUtils.java b/src/main/java/build/buf/protovalidate/FieldPathUtils.java index 27e321c46..1c8c1b0b8 100644 --- a/src/main/java/build/buf/protovalidate/FieldPathUtils.java +++ b/src/main/java/build/buf/protovalidate/FieldPathUtils.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/Format.java b/src/main/java/build/buf/protovalidate/Format.java index a7e9be245..a1f9320eb 100644 --- a/src/main/java/build/buf/protovalidate/Format.java +++ b/src/main/java/build/buf/protovalidate/Format.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/Ipv4.java b/src/main/java/build/buf/protovalidate/Ipv4.java index 747c3f8e4..94bc4e251 100644 --- a/src/main/java/build/buf/protovalidate/Ipv4.java +++ b/src/main/java/build/buf/protovalidate/Ipv4.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/Ipv6.java b/src/main/java/build/buf/protovalidate/Ipv6.java index af46fd2ab..e72559ef0 100644 --- a/src/main/java/build/buf/protovalidate/Ipv6.java +++ b/src/main/java/build/buf/protovalidate/Ipv6.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/ListElementValue.java b/src/main/java/build/buf/protovalidate/ListElementValue.java index d76754ede..dbb96d67f 100644 --- a/src/main/java/build/buf/protovalidate/ListElementValue.java +++ b/src/main/java/build/buf/protovalidate/ListElementValue.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/ListEvaluator.java b/src/main/java/build/buf/protovalidate/ListEvaluator.java index 0a08c050d..4702c8fad 100644 --- a/src/main/java/build/buf/protovalidate/ListEvaluator.java +++ b/src/main/java/build/buf/protovalidate/ListEvaluator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/MapEvaluator.java b/src/main/java/build/buf/protovalidate/MapEvaluator.java index 425a67a54..5d66b86c8 100644 --- a/src/main/java/build/buf/protovalidate/MapEvaluator.java +++ b/src/main/java/build/buf/protovalidate/MapEvaluator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/MessageEvaluator.java b/src/main/java/build/buf/protovalidate/MessageEvaluator.java index 42fb0b7cc..07a58a7f2 100644 --- a/src/main/java/build/buf/protovalidate/MessageEvaluator.java +++ b/src/main/java/build/buf/protovalidate/MessageEvaluator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/MessageOneofEvaluator.java b/src/main/java/build/buf/protovalidate/MessageOneofEvaluator.java index 61a079be3..410c02fd1 100644 --- a/src/main/java/build/buf/protovalidate/MessageOneofEvaluator.java +++ b/src/main/java/build/buf/protovalidate/MessageOneofEvaluator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/MessageValue.java b/src/main/java/build/buf/protovalidate/MessageValue.java index 9f4f924aa..c2145313c 100644 --- a/src/main/java/build/buf/protovalidate/MessageValue.java +++ b/src/main/java/build/buf/protovalidate/MessageValue.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/NowVariable.java b/src/main/java/build/buf/protovalidate/NowVariable.java index 30ed02b84..27e5f933d 100644 --- a/src/main/java/build/buf/protovalidate/NowVariable.java +++ b/src/main/java/build/buf/protovalidate/NowVariable.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/ObjectValue.java b/src/main/java/build/buf/protovalidate/ObjectValue.java index 6b41042f7..1ca0afc92 100644 --- a/src/main/java/build/buf/protovalidate/ObjectValue.java +++ b/src/main/java/build/buf/protovalidate/ObjectValue.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/OneofEvaluator.java b/src/main/java/build/buf/protovalidate/OneofEvaluator.java index 3041e954b..4124039b8 100644 --- a/src/main/java/build/buf/protovalidate/OneofEvaluator.java +++ b/src/main/java/build/buf/protovalidate/OneofEvaluator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/ProtoAdapter.java b/src/main/java/build/buf/protovalidate/ProtoAdapter.java index d45d98044..b142d594f 100644 --- a/src/main/java/build/buf/protovalidate/ProtoAdapter.java +++ b/src/main/java/build/buf/protovalidate/ProtoAdapter.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/RuleCache.java b/src/main/java/build/buf/protovalidate/RuleCache.java index f3c2c726f..6c39852e9 100644 --- a/src/main/java/build/buf/protovalidate/RuleCache.java +++ b/src/main/java/build/buf/protovalidate/RuleCache.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/RuleResolver.java b/src/main/java/build/buf/protovalidate/RuleResolver.java index e33c22566..4901ab1af 100644 --- a/src/main/java/build/buf/protovalidate/RuleResolver.java +++ b/src/main/java/build/buf/protovalidate/RuleResolver.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/RuleViolation.java b/src/main/java/build/buf/protovalidate/RuleViolation.java index 2f7e5de27..eb475a9cf 100644 --- a/src/main/java/build/buf/protovalidate/RuleViolation.java +++ b/src/main/java/build/buf/protovalidate/RuleViolation.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/RuleViolationHelper.java b/src/main/java/build/buf/protovalidate/RuleViolationHelper.java index 9a50a7d2f..d134b6d4b 100644 --- a/src/main/java/build/buf/protovalidate/RuleViolationHelper.java +++ b/src/main/java/build/buf/protovalidate/RuleViolationHelper.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/UnknownDescriptorEvaluator.java b/src/main/java/build/buf/protovalidate/UnknownDescriptorEvaluator.java index d3ea3f08c..ea74468c4 100644 --- a/src/main/java/build/buf/protovalidate/UnknownDescriptorEvaluator.java +++ b/src/main/java/build/buf/protovalidate/UnknownDescriptorEvaluator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/Uri.java b/src/main/java/build/buf/protovalidate/Uri.java index 91a618d5c..f829047ad 100644 --- a/src/main/java/build/buf/protovalidate/Uri.java +++ b/src/main/java/build/buf/protovalidate/Uri.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/ValidateLibrary.java b/src/main/java/build/buf/protovalidate/ValidateLibrary.java index ec5e00d1c..f82c744b4 100644 --- a/src/main/java/build/buf/protovalidate/ValidateLibrary.java +++ b/src/main/java/build/buf/protovalidate/ValidateLibrary.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/ValidationResult.java b/src/main/java/build/buf/protovalidate/ValidationResult.java index 90be53494..b92691f6f 100644 --- a/src/main/java/build/buf/protovalidate/ValidationResult.java +++ b/src/main/java/build/buf/protovalidate/ValidationResult.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/Validator.java b/src/main/java/build/buf/protovalidate/Validator.java index 53cbe2eef..f8e67195e 100644 --- a/src/main/java/build/buf/protovalidate/Validator.java +++ b/src/main/java/build/buf/protovalidate/Validator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/ValidatorFactory.java b/src/main/java/build/buf/protovalidate/ValidatorFactory.java index 99595e9d0..adb50c8c3 100644 --- a/src/main/java/build/buf/protovalidate/ValidatorFactory.java +++ b/src/main/java/build/buf/protovalidate/ValidatorFactory.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/ValidatorImpl.java b/src/main/java/build/buf/protovalidate/ValidatorImpl.java index 9be4b04be..d1748775e 100644 --- a/src/main/java/build/buf/protovalidate/ValidatorImpl.java +++ b/src/main/java/build/buf/protovalidate/ValidatorImpl.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/Value.java b/src/main/java/build/buf/protovalidate/Value.java index 3d9ae6a73..5d6217b57 100644 --- a/src/main/java/build/buf/protovalidate/Value.java +++ b/src/main/java/build/buf/protovalidate/Value.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/ValueEvaluator.java b/src/main/java/build/buf/protovalidate/ValueEvaluator.java index 4f69cc882..198d65b61 100644 --- a/src/main/java/build/buf/protovalidate/ValueEvaluator.java +++ b/src/main/java/build/buf/protovalidate/ValueEvaluator.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/Variable.java b/src/main/java/build/buf/protovalidate/Variable.java index c231139f9..c449cb726 100644 --- a/src/main/java/build/buf/protovalidate/Variable.java +++ b/src/main/java/build/buf/protovalidate/Variable.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/Violation.java b/src/main/java/build/buf/protovalidate/Violation.java index cbc9d6d7f..ffc7e9f2e 100644 --- a/src/main/java/build/buf/protovalidate/Violation.java +++ b/src/main/java/build/buf/protovalidate/Violation.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/exceptions/CompilationException.java b/src/main/java/build/buf/protovalidate/exceptions/CompilationException.java index 3760e9429..b1f1398c1 100644 --- a/src/main/java/build/buf/protovalidate/exceptions/CompilationException.java +++ b/src/main/java/build/buf/protovalidate/exceptions/CompilationException.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/exceptions/ExecutionException.java b/src/main/java/build/buf/protovalidate/exceptions/ExecutionException.java index 6cd6e8560..2c3b34711 100644 --- a/src/main/java/build/buf/protovalidate/exceptions/ExecutionException.java +++ b/src/main/java/build/buf/protovalidate/exceptions/ExecutionException.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/main/java/build/buf/protovalidate/exceptions/ValidationException.java b/src/main/java/build/buf/protovalidate/exceptions/ValidationException.java index 88d78d57d..ad989ba55 100644 --- a/src/main/java/build/buf/protovalidate/exceptions/ValidationException.java +++ b/src/main/java/build/buf/protovalidate/exceptions/ValidationException.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/java/build/buf/protovalidate/CustomOverloadTest.java b/src/test/java/build/buf/protovalidate/CustomOverloadTest.java index 602d53037..67fcb7d93 100644 --- a/src/test/java/build/buf/protovalidate/CustomOverloadTest.java +++ b/src/test/java/build/buf/protovalidate/CustomOverloadTest.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/java/build/buf/protovalidate/FormatTest.java b/src/test/java/build/buf/protovalidate/FormatTest.java index 7438ccf79..f2223ab06 100644 --- a/src/test/java/build/buf/protovalidate/FormatTest.java +++ b/src/test/java/build/buf/protovalidate/FormatTest.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/java/build/buf/protovalidate/ValidationResultTest.java b/src/test/java/build/buf/protovalidate/ValidationResultTest.java index 6cde132b6..2b4ca05cd 100644 --- a/src/test/java/build/buf/protovalidate/ValidationResultTest.java +++ b/src/test/java/build/buf/protovalidate/ValidationResultTest.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/java/build/buf/protovalidate/ValidatorCelExpressionTest.java b/src/test/java/build/buf/protovalidate/ValidatorCelExpressionTest.java index 44288f69c..cad4ba943 100644 --- a/src/test/java/build/buf/protovalidate/ValidatorCelExpressionTest.java +++ b/src/test/java/build/buf/protovalidate/ValidatorCelExpressionTest.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/java/build/buf/protovalidate/ValidatorConstructionTest.java b/src/test/java/build/buf/protovalidate/ValidatorConstructionTest.java index 470c00f44..a03a18d8a 100644 --- a/src/test/java/build/buf/protovalidate/ValidatorConstructionTest.java +++ b/src/test/java/build/buf/protovalidate/ValidatorConstructionTest.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/java/build/buf/protovalidate/ValidatorDifferentJavaPackagesTest.java b/src/test/java/build/buf/protovalidate/ValidatorDifferentJavaPackagesTest.java index 35b2642ef..6c2843419 100644 --- a/src/test/java/build/buf/protovalidate/ValidatorDifferentJavaPackagesTest.java +++ b/src/test/java/build/buf/protovalidate/ValidatorDifferentJavaPackagesTest.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/java/build/buf/protovalidate/ValidatorDynamicMessageTest.java b/src/test/java/build/buf/protovalidate/ValidatorDynamicMessageTest.java index fc7fd73b0..e5ba50abb 100644 --- a/src/test/java/build/buf/protovalidate/ValidatorDynamicMessageTest.java +++ b/src/test/java/build/buf/protovalidate/ValidatorDynamicMessageTest.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/java/build/buf/protovalidate/ValidatorImportTest.java b/src/test/java/build/buf/protovalidate/ValidatorImportTest.java index 84479f331..e6e2afffc 100644 --- a/src/test/java/build/buf/protovalidate/ValidatorImportTest.java +++ b/src/test/java/build/buf/protovalidate/ValidatorImportTest.java @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/resources/proto/validationtest/custom_rules.proto b/src/test/resources/proto/validationtest/custom_rules.proto index 98d7b8b67..0a59a4630 100644 --- a/src/test/resources/proto/validationtest/custom_rules.proto +++ b/src/test/resources/proto/validationtest/custom_rules.proto @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/resources/proto/validationtest/import_test.proto b/src/test/resources/proto/validationtest/import_test.proto index 8f518ac5d..139daa301 100644 --- a/src/test/resources/proto/validationtest/import_test.proto +++ b/src/test/resources/proto/validationtest/import_test.proto @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/resources/proto/validationtest/predefined.proto b/src/test/resources/proto/validationtest/predefined.proto index 925a4765a..55a37ab02 100644 --- a/src/test/resources/proto/validationtest/predefined.proto +++ b/src/test/resources/proto/validationtest/predefined.proto @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/resources/proto/validationtest/required.proto b/src/test/resources/proto/validationtest/required.proto index 570694f6d..d308577e2 100644 --- a/src/test/resources/proto/validationtest/required.proto +++ b/src/test/resources/proto/validationtest/required.proto @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. diff --git a/src/test/resources/proto/validationtest/validationtest.proto b/src/test/resources/proto/validationtest/validationtest.proto index 188e37603..2774145be 100644 --- a/src/test/resources/proto/validationtest/validationtest.proto +++ b/src/test/resources/proto/validationtest/validationtest.proto @@ -1,4 +1,4 @@ -// Copyright 2023-2024 Buf Technologies, Inc. +// Copyright 2023-2025 Buf Technologies, Inc. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. From 1fc82a96b4409a26e69f14336e2974952d0755f5 Mon Sep 17 00:00:00 2001 From: Timo Stamm Date: Wed, 18 Jun 2025 21:04:33 +0200 Subject: [PATCH 2/3] Update LICENSE as well --- LICENSE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index dbb493206..9cb2c755d 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2023 Buf Technologies, Inc. + Copyright 2023-205 Buf Technologies, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -198,4 +198,4 @@ distributed under the License is distributed on an "AS IS" BASIS, 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. \ No newline at end of file + limitations under the License. From 4f83bdeb77fddd78c07a52e64e03d623db33f511 Mon Sep 17 00:00:00 2001 From: Timo Stamm Date: Wed, 18 Jun 2025 21:10:11 +0200 Subject: [PATCH 3/3] 2025 --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 9cb2c755d..3e1d480e1 100644 --- a/LICENSE +++ b/LICENSE @@ -186,7 +186,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2023-205 Buf Technologies, Inc. + Copyright 2023-2025 Buf Technologies, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.