Skip to content

Releases: RingierIMU/service-bus-notifications-channel

3.9.0 Laravel 11

25 Oct 13:23
ddf27c6
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.8.0...3.9.0

3.8.0

05 Mar 11:01
5a5734a
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.7.1...3.8.0

3.7.1

24 Oct 10:19
72d2e86
Compare
Choose a tag to compare

What's Changed

Full Changelog: 3.7.0...3.7.1

Laravel 10.x compatibility

31 May 11:14
a11cad6
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.6.1...3.7.0

3.6.1

08 May 09:04
02ca59a
Compare
Choose a tag to compare

Full Changelog: 3.6.0...3.6.1

Event Bus v2.0.0 support

22 Sep 15:54
f7baff0
Compare
Choose a tag to compare

What's Changed

Support for event bus v2.0.0 authentication and events processing #36

Requirements

The source project need to add the node_id field in the config array if you are planning to use v2.

pre-release config array in source project file: config/services.php
https://github.com/RingierIMU/property-core-backend/blob/cd51e4f3a1c307723e2b9ad003c92898443cc242/config/services.php#L84

'service_bus' => [
    'culture' => 'en_GB',
    'dont_report' => [
        // Add service bus event types here that
        // should not be logged (too much traffic).
        //
        // For example: ListingViewed
    ],
    'enabled' => false,
    'endpoint' => env('RINGIER_SB_ENDPOINT', 'https://bus.staging.ritdu.tech/v1/'),
    'password' => '',
    'username' => '',
    'venture_config_id' => '',
    'validator_url' => 'https://validator.bus.520152236921.ritdu.tech/api/schema/validate',
    'version' => env('RINGIER_SB_VERSION', '1.0.0'),
    'send_notifications' => env('RINGIER_SB_SEND_NOTIFICATION', true),
],

post-release config array in source project

'service_bus' => [
    'culture' => 'en_GB',
    'dont_report' => [
        // Add service bus event types here that
        // should not be logged (too much traffic).
        //
        // For example: ListingViewed
    ],
    'enabled' => false,
    'endpoint' => env('RINGIER_SB_ENDPOINT', 'https://bus.staging.ritdu.tech/v1/'),
    'password' => '',
    'username' => '',
    'venture_config_id' => '',
    'node_id' => '',
    'from' => '',
    'validator_url' => 'https://validator.bus.520152236921.ritdu.tech/api/schema/validate',
    'version' => env('RINGIER_SB_VERSION', '1.0.0'),
    'send_notifications' => env('RINGIER_SB_SEND_NOTIFICATION', true),
],

Full Changelog: 3.5.0...3.6.0

Laravel 9 support

17 Mar 11:49
7562c06
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 3.4.0...3.5.0

Preserve milliseconds

14 Jul 10:58
0cf1d31
Compare
Choose a tag to compare
3.4.0

Preserve microseconds (#33)

Add withResource, enhance withPayload and deprecate withResources

23 Jun 12:49
b67098c
Compare
Choose a tag to compare

Fix status code issue with auth endpoint

25 Jan 14:36
e5988f0
Compare
Choose a tag to compare
Fix token issue (#30)

* Fix token issue, maybe

* wip

* wip