Releases: RingierIMU/service-bus-notifications-channel
Releases · RingierIMU/service-bus-notifications-channel
3.9.0 Laravel 11
3.8.0
What's Changed
- Dont log response if ok, it's a mirror of params by @datashaman in #41
- SOL-185: Add SQS channel by @datashaman in #40
Full Changelog: 3.7.1...3.8.0
3.7.1
What's Changed
- log response from event ingestion endpoint by @datashaman in #39
Full Changelog: 3.7.0...3.7.1
Laravel 10.x compatibility
3.6.1
Full Changelog: 3.6.0...3.6.1
Event Bus v2.0.0 support
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
Preserve milliseconds
3.4.0 Preserve microseconds (#33)
Add withResource, enhance withPayload and deprecate withResources
3.3.0 Overwrite default readme (#32)
Fix status code issue with auth endpoint
Fix token issue (#30) * Fix token issue, maybe * wip * wip