You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/eventgrid/Azure.Messaging.EventGrid/CHANGELOG.md
+8-3Lines changed: 8 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,22 @@
1
1
# Release History
2
2
3
-
## 5.0.0 (2025-06-25)
3
+
## 5.0.0 (2025-06-26)
4
4
5
5
### Features Added
6
6
7
7
- Added a dependency on the `Azure.Messaging.EventGrid.SystemEvents` package.
8
-
The system events are now referenced via type-forwarding.
8
+
The system events are now referenced via [type forwarding](https://learn.microsoft.com/dotnet/standard/assembly/type-forwarding). If you encounter any exceptions
9
+
related to missing types, ensure that you `dotnet clean` and `dotnet build` your project. You should not
10
+
use the `Azure.Messaging.EventGrid.SystemEvents` package with a version of `Azure.Messaging.EventGrid` prior to 5.0.0,
11
+
as it will result in type conflicts.
9
12
10
13
### Breaking Changes
11
14
12
15
- Various system events have been updated to reflect the actual service behavior.
13
16
There are no binary breaks or compilation breaks, but there are behavior breaking changes. For instance,
14
-
some properties that were previously incorrectly marked as optional, have been marked as required.
17
+
some properties that were previously incorrectly marked as optional, have been marked as required. If you
18
+
are using the `EventGridModelFactory` methods to create such events, and you encounter `ArgumentNullException` when
19
+
upgrading, you will need to update your code to provide the required properties.
0 commit comments