From 20af6fa33ab63a7e59fce51c0f8c0b28722014d9 Mon Sep 17 00:00:00 2001 From: Chris Kleinknecht Date: Tue, 23 Apr 2019 15:31:58 -0700 Subject: [PATCH 1/6] Update versions and changelogs for v0.5.0 release --- CHANGELOG.md | 6 ++++++ context/opencensus-context/CHANGELOG.md | 2 ++ context/opencensus-context/version.py | 2 +- contrib/opencensus-correlation/version.py | 2 +- contrib/opencensus-ext-azure/CHANGELOG.md | 6 ++++-- .../opencensus/ext/azure/common/version.py | 2 +- contrib/opencensus-ext-azure/setup.py | 2 +- contrib/opencensus-ext-dbapi/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-dbapi/setup.py | 2 +- contrib/opencensus-ext-dbapi/version.py | 2 +- contrib/opencensus-ext-django/CHANGELOG.md | 6 ++++++ contrib/opencensus-ext-django/setup.py | 2 +- contrib/opencensus-ext-django/version.py | 2 +- contrib/opencensus-ext-flask/CHANGELOG.md | 4 ++++ contrib/opencensus-ext-flask/setup.py | 2 +- contrib/opencensus-ext-flask/version.py | 2 +- contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-google-cloud-clientlibs/setup.py | 6 +++--- contrib/opencensus-ext-google-cloud-clientlibs/version.py | 2 +- contrib/opencensus-ext-grpc/CHANGELOG.md | 4 ++++ contrib/opencensus-ext-grpc/setup.py | 2 +- contrib/opencensus-ext-grpc/version.py | 2 +- contrib/opencensus-ext-httplib/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-httplib/setup.py | 2 +- contrib/opencensus-ext-httplib/version.py | 2 +- contrib/opencensus-ext-jaeger/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-jaeger/setup.py | 2 +- contrib/opencensus-ext-jaeger/version.py | 2 +- contrib/opencensus-ext-mysql/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-mysql/setup.py | 4 ++-- contrib/opencensus-ext-mysql/version.py | 2 +- contrib/opencensus-ext-ocagent/CHANGELOG.md | 4 ++++ contrib/opencensus-ext-ocagent/setup.py | 2 +- contrib/opencensus-ext-ocagent/version.py | 2 +- contrib/opencensus-ext-postgresql/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-postgresql/setup.py | 2 +- contrib/opencensus-ext-postgresql/version.py | 2 +- contrib/opencensus-ext-prometheus/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-prometheus/setup.py | 2 +- contrib/opencensus-ext-prometheus/version.py | 2 +- contrib/opencensus-ext-pymongo/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-pymongo/setup.py | 2 +- contrib/opencensus-ext-pymongo/version.py | 2 +- contrib/opencensus-ext-pymysql/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-pymysql/setup.py | 4 ++-- contrib/opencensus-ext-pymysql/version.py | 2 +- contrib/opencensus-ext-pyramid/CHANGELOG.md | 4 ++++ contrib/opencensus-ext-pyramid/setup.py | 2 +- contrib/opencensus-ext-pyramid/version.py | 2 +- contrib/opencensus-ext-requests/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-requests/setup.py | 2 +- contrib/opencensus-ext-requests/version.py | 2 +- contrib/opencensus-ext-sqlalchemy/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-sqlalchemy/setup.py | 2 +- contrib/opencensus-ext-sqlalchemy/version.py | 2 +- contrib/opencensus-ext-stackdriver/CHANGELOG.md | 6 ++++++ contrib/opencensus-ext-stackdriver/setup.py | 2 +- contrib/opencensus-ext-stackdriver/version.py | 2 +- contrib/opencensus-ext-threading/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-threading/setup.py | 2 +- contrib/opencensus-ext-threading/version.py | 2 +- contrib/opencensus-ext-zipkin/CHANGELOG.md | 5 +++++ contrib/opencensus-ext-zipkin/setup.py | 2 +- contrib/opencensus-ext-zipkin/version.py | 2 +- opencensus/common/version/__init__.py | 2 +- setup.py | 2 +- 66 files changed, 153 insertions(+), 50 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d538998c6..c72fb7e59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,14 @@ ## Unreleased +## 0.5.0 +Released 2019-04-23 + - Add cumulative API ([#626](https://github.com/census-instrumentation/opencensus-python/pull/626)) +- Allow for metrics with empty label keys and values + ([#611](https://github.com/census-instrumentation/opencensus-python/pull/611), + [#614](https://github.com/census-instrumentation/opencensus-python/pull/614)) ## 0.4.0 Released 2019-04-08 diff --git a/context/opencensus-context/CHANGELOG.md b/context/opencensus-context/CHANGELOG.md index d4d104e47..c93650288 100644 --- a/context/opencensus-context/CHANGELOG.md +++ b/context/opencensus-context/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## Unreleased + ## 0.1.0 Released 2019-04-08 diff --git a/context/opencensus-context/version.py b/context/opencensus-context/version.py index ff18aeb50..d323c46d6 100644 --- a/context/opencensus-context/version.py +++ b/context/opencensus-context/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.1.0' diff --git a/contrib/opencensus-correlation/version.py b/contrib/opencensus-correlation/version.py index ff18aeb50..d323c46d6 100644 --- a/contrib/opencensus-correlation/version.py +++ b/contrib/opencensus-correlation/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.1.0' diff --git a/contrib/opencensus-ext-azure/CHANGELOG.md b/contrib/opencensus-ext-azure/CHANGELOG.md index bf7843aa3..75f1d0832 100644 --- a/contrib/opencensus-ext-azure/CHANGELOG.md +++ b/contrib/opencensus-ext-azure/CHANGELOG.md @@ -1,4 +1,6 @@ # Changelog -## Unreleased -- Initial project skeleton +## 0.1.0 +Released 2019-04-23 + +- Initial release diff --git a/contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py b/contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py index f3a64a892..d323c46d6 100644 --- a/contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py +++ b/contrib/opencensus-ext-azure/opencensus/ext/azure/common/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.1.dev0' +__version__ = '0.1.0' diff --git a/contrib/opencensus-ext-azure/setup.py b/contrib/opencensus-ext-azure/setup.py index a4a92347d..cf2f01808 100644 --- a/contrib/opencensus-ext-azure/setup.py +++ b/contrib/opencensus-ext-azure/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', 'requests >= 2.19.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-dbapi/CHANGELOG.md b/contrib/opencensus-ext-dbapi/CHANGELOG.md index b8dd1799c..7fef49092 100644 --- a/contrib/opencensus-ext-dbapi/CHANGELOG.md +++ b/contrib/opencensus-ext-dbapi/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.1.2 +Released 2019-04-23 + +- Updated docs and examples + ## 0.1.1 Released 2019-04-08 diff --git a/contrib/opencensus-ext-dbapi/setup.py b/contrib/opencensus-ext-dbapi/setup.py index 38e08268b..1257f7f8d 100644 --- a/contrib/opencensus-ext-dbapi/setup.py +++ b/contrib/opencensus-ext-dbapi/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.3.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-dbapi/version.py b/contrib/opencensus-ext-dbapi/version.py index ff18aeb50..3f601a176 100644 --- a/contrib/opencensus-ext-dbapi/version.py +++ b/contrib/opencensus-ext-dbapi/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.1.2' diff --git a/contrib/opencensus-ext-django/CHANGELOG.md b/contrib/opencensus-ext-django/CHANGELOG.md index 73d7bb4bc..bcc0e5413 100644 --- a/contrib/opencensus-ext-django/CHANGELOG.md +++ b/contrib/opencensus-ext-django/CHANGELOG.md @@ -1,7 +1,13 @@ # Changelog ## Unreleased + +## 0.3.0 +Released 2019-04-23 + - Decoupled exporter specific logic from configuration +- Prevent anymonous user error on old django versions + ([#603](https://github.com/census-instrumentation/opencensus-python/pull/603)) ## 0.2.0 Released 2019-04-08 diff --git a/contrib/opencensus-ext-django/setup.py b/contrib/opencensus-ext-django/setup.py index c50e9bdd3..2666550bb 100644 --- a/contrib/opencensus-ext-django/setup.py +++ b/contrib/opencensus-ext-django/setup.py @@ -40,7 +40,7 @@ long_description=open('README.rst').read(), install_requires=[ 'Django >= 1.11.0, <= 1.11.20', - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-django/version.py b/contrib/opencensus-ext-django/version.py index bf7c8163b..8088a1980 100644 --- a/contrib/opencensus-ext-django/version.py +++ b/contrib/opencensus-ext-django/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.3.dev0' +__version__ = '0.3.0' diff --git a/contrib/opencensus-ext-flask/CHANGELOG.md b/contrib/opencensus-ext-flask/CHANGELOG.md index 73d7bb4bc..af4171238 100644 --- a/contrib/opencensus-ext-flask/CHANGELOG.md +++ b/contrib/opencensus-ext-flask/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## Unreleased + +## 0.3.0 +Released 2019-04-23 + - Decoupled exporter specific logic from configuration ## 0.2.0 diff --git a/contrib/opencensus-ext-flask/setup.py b/contrib/opencensus-ext-flask/setup.py index 244e311c9..d8b7d97ca 100644 --- a/contrib/opencensus-ext-flask/setup.py +++ b/contrib/opencensus-ext-flask/setup.py @@ -40,7 +40,7 @@ long_description=open('README.rst').read(), install_requires=[ 'flask >= 0.12.3, < 2.0.0', - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-flask/version.py b/contrib/opencensus-ext-flask/version.py index bf7c8163b..8088a1980 100644 --- a/contrib/opencensus-ext-flask/version.py +++ b/contrib/opencensus-ext-flask/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.3.dev0' +__version__ = '0.3.0' diff --git a/contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md b/contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md index b8dd1799c..7fef49092 100644 --- a/contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md +++ b/contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.1.2 +Released 2019-04-23 + +- Updated docs and examples + ## 0.1.1 Released 2019-04-08 diff --git a/contrib/opencensus-ext-google-cloud-clientlibs/setup.py b/contrib/opencensus-ext-google-cloud-clientlibs/setup.py index 591d112fc..015deb94d 100644 --- a/contrib/opencensus-ext-google-cloud-clientlibs/setup.py +++ b/contrib/opencensus-ext-google-cloud-clientlibs/setup.py @@ -39,9 +39,9 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.5.dev0, < 1.0.0', - 'opencensus-ext-grpc >= 0.2.dev0, < 1.0.0', - 'opencensus-ext-requests >= 0.2.dev0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', + 'opencensus-ext-grpc >= 0.2.0, < 1.0.0', + 'opencensus-ext-requests >= 0.1.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-google-cloud-clientlibs/version.py b/contrib/opencensus-ext-google-cloud-clientlibs/version.py index ff18aeb50..3f601a176 100644 --- a/contrib/opencensus-ext-google-cloud-clientlibs/version.py +++ b/contrib/opencensus-ext-google-cloud-clientlibs/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.1.2' diff --git a/contrib/opencensus-ext-grpc/CHANGELOG.md b/contrib/opencensus-ext-grpc/CHANGELOG.md index 8aeb3a51c..a426f7bf1 100644 --- a/contrib/opencensus-ext-grpc/CHANGELOG.md +++ b/contrib/opencensus-ext-grpc/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## Unreleased + +## 0.2.0 +Released 2019-04-23 + - Create WrappedResponseIterator for intercepted bi-directional rpc stream. ## 0.1.1 diff --git a/contrib/opencensus-ext-grpc/setup.py b/contrib/opencensus-ext-grpc/setup.py index 43728e348..6ffe8ac6a 100644 --- a/contrib/opencensus-ext-grpc/setup.py +++ b/contrib/opencensus-ext-grpc/setup.py @@ -40,7 +40,7 @@ long_description=open('README.rst').read(), install_requires=[ 'grpcio >= 1.0.0, < 2.0.0', - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-grpc/version.py b/contrib/opencensus-ext-grpc/version.py index ff18aeb50..63922d675 100644 --- a/contrib/opencensus-ext-grpc/version.py +++ b/contrib/opencensus-ext-grpc/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.2.0' diff --git a/contrib/opencensus-ext-httplib/CHANGELOG.md b/contrib/opencensus-ext-httplib/CHANGELOG.md index b8dd1799c..7fef49092 100644 --- a/contrib/opencensus-ext-httplib/CHANGELOG.md +++ b/contrib/opencensus-ext-httplib/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.1.2 +Released 2019-04-23 + +- Updated docs and examples + ## 0.1.1 Released 2019-04-08 diff --git a/contrib/opencensus-ext-httplib/setup.py b/contrib/opencensus-ext-httplib/setup.py index d11bb8106..b1b5a0626 100644 --- a/contrib/opencensus-ext-httplib/setup.py +++ b/contrib/opencensus-ext-httplib/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.3.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-httplib/version.py b/contrib/opencensus-ext-httplib/version.py index ff18aeb50..3f601a176 100644 --- a/contrib/opencensus-ext-httplib/version.py +++ b/contrib/opencensus-ext-httplib/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.1.2' diff --git a/contrib/opencensus-ext-jaeger/CHANGELOG.md b/contrib/opencensus-ext-jaeger/CHANGELOG.md index ae970d6d3..22d22032c 100644 --- a/contrib/opencensus-ext-jaeger/CHANGELOG.md +++ b/contrib/opencensus-ext-jaeger/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.2.1 +Released 2019-04-23 + +- Updated docs and examples + ## 0.2.0 Released 2019-04-08 diff --git a/contrib/opencensus-ext-jaeger/setup.py b/contrib/opencensus-ext-jaeger/setup.py index 85462762a..07cccdcb5 100644 --- a/contrib/opencensus-ext-jaeger/setup.py +++ b/contrib/opencensus-ext-jaeger/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.4.0, < 1.0.0', 'thrift >= 0.10.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-jaeger/version.py b/contrib/opencensus-ext-jaeger/version.py index bf7c8163b..20fd9b8ed 100644 --- a/contrib/opencensus-ext-jaeger/version.py +++ b/contrib/opencensus-ext-jaeger/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.3.dev0' +__version__ = '0.2.1' diff --git a/contrib/opencensus-ext-mysql/CHANGELOG.md b/contrib/opencensus-ext-mysql/CHANGELOG.md index b8dd1799c..7fef49092 100644 --- a/contrib/opencensus-ext-mysql/CHANGELOG.md +++ b/contrib/opencensus-ext-mysql/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.1.2 +Released 2019-04-23 + +- Updated docs and examples + ## 0.1.1 Released 2019-04-08 diff --git a/contrib/opencensus-ext-mysql/setup.py b/contrib/opencensus-ext-mysql/setup.py index 78f3381ac..25946880a 100644 --- a/contrib/opencensus-ext-mysql/setup.py +++ b/contrib/opencensus-ext-mysql/setup.py @@ -40,8 +40,8 @@ long_description=open('README.rst').read(), install_requires=[ 'mysql-connector >= 2.1.6, < 3.0.0', - 'opencensus >= 0.5.dev0, < 1.0.0', - 'opencensus-ext-dbapi >= 0.2.dev0, < 1.0.0', + 'opencensus >= 0.3.0, < 1.0.0', + 'opencensus-ext-dbapi >= 0.1.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-mysql/version.py b/contrib/opencensus-ext-mysql/version.py index ff18aeb50..3f601a176 100644 --- a/contrib/opencensus-ext-mysql/version.py +++ b/contrib/opencensus-ext-mysql/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.1.2' diff --git a/contrib/opencensus-ext-ocagent/CHANGELOG.md b/contrib/opencensus-ext-ocagent/CHANGELOG.md index 064bf6a17..8805c9887 100644 --- a/contrib/opencensus-ext-ocagent/CHANGELOG.md +++ b/contrib/opencensus-ext-ocagent/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## Unreleased + +## 0.3.0 +Released 2019-04-23 + - Add stats exporter ## 0.2.0 diff --git a/contrib/opencensus-ext-ocagent/setup.py b/contrib/opencensus-ext-ocagent/setup.py index ed0a48ea9..d70420dbe 100644 --- a/contrib/opencensus-ext-ocagent/setup.py +++ b/contrib/opencensus-ext-ocagent/setup.py @@ -40,7 +40,7 @@ long_description=open('README.rst').read(), install_requires=[ 'grpcio >= 1.0.0, < 2.0.0', - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', 'opencensus-proto >= 0.1.0, < 1.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-ocagent/version.py b/contrib/opencensus-ext-ocagent/version.py index bf7c8163b..8088a1980 100644 --- a/contrib/opencensus-ext-ocagent/version.py +++ b/contrib/opencensus-ext-ocagent/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.3.dev0' +__version__ = '0.3.0' diff --git a/contrib/opencensus-ext-postgresql/CHANGELOG.md b/contrib/opencensus-ext-postgresql/CHANGELOG.md index b8dd1799c..7fef49092 100644 --- a/contrib/opencensus-ext-postgresql/CHANGELOG.md +++ b/contrib/opencensus-ext-postgresql/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.1.2 +Released 2019-04-23 + +- Updated docs and examples + ## 0.1.1 Released 2019-04-08 diff --git a/contrib/opencensus-ext-postgresql/setup.py b/contrib/opencensus-ext-postgresql/setup.py index 639ae2ea4..12dab7690 100644 --- a/contrib/opencensus-ext-postgresql/setup.py +++ b/contrib/opencensus-ext-postgresql/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.3.0, < 1.0.0', 'psycopg2-binary >= 2.7.3.1', ], extras_require={}, diff --git a/contrib/opencensus-ext-postgresql/version.py b/contrib/opencensus-ext-postgresql/version.py index ff18aeb50..3f601a176 100644 --- a/contrib/opencensus-ext-postgresql/version.py +++ b/contrib/opencensus-ext-postgresql/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.1.2' diff --git a/contrib/opencensus-ext-prometheus/CHANGELOG.md b/contrib/opencensus-ext-prometheus/CHANGELOG.md index 420806efa..79efb93b3 100644 --- a/contrib/opencensus-ext-prometheus/CHANGELOG.md +++ b/contrib/opencensus-ext-prometheus/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.2.1 +Released 2019-04-23 + +- Updated docs and examples + ## 0.2.0 Released 2019-04-08 diff --git a/contrib/opencensus-ext-prometheus/setup.py b/contrib/opencensus-ext-prometheus/setup.py index a585e323b..97a35faaa 100644 --- a/contrib/opencensus-ext-prometheus/setup.py +++ b/contrib/opencensus-ext-prometheus/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.4.0, < 1.0.0', 'prometheus_client >= 0.5.0, < 1.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-prometheus/version.py b/contrib/opencensus-ext-prometheus/version.py index bf7c8163b..20fd9b8ed 100644 --- a/contrib/opencensus-ext-prometheus/version.py +++ b/contrib/opencensus-ext-prometheus/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.3.dev0' +__version__ = '0.2.1' diff --git a/contrib/opencensus-ext-pymongo/CHANGELOG.md b/contrib/opencensus-ext-pymongo/CHANGELOG.md index b8dd1799c..7fef49092 100644 --- a/contrib/opencensus-ext-pymongo/CHANGELOG.md +++ b/contrib/opencensus-ext-pymongo/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.1.2 +Released 2019-04-23 + +- Updated docs and examples + ## 0.1.1 Released 2019-04-08 diff --git a/contrib/opencensus-ext-pymongo/setup.py b/contrib/opencensus-ext-pymongo/setup.py index e6d2cea2d..23e911a45 100644 --- a/contrib/opencensus-ext-pymongo/setup.py +++ b/contrib/opencensus-ext-pymongo/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.3.0, < 1.0.0', 'pymongo >= 3.1.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-pymongo/version.py b/contrib/opencensus-ext-pymongo/version.py index ff18aeb50..3f601a176 100644 --- a/contrib/opencensus-ext-pymongo/version.py +++ b/contrib/opencensus-ext-pymongo/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.1.2' diff --git a/contrib/opencensus-ext-pymysql/CHANGELOG.md b/contrib/opencensus-ext-pymysql/CHANGELOG.md index b8dd1799c..7fef49092 100644 --- a/contrib/opencensus-ext-pymysql/CHANGELOG.md +++ b/contrib/opencensus-ext-pymysql/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.1.2 +Released 2019-04-23 + +- Updated docs and examples + ## 0.1.1 Released 2019-04-08 diff --git a/contrib/opencensus-ext-pymysql/setup.py b/contrib/opencensus-ext-pymysql/setup.py index 27df628b4..a88fe638b 100644 --- a/contrib/opencensus-ext-pymysql/setup.py +++ b/contrib/opencensus-ext-pymysql/setup.py @@ -40,8 +40,8 @@ long_description=open('README.rst').read(), install_requires=[ 'PyMySQL >= 0.7.11, < 1.0.0', - 'opencensus >= 0.5.dev0, < 1.0.0', - 'opencensus-ext-dbapi >= 0.2.dev0, < 1.0.0', + 'opencensus >= 0.3.0, < 1.0.0', + 'opencensus-ext-dbapi >= 0.1.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-pymysql/version.py b/contrib/opencensus-ext-pymysql/version.py index ff18aeb50..3f601a176 100644 --- a/contrib/opencensus-ext-pymysql/version.py +++ b/contrib/opencensus-ext-pymysql/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.1.2' diff --git a/contrib/opencensus-ext-pyramid/CHANGELOG.md b/contrib/opencensus-ext-pyramid/CHANGELOG.md index dd744d648..1f001d7d3 100644 --- a/contrib/opencensus-ext-pyramid/CHANGELOG.md +++ b/contrib/opencensus-ext-pyramid/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## Unreleased + +## 0.3.0 +Released 2019-04-23 + - Refactor configuration, keep consistent with Flask/Django - Use W3C TraceContext propagation by default diff --git a/contrib/opencensus-ext-pyramid/setup.py b/contrib/opencensus-ext-pyramid/setup.py index 7462b21b5..e220b060a 100644 --- a/contrib/opencensus-ext-pyramid/setup.py +++ b/contrib/opencensus-ext-pyramid/setup.py @@ -40,7 +40,7 @@ long_description=open('README.rst').read(), install_requires=[ 'pyramid >= 1.9.1, < 2.0.0', - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-pyramid/version.py b/contrib/opencensus-ext-pyramid/version.py index bf7c8163b..8088a1980 100644 --- a/contrib/opencensus-ext-pyramid/version.py +++ b/contrib/opencensus-ext-pyramid/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.3.dev0' +__version__ = '0.3.0' diff --git a/contrib/opencensus-ext-requests/CHANGELOG.md b/contrib/opencensus-ext-requests/CHANGELOG.md index b8dd1799c..7fef49092 100644 --- a/contrib/opencensus-ext-requests/CHANGELOG.md +++ b/contrib/opencensus-ext-requests/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.1.2 +Released 2019-04-23 + +- Updated docs and examples + ## 0.1.1 Released 2019-04-08 diff --git a/contrib/opencensus-ext-requests/setup.py b/contrib/opencensus-ext-requests/setup.py index e18672be9..848b2e873 100644 --- a/contrib/opencensus-ext-requests/setup.py +++ b/contrib/opencensus-ext-requests/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.3.0, < 1.0.0', 'wrapt >= 1.0.0, < 2.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-requests/version.py b/contrib/opencensus-ext-requests/version.py index ff18aeb50..3f601a176 100644 --- a/contrib/opencensus-ext-requests/version.py +++ b/contrib/opencensus-ext-requests/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.1.2' diff --git a/contrib/opencensus-ext-sqlalchemy/CHANGELOG.md b/contrib/opencensus-ext-sqlalchemy/CHANGELOG.md index b8dd1799c..7fef49092 100644 --- a/contrib/opencensus-ext-sqlalchemy/CHANGELOG.md +++ b/contrib/opencensus-ext-sqlalchemy/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.1.2 +Released 2019-04-23 + +- Updated docs and examples + ## 0.1.1 Released 2019-04-08 diff --git a/contrib/opencensus-ext-sqlalchemy/setup.py b/contrib/opencensus-ext-sqlalchemy/setup.py index fcf007e10..346f38b20 100644 --- a/contrib/opencensus-ext-sqlalchemy/setup.py +++ b/contrib/opencensus-ext-sqlalchemy/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.3.0, < 1.0.0', 'SQLAlchemy >= 1.1.14, < 2.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-sqlalchemy/version.py b/contrib/opencensus-ext-sqlalchemy/version.py index ff18aeb50..3f601a176 100644 --- a/contrib/opencensus-ext-sqlalchemy/version.py +++ b/contrib/opencensus-ext-sqlalchemy/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.1.2' diff --git a/contrib/opencensus-ext-stackdriver/CHANGELOG.md b/contrib/opencensus-ext-stackdriver/CHANGELOG.md index 7a3c201d3..caeb8ca9b 100644 --- a/contrib/opencensus-ext-stackdriver/CHANGELOG.md +++ b/contrib/opencensus-ext-stackdriver/CHANGELOG.md @@ -2,6 +2,12 @@ ## Unreleased +## 0.3.0 +Released 2019-04-23 + +- Use default GCP auth for stats exporter + ([#610](https://github.com/census-instrumentation/opencensus-python/pull/610)) + ## 0.2.0 Released 2019-04-08 diff --git a/contrib/opencensus-ext-stackdriver/setup.py b/contrib/opencensus-ext-stackdriver/setup.py index c5ca2bda7..952616e4d 100644 --- a/contrib/opencensus-ext-stackdriver/setup.py +++ b/contrib/opencensus-ext-stackdriver/setup.py @@ -41,7 +41,7 @@ install_requires=[ 'google-cloud-monitoring >= 0.30.0, < 1.0.0', 'google-cloud-trace >= 0.20.0, < 1.0.0', - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-stackdriver/version.py b/contrib/opencensus-ext-stackdriver/version.py index bf7c8163b..8088a1980 100644 --- a/contrib/opencensus-ext-stackdriver/version.py +++ b/contrib/opencensus-ext-stackdriver/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.3.dev0' +__version__ = '0.3.0' diff --git a/contrib/opencensus-ext-threading/CHANGELOG.md b/contrib/opencensus-ext-threading/CHANGELOG.md index b8dd1799c..7fef49092 100644 --- a/contrib/opencensus-ext-threading/CHANGELOG.md +++ b/contrib/opencensus-ext-threading/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.1.2 +Released 2019-04-23 + +- Updated docs and examples + ## 0.1.1 Released 2019-04-08 diff --git a/contrib/opencensus-ext-threading/setup.py b/contrib/opencensus-ext-threading/setup.py index b5d7e896f..12cfcaddc 100644 --- a/contrib/opencensus-ext-threading/setup.py +++ b/contrib/opencensus-ext-threading/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.3.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-threading/version.py b/contrib/opencensus-ext-threading/version.py index ff18aeb50..3f601a176 100644 --- a/contrib/opencensus-ext-threading/version.py +++ b/contrib/opencensus-ext-threading/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.2.dev0' +__version__ = '0.1.2' diff --git a/contrib/opencensus-ext-zipkin/CHANGELOG.md b/contrib/opencensus-ext-zipkin/CHANGELOG.md index ae970d6d3..22d22032c 100644 --- a/contrib/opencensus-ext-zipkin/CHANGELOG.md +++ b/contrib/opencensus-ext-zipkin/CHANGELOG.md @@ -2,6 +2,11 @@ ## Unreleased +## 0.2.1 +Released 2019-04-23 + +- Updated docs and examples + ## 0.2.0 Released 2019-04-08 diff --git a/contrib/opencensus-ext-zipkin/setup.py b/contrib/opencensus-ext-zipkin/setup.py index d2a46693f..70f277c6b 100644 --- a/contrib/opencensus-ext-zipkin/setup.py +++ b/contrib/opencensus-ext-zipkin/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.5.dev0, < 1.0.0', + 'opencensus >= 0.4.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-zipkin/version.py b/contrib/opencensus-ext-zipkin/version.py index bf7c8163b..20fd9b8ed 100644 --- a/contrib/opencensus-ext-zipkin/version.py +++ b/contrib/opencensus-ext-zipkin/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.3.dev0' +__version__ = '0.2.1' diff --git a/opencensus/common/version/__init__.py b/opencensus/common/version/__init__.py index 235cf3f15..da40cd766 100644 --- a/opencensus/common/version/__init__.py +++ b/opencensus/common/version/__init__.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = '0.5.dev0' +__version__ = '0.5.0' diff --git a/setup.py b/setup.py index 0013e3cd3..74b13c647 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus-context == 0.2.dev0', + 'opencensus-context == 0.1.0', 'google-api-core >= 1.0.0, < 2.0.0', ], extras_require={}, From 671acbe6679ae6b0d159a5b2934bff649a3275fd Mon Sep 17 00:00:00 2001 From: Chris Kleinknecht Date: Tue, 23 Apr 2019 18:32:01 -0700 Subject: [PATCH 2/6] Pick up changelog changes from #615 --- CHANGELOG.md | 6 +++++- contrib/opencensus-ext-stackdriver/CHANGELOG.md | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c72fb7e59..ce8665cf0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,11 @@ Released 2019-04-23 - Add cumulative API ([#626](https://github.com/census-instrumentation/opencensus-python/pull/626)) -- Allow for metrics with empty label keys and values + +## 0.4.1 +Released 2019-04-11 + + - Allow for metrics with empty label keys and values ([#611](https://github.com/census-instrumentation/opencensus-python/pull/611), [#614](https://github.com/census-instrumentation/opencensus-python/pull/614)) diff --git a/contrib/opencensus-ext-stackdriver/CHANGELOG.md b/contrib/opencensus-ext-stackdriver/CHANGELOG.md index caeb8ca9b..1e80d1a81 100644 --- a/contrib/opencensus-ext-stackdriver/CHANGELOG.md +++ b/contrib/opencensus-ext-stackdriver/CHANGELOG.md @@ -5,7 +5,11 @@ ## 0.3.0 Released 2019-04-23 -- Use default GCP auth for stats exporter +- Multiple changes to stats exporter API + +## 0.2.1 +Released 2019-04-11 +- Don't require exporter options, fall back to default GCP auth ([#610](https://github.com/census-instrumentation/opencensus-python/pull/610)) ## 0.2.0 From d392f5aae14a5404d07a5b6941586d61682d77a1 Mon Sep 17 00:00:00 2001 From: Reiley Yang Date: Tue, 23 Apr 2019 18:35:59 -0700 Subject: [PATCH 3/6] Docs (#629) Update README files for opencensus and opencensus-context. --- README.rst | 121 +++++++++----------------- context/opencensus-context/README.rst | 71 +++++++++++++++ 2 files changed, 110 insertions(+), 82 deletions(-) diff --git a/README.rst b/README.rst index 92f61ca6e..f73251fa5 100644 --- a/README.rst +++ b/README.rst @@ -103,114 +103,71 @@ Alternatively, you can explicitly start and end a span: Customization ------------- -Samplers -~~~~~~~~ +There are several things you can customize in OpenCensus: -You can specify different samplers when initializing a tracer, default -is using ``AlwaysOnSampler``, the other options are ``AlwaysOffSampler`` -and ``ProbabilitySampler`` +* **Blacklist**, which excludes certain hosts and paths from being tracked. + By default, the health check path for the App Engine flexible environment is + not tracked, you can turn it on by excluding it from the blacklist setting. -.. code:: python - - from opencensus.trace.samplers import probability - from opencensus.trace import tracer as tracer_module - - # Sampling the requests at the rate equals 0.5 - sampler = probability.ProbabilitySampler(rate=0.5) - tracer = tracer_module.Tracer(sampler=sampler) - -Exporters -~~~~~~~~~ - -By default, the traces are printed to stdout in JSON format. You can choose -different exporters to send the traces to. There are three built-in exporters, -which are ``opencensus.trace.print_exporter``, ``opencensus.trace.file_exporter`` -and ``opencensus.trace.logging_exporter``, other exporters are provided as -`extensions <#trace-exporter>`__. - -This example shows how to configure OpenCensus to save the traces to a -file: - -.. code:: python - - from opencensus.trace import file_exporter - from opencensus.trace.tracers import context_tracer +* **Exporter**, which sends the traces. + By default, the traces are printed to stdout in JSON format. You can choose + different exporters to send the traces to. There are three built-in exporters, + which are ``PrintExporter``, ``FileExporter`` and ``LoggingExporter``, the + other exporters are provided as `extensions <#trace-exporter>`__. - exporter = file_exporter.FileExporter(file_name='traces') - tracer = context_tracer.ContextTracer(exporter=exporter) +* **Sampler**, which determines how traces are sampled. + The default sampler is ``AlwaysOnSampler``, other samplers include the + ``AlwaysOffSampler`` and ``ProbabilitySampler``. -Propagators -~~~~~~~~~~~ +* **Propagator**, which serializes and deserializes the + ``SpanContext`` and its headers. The default propagator is + ``TraceContextPropagator``, other propagators include + ``BinaryFormatPropagator``, ``GoogleCloudFormatPropagator`` and + ``TextFormatPropagator``. -You can specify the propagator type for serializing and deserializing the -``SpanContext`` and its headers. The default propagator is -``TraceContextPropagator``, the rest options are ``BinaryFormatPropagator``, -``GoogleCloudFormatPropagator`` and ``TextFormatPropagator``. -This example shows how to use the ``GoogleCloudFormatPropagator``: - -.. code:: python - - from opencensus.trace.propagation import google_cloud_format - - propagator = google_cloud_format.GoogleCloudFormatPropagator() - - # Deserialize - span_context = propagator.from_header(header) - - # Serialize - header = propagator.to_header(span_context) - -This example shows how to use the ``TraceContextPropagator``: +You can customize while initializing a tracer. .. code:: python import requests from opencensus.trace import config_integration - from opencensus.trace.propagation.trace_context_http_header_format import TraceContextPropagator - from opencensus.trace.tracer import Tracer + from opencensus.trace import file_exporter + from opencensus.trace import tracer as tracer_module + from opencensus.trace.propagation import google_cloud_format + from opencensus.trace.samplers import probability config_integration.trace_integrations(['httplib']) - tracer = Tracer(propagator=TraceContextPropagator()) + + tracer = tracer_module.Tracer( + exporter=file_exporter.FileExporter(file_name='traces'), + propagator=google_cloud_format.GoogleCloudFormatPropagator(), + sampler=probability.ProbabilitySampler(rate=0.5), + ) with tracer.span(name='parent'): with tracer.span(name='child'): response = requests.get('http://localhost:5000') -Blacklist Paths -~~~~~~~~~~~~~~~ - -You can specify which paths you do not want to trace by configuring the -blacklist paths. - -This example shows how to configure the blacklist to ignore the ``_ah/health`` endpoint -for a Flask application: +You can use a configuration file for Flask/Django/Pyramid. For more +information, please read the +`individual integration documentation <#integration>`_. .. code:: python - from opencensus.trace.ext.flask.flask_middleware import FlaskMiddleware - - app = flask.Flask(__name__) - - blacklist_paths = ['_ah/health'] - middleware = FlaskMiddleware(app, blacklist_paths=blacklist_paths) - -For Django, you can configure the blacklist in the ``OPENCENSUS`` in ``settings.py``: - -.. code:: python - - OPENCENSUS: { + 'OPENCENSUS': { 'TRACE': { - ... - 'BLACKLIST_PATHS': ['_ah/health',], + 'BLACKLIST_HOSTNAMES': ['localhost', '127.0.0.1'], + 'BLACKLIST_PATHS': ['_ah/health'], + 'SAMPLER': 'opencensus.trace.samplers.ProbabilitySampler(rate=1)', + 'EXPORTER': '''opencensus.ext.ocagent.trace_exporter.TraceExporter( + service_name='foobar', + )''', + 'PROPAGATOR': 'opencensus.trace.propagation.google_cloud_format.GoogleCloudFormatPropagator()', } } - -.. note:: By default, the health check path for the App Engine flexible environment is not traced, - but you can turn it on by excluding it from the blacklist setting. - ------------ Extensions ------------ diff --git a/context/opencensus-context/README.rst b/context/opencensus-context/README.rst index a58c7e43f..ac17e6553 100644 --- a/context/opencensus-context/README.rst +++ b/context/opencensus-context/README.rst @@ -5,3 +5,74 @@ OpenCensus Runtime Context .. |pypi| image:: https://badge.fury.io/py/opencensus-context.svg :target: https://pypi.org/project/opencensus-context/ + +The **OpenCensus Runtime Context** provides in-process context propagation. +By default, ``thread local storage`` is used for Python 2.7, 3.4 and 3.5; +``contextvars`` is used for Python >= 3.6, which provides ``asyncio`` support. + +Installation +------------ + +This library is installed by default with ``opencensus``, there is no need +to install it explicitly. + +Usage +----- + +In most cases context propagation happens automatically within a process, +following the control flow of threads and asynchronous coroutines. The runtime +context is a dictionary stored in a `context variable `_ +when available, and in `thread local storage `_ +otherwise. + +There are cases where you may want to propagate the context explicitly: + +Explicit Thread Creation +~~~~~~~~~~~~~~~~~~~~~~~~ + +.. code:: python + + from threading import Thread + from opencensus.common.runtime_context import RuntimeContext + + def work(name): + # here you will get the context from the parent thread + print(RuntimeContext) + + thread = Thread( + # propagate context explicitly + target=RuntimeContext.with_current_context(work), + args=('foobar',), + ) + thread.start() + thread.join() + +Thread Pool +~~~~~~~~~~~ + +.. code:: python + + from multiprocessing.dummy import Pool as ThreadPool + from opencensus.common.runtime_context import RuntimeContext + + def work(name): + # here you will get the context from the parent thread + print(RuntimeContext) + + pool = ThreadPool(2) + # propagate context explicitly + pool.map(RuntimeContext.with_current_context(work), [ + 'bear', + 'cat', + 'dog', + 'horse', + 'rabbit', + ]) + pool.close() + pool.join() + +References +---------- + +* `Examples `_ +* `OpenCensus Project `_ From 4bb97c2721beae71aff934dbc5920d08b0e0c77f Mon Sep 17 00:00:00 2001 From: Chris Kleinknecht Date: Tue, 23 Apr 2019 19:08:43 -0700 Subject: [PATCH 4/6] Bring back azure changelog unreleased header --- contrib/opencensus-ext-azure/CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/opencensus-ext-azure/CHANGELOG.md b/contrib/opencensus-ext-azure/CHANGELOG.md index 75f1d0832..0c65c876f 100644 --- a/contrib/opencensus-ext-azure/CHANGELOG.md +++ b/contrib/opencensus-ext-azure/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## Unreleased + ## 0.1.0 Released 2019-04-23 From 6142ae3d1433cf3b2219683e922b69e8382b9e0e Mon Sep 17 00:00:00 2001 From: Chris Kleinknecht Date: Tue, 23 Apr 2019 19:14:01 -0700 Subject: [PATCH 5/6] Update all ext pkg deps to 0.5.0 --- contrib/opencensus-ext-dbapi/setup.py | 2 +- contrib/opencensus-ext-httplib/setup.py | 2 +- contrib/opencensus-ext-jaeger/setup.py | 2 +- contrib/opencensus-ext-mysql/setup.py | 2 +- contrib/opencensus-ext-postgresql/setup.py | 2 +- contrib/opencensus-ext-prometheus/setup.py | 2 +- contrib/opencensus-ext-pymongo/setup.py | 2 +- contrib/opencensus-ext-pymysql/setup.py | 2 +- contrib/opencensus-ext-requests/setup.py | 2 +- contrib/opencensus-ext-sqlalchemy/setup.py | 2 +- contrib/opencensus-ext-threading/setup.py | 2 +- contrib/opencensus-ext-zipkin/setup.py | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/contrib/opencensus-ext-dbapi/setup.py b/contrib/opencensus-ext-dbapi/setup.py index 1257f7f8d..b29c67427 100644 --- a/contrib/opencensus-ext-dbapi/setup.py +++ b/contrib/opencensus-ext-dbapi/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.3.0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-httplib/setup.py b/contrib/opencensus-ext-httplib/setup.py index b1b5a0626..872f7c6a9 100644 --- a/contrib/opencensus-ext-httplib/setup.py +++ b/contrib/opencensus-ext-httplib/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.3.0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-jaeger/setup.py b/contrib/opencensus-ext-jaeger/setup.py index 07cccdcb5..6d2a0bdb0 100644 --- a/contrib/opencensus-ext-jaeger/setup.py +++ b/contrib/opencensus-ext-jaeger/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.4.0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', 'thrift >= 0.10.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-mysql/setup.py b/contrib/opencensus-ext-mysql/setup.py index 25946880a..dabc67098 100644 --- a/contrib/opencensus-ext-mysql/setup.py +++ b/contrib/opencensus-ext-mysql/setup.py @@ -40,7 +40,7 @@ long_description=open('README.rst').read(), install_requires=[ 'mysql-connector >= 2.1.6, < 3.0.0', - 'opencensus >= 0.3.0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', 'opencensus-ext-dbapi >= 0.1.0, < 1.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-postgresql/setup.py b/contrib/opencensus-ext-postgresql/setup.py index 12dab7690..8b4fd6cf4 100644 --- a/contrib/opencensus-ext-postgresql/setup.py +++ b/contrib/opencensus-ext-postgresql/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.3.0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', 'psycopg2-binary >= 2.7.3.1', ], extras_require={}, diff --git a/contrib/opencensus-ext-prometheus/setup.py b/contrib/opencensus-ext-prometheus/setup.py index 97a35faaa..a1396edff 100644 --- a/contrib/opencensus-ext-prometheus/setup.py +++ b/contrib/opencensus-ext-prometheus/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.4.0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', 'prometheus_client >= 0.5.0, < 1.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-pymongo/setup.py b/contrib/opencensus-ext-pymongo/setup.py index 23e911a45..ee3480270 100644 --- a/contrib/opencensus-ext-pymongo/setup.py +++ b/contrib/opencensus-ext-pymongo/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.3.0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', 'pymongo >= 3.1.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-pymysql/setup.py b/contrib/opencensus-ext-pymysql/setup.py index a88fe638b..31806134a 100644 --- a/contrib/opencensus-ext-pymysql/setup.py +++ b/contrib/opencensus-ext-pymysql/setup.py @@ -40,7 +40,7 @@ long_description=open('README.rst').read(), install_requires=[ 'PyMySQL >= 0.7.11, < 1.0.0', - 'opencensus >= 0.3.0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', 'opencensus-ext-dbapi >= 0.1.0, < 1.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-requests/setup.py b/contrib/opencensus-ext-requests/setup.py index 848b2e873..3859abdf6 100644 --- a/contrib/opencensus-ext-requests/setup.py +++ b/contrib/opencensus-ext-requests/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.3.0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', 'wrapt >= 1.0.0, < 2.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-sqlalchemy/setup.py b/contrib/opencensus-ext-sqlalchemy/setup.py index 346f38b20..45e6ce4a7 100644 --- a/contrib/opencensus-ext-sqlalchemy/setup.py +++ b/contrib/opencensus-ext-sqlalchemy/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.3.0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', 'SQLAlchemy >= 1.1.14, < 2.0.0', ], extras_require={}, diff --git a/contrib/opencensus-ext-threading/setup.py b/contrib/opencensus-ext-threading/setup.py index 12cfcaddc..c2935f6bb 100644 --- a/contrib/opencensus-ext-threading/setup.py +++ b/contrib/opencensus-ext-threading/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.3.0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', diff --git a/contrib/opencensus-ext-zipkin/setup.py b/contrib/opencensus-ext-zipkin/setup.py index 70f277c6b..a677caf10 100644 --- a/contrib/opencensus-ext-zipkin/setup.py +++ b/contrib/opencensus-ext-zipkin/setup.py @@ -39,7 +39,7 @@ include_package_data=True, long_description=open('README.rst').read(), install_requires=[ - 'opencensus >= 0.4.0, < 1.0.0', + 'opencensus >= 0.5.0, < 1.0.0', ], extras_require={}, license='Apache-2.0', From 1f41c6184c2d404ecb29442bdd855b7e5ed7ef00 Mon Sep 17 00:00:00 2001 From: Chris Kleinknecht Date: Wed, 24 Apr 2019 11:20:55 -0700 Subject: [PATCH 6/6] Bump release date --- CHANGELOG.md | 2 +- contrib/opencensus-ext-azure/CHANGELOG.md | 2 +- contrib/opencensus-ext-dbapi/CHANGELOG.md | 2 +- contrib/opencensus-ext-django/CHANGELOG.md | 2 +- contrib/opencensus-ext-flask/CHANGELOG.md | 2 +- contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md | 2 +- contrib/opencensus-ext-grpc/CHANGELOG.md | 2 +- contrib/opencensus-ext-httplib/CHANGELOG.md | 2 +- contrib/opencensus-ext-jaeger/CHANGELOG.md | 2 +- contrib/opencensus-ext-mysql/CHANGELOG.md | 2 +- contrib/opencensus-ext-ocagent/CHANGELOG.md | 2 +- contrib/opencensus-ext-postgresql/CHANGELOG.md | 2 +- contrib/opencensus-ext-prometheus/CHANGELOG.md | 2 +- contrib/opencensus-ext-pymongo/CHANGELOG.md | 2 +- contrib/opencensus-ext-pymysql/CHANGELOG.md | 2 +- contrib/opencensus-ext-pyramid/CHANGELOG.md | 2 +- contrib/opencensus-ext-requests/CHANGELOG.md | 2 +- contrib/opencensus-ext-sqlalchemy/CHANGELOG.md | 2 +- contrib/opencensus-ext-stackdriver/CHANGELOG.md | 2 +- contrib/opencensus-ext-threading/CHANGELOG.md | 2 +- contrib/opencensus-ext-zipkin/CHANGELOG.md | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ce8665cf0..b0052a6f6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.5.0 -Released 2019-04-23 +Released 2019-04-24 - Add cumulative API ([#626](https://github.com/census-instrumentation/opencensus-python/pull/626)) diff --git a/contrib/opencensus-ext-azure/CHANGELOG.md b/contrib/opencensus-ext-azure/CHANGELOG.md index 0c65c876f..e9d701ca0 100644 --- a/contrib/opencensus-ext-azure/CHANGELOG.md +++ b/contrib/opencensus-ext-azure/CHANGELOG.md @@ -3,6 +3,6 @@ ## Unreleased ## 0.1.0 -Released 2019-04-23 +Released 2019-04-24 - Initial release diff --git a/contrib/opencensus-ext-dbapi/CHANGELOG.md b/contrib/opencensus-ext-dbapi/CHANGELOG.md index 7fef49092..f94e0621b 100644 --- a/contrib/opencensus-ext-dbapi/CHANGELOG.md +++ b/contrib/opencensus-ext-dbapi/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.1.2 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples diff --git a/contrib/opencensus-ext-django/CHANGELOG.md b/contrib/opencensus-ext-django/CHANGELOG.md index bcc0e5413..a2708aa48 100644 --- a/contrib/opencensus-ext-django/CHANGELOG.md +++ b/contrib/opencensus-ext-django/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.3.0 -Released 2019-04-23 +Released 2019-04-24 - Decoupled exporter specific logic from configuration - Prevent anymonous user error on old django versions diff --git a/contrib/opencensus-ext-flask/CHANGELOG.md b/contrib/opencensus-ext-flask/CHANGELOG.md index af4171238..b7cc1e825 100644 --- a/contrib/opencensus-ext-flask/CHANGELOG.md +++ b/contrib/opencensus-ext-flask/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.3.0 -Released 2019-04-23 +Released 2019-04-24 - Decoupled exporter specific logic from configuration diff --git a/contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md b/contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md index 7fef49092..f94e0621b 100644 --- a/contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md +++ b/contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.1.2 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples diff --git a/contrib/opencensus-ext-grpc/CHANGELOG.md b/contrib/opencensus-ext-grpc/CHANGELOG.md index a426f7bf1..7d488ff24 100644 --- a/contrib/opencensus-ext-grpc/CHANGELOG.md +++ b/contrib/opencensus-ext-grpc/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.2.0 -Released 2019-04-23 +Released 2019-04-24 - Create WrappedResponseIterator for intercepted bi-directional rpc stream. diff --git a/contrib/opencensus-ext-httplib/CHANGELOG.md b/contrib/opencensus-ext-httplib/CHANGELOG.md index 7fef49092..f94e0621b 100644 --- a/contrib/opencensus-ext-httplib/CHANGELOG.md +++ b/contrib/opencensus-ext-httplib/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.1.2 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples diff --git a/contrib/opencensus-ext-jaeger/CHANGELOG.md b/contrib/opencensus-ext-jaeger/CHANGELOG.md index 22d22032c..2ebf8cba0 100644 --- a/contrib/opencensus-ext-jaeger/CHANGELOG.md +++ b/contrib/opencensus-ext-jaeger/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.2.1 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples diff --git a/contrib/opencensus-ext-mysql/CHANGELOG.md b/contrib/opencensus-ext-mysql/CHANGELOG.md index 7fef49092..f94e0621b 100644 --- a/contrib/opencensus-ext-mysql/CHANGELOG.md +++ b/contrib/opencensus-ext-mysql/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.1.2 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples diff --git a/contrib/opencensus-ext-ocagent/CHANGELOG.md b/contrib/opencensus-ext-ocagent/CHANGELOG.md index 8805c9887..0405d7e53 100644 --- a/contrib/opencensus-ext-ocagent/CHANGELOG.md +++ b/contrib/opencensus-ext-ocagent/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.3.0 -Released 2019-04-23 +Released 2019-04-24 - Add stats exporter diff --git a/contrib/opencensus-ext-postgresql/CHANGELOG.md b/contrib/opencensus-ext-postgresql/CHANGELOG.md index 7fef49092..f94e0621b 100644 --- a/contrib/opencensus-ext-postgresql/CHANGELOG.md +++ b/contrib/opencensus-ext-postgresql/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.1.2 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples diff --git a/contrib/opencensus-ext-prometheus/CHANGELOG.md b/contrib/opencensus-ext-prometheus/CHANGELOG.md index 79efb93b3..b622c409d 100644 --- a/contrib/opencensus-ext-prometheus/CHANGELOG.md +++ b/contrib/opencensus-ext-prometheus/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.2.1 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples diff --git a/contrib/opencensus-ext-pymongo/CHANGELOG.md b/contrib/opencensus-ext-pymongo/CHANGELOG.md index 7fef49092..f94e0621b 100644 --- a/contrib/opencensus-ext-pymongo/CHANGELOG.md +++ b/contrib/opencensus-ext-pymongo/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.1.2 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples diff --git a/contrib/opencensus-ext-pymysql/CHANGELOG.md b/contrib/opencensus-ext-pymysql/CHANGELOG.md index 7fef49092..f94e0621b 100644 --- a/contrib/opencensus-ext-pymysql/CHANGELOG.md +++ b/contrib/opencensus-ext-pymysql/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.1.2 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples diff --git a/contrib/opencensus-ext-pyramid/CHANGELOG.md b/contrib/opencensus-ext-pyramid/CHANGELOG.md index 1f001d7d3..46d3fbdcb 100644 --- a/contrib/opencensus-ext-pyramid/CHANGELOG.md +++ b/contrib/opencensus-ext-pyramid/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.3.0 -Released 2019-04-23 +Released 2019-04-24 - Refactor configuration, keep consistent with Flask/Django - Use W3C TraceContext propagation by default diff --git a/contrib/opencensus-ext-requests/CHANGELOG.md b/contrib/opencensus-ext-requests/CHANGELOG.md index 7fef49092..f94e0621b 100644 --- a/contrib/opencensus-ext-requests/CHANGELOG.md +++ b/contrib/opencensus-ext-requests/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.1.2 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples diff --git a/contrib/opencensus-ext-sqlalchemy/CHANGELOG.md b/contrib/opencensus-ext-sqlalchemy/CHANGELOG.md index 7fef49092..f94e0621b 100644 --- a/contrib/opencensus-ext-sqlalchemy/CHANGELOG.md +++ b/contrib/opencensus-ext-sqlalchemy/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.1.2 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples diff --git a/contrib/opencensus-ext-stackdriver/CHANGELOG.md b/contrib/opencensus-ext-stackdriver/CHANGELOG.md index 1e80d1a81..0865a33f8 100644 --- a/contrib/opencensus-ext-stackdriver/CHANGELOG.md +++ b/contrib/opencensus-ext-stackdriver/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.3.0 -Released 2019-04-23 +Released 2019-04-24 - Multiple changes to stats exporter API diff --git a/contrib/opencensus-ext-threading/CHANGELOG.md b/contrib/opencensus-ext-threading/CHANGELOG.md index 7fef49092..f94e0621b 100644 --- a/contrib/opencensus-ext-threading/CHANGELOG.md +++ b/contrib/opencensus-ext-threading/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.1.2 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples diff --git a/contrib/opencensus-ext-zipkin/CHANGELOG.md b/contrib/opencensus-ext-zipkin/CHANGELOG.md index 22d22032c..2ebf8cba0 100644 --- a/contrib/opencensus-ext-zipkin/CHANGELOG.md +++ b/contrib/opencensus-ext-zipkin/CHANGELOG.md @@ -3,7 +3,7 @@ ## Unreleased ## 0.2.1 -Released 2019-04-23 +Released 2019-04-24 - Updated docs and examples