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: go-openapi/jsonpointer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.21.1
Choose a base ref
...
head repository: go-openapi/jsonpointer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.21.2
Choose a head ref
  • 5 commits
  • 4 files changed
  • 3 contributors

Commits on Mar 16, 2025

  1. ci: fixed broken codecov coverage upload

    Signed-off-by: Frederic BIDON <fredbi@yahoo.com>
    fredbi committed Mar 16, 2025
    Configuration menu
    Copy the full SHA
    12589f2 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2025

  1. ci: fixed codecov upload

    Fixed broken test coverage upload to codecov with codecov-action@v5.
    
        * fixed tokenless upload (now supported with codecov v5)
        * fixed flags for codecov
        * fixed coverage for windows (now use bash instead of powershell)
    
    Signed-off-by: Frederic BIDON <fredbi@yahoo.com>
    fredbi committed Mar 17, 2025
    Configuration menu
    Copy the full SHA
    db10369 View commit details
    Browse the repository at this point in the history

Commits on Mar 28, 2025

  1. ci: updated config for golangci-lint v2

    Signed-off-by: Frederic BIDON <fredbi@yahoo.com>
    fredbi committed Mar 28, 2025
    Configuration menu
    Copy the full SHA
    76476c2 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2025

  1. Bump golangci/golangci-lint-action in the development-dependencies group

    Bumps the development-dependencies group with 1 update: [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action).
    
    
    Updates `golangci/golangci-lint-action` from 7 to 8
    - [Release notes](https://github.com/golangci/golangci-lint-action/releases)
    - [Commits](golangci/golangci-lint-action@v7...v8)
    
    ---
    updated-dependencies:
    - dependency-name: golangci/golangci-lint-action
      dependency-version: '8'
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: development-dependencies
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored and github-actions[bot] committed May 9, 2025
    Configuration menu
    Copy the full SHA
    f485c21 View commit details
    Browse the repository at this point in the history

Commits on Aug 9, 2025

  1. fix: prevent panic on nil intermediate values during Set operations

    Add nil checks in setSingleImpl() and traversal loop to handle nil
    intermediate values gracefully. Per RFC 6901 Section 7, implementations
    must raise error conditions for unresolvable paths instead of panicking.
    
    - Add isNil() check before reflection operations in setSingleImpl()
    - Add nil validation in set() method traversal loop
    - Return descriptive errors: "cannot set field X on nil value"
    - Add comprehensive test cases for nil traversal scenarios
    
    Fixes panic: "reflect: call of reflect.Value.Type on zero Value" when
    traversing JSON paths containing nil intermediate values.
    
    Signed-off-by: Matthew F Leader <mleader@redhat.com>
    mfleader authored and fredbi committed Aug 9, 2025
    Configuration menu
    Copy the full SHA
    2247499 View commit details
    Browse the repository at this point in the history
Loading