1. 13 Jul, 2017 2 commits
  2. 12 Jul, 2017 1 commit
  3. 10 Jul, 2017 2 commits
  4. 09 Jul, 2017 1 commit
  5. 07 Jul, 2017 1 commit
  6. 06 Jul, 2017 1 commit
  7. 05 Jul, 2017 3 commits
  8. 04 Jul, 2017 1 commit
  9. 03 Jul, 2017 1 commit
    • Jon Skeet's avatar
      Make Any easier to work with in C# · 62d7fe56
      Jon Skeet authored
      - Add a TryUnpack method which doesn't throw if the type is wrong
      - Make GetTypeName public for easier determination of the message type
      
      Fixes #3294.
      62d7fe56
  10. 30 Jun, 2017 1 commit
  11. 29 Jun, 2017 2 commits
  12. 28 Jun, 2017 1 commit
  13. 27 Jun, 2017 1 commit
    • Brent Shaffer's avatar
      adds PHPDoc @return and @param for getters and setters respectively (#3131) · 12acbc26
      Brent Shaffer authored
      * adds PHPDoc @return and @param for getters and setters respectively
      
      * addresses changes in PR review
      
      * adds documentation tests
      
      * Update php_generator:
      
      - Prepend \ to names where required
      - Remove <pre> tags
      - Update protobuf field comments
      
      * Updates class files with the protobuf changes
      
      * Addresses review comments
      
      * removes Protobuf Type line from PHP generated classes
      
      * fixes phpdoc test
      
      * adds array types to phpdoc
      12acbc26
  14. 26 Jun, 2017 1 commit
  15. 24 Jun, 2017 2 commits
  16. 23 Jun, 2017 4 commits
  17. 22 Jun, 2017 2 commits
  18. 20 Jun, 2017 1 commit
    • Ryan Gordon's avatar
      Switch to addEnumType to fix fatal error (#3225) · 703cd8e1
      Ryan Gordon authored
      * Switch to addEnumType to fix fatal error
      
      * Fixing more cases of HHVM incompatibility
      
      * Updating tests to be hhvm compatible
      
      * Fixing tests
      
      * Fixing merge
      
      * Don't use call_user_func, should hopefully fix tests
      
      * Fixing spelling
      
      * Fixing another misspelling in a test
      
      * Fixing placement of append and kvUpdate functions
      
      * Actually fix function helpers
      
      * Remove double addEnumType. How did this ever work?
      
      * Fixing a couple more tests
      
      * Only use the setter if the return value isn't an object
      703cd8e1
  19. 19 Jun, 2017 6 commits
  20. 17 Jun, 2017 1 commit
  21. 16 Jun, 2017 5 commits
    • Thomas Van Lenten's avatar
      Raise the number of digits used for floats. · dd19b876
      Thomas Van Lenten authored
      About 1.5% of all IEEE754 single-precision numbers require nine
      decimal digits to represent accurately.
      dd19b876
    • Feng Xiao's avatar
      Merge pull request #3237 from calder/patch-1 · 710543d9
      Feng Xiao authored
      Qualify string in java_options.h
      710543d9
    • Feng Xiao's avatar
      Merge pull request #3236 from buchgr/bazel-links · 491b3204
      Feng Xiao authored
      bazel: add bazel symlinks to .gitignore
      491b3204
    • Feng Xiao's avatar
      Merge pull request #3235 from buchgr/java-target · 888e287e
      Feng Xiao authored
      bazel: Make compiled jars java 6 binary compatible.
      888e287e
    • Calder Coalson's avatar
      Qualify string in java_options.h · 4b36d400
      Calder Coalson authored
      Building the protobuf compiler with Bazel fails to resolve the unqualifed "string"s in java_options.h:
      
      ```
      ERROR: .../external/com_google_protobuf/BUILD:248:1: C++ compilation of rule '@com_google_protobuf//:protoc_lib' failed: Process exited with status 1 [sandboxed].
      In file included from external/com_google_protobuf/src/google/protobuf/compiler/java/java_context.h:41:0,
                       from external/com_google_protobuf/src/google/protobuf/compiler/java/java_enum_field_lite.cc:38:
      external/com_google_protobuf/src/google/protobuf/compiler/java/java_options.h:59:3: error: 'string' does not name a type
         string annotation_list_file;
         ^
      external/com_google_protobuf/src/google/protobuf/compiler/java/java_options.h:62:3: error: 'string' does not name a type
         string output_list_file;
         ^
      Use --strategy=CppCompile=standalone to disable sandboxing for the failing actions.
      INFO: Elapsed time: 41.487s, Critical Path: 6.20s
      //interpreter:eval_test                                               NO STATUS
      
      Executed 0 out of 1 test: 1 was skipped.
      ```
      4b36d400