Skip to content

Commit 933caf7

Browse files
authored
Merge pull request #37 from OpenVoiceOS/release-0.0.8a1
Release 0.0.8a1
2 parents f3eac0f + 4864526 commit 933caf7

3 files changed

Lines changed: 12 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
# Changelog
22

3-
## [0.0.7a1](https://github.com/OpenVoiceOS/ovos-messagebus/tree/0.0.7a1) (2024-11-05)
3+
## [0.0.8a1](https://github.com/OpenVoiceOS/ovos-messagebus/tree/0.0.8a1) (2024-11-21)
44

5-
[Full Changelog](https://github.com/OpenVoiceOS/ovos-messagebus/compare/0.0.6...0.0.7a1)
6-
7-
**Closed issues:**
8-
9-
- Add configuration option for filtered logs [\#24](https://github.com/OpenVoiceOS/ovos-messagebus/issues/24)
5+
[Full Changelog](https://github.com/OpenVoiceOS/ovos-messagebus/compare/0.0.7...0.0.8a1)
106

117
**Merged pull requests:**
128

13-
- fix: allow latest bus client version [\#34](https://github.com/OpenVoiceOS/ovos-messagebus/pull/34) ([JarbasAl](https://github.com/JarbasAl))
14-
- feat\(performance\): configurable filter [\#29](https://github.com/OpenVoiceOS/ovos-messagebus/pull/29) ([mikejgray](https://github.com/mikejgray))
9+
- fix: update deprecated imports from ovos-utils [\#36](https://github.com/OpenVoiceOS/ovos-messagebus/pull/36) ([JarbasAl](https://github.com/JarbasAl))
1510

1611

1712

ovos_messagebus/event_handler.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
import sys
1818
import traceback
1919

20-
from ovos_utils.fakebus import Message
21-
from ovos_utils.log import LOG
20+
from ovos_bus_client.message import Message
21+
from ovos_bus_client.session import SessionManager
2222
from ovos_config import Configuration
23+
from ovos_utils.log import LOG
2324
from pyee import EventEmitter
2425
from tornado.websocket import WebSocketHandler
25-
from ovos_bus_client.session import SessionManager
2626

2727
client_connections = []
2828

@@ -63,13 +63,12 @@ def on_message(self, message):
6363

6464
if deserialized_message.msg_type not in self.filter_logs:
6565
LOG.debug(deserialized_message.msg_type +
66-
f' source: {deserialized_message.context.get("source", [])}' +
67-
f' destination: {deserialized_message.context.get("destination", [])}\n'
68-
f'SESSION: {SessionManager.get(deserialized_message).serialize()}')
66+
f' source: {deserialized_message.context.get("source", [])}' +
67+
f' destination: {deserialized_message.context.get("destination", [])}\n'
68+
f'SESSION: {SessionManager.get(deserialized_message).serialize()}')
6969

7070
try:
71-
self.emitter.emit(deserialized_message.msg_type,
72-
deserialized_message)
71+
self.emitter.emit(deserialized_message.msg_type, deserialized_message)
7372
except Exception as e:
7473
LOG.exception(e)
7574
traceback.print_exc(file=sys.stdout)

ovos_messagebus/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# START_VERSION_BLOCK
22
VERSION_MAJOR = 0
33
VERSION_MINOR = 0
4-
VERSION_BUILD = 7
5-
VERSION_ALPHA = 0
4+
VERSION_BUILD = 8
5+
VERSION_ALPHA = 1
66
# END_VERSION_BLOCK

0 commit comments

Comments
 (0)