Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Merge branch 'v1.0.x' into manual-upmerge | Nicolas "Pixel" Noble | 2016-08-11 |
|\ | |||
* \ | Merge branch 'v1.0.x' of https://github.com/grpc/grpc | Nicolas "Pixel" Noble | 2016-08-03 |
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: CMakeLists.txt Makefile build.yaml package.json src/core/lib/surface/version.c src/csharp/Grpc.Auth/project.json src/csharp/Grpc.Core/VersionInfo.cs src/csharp/Grpc.Core/project.json src/csharp/Grpc.HealthCheck/project.json src/csharp/build_packages.bat src/node/health_check/package.json src/node/tools/package.json src/python/grpcio/grpc_version.py src/python/grpcio_health_checking/grpc_version.py src/python/grpcio_tests/grpc_version.py src/ruby/lib/grpc/version.rb src/ruby/tools/version.rb tools/distrib/python/grpcio_tools/grpc_version.py tools/doxygen/Doxyfile.c++ tools/doxygen/Doxyfile.c++.internal tools/doxygen/Doxyfile.core tools/doxygen/Doxyfile.core.internal | ||
| | * | removed blank line | Alexander Polcyn | 2016-08-03 |
| | | | |||
| | * | move solution dependencies to Grpc.Core.Test dependencies | Alex Polcyn | 2016-08-02 |
| | | | |||
| | * | updated hint path to updated library in csproj files | Alex Polcyn | 2016-08-02 |
| | | | |||
| | * | changed ix-async dependencies to System.Interactive.Async version 3.0.0 | Alexander Polcyn | 2016-08-02 |
| |/ | |||
| * | Merge pull request #7580 from jtattermusch/netcore_nuget_to_rtm | Jan Tattermusch | 2016-08-02 |
| |\ | | | | | | | Update .NET core dependencies to RTM | ||
| | * | fix conditional compilation for netcoreapp1.0 projects | Jan Tattermusch | 2016-07-31 |
| | | | |||
* | | | Merge branch 'v1.0.x' into manual-upmerge | Nicolas "Pixel" Noble | 2016-07-29 |
|\| | | | | | | | | | | | | | | | | | | | | Conflicts: src/ruby/pb/test/client.rb src/ruby/pb/test/server.rb tools/dockerfile/test/php7_jessie_x64/Dockerfile | ||
| | * | regenerate | Jan Tattermusch | 2016-07-30 |
| | | | |||
* | | | compare test config as objects instead of strings | Alex Polcyn | 2016-07-28 |
| |/ |/| | |||
| * | update to use new nuget client in tests | Alexander Polcyn | 2016-07-28 |
|/ | |||
* | Overhaul how the native extension is found, loaded and used | Jon Skeet | 2016-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. | ||
* | regenerate | Jan Tattermusch | 2016-06-29 |
| | |||
* | regenerate files | Jan Tattermusch | 2016-06-27 |
| | |||
* | add C# constant for GRPC_COMPRESSION_REQUEST_ALGORITHM_MD_KEY | Jan Tattermusch | 2016-06-22 |
| | |||
* | add test that C# can read compressed messages | Jan Tattermusch | 2016-06-22 |
| | |||
* | Merge pull request #6104 from jtattermusch/coreclr_support | Jan Tattermusch | 2016-06-22 |
|\ | | | | | Add experimental CoreCLR support | ||
| * | regenerate project.json files | Jan Tattermusch | 2016-06-21 |
| | | |||
| * | improve project.json files | Jan Tattermusch | 2016-06-20 |
| | | |||
| * | add debian.8-x64 to the list of runtimes | Jan Tattermusch | 2016-06-17 |
| | | |||
| * | address review comments | Jan Tattermusch | 2016-06-17 |
| | | |||
| * | migrate everything to netstandard1.5 | Jan Tattermusch | 2016-06-16 |
| | | |||
| * | dont register shutdownhooks for dotnet5.4 | Jan Tattermusch | 2016-06-15 |
| | | |||
| * | update project.json | Jan Tattermusch | 2016-06-15 |
| | | |||
| * | update .xproj files | Jan Tattermusch | 2016-06-15 |
| | | |||
| * | prevent interfering of project.json files with .csproj files in VS2015 | Jan Tattermusch | 2016-06-15 |
| | | |||
| * | add support for CoreCLR | Jan Tattermusch | 2016-06-14 |
| | | |||
* | | C# merge fixups | Jan Tattermusch | 2016-06-13 |
| | | |||
* | | Merge remote-tracking branch 'upstream/release-0_14' into HEAD | Jan Tattermusch | 2016-06-13 |
|\ \ | |/ |/| | |||
* | | allow shutdown of unstarted server | Jan Tattermusch | 2016-06-08 |
| | | |||
* | | add unstarted server test | Jan Tattermusch | 2016-06-07 |
| | | |||
* | | update tests | Jan Tattermusch | 2016-06-06 |
| | | |||
* | | add appdomain unload test | Jan Tattermusch | 2016-06-06 |
| | | |||
* | | update tests | Jan Tattermusch | 2016-06-06 |
| | | |||
* | | improve shutdown tests | Jan Tattermusch | 2016-06-06 |
| | | |||
* | | serverside shutdown hook test | Jan Tattermusch | 2016-06-06 |
| | | |||
* | | make environment shutdown asynchronous | Jan Tattermusch | 2016-06-06 |
| | | |||
* | | register appdomain events | Jan Tattermusch | 2016-06-06 |
| | | |||
* | | rename ChannelState.FatalFailure to ChannelState.Shutdown | Jan Tattermusch | 2016-06-06 |
| | | |||
* | | get rid of servicename argument for server service definition. | Jan Tattermusch | 2016-06-06 |
| | | |||
* | | Merge pull request #6712 from jtattermusch/csharp_more_completion_queues | Jan Tattermusch | 2016-05-26 |
|\ \ | | | | | | | C# add support for multiple completion queues in GrpcThreadPool. | ||
| * | | fix tests | Jan Tattermusch | 2016-05-25 |
| | | | |||
| * | | completion registry is per cq | Jan Tattermusch | 2016-05-25 |
| | | | |||
| * | | add support for multiple cqs to GrpcThreadPool | Jan Tattermusch | 2016-05-25 |
| | | | |||
* | | | clientside writes should finish with TaskCanceledException if cancel was ↵ | Jan Tattermusch | 2016-05-23 |
| | | | | | | | | | | | | previously requested | ||
* | | | adjust the tests to reflect the correct send behavior on client | Jan Tattermusch | 2016-05-23 |
| | | | |||
* | | | simplify implementation of SendCloseFromClient | Jan Tattermusch | 2016-05-23 |
| | | | |||
* | | | cleanup in tests | Jan Tattermusch | 2016-05-23 |
| | | | |||
* | | | add a server streaming api test | Jan Tattermusch | 2016-05-23 |
| | | |