Skip to content

Commit ffe98a3

Browse files
authored
fix(py): Regenerate CABI header to add profile data category (#1278)
1 parent 86bafc5 commit ffe98a3

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

py/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
- Fix missing profile data category in the python library of 0.8.11 by regenerating the header for C-bindings. ([#1278](https://github.com/getsentry/relay/pull/1278))
6+
37
## 0.8.11
48

59
- Add protocol support for custom units on transaction measurements. ([#1256](https://github.com/getsentry/relay/pull/1256))

relay-cabi/include/relay.h

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#ifndef RELAY_H_INCLUDED
44
#define RELAY_H_INCLUDED
55

6-
/* Generated with cbindgen:0.19.0 */
6+
/* Generated with cbindgen:0.23.0 */
77

88
/* Warning, this file is autogenerated. Do not modify this manually. */
99

@@ -40,6 +40,10 @@ enum RelayDataCategory {
4040
* Session updates. Quantity is the number of updates in the batch.
4141
*/
4242
RELAY_DATA_CATEGORY_SESSION = 5,
43+
/**
44+
* A profile
45+
*/
46+
RELAY_DATA_CATEGORY_PROFILE = 6,
4347
/**
4448
* Any other data category not known by this Relay.
4549
*/

0 commit comments

Comments
 (0)