aboutsummaryrefslogtreecommitdiffhomepage
Commit message (Collapse)AuthorAge
* Merge pull request #7416 from soltanmm/3DGravatar kpayson642016-07-18
|\ | | | | Build Python distributions for Python 3
* \ Merge pull request #7371 from nicolasnoble/udp_server_errorsGravatar kpayson642016-07-18
|\ \ | | | | | | Adding UDP server error handling.
* \ \ Merge pull request #7426 from soltanmm/distribtestGravatar kpayson642016-07-18
|\ \ \ | | | | | | | | Test Python source distribution installation
| | | * Support long paths in make_grpcio_tools.pyGravatar Masood Malekghassemi2016-07-16
| | | |
| | | * Use normalized path separators in `setup.py`sGravatar Masood Malekghassemi2016-07-16
| | | |
| | | * Handle distutils command idiosyncraciesGravatar Masood Malekghassemi2016-07-16
| | | |
| | | * Change directory when building grpcio-toolsGravatar Masood Malekghassemi2016-07-16
| | | |
| | | * Increase build timeouts for Python artifactsGravatar Masood Malekghassemi2016-07-16
| | | |
| | | * Build Python distributions for Python 3Gravatar Masood Malekghassemi2016-07-16
| | | |
| | | * Allow make_grpcio_tools.py to be invoked in parallelGravatar Masood Malekghassemi2016-07-16
| | | |
| | | * Patch `spawn` for Python 'unix' compilers insteadGravatar Masood Malekghassemi2016-07-16
| |_|/ |/| | | | | | | | | | | | | | Before we patched the link command, now we just patch `spawn` as an updatable catch-all solution to ARG_MAX limitations on bash for MSYS and MinGW and friends.
| * | Install virtualenv in Python distribtest DockerfilesGravatar Masood Malekghassemi2016-07-15
| | |
| * | Test Python source distribution installationGravatar Masood Malekghassemi2016-07-15
|/ /
* | Merge pull request #7401 from jskeet/fix-native-v1Gravatar kpayson642016-07-15
|\ \ | | | | | | Overhaul how the native extension is found, loaded and used
* \ \ Merge pull request #7402 from thinkerou/fix_auth_versionGravatar Stanley Cheung2016-07-15
|\ \ \ | | | | | | | | PHP: unify the version of google/auth
* \ \ \ Merge pull request #7381 from jboeuf/ssl_roots_gaGravatar Nicolas Noble2016-07-15
|\ \ \ \ | | | | | | | | | | Checking in new roots.
| | * | | unify the version of google/authGravatar thinkerou2016-07-15
| |/ / / |/| | |
| | * | Overhaul how the native extension is found, loaded and usedGravatar Jon Skeet2016-07-15
| |/ / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The goal of this is to fix #7230. The changes here are: - The layout in the nuget package; the files are now in `/runtimes/{os}/native/{library}` - The filename of each library, which now includes the architecture, e.g `grpc_csharp_ext.x64.dll` - The targets file used to copy those files in msbuild-based projects; note that we now don't build up a folder structure. - The way the functions are found Before this change, on Linux and OSX we used to find library symbols manually, and use DllImport on Windows. With this change, the name of the library file changes based on architecture, so `DllImport` doesn't work. Instead, we have to use `GetProcAddress` to fetch the function. This is further convoluted by the convention on Windows-x86 to prefix the function name with `_` and suffix it based on the stack size of the arguments. We can't easily tell the argument size here, so we just try 0, 4, 8...128. (128 bytes should be enough for anyone.) This is inefficient, but it's a one-time hit with a known number of functions, and doesn't seem to have any significant impact. The benefit of this in code is we don't need the DllImports any more, and we don't need to conditionally use `FindSymbol` - we just use it for everything, so things are rather more uniform and tidy. The further benefit of this is that the library name is no longer tied to a particular filename format - so if someone wanted to have a directory with the libraries for every version in, with the version in the filename, we'd handle that just fine. (At least once Testing: - Windows: - Console app under msbuild, dotnet cli and DNX - ASP.NET Classic under msbuild - ASP.NET Core (still running under net451) - Ubuntu 16.04 - Console app under dotnet cli, run with dotnet run and mono - OSX: - Console app under dotnet cli, run with dotnet run and mono Under dotnet cli, a dependency on `Microsoft.NETCore.Platforms` is required in order to force the libraries to be copied. This change does *not* further enable .NET Core. It attempts to keep the existing experimental .NET Core project files in line with the msbuild files, but I expect further work to be required for .NET Core, which has a different build/publication model.
* | | Merge pull request #7376 from grpc/jcanizales-fix-protobuf-importGravatar kpayson642016-07-14
|\ \ \ | | | | | | | | Don't always import Protobuf like a framework
* \ \ \ Merge pull request #7384 from soltanmm/import-stallionGravatar kpayson642016-07-14
|\ \ \ \ | | | | | | | | | | Move Python.h include out of loader code
* \ \ \ \ Merge pull request #7389 from stanley-cheung/php-fix-interop-test-1_0Gravatar Stanley Cheung2016-07-14
|\ \ \ \ \ | | | | | | | | | | | | PHP: fix interop tests breakage
* \ \ \ \ \ Merge pull request #7378 from kpayson64/py_doc_touchupGravatar kpayson642016-07-14
|\ \ \ \ \ \ | | | | | | | | | | | | | | Document rpc details as string type
| | * | | | | php: fix interop tests breakageGravatar Stanley Cheung2016-07-13
| |/ / / / / |/| | | | |
| | * | | | Remove Python 'loader' hackGravatar Masood Malekghassemi2016-07-13
| | | | | |
* | | | | | Merge pull request #7346 from murgatroid99/ruby_ga_documentation_fixesGravatar Nicolas Noble2016-07-13
|\ \ \ \ \ \ | | | | | | | | | | | | | | Improved some Ruby inline documentation
| | | | | | * And remaining random leftover items.Gravatar Nicolas "Pixel" Noble2016-07-14
| | | | | | |
| | | * | | | Move Python.h include out of loader codeGravatar Masood Malekghassemi2016-07-13
| |_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | To make a certain private code base work in a certain way nicer than the current way.
| | | | * | Checking in new roots.Gravatar Julien Boeuf2016-07-13
| |_|_|/ / |/| | | |
* | | | | Merge pull request #7363 from stanley-cheung/php-prepare-for-ga-v1_0branchGravatar kpayson642016-07-13
|\ \ \ \ \ | | | | | | | | | | | | php: prepare for GA release
* \ \ \ \ \ Merge pull request #7375 from soltanmm/zomgGravatar kpayson642016-07-13
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fix missing source file
* \ \ \ \ \ \ Merge pull request #7354 from soltanmm/prescribe-more-restGravatar kpayson642016-07-13
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Restructure reStructured text to be valid
| | | | | * | | Document rpc details as string typeGravatar Ken Payson2016-07-13
| | | | | | | |
| | | | | | * | Don't always import Protobuf like a frameworkGravatar Jorge Canizales2016-07-13
| |_|_|_|_|/ / |/| | | | | | | | | | | | | If the macro isn't set, e.g. for Bazel compilations, import the way it was done before https://github.com/grpc/grpc/commit/fb4a54541a6e00c43e1671cda0a25e2eda4792df.
| | * | | | | Fix missing source fileGravatar Masood Malekghassemi2016-07-13
| |/ / / / / |/| | | | |
* | | | | | Merge pull request #7366 from y-zeng/fix-chttp2-parsing-msgGravatar kpayson642016-07-13
|\ \ \ \ \ \ | |_|_|_|/ / |/| | | | | Remove unnecessary "Failed parsing HTTP2" detail
| | | | | * Use the new socket creation api in udp_server.cGravatar Robbie Shade2016-07-13
| | | | | |
| | | | | * Use grpc_error instead of bool in udp_server's on_readGravatar Robbie Shade2016-07-13
| | | | | |
| | | | | * Correct error handling for failed set_sockopt calls in udp_server.cGravatar Robbie Shade2016-07-13
| | | | | |
| | | * | | add back version to composer.json fileGravatar Stanley Cheung2016-07-13
| | | | | |
* | | | | | Merge pull request #7359 from jcanizales/p0-protoc-podspecGravatar makdharma2016-07-13
|\ \ \ \ \ \ | | | | | | | | | | | | | | Distribute ProtoC and the plugin as pods
| | | | * | | php: prepare for GA releaseGravatar Stanley Cheung2016-07-13
| |_|_|/ / / |/| | | | |
* | | | | | Merge pull request #7355 from soltanmm/count-bleckGravatar kpayson642016-07-13
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add special methods to generated Python docs
| | * | | | | Set Travis clone depth to 1, to alleviate workloadGravatar Jorge Canizales2016-07-13
| | | | | | | | | | | | | | | | | | | | | This should make Travis only test the last commit of every PR.
| | * | | | | Fix Travis not finding !ProtoCompiler-gRPC.podspecGravatar Jorge Canizales2016-07-13
| | | | | | |
* | | | | | | Merge pull request #7356 from nicolasnoble/cherry-pick-fixGravatar Nicolas Noble2016-07-12
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | Use test roots.pem in test - cherry-picking for v1.0.x
| * | | | | | Use test roots.pem in testGravatar yang-g2016-07-13
|/ / / / / /
* | | | | | Merge pull request #7350 from nicolasnoble/upmerge-0_15-1_0Gravatar Jorge Canizales2016-07-12
|\ \ \ \ \ \ | | | | | | | | | | | | | | Upmerge 0.15 -> 1.0
* \ \ \ \ \ \ Merge pull request #7338 from kpayson64/remove_py_cruftGravatar kpayson642016-07-12
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Removed early adopter code
| | | * | | | | Add special methods to generated Python docsGravatar Masood Malekghassemi2016-07-12
| |_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | Also removes an old-now-spurious `make` invocation from the docgen.py helper script.
| | | | | * | Restructure reStructured text to be validGravatar Masood Malekghassemi2016-07-12
| |_|_|_|/ / |/| | | | |