aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_health_checking
Commit message (Collapse)AuthorAge
* Upversion PythonGravatar Masood Malekghassemi2016-12-14
|
* Patch overlooked strings from Python un-namespacingGravatar Masood Malekghassemi2016-12-14
|
* Up-version PythonGravatar Masood Malekghassemi2016-12-12
|
* Un-namespace Python packagesGravatar Masood Malekghassemi2016-12-12
| | | | | Setuptools was updated and our hacky namespace-package-chickens came back to roost. This removes the unsupported namespace package hacks.
* Up-version Python for backportsGravatar Masood Malekghassemi2016-12-09
|
* Backport Python features to 1.0.xGravatar Masood Malekghassemi2016-12-07
| | | | | Backports per-object grpc_init/deinit and separated-file grpc protoc codegen (#7538, #8246, #8920).
* Going 1.0.1.Gravatar Nicolas "Pixel" Noble2016-10-26
|
* Bumping version to 1.0.1-pre1.Gravatar Nicolas "Pixel" Noble2016-08-18
|
* Merge pull request #7745 from nicolasnoble/no-more-preGravatar Nicolas Noble2016-08-18
|\ | | | | Removing pre2 flag.
* | Use templates for python version dependenciesGravatar Ken Payson2016-08-18
| | | | | | | | | | Also change grpcio-tools to be a runtime dependency of grpcio-tests, grpcio-tools is run as part of the tests.
| * Removing pre2 flag.Gravatar Nicolas "Pixel" Noble2016-08-16
|/
* Bump python protobuf dependency to 3.0.0Gravatar Ken Payson2016-08-03
|
* Bumping to 1.0.0-pre2.Gravatar Nicolas "Pixel" Noble2016-07-29
|
* Polish grpcio_health_checking packageGravatar Ken Payson2016-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
* Organize Python tests to use grpcio-tools directlyGravatar Masood Malekghassemi2016-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).
* Namespace changeGravatar Ken Payson2016-05-06
|
* Manifest changesGravatar Ken Payson2016-05-05
|
* Remove grpcio as build dependencyGravatar Ken Payson2016-05-04
|
* Reworked python health checking and added testsGravatar Ken Payson2016-05-04
|
* Update copyrightsGravatar Craig Tiller2016-03-31
|
* global replace health check proto v1alpha to v1Gravatar yang-g2016-02-19
|
* Bring Python interop tests to the beta APIGravatar Masood Malekghassemi2015-10-23
| | | | Also uses the .proto files for the service/stub definitions.
* Python version set to 0.11.0b0Gravatar Masood Malekghassemi2015-09-10
|
* Beta maintenance of Python dependenciesGravatar Nathaniel Manista2015-09-08
| | | | | | | | | | | | | (1) Move dependency on protobuf from grpcio to grpcio_test. While the most-commonly-foreseen use case of grpcio makes use of protobuf, technically protobuf is not strictly needed and there's no actual in-code relationship between grpcio and protobuf. (2) Loosen the dependency on protobuf from ==3.0.0a3 to >=3.0.0a3. (3) Update all references to 0.10.0* to 0.11.0. (4) Alphabetize the grpcio_test dependencies.
* Add health-checking to PythonGravatar Masood Malekghassemi2015-08-12
Adds the initial reference implementation for health-checking in gRPC Python as a separate project (but within the same grpc package to keep namespaces consistent). Only installs the package to test the build-proto-modules custom command introduced in the health-checking project.