Skip to content

Commit

Permalink
0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kalaspuff committed Feb 27, 2018
1 parent 674f173 commit 5933d22
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
Changes
=======

0.8.0 (2018-02-27)
------------------
- It's not possible to specify queue_name on AWS SNS+SQS and AMQP decorators
for competing queues. If not specified an automatically generated hash will
be used as queue name as it worked previously.

- Fixes an issue with relative imports from within service files, which
resulted in "SystemParent module '' not loaded, cannot perform relative
import" or "ImportError: attempted relative import with no known parent
package". (github: **0x1EE7**)

- Exceptions that are subclasses of ``AmqpInternalServiceError`` and
``AWSSNSSQSInternalServiceError`` will now also work in the same way,
resulting in the messages to be retried when raised.

- Service classes now have built in log functions for setting up logging to
file as well as logging. They are ``self.log_setup('logname', level,
filename)`` and ``self.log('logname', level, message)``.

- HTTP services will have their access log color coded when outputting to
nothing else than stdout, which should be helpful in an overview during
development.


0.7.0 (2018-01-27)
------------------

Expand Down
2 changes: 1 addition & 1 deletion tomodachi/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.7.0'
__version__ = '0.8.0'

if __name__ == "__main__":
print(__version__)

0 comments on commit 5933d22

Please sign in to comment.