From 23b59a3710f7d8fbc6357675c6c7e53adf17548f Mon Sep 17 00:00:00 2001 From: Leighton Date: Mon, 30 Sep 2019 18:36:06 -0700 Subject: [PATCH 1/4] Update changelog --- contrib/opencensus-ext-azure/CHANGELOG.md | 12 ++++++++++-- contrib/opencensus-ext-django/CHANGELOG.md | 10 ++++++++++ 2 files changed, 20 insertions(+), 2 deletions(-) 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-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)) From fb9b289747d6a2f12f1da3354012270e4271364b Mon Sep 17 00:00:00 2001 From: Leighton Date: Mon, 30 Sep 2019 18:43:24 -0700 Subject: [PATCH 2/4] Bump azure version, update setup.py --- CHANGELOG.md | 19 ++++++++++++++++--- .../opencensus/ext/azure/common/version.py | 2 +- contrib/opencensus-ext-azure/setup.py | 6 +++--- contrib/opencensus-ext-flask/CHANGELOG.md | 4 ++++ contrib/opencensus-ext-httplib/CHANGELOG.md | 4 ++++ contrib/opencensus-ext-pyramid/CHANGELOG.md | 4 ++++ contrib/opencensus-ext-requests/CHANGELOG.md | 4 ++++ .../opencensus-ext-stackdriver/CHANGELOG.md | 8 ++++++++ 8 files changed, 44 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 89197e7b5..286933e92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,25 @@ # Changelog ## Unreleased -- Updated `django`, `flask`, `httplib`, `requests` and `pyramid` modules - ([#755](https://github.com/census-instrumentation/opencensus-python/pull/755)) + +## 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)) ## 0.7.2 Released 2019-08-16 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-flask/CHANGELOG.md b/contrib/opencensus-ext-flask/CHANGELOG.md index 549e8c993..2d1b80169 100644 --- a/contrib/opencensus-ext-flask/CHANGELOG.md +++ b/contrib/opencensus-ext-flask/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-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 From f82e3b33d4337663ad2e42d04e07eacd1bfa4f0b Mon Sep 17 00:00:00 2001 From: Leighton Date: Mon, 30 Sep 2019 18:46:05 -0700 Subject: [PATCH 3/4] Add line --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 286933e92..e4e02c005 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ Released 2019-08-26 - 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)) ## 0.7.2 Released 2019-08-16 From ca590ff28422b3f910cf64ea2aad543a8b3e343f Mon Sep 17 00:00:00 2001 From: Leighton Date: Tue, 1 Oct 2019 13:14:20 -0700 Subject: [PATCH 4/4] update for flask --- CHANGELOG.md | 6 ++++++ contrib/opencensus-ext-flask/CHANGELOG.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e4e02c005..bb78b55d3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## Unreleased +## 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 diff --git a/contrib/opencensus-ext-flask/CHANGELOG.md b/contrib/opencensus-ext-flask/CHANGELOG.md index 2d1b80169..2b8246fd3 100644 --- a/contrib/opencensus-ext-flask/CHANGELOG.md +++ b/contrib/opencensus-ext-flask/CHANGELOG.md @@ -2,6 +2,12 @@ ## 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