Skip to content

Commit 118af04

Browse files
author
thepirat000
committed
readme
1 parent a221883 commit 118af04

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ All notable changes to Audit.NET and its extensions will be documented in this f
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55

6+
## [31.2.0] - 2025-11-27:
7+
- **Audit.Grpc.Server**: A new extension to audit gRPC server calls using interceptors.
8+
69
## [31.1.0] - 2025-11-26:
710
- **Audit.Grpc.Client**: A new extension to audit gRPC client calls using interceptors.
811
- **Audit.NET**: Adding IncludeTimestamps configuration to the AuditScopeOptions to optionally include start/end timestamps in the AuditEvent.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ With Audit.NET, you can generate detailed tracking information for executed oper
1919
[File System](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.FileSystem/README.md),
2020
[SignalR](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.SignalR/README.md),
2121
[MongoClient](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.MongoClient/README.md),
22-
[GRPC Client](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.Grpc.Client/README.md),
22+
[gRPC Client](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.Grpc.Client/README.md),
23+
[gRPC Server](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.Grpc.Server/README.md),
2324
and [HttpClient](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.HttpClient/README.md).
2425

2526
- [**Output extensions**](#data-providers-included) are provided to log to [JSON Files](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.NET/Providers/FileDataProvider.cs),
@@ -1075,6 +1076,7 @@ The following packages are extensions to log interactions with different systems
10751076
<img src="https://i.imgur.com/wdVHFoc.png" alt="icon" width="90"/> | **[Audit.EntityFramework](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.EntityFramework/README.md)** | Generate detailed audit logs for saving operations on **Entity Framework**, by inheriting from a provided `DbContext` or `IdentityDbContext`. Includes support for EF 6 and EF 7 (EF Core).
10761077
<img src="https://i.imgur.com/Fn4thn0.png" alt="icon" width="90"/> | **[Audit.FileSystem](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.FileSystem/README.md)** | Generate audit logs by intercepting **file system** events via FileSystemWatcher.
10771078
<img src="https://i.imgur.com/ulACobW.png" alt="icon" width="90" /> | **[Audit.Grpc.Client](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.Grpc.Client/README.md)** | Generate detailed client-side audit logs for every gRPC client call, including metadata, request/response payload and trailers, by configuring a provided Interceptor.
1079+
<img src="https://i.imgur.com/ulACobW.png" alt="icon" width="90" /> | **[Audit.Grpc.Server](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.Grpc.Server/README.md)** | Generate detailed server-side audit logs for every gRPC call, including metadata, request/response payload and trailers, by configuring a provided Interceptor.
10781080
<img src="https://i.imgur.com/8lV5DRk.png" alt="icon" width="90" /> | **[Audit.HttpClient](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.HttpClient/README.md)** | Generate detailed client-side audit logs for **HttpClient** REST calls, by configuring a provided message handler.
10791081
<img src="https://i.imgur.com/ap6CeoG.png" alt="icon" width="90"/> | **[Audit.MVC](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.Mvc/README.md)** | Generate detailed audit logs by decorating **MVC** Actions and Controllers with an action filter attribute. Includes support for ASP.NET Core MVC.
10801082
<img src="https://i.imgur.com/GB2e52X.jpg" alt="icon" width="90"/> | **[Audit.SignalR](https://github.com/thepirat000/Audit.NET/blob/master/src/Audit.SignalR/README.md)** | Generate audit logs for **SignalR** and **SignalR Core** invocations by intercepting the hub processing

0 commit comments

Comments
 (0)