8000 Comparing v0.3.4...v0.4.0 · bufbuild/protovalidate-go · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bufbuild/protovalidate-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.4
Choose a base ref
...
head repository: bufbuild/protovalidate-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.4.0
Choose a head ref
  • 5 commits
  • 13 files changed
  • 5 contributors

Commits on Oct 24, 2023

  1. Fix bug where cel expression cannot compile for fields of type google…

    ….protobuf.Any (#65)
    
    This fixes the problem where cel expressions defined on fields of type
    `google.protobuf.Any` cannot compile.
    
    For example, when validating a `FieldOfTypeAny` with its `any` field set
    to a `Simple`, it would fail with
    ```
    runtime error: error evaluating any_type: unknown type: 'tests.example.v1.Simple'
    ```
    ```
    message Simple {
      string s = 1;
    }
    
    message FieldOfTypeAny {
      google.protobuf.Any any = 1 [(buf.validate.field).cel = {
        id: "any_type",
        message: "this should never fail",
        expression: "this == this"
      }];
    }
    ```
    oliversun9 authored Oct 24, 2023
    Configuration menu
    Copy the full SHA
    60a89b5 View commit details
    Browse the repository at this point in the history

Commits on Oct 26, 2023

  1. Link to connect/validate-go (#66)

    Helps users to find the RPC interceptor implementation. 
    
    https://github.com/connectrpc/validate-go
    emcfarlane authored Oct 26, 2023
    Configuration menu
    Copy the full SHA
    3ebe4f5 View commit details
    Browse the repository at this point in the history
  2. Run CI on Go 1.19 (#72)

    akshayjshah authored Oct 26, 2023
    Configuration menu
    Copy the full SHA
    1ef4888 View commit details
    Browse the repository at this point in the history
  3. Use make lint in CI instead of golangci-lint action (#70)

    Run `make lint` in CI instead of using the action to make sure CI is
    consistent with running `make lint` locally.
    oliversun9 authored Oct 26, 2023
    Configuration menu
    Copy the full SHA
    c660246 View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2023

  1. Add isIpPrefix (#53)

    Related to: bufbuild/protovalidate#99
    
    ---------
    
    Co-authored-by: Chris Roche <github@rodaine.com>
    higebu and rodaine authored Oct 30, 2023
    Configuration menu
    Copy the full SHA
    51ba86b View commit details
    Browse the repository at this point in the history
Loading
0