Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | s/std::string/grpc::string/g | Craig Tiller | 2016-11-08 |
| | |||
* | Get user agent right | Craig Tiller | 2016-11-04 |
| | |||
* | Merge pull request #8367 from soltanmm-google/blurb | Masood Malekghassemi | 2016-10-28 |
|\ | | | | | Partially implement gRPC Python server reflection | ||
* | | use Server mode for GC in C# QpsWorker | Jan Tattermusch | 2016-10-20 |
| | | |||
| * | Partially implement gRPC Python server reflection | Masood Malekghassemi | 2016-10-20 |
|/ | | | | | | Some features relating to proto2 extension querying are missing due to missing upstream features required to support them (see https://github.com/google/protobuf/issues/2248). | ||
* | php: require grpc extension to be installed before composer package | Stanley Cheung | 2016-10-06 |
| | |||
* | PHP Proto3: update tests and README | Stanley Cheung | 2016-09-29 |
| | |||
* | switch distribtests to use nugets generated by dotnet cli | Jan Tattermusch | 2016-09-13 |
| | |||
* | Merge pull request #8048 from jtattermusch/dotnetcli_interoptest | Jan Tattermusch | 2016-09-12 |
|\ | | | | | Enable running interop tests with dotnet CLI + CoreCLR | ||
| * | fix copying data directory | Jan Tattermusch | 2016-09-09 |
| | | |||
* | | add shutdownhook for CoreCLR | Jan Tattermusch | 2016-09-09 |
|/ | |||
* | allow building all nugets on linux | Jan Tattermusch | 2016-09-08 |
| | |||
* | dont enumerate runtimes in project.json file | Jan Tattermusch | 2016-09-08 |
| | |||
* | Merge pull request #7986 from jtattermusch/coreclr_interop_fixes | Jan Tattermusch | 2016-09-07 |
|\ | | | | | Improvements to CoreCLR support | ||
| * | upgrade Moq to version that supports netstandard1.3 | Jan Tattermusch | 2016-09-05 |
| | | |||
| * | cleanup of project.json files | Jan Tattermusch | 2016-09-05 |
| | | |||
| * | update Protobuf to 3.0.0 in project.json projects | Jan Tattermusch | 2016-09-05 |
| | | |||
| * | update Google.Apis.Auth to 1.16.0 for project.json projects | Jan Tattermusch | 2016-09-05 |
| | | |||
* | | Specify the "g" in gRPC | Craig Tiller | 2016-08-29 |
|/ | |||
* | php: bump version | Stanley Cheung | 2016-08-22 |
| | |||
* | use CommandLineParser with CoreCLR support | Jan Tattermusch | 2016-08-13 |
| | |||
* | Merge pull request #7660 from jtattermusch/google_apis_auth_coreclr | Jan Tattermusch | 2016-08-13 |
|\ | | | | | Updgrade Google.Apis.Auth dependency to 0.15 | ||
* | | Updating build package C# scripts. | Nicolas "Pixel" Noble | 2016-08-12 |
| | | |||
* | | Merge pull request #7682 from apolcyn/add_runtime_nodes_back_in_ga | Nicolas Noble | 2016-08-11 |
|\ \ | | | | | | | add all runtime nodes back into testing packages | ||
* \ \ | Merge pull request #7577 from murgatroid99/node_dependency_update | Nicolas Noble | 2016-08-11 |
|\ \ \ | | | | | | | | | Update node protobuf dependency to 3.0.0 where applicable. Also update example dependency to grpc 1.0.0 | ||
| | | * | upgrade Google.Apis.Auth dependency to 0.15.0 | Jan Tattermusch | 2016-08-11 |
| |_|/ |/| | | |||
| | * | add all runtime nodes back into testing packages | Alexander Polcyn | 2016-08-09 |
| |/ |/| | |||
* | | update templates to not include runtime sections in project.json | Alexander Polcyn | 2016-08-02 |
| | | |||
| * | Merge remote-tracking branch 'upstream/v1.0.x' into node_dependency_update | murgatroid99 | 2016-08-02 |
| |\ | |/ |/| | |||
* | | Merge pull request #7580 from jtattermusch/netcore_nuget_to_rtm | Jan Tattermusch | 2016-08-02 |
|\ \ | | | | | | | Update .NET core dependencies to RTM | ||
| * | | use netcoreapp1.0 for executable projects | Jan Tattermusch | 2016-07-30 |
| | | | |||
| * | | update project.json templates to RTM .NET core nugets | Jan Tattermusch | 2016-07-30 |
| | | | |||
| | * | Update node protobuf dependency to 3.0.0 where applicable. Also update ↵ | murgatroid99 | 2016-07-29 |
| |/ | | | | | | | example dependency to grpc 1.0.0 | ||
* / | update to use new nuget client in tests | Alexander Polcyn | 2016-07-28 |
|/ | |||
* | node: fix health check package.json template | Stanley Cheung | 2016-07-22 |
| | |||
* | Polish grpcio_health_checking package | Ken Payson | 2016-07-18 |
| | | | | | | | -Rename namespace to grpc_health->grpc to match spec -Proper use of NOT_FOUND status code -Improve testing -Add source distribution to artifact build | ||
* | 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. | ||
* | Remove Python 'loader' hack | Masood Malekghassemi | 2016-07-13 |
| | |||
* | Merge pull request #7195 from soltanmm/winfix | kpayson64 | 2016-07-08 |
|\ | | | | | Fix Python interop unit-tests on Windows | ||
* \ | Merge pull request #7203 from murgatroid99/node_separate_health_check | Nicolas Noble | 2016-07-08 |
|\ \ | | | | | | | Split Node health check code into a separate package and make it use static codegen | ||
| | * | Make Python build standalone on Windows | Masood Malekghassemi | 2016-07-08 |
| |/ |/| | |||
* | | Organize Python tests to use grpcio-tools directly | Masood Malekghassemi | 2016-07-01 |
| | | | | | | | | | | Moves all tests into a separate package. This does not change existing supported means of running tests (e.g. through run_tests.py). | ||
| * | Split Node health check code into a separate package and make it use static ↵ | murgatroid99 | 2016-07-01 |
|/ | | | | codegen | ||
* | using shared option for Version.cs leaks it to nuget file | Jan Tattermusch | 2016-06-29 |
| | |||
* | fix files/mappings in Grpc.Core nuget | Jan Tattermusch | 2016-06-29 |
| | |||
* | modify templates to sign C# coreclr projects and generate xmlDoc | Jan Tattermusch | 2016-06-27 |
| | |||
* | share Version.cs among all project.json projects | Jan Tattermusch | 2016-06-27 |
| | |||
* | Merge pull request #6104 from jtattermusch/coreclr_support | Jan Tattermusch | 2016-06-22 |
|\ | | | | | Add experimental CoreCLR support | ||
* | | Make src/node/tools/package.json consistent with its template | murgatroid99 | 2016-06-21 |
| | | |||
| * | use template to generate project.json files | Jan Tattermusch | 2016-06-21 |
| | |