Skip to content
Snippets Groups Projects
  1. Apr 04, 2019
  2. Apr 01, 2019
  3. Feb 22, 2019
  4. Feb 20, 2019
  5. Jan 10, 2019
  6. Dec 26, 2018
  7. Dec 21, 2018
  8. Dec 20, 2018
  9. Dec 15, 2018
    • Johannes Brüderl's avatar
      Swagger-gen: Major overhaul of well-known-type handling · 2cb2dfbd
      Johannes Brüderl authored
      - swaggerSchemaObject.Properties is now optional (pointer), because
        google.protobuf.Empty requires us to set Properties{} instead of nil, because
        this equals in Swagger to an empty JSON object (which is exactly what Empty
        represents and how the gateway treats it). If it's not a pointer, we can't
        distinguish between "not set" (in most cases, we don't want Properties to be
        set, instead usually just .Ref is set), and "set to an empty value e.g.
        Properties{} with length 0). We don't want Properties{} to occur except for
        specific cases, e.g. for Empty.
      - Wrappers and Empty are not rendered as definitions, now also for RPC Method
        input/output. instead, all necessary schema information is provided "in-line"
        via schema.type and schema.properties.
      - Empty is now omitted as well if it's input/output of a RPC Method.
      2cb2dfbd
  10. Dec 08, 2018
  11. Dec 07, 2018
  12. Dec 06, 2018
  13. Nov 19, 2018
    • Roman Azami's avatar
      Feature/patch2 rebased (#812) · d8ad87ee
      Roman Azami authored
      * Updated Patch behavior
      
      * Patch update with regenerated BUILD files
      
      * Added documentation for PATCH usage
      
      * Added some curl examples for PATCH
      d8ad87ee
    • Mayank's avatar
      Added support for more WKT (#816) · a73f992b
      Mayank authored
      * Added support for more WKT
      
      * Lint fix: added comments on exported functions
      
      * Lint fix: added comments on exported functions
      
      * Added end to end example to show support of StringValue in url option template
      
      * updated more example protos; removed server and proxy for now
      
      * Updated convert.go to fix float and other wkt
      
      * brazel build fix
      a73f992b
  14. Nov 17, 2018
  15. Nov 16, 2018
  16. Nov 15, 2018
  17. Nov 14, 2018
  18. Nov 13, 2018
    • Rodrigo Queiro's avatar
      Update rules_go and gazelle (#802) · a7c0cd06
      Rodrigo Queiro authored
      * Update rules_go and gazelle
      
      This requires/allows the following changes:
      - rerun Gazelle to regenerate the build files
      - fix marshal_jsonpb_test to assert correct behavior when
        EnumsAsInts == false
      - remove `repositories.bzl` (replaced by @go_googleapis)
      
      Also, enforce up-to-date build files in the CI check.
      
      Note: this version of the commit includes an out-of-date BUILD file to
      test the CI check.
      
      * Update Gopkg.toml and Gopkg.lock
      
      * Update generated proto code
      
      The generated code changed with the updated dependencies.
      
      * Fix node_test
      
      Enum values inside maps are now supported.
      a7c0cd06
    • ch3rub1m's avatar
  19. Nov 08, 2018
    • Rodrigo Queiro's avatar
      Run buildifer on Bazel files (#797) · 3ff87af9
      Rodrigo Queiro authored
      buildifier autoformats the files to give a consistent style. This makes
      edits easier for contributors that have their editor set to
      autoformat-on-save.
      
      buildifier has been added to the Bazel workspace so that the same
      version can be used by contributors and CI. You can run `bazel run
      :buildifier_check` to check for necessary changes and `bazel run
      :buildifier` to apply them.
      
      `bazel test //...` also builds all targets. These changes should make
      the CI steps run a little faster.
      3ff87af9
  20. Nov 07, 2018
    • Andrew Z Allen's avatar
      Run //:gazelle_diff in the CI · 7d429ea4
      Andrew Z Allen authored
      7d429ea4
    • Rodrigo Queiro's avatar
      Use newer Bazel repo rules (#798) · b5e23502
      Rodrigo Queiro authored
      This uses the new go_repository and http_archive rules. Using the former
      avoids a warning:
      
      DEPRECATED: the rules_go version of go_repository is deprecated. Migrate
      to the new version in @bazel_gazelle//def.bzl instead.
      
      The latter will avoid breakage when the native http_archive rule is
      disabled by default in a future version of Bazel.
      b5e23502
  21. Nov 06, 2018
  22. Nov 05, 2018
  23. Nov 03, 2018
    • Wesley Spikes's avatar
      Remove http.CloseNotifier code from Go >= 1.7 builds · dfdde994
      Wesley Spikes authored
      http.CloseNotifier is deprecated as of Go 1.11, with a note that "the
      CloseNotifier interface predates Go's context package. New code should
      use Request.Context instead."
      
      Seeing as Request.Context has been around since 1.7, it seems likely
      safe to adjust our template to omit this block whenever Request.Context
      is in use.
      dfdde994
  24. Oct 30, 2018
Loading