Skip to content

v0.24.0 - June 09, 2026

Choose a tag to compare

@betinacosta betinacosta released this 09 Jun 12:39
e2ad8a4

Improvements

  • auditlog-ng: Event names are now derived directly from DESCRIPTOR.full_name, aligning the OTEL event name format with the ALS protobuf schema
    and the Audit Log SDK implementation. No manual event type string is needed anymore.

Bug Fixes

  • auditlog-ng: Fixed incorrect OTEL event name format — names were previously constructed as sap.als.AuditEvent..v2 but are now correctly
    emitted as sap.auditlog.auditevent.v2. per the protobuf descriptor convention.

Breaking Changes

⚠️ Important: This section is critical for users upgrading from previous versions

  • AuditlogNgClient.send() / send_json() — event_type parameter removed: The optional event_type: str argument has been removed from both methods.
    The event type is now always derived from event.DESCRIPTOR.full_name. Update all call sites by removing the event_type argument:

Before

  client.send(event, "DataAccess")
  client.send_json(event, "DataAccess") 

After

  client.send(event)                                                                                                                               
  client.send_json(event)     

Contributors