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: emicklei/go-restful
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.11.0
Choose a base ref
...
head repository: emicklei/go-restful
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.12.1
Choose a head ref
  • 15 commits
  • 91 files changed
  • 6 contributors

Commits on Aug 19, 2023

  1. update all tests to use 3.11

    emicklei committed Aug 19, 2023
    Configuration menu
    Copy the full SHA
    a328c20 View commit details
    Browse the repository at this point in the history

Commits on Dec 24, 2023

  1. Configuration menu
    Copy the full SHA
    aaf45fd View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2024

  1. remove the dependency on github.com/json-iterator/go. (#539)

    That module uses github.com/modern-go/reflect2 which is broken.
    
    First, it is brittle because it relies on golang's implementation
    details that are not stable across golang releases. For example,
    reflect2 was broken when go 1.18 came out.
    
    Second, reflect2 is effectively unmaintained:
      modern-go/reflect2#24 (comment)
    
    Json-iterator itself has had correctness issues like
      json-iterator/go#413.
    
    The Kubernetes project has mostly removed the dependency on json-iterator
    in patches like
      kubernetes/kubernetes#105030.
    
    Moreover, the Kubernetes authors found it out that json-iterator puts
    a lot of load on the allocator, so even the performance gains are
    questionable.
    
    Let us remove dependencies on json-iterator and reflect2.
    dominiquelefevre authored Jan 3, 2024
    Configuration menu
    Copy the full SHA
    290805f View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. Configuration menu
    Copy the full SHA
    0b7e009 View commit details
    Browse the repository at this point in the history
  2. update history

    Ernest Micklei committed Jan 9, 2024
    Configuration menu
    Copy the full SHA
    f4169b2 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2024

  1. Configuration menu
    Copy the full SHA
    c0e56c8 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2024

  1. Configuration menu
    Copy the full SHA
    b3a6f77 View commit details
    Browse the repository at this point in the history
  2. add Flush method #529 (#538)

    * add Flush method
    
    * fix doc
    emicklei authored Mar 11, 2024
    Configuration menu
    Copy the full SHA
    951a11c View commit details
    Browse the repository at this point in the history
  3. update chgs

    emicklei committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    d027240 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2024

  1. Configuration menu
    Copy the full SHA
    59b17dc View commit details
    Browse the repository at this point in the history

Commits on May 21, 2024

  1. Configuration menu
    Copy the full SHA
    26f2628 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. better naming for routing related variable (#548)

    * better naming for routing related variable
    
    * prefix each for vars in for.loop
    haitch authored May 27, 2024
    Configuration menu
    Copy the full SHA
    9a7c368 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2024

  1. golang workflows for restful (#550)

    * go test workflow
    
    * dependbot update
    
    * target v3 branch
    
    * use v3 branch
    haitch authored May 28, 2024
    Configuration menu
    Copy the full SHA
    77fc969 View commit details
    Browse the repository at this point in the history
  2. fix misroute when dealing multiple webservice with regex (#549)

    * better naming for routing related variable
    
    * extra score on regularMatchesPathToken when detectWebServices
    
    * add unittest
    
    * little tweaks
    
    * prefix each for vars in for.loop
    
    * rebase
    
    * code lint
    haitch authored May 28, 2024
    Configuration menu
    Copy the full SHA
    e5fed1c View commit details
    Browse the repository at this point in the history
  3. update history

    emicklei committed May 28, 2024
    Configuration menu
    Copy the full SHA
    4e4aaa1 View commit details
    Browse the repository at this point in the history
Loading