diff --git a/CHANGELOG.md b/CHANGELOG.md index 89197e7b5..bb78b55d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,30 @@ # Changelog ## Unreleased -- Updated `django`, `flask`, `httplib`, `requests` and `pyramid` modules - ([#755](https://github.com/census-instrumentation/opencensus-python/pull/755)) + +## 0.7.5 +Released 2019-10-01 + +- Updated `flask` module + ([#781](https://github.com/census-instrumentation/opencensus-python/pull/781)) + +## 0.7.4 +Released 2019-09-30 + +- Updated `azure` module + ([#773](https://github.com/census-instrumentation/opencensus-python/pull/773), + [#767](https://github.com/census-instrumentation/opencensus-python/pull/767)) + +- Updated `django` module + ([#775](https://github.com/census-instrumentation/opencensus-python/pull/775)) + +## 0.7.3 +Released 2019-08-26 + - Added `http code` to `grpc code` status code mapping on `utils` ([#746](https://github.com/census-instrumentation/opencensus-python/pull/746)) +- Updated `django`, `flask`, `httplib`, `requests` and `pyramid` modules + ([#755](https://github.com/census-instrumentation/opencensus-python/pull/755)) - Updated `requests` module ([#771](https://github.com/census-instrumentation/opencensus-python/pull/771)) diff --git a/contrib/opencensus-ext-azure/CHANGELOG.md b/contrib/opencensus-ext-azure/CHANGELOG.md index 1a5688f47..7731e418b 100644 --- a/contrib/opencensus-ext-azure/CHANGELOG.md +++ b/contrib/opencensus-ext-azure/CHANGELOG.md @@ -1,12 +1,20 @@ # Changelog ## Unreleased + +## 1.0.0 +Released 2019-09-30 + +- Standard Metrics - Incoming requests execution time + ([#773](https://github.com/census-instrumentation/opencensus-python/pull/773)) - Implement connection strings ([#767](https://github.com/census-instrumentation/opencensus-python/pull/767)) + +## 0.7.1 +Released 2019-08-26 + - Standard metrics incoming requests per second ([#758](https://github.com/census-instrumentation/opencensus-python/pull/758)) -- Standard metrics incoming requests average execution rate - ([#773](https://github.com/census-instrumentation/opencensus-python/pull/773)) ## 0.7.0 Released 2019-07-31 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 dffc606db..71eb269bd 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.8.dev0' +__version__ = '1.0.dev0' diff --git a/contrib/opencensus-ext-azure/setup.py b/contrib/opencensus-ext-azure/setup.py index 3b5976bcd..a5efc1676 100644 --- a/contrib/opencensus-ext-azure/setup.py +++ b/contrib/opencensus-ext-azure/setup.py @@ -22,9 +22,9 @@ author='OpenCensus Authors', author_email='census-developers@googlegroups.com', classifiers=[ - 'Intended Audience :: Developers', - 'Development Status :: 3 - Alpha', - 'Intended Audience :: Developers', + 'Intended Audience :: End Users/Desktop', + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python', 'Programming Language :: Python :: 2', diff --git a/contrib/opencensus-ext-django/CHANGELOG.md b/contrib/opencensus-ext-django/CHANGELOG.md index 284104707..79d6d9a43 100644 --- a/contrib/opencensus-ext-django/CHANGELOG.md +++ b/contrib/opencensus-ext-django/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog ## Unreleased + +## 0.7.2 +Released 2019-09-30 + +- Use Django 2.0 DB instrumentation +([#775](https://github.com/census-instrumentation/opencensus-python/pull/775)) + +## 0.7.1 +Released 2019-08-26 + - Updated `http.status_code` attribute to be an int. ([#755](https://github.com/census-instrumentation/opencensus-python/pull/755)) diff --git a/contrib/opencensus-ext-flask/CHANGELOG.md b/contrib/opencensus-ext-flask/CHANGELOG.md index 549e8c993..2b8246fd3 100644 --- a/contrib/opencensus-ext-flask/CHANGELOG.md +++ b/contrib/opencensus-ext-flask/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog ## Unreleased + +## 0.7.3 +Released 2019-10-01 + +- Check that `url_rule` is not `None` before dereferencing property. + ([#781](https://github.com/census-instrumentation/opencensus-python/pull/781)) + +## 0.7.2 +Released 2019-08-26 + - Updated `http.status_code` attribute to be an int. ([#755](https://github.com/census-instrumentation/opencensus-python/pull/755)) diff --git a/contrib/opencensus-ext-httplib/CHANGELOG.md b/contrib/opencensus-ext-httplib/CHANGELOG.md index 2bd0acffd..d2241c7af 100644 --- a/contrib/opencensus-ext-httplib/CHANGELOG.md +++ b/contrib/opencensus-ext-httplib/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## Unreleased + +## 0.7.2 +Released 2019-08-26 + - Updated `http.status_code` attribute to be an int. ([#755](https://github.com/census-instrumentation/opencensus-python/pull/755)) diff --git a/contrib/opencensus-ext-pyramid/CHANGELOG.md b/contrib/opencensus-ext-pyramid/CHANGELOG.md index d7d68ed91..fd4831563 100644 --- a/contrib/opencensus-ext-pyramid/CHANGELOG.md +++ b/contrib/opencensus-ext-pyramid/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## Unreleased + +## 0.7.1 +Released 2019-08-26 + - Updated `http.status_code` attribute to be an int. ([#755](https://github.com/census-instrumentation/opencensus-python/pull/755)) diff --git a/contrib/opencensus-ext-requests/CHANGELOG.md b/contrib/opencensus-ext-requests/CHANGELOG.md index 9ffe6c8a9..cacdd28a3 100644 --- a/contrib/opencensus-ext-requests/CHANGELOG.md +++ b/contrib/opencensus-ext-requests/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## Unreleased + +## 0.7.2 +Released 2019-08-26 + - Added attributes following specs listed [here](https://github.com/census-instrumentation/opencensus-specs/blob/master/trace/HTTP.md#attributes) ([#746](https://github.com/census-instrumentation/opencensus-python/pull/746)) - Fixed span name diff --git a/contrib/opencensus-ext-stackdriver/CHANGELOG.md b/contrib/opencensus-ext-stackdriver/CHANGELOG.md index f5ae8e0e1..a3b8b4c7b 100644 --- a/contrib/opencensus-ext-stackdriver/CHANGELOG.md +++ b/contrib/opencensus-ext-stackdriver/CHANGELOG.md @@ -2,6 +2,14 @@ ## Unreleased +## 0.7.2 +Released 2019-08-26 + + - Delete SD integ test metric descriptors + ([#770](https://github.com/census-instrumentation/opencensus-python/pull/770)) + - Updated `http.status_code` attribute to be an int. + ([#755](https://github.com/census-instrumentation/opencensus-python/pull/755)) + ## 0.7.1 Released 2019-08-05