Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | upgrade Moq to version that supports netstandard1.3 | 2016-09-15 | |
| | |||
* | cleanup of project.json files | 2016-09-15 | |
| | |||
* | update csproj files to Google.Protobuf to 3.0.0 | 2016-09-15 | |
| | |||
* | update Protobuf to 3.0.0 in project.json projects | 2016-09-15 | |
| | |||
* | update .csproj projects to Google.Apis.Auth to 1.16.0 | 2016-09-15 | |
| | |||
* | update Google.Apis.Auth to 1.16.0 for project.json projects | 2016-09-15 | |
| | |||
* | destroy byte buffer reader after use | 2016-09-01 | |
| | |||
* | Bumping version to 1.0.1-pre1. | 2016-08-18 | |
| | |||
* | Removing pre2 flag. | 2016-08-16 | |
| | |||
* | Merge pull request #7492 from apolcyn/return_val_check | 2016-08-15 | |
|\ | | | | | Add csharp check to return val of byte_buffer_reader_init | ||
* | | clean up sanity test | 2016-08-14 | |
| | | |||
* | | Merge pull request #7671 from jtattermusch/coreclr_commandlineparser | 2016-08-14 | |
|\ \ | | | | | | | Use CommandLineParser that supports CoreCLR | ||
* \ \ | Merge pull request #7598 from apolcyn/fix_sanity_test_diff_ga | 2016-08-13 | |
|\ \ \ | | | | | | | | | compare test config as objects instead of strings | ||
| | * | | update to the newest CommandLineParser API | 2016-08-13 | |
| | | | | |||
| | * | | migrate to the new CommandLineParser API | 2016-08-13 | |
| | | | | |||
| | * | | use CommandLineParser with CoreCLR support | 2016-08-13 | |
| |/ / |/| | | |||
* | | | Merge pull request #7660 from jtattermusch/google_apis_auth_coreclr | 2016-08-13 | |
|\ \ \ | | | | | | | | | Updgrade Google.Apis.Auth dependency to 0.15 | ||
* | | | | Updating build package C# scripts. | 2016-08-12 | |
| | | | | |||
| * | | | remove leftover app.config | 2016-08-11 | |
| | | | | |||
| * | | | update Grpc.Auth.nuspec | 2016-08-11 | |
| | | | | |||
| * | | | update csproj project to Google.Apis.Auth 0.15.0 | 2016-08-11 | |
| | | | | |||
| * | | | remove Google.Apis.Auth related CoreCLR todos | 2016-08-11 | |
| | | | | |||
| * | | | upgrade Google.Apis.Auth dependency to 0.15.0 | 2016-08-11 | |
| | | | | |||
* | | | | add all runtime nodes back into testing packages | 2016-08-09 | |
|/ / / | |||
* | | | removed blank line | 2016-08-03 | |
| | | | |||
* | | | move solution dependencies to Grpc.Core.Test dependencies | 2016-08-02 | |
| | | | |||
* | | | update templates to not include runtime sections in project.json | 2016-08-02 | |
| | | | |||
* | | | removed runtime nodes from project.json libraries | 2016-08-02 | |
| | | | |||
* | | | updated hint path to updated library in csproj files | 2016-08-02 | |
| | | | |||
* | | | ran script to update actual docker files | 2016-08-02 | |
| | | | |||
* | | | changed ix-async dependencies to System.Interactive.Async version 3.0.0 | 2016-08-02 | |
| | | | |||
* | | | Merge pull request #7580 from jtattermusch/netcore_nuget_to_rtm | 2016-08-02 | |
|\ \ \ | | | | | | | | | Update .NET core dependencies to RTM | ||
| | * | | compare test config as objects instead of strings | 2016-08-01 | |
| |/ / |/| | | |||
| * | | fix conditional compilation for netcoreapp1.0 projects | 2016-07-31 | |
| | | | |||
* | | | Bumping to 1.0.0-pre2. | 2016-07-29 | |
| | | | |||
| * | | regenerate | 2016-07-30 | |
| | | | |||
* | | | update to use new nuget client in tests | 2016-07-28 | |
|/ / | |||
| * | Add csharp check to return val of byte_buffer_reader_init | 2016-07-21 | |
|/ | |||
* | Overhaul how the native extension is found, loaded and used | 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. | ||
* | Flagging master as 1.0.0-pre1. | 2016-07-12 | |
| | |||
* | Merge branch 'release-0_15' into upmerge-master | 2016-07-12 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: Makefile build.yaml gRPC-Core.podspec gRPC.podspec package.json package.xml 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/tools/package.json src/python/grpcio/grpc/__init__.py src/python/grpcio/grpc_version.py src/python/grpcio_tests/tests/unit/_rpc_test.py src/ruby/lib/grpc/version.rb src/ruby/tools/version.rb templates/gRPC.podspec.template 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 tools/run_tests/port_server.py | ||
| * | Updated release version to 0.15.1 | 2016-07-01 | |
| | | |||
* | | pr comments | 2016-07-01 | |
| | | |||
* | | Return success status of grpc_byte_buffer_reader | 2016-06-30 | |
| | | |||
* | | regenerate | 2016-06-29 | |
| | | |||
* | | fix files/mappings in Grpc.Core nuget | 2016-06-29 | |
| | | |||
* | | regenerate files | 2016-06-27 | |
| | | |||
* | | share Version.cs among all project.json projects | 2016-06-27 | |
| | | |||
| * | Update README.md | 2016-06-27 | |
| | | |||
| * | Update version to 0.15.0 | 2016-06-24 | |
| | |