aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Merge pull request #13531 from grpc/fix-workaround-var-initGravatar Muxi Yan2017-11-28
|\ | | | | Fix uninitialized variable in workaround_cronet_compression_filter
* \ Merge pull request #13527 from mehrdada/upmerge-v18xGravatar Mehrdad Afshari2017-11-28
|\ \ | | | | | | | | | | | | Upmerge v1.8.x to master after version bump Prevents merge conflicts on upmerges from the branch
* \ \ Merge pull request #13448 from camillol/fixalignGravatar David G. Quintas2017-11-28
|\ \ \ | | | | | | | | Fix alignment issue in gpr_murmur_hash3
* \ \ \ Merge pull request #13525 from vjpai/desecureGravatar Vijay Pai2017-11-28
|\ \ \ \ | | | | | | | | | | Remove unnecessary secure dependences
| | | | * Fix uninitialized variableGravatar Muxi Yan2017-11-28
| |_|_|/ |/| | |
* | | | Merge pull request #13524 from adelez/timeoutGravatar adelez2017-11-28
|\ \ \ \ | | | | | | | | | | increase timeout
| | * | | Remove bash-isms from sanity testGravatar Vijay Pai2017-11-28
| | | | |
| | | | * Merge remote-tracking branch 'origin/v1.8.x'Gravatar Mehrdad Afshari2017-11-28
| |_|_|/| |/| | | | | | | | | | | | | | Upmerge to master after bumping version to v1.8.x
* | | | | Merge pull request #13515 from mehrdada/bump-master-versionGravatar Mehrdad Afshari2017-11-28
|\ \ \ \ \ | | | | | | | | | | | | Bump 1.8.0-dev to 1.9.0-dev
* \ \ \ \ \ Merge pull request #13153 from bmarkons/patch-1Gravatar apolcyn2017-11-28
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add health statuses for multiple services at once
| | | | * | | Sanity check to make sure that known unsecure target doesn't require securityGravatar Vijay Pai2017-11-28
| | | | | | |
* | | | | | | Merge pull request #13314 from vjpai/transport_explainerGravatar Vijay Pai2017-11-28
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Transport explainer document
* \ \ \ \ \ \ \ Merge pull request #13491 from vjpai/destackGravatar Vijay Pai2017-11-28
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Pop lockfree stack off core implementation
| | | | | | * | | Fix examples build fileGravatar Vijay Pai2017-11-28
| | | | | | | | |
| | | | | | * | | Remove unnecessary secure dependencesGravatar Vijay Pai2017-11-28
| |_|_|_|_|/ / / |/| | | | | | |
| | | | | * | | increase timeoutGravatar Adele Zhou2017-11-28
| |_|_|_|/ / / |/| | | | | |
| | | | | * | Fix alignment issue in gpr_murmur_hash3Gravatar Camillo Lugaresi2017-11-28
| |_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | This function cast a void* to a uint32_t*. This is invalid, since a uint32_t* must be 32-bit-aligned, while the input key clearly isn't. Even though the function later uses memcpy to access the memory, by that point the compiler is allowed to assume that the pointer is aligned, and so it can output code that does an unaligned memory access. In practice, this resulted in a crash on some devices when this code is compiled with optimizations for 32-bit ARM with the Android NDK r14.
* | | | | | Merge pull request #12710 from apolcyn/speedup_ruby_end2end_testsGravatar apolcyn2017-11-27
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix a race in ruby server shutdown and cleanup for ruby tests
| * | | | | | Remove some sleeps in ruby tests and fix test server shutdownGravatar Alex Polcyn2017-11-27
| | | | | | |
| | | | | | * Merge pull request #13514 from mehrdada/bump-1.8.0-pre1Gravatar Mehrdad Afshari2017-11-27
| | | | | | |\ | | | | | | | | | | | | | | | | Bump 1.8.0-dev to 1.8.0-pre1
* | | | | | | \ Merge pull request #13453 from apolcyn/fix_error_when_interop_lang_skippedGravatar apolcyn2017-11-27
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Fix error when a language skips a certain version in interop test
* \ \ \ \ \ \ \ \ Merge pull request #13512 from grpc/fix-subchannel-indexGravatar Muxi Yan2017-11-28
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Fix compiler error on `need_to_unref_constructed`
| | | | | | | * | | Bump 1.8.0-dev to 1.9.0-devGravatar Mehrdad Afshari2017-11-27
| |_|_|_|_|_|/ / / |/| | | | | | | |
| | | | | | | | * Bump 1.8.0-dev to 1.8.0-pre1Gravatar Mehrdad Afshari2017-11-27
| | | | | | | |/
* | | | | | | | Merge pull request #13099 from muxi/fix-objc-void-funcGravatar Muxi Yan2017-11-28
|\ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ |/| | | | | | | Fix warning "declaration is not a prototype"
| | * | | | | | Fix compiler error on need_to_unref_constructedGravatar Muxi Yan2017-11-27
| |/ / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `need_to_unref_constructed` is not initialized, making Xcode compiler [complain on Sierra](https://sponge-qa.corp.google.com/invocation?tab=Kokoro&id=0ff33b71-2f61-4ad6-837e-5e43043c282a&searchFor=): ``` /Volumes/BuildData/tmpfs/src/github/grpc/workspace_objc_macos_dbg_native/src/core/ext/filters/client_channel/subchannel_index.cc:206:7: error: variable 'need_to_unref_constructed' may be uninitialized when used here [-Werror,-Wconditional-uninitialized] ```
| * | | | | | generate_projectsGravatar Muxi Yan2017-11-27
| | | | | | |
| * | | | | | Merge remote-tracking branch 'upstream/master' into fix-objc-void-funcGravatar Muxi Yan2017-11-27
| |\ \ \ \ \ \ | |/ / / / / / |/| | | | | |
* | | | | | | Merge pull request #13437 from muxi/fix-forward-declarationGravatar Muxi Yan2017-11-28
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix ObjC forward declaration
* \ \ \ \ \ \ \ Merge pull request #13499 from mehrdada/bump-protobuf-python-depGravatar Mehrdad Afshari2017-11-27
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Update Python dependency to protobuf v3.5.0.post1
* \ \ \ \ \ \ \ \ Merge pull request #13511 from ↵Gravatar Vijay Pai2017-11-27
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | grpc/revert-13510-revert-12938-fix-variable-interpolation Roll-forward: "Do not interpolate variables in leading comments"
| * | | | | | | | | Revert "Revert "Do not interpolate variables in leading comments.""Gravatar Vijay Pai2017-11-27
|/ / / / / / / / /
* | | | | | | | | Merge pull request #13510 from grpc/revert-12938-fix-variable-interpolationGravatar David G. Quintas2017-11-27
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Revert "Do not interpolate variables in leading comments."
| | * | | | | | | | Update Python dependency to protobuf v3.5.0.post1Gravatar Mehrdad Afshari2017-11-27
| | | | | | | | | |
* | | | | | | | | | Merge pull request #13508 from adelez/remove_node17Gravatar adelez2017-11-27
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Disable node 1.7
* \ \ \ \ \ \ \ \ \ \ Merge pull request #13488 from vcaesar/node-prGravatar Michael Lumish2017-11-27
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix node source code link error
| | | * | | | | | | | | Revert "Do not interpolate variables in leading comments."Gravatar David G. Quintas2017-11-27
| |_|/ / / / / / / / / |/| | | | | | | | | |
* | | | | | | | | | | Merge pull request #13507 from muxi/fix-objc-c++-syntaxGravatar Muxi Yan2017-11-28
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Fix ObjC C++ syntax error
* \ \ \ \ \ \ \ \ \ \ \ Merge pull request #13419 from nlopezgi/masterGravatar adelez2017-11-27
|\ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|/ / / / / / / / |/| | | | | | | | | | | change use of directory as input to data field for to use of native.glob in grpc_fuzzer.bzl
| | | | * | | | | | | | Disable node 1.7Gravatar Adele Zhou2017-11-27
| |_|_|/ / / / / / / / |/| | | | | | | | | |
| | * | | | | | | | | Fix ObjC C++ syntax errorGravatar Muxi Yan2017-11-27
| |/ / / / / / / / / |/| | | | | | | | |
* | | | | | | | | | Merge pull request #13493 from mehrdada/bump-protobuf-3.5.0Gravatar Mehrdad Afshari2017-11-24
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Bump third_party/protobuf submodule to v3.5.0
| * | | | | | | | | | Bump third_party/protobuf submodule to v3.5.0Gravatar Mehrdad Afshari2017-11-24
|/ / / / / / / / / /
* | | | | | | | | | Merge pull request #13490 from jtattermusch/fix_sierra_buildGravatar Jan Tattermusch2017-11-24
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Fix build on MacOS sierra.
* \ \ \ \ \ \ \ \ \ \ Merge pull request #13484 from yang-g/msanGravatar Yang Gao2017-11-22
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Enable check for use-after-dtor
* \ \ \ \ \ \ \ \ \ \ \ Merge pull request #13398 from adelez/csharp_101Gravatar adelez2017-11-22
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Adding v1.7.x for some languages
* \ \ \ \ \ \ \ \ \ \ \ \ Merge pull request #13489 from mehrdada/kill-sleepGravatar Mehrdad Afshari2017-11-22
|\ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Kill off unnecessary sleep in route_guide example
| | * | | | | | | | | | | | Give a command example with multiple languages.Gravatar Adele Zhou2017-11-22
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Use special VIPGravatar Adele Zhou2017-11-22
| | | | | | | | | | | | | |
| | * | | | | | | | | | | | Switch back to using template located at _IMAGE_BUILDER because the previous ↵Gravatar Adele Zhou2017-11-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | change will break Go, Java and Node.