From 6ea37f30a28097f7b02b18714ddb8218804ab536 Mon Sep 17 00:00:00 2001 From: Ashley Camba Garrido Date: Wed, 17 Jan 2018 09:52:48 +0100 Subject: Update changelog for 6.5.0 --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2aa1db4..b46ca27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,14 @@ Changelog All notable changes to this project will be documented in this file. Project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +6.5.0 (2018-01-15) +------------------ +* [Core] Fixed missing deprecation on `SantizePasswordProcessor` +* [Core] Improve exception handling in `Serializer.transform` +* [Core] Fixed `celery.register_logger_signal` ignoring subclasses +* [Core] Fixed sanitizer skipping `byte` instances +* [Lambda] Fixed `AttributeError` when `requestContext` not present + 6.4.0 (2017-12-11) ------------------ * [Core] Support for defining `sanitized_keys` on the client (pr/990) -- cgit v1.2.1 From 88d34a18733f8581d5b530f5b306552ccc22b13f Mon Sep 17 00:00:00 2001 From: Ashley Camba Garrido Date: Wed, 17 Jan 2018 09:53:24 +0100 Subject: =?UTF-8?q?Release:=206.5.0.dev0=20=E2=86=92=206.5.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- raven/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 39aeb62..451bf94 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -2,7 +2,7 @@ commit = False tag = False tag_name = {new_version} -current_version = 6.5.0.dev0 +current_version = 6.5.0 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? serialize = {major}.{minor}.{patch}.{release}{dev} diff --git a/raven/__init__.py b/raven/__init__.py index fb557aa..b16544b 100644 --- a/raven/__init__.py +++ b/raven/__init__.py @@ -12,7 +12,7 @@ import os.path __all__ = ('VERSION', 'Client', 'get_version') -VERSION = '6.5.0.dev0' +VERSION = '6.5.0' def _get_git_revision(path): -- cgit v1.2.1 From e0be0e920c1c89e13fba25aa82c15171643e5e31 Mon Sep 17 00:00:00 2001 From: Ashley Camba Date: Wed, 17 Jan 2018 11:58:01 +0100 Subject: Fix typo --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b46ca27..d1c411c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ Project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). 6.5.0 (2018-01-15) ------------------ -* [Core] Fixed missing deprecation on `SantizePasswordProcessor` +* [Core] Fixed missing deprecation on `processors.SanitizePasswordsProcessor` * [Core] Improve exception handling in `Serializer.transform` * [Core] Fixed `celery.register_logger_signal` ignoring subclasses * [Core] Fixed sanitizer skipping `byte` instances -- cgit v1.2.1