Skip to content

Commit 7365824

Browse files
Merge pull request #848 from SpineEventEngine/deprecate-if-invalid
Restore and deprecate `if_invalid` option
2 parents aafe2e1 + 12043b4 commit 7365824

File tree

4 files changed

+46
-5
lines changed

4 files changed

+46
-5
lines changed

dependencies.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
# Dependencies of `io.spine:spine-base:2.0.0-SNAPSHOT.235`
3+
# Dependencies of `io.spine:spine-base:2.0.0-SNAPSHOT.236`
44

55
## Runtime
66
1. **Group** : com.google.code.findbugs. **Name** : jsr305. **Version** : 3.0.2.
@@ -845,4 +845,4 @@
845845

846846
The dependencies distributed under several licenses, are used according their commercial-use-friendly license.
847847

848-
This report was generated on **Tue Jan 07 13:42:22 CET 2025** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).
848+
This report was generated on **Wed Jan 08 16:19:17 CET 2025** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE).

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ all modules and does not describe the project structure per-subproject.
1010
-->
1111
<groupId>io.spine</groupId>
1212
<artifactId>base</artifactId>
13-
<version>2.0.0-SNAPSHOT.235</version>
13+
<version>2.0.0-SNAPSHOT.236</version>
1414

1515
<inceptionYear>2015</inceptionYear>
1616

src/main/proto/spine/options.proto

+42-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,8 @@ extend google.protobuf.FieldOptions {
148148
//
149149
bool validate = 73821;
150150

151-
// Reserved 73822 for deleted `(if_invalid)` option.
151+
// See `IfInvalidOption`.
152+
IfInvalidOption if_invalid = 73822 [deprecated = true];
152153

153154
// See `GoesOption`.
154155
GoesOption goes = 73823;
@@ -868,6 +869,46 @@ message PatternOption {
868869
}
869870
}
870871

872+
// Specifies the message to show if a validated field happens to be invalid.
873+
//
874+
// It is applicable only to fields marked with `(validate)`.
875+
//
876+
message IfInvalidOption {
877+
878+
// Do not specify error message for `(validate)`, it is no longer used by
879+
// the validation library.
880+
option deprecated = true;
881+
882+
// The default error message.
883+
option (default_message) = "The field `${parent.type}.${field.path}` of the type `${field.type}` is invalid. The field value: `${field.value}`.";
884+
885+
// A user-defined validation error format message.
886+
//
887+
// Use `error_msg` instead.
888+
//
889+
string msg_format = 1 [deprecated = true];
890+
891+
// A user-defined error message.
892+
//
893+
// The specified message may include the following placeholders:
894+
//
895+
// 1. `${field.path}` – the field path.
896+
// 2. `${field.value}` - the field value.
897+
// 3. `${field.type}` – the fully qualified name of the field type.
898+
// 4. `${parent.type}` – the fully qualified name of the field declaring type.
899+
//
900+
// The placeholders will be replaced at runtime when the error is constructed.
901+
//
902+
// Example: Using the `(if_invalid)` option.
903+
//
904+
// message Transaction {
905+
// TransactionDetails details = 1 [(validate) = true,
906+
// (if_invalid).error_msg = "The `${field.path}` field is invalid."];
907+
// }
908+
//
909+
string error_msg = 2;
910+
}
911+
871912
// Specifies that another field must be present if the option's target field is present.
872913
//
873914
// Unlike the `required_field` that handles combination of required fields, this option is useful

version.gradle.kts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2525
*/
2626

27-
val versionToPublish: String by extra("2.0.0-SNAPSHOT.235")
27+
val versionToPublish: String by extra("2.0.0-SNAPSHOT.236")

0 commit comments

Comments
 (0)