Skip to content

Commit

Permalink
release v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Mar 20, 2024
1 parent 08b1070 commit b4bbba3
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## v0.11.0 (Released 2024-03-20)

This release of moov-io/signedxml changes how IDs are generated. Previously IDs were generated with the current time
being used as randomness. Now IDs have their serial numbers generated with functions. The previous behavior can be
restored by passing `NumericSerialNumber` to each instance of an ID function.

**Before**
```go
messageID := rtp.MessageID(time.Now(), participantID, serial)
```

**After**
```go
messageID := rtp.MessageID(time.Now(), participantID, serial, rtp.NumericSerialNumber)
```

BREAKNIG CHANGES

- rtp: expose serial generator as a function, with helpers

BUILD

- fix(deps): update module cloud.google.com/go to v0.112.1
- fix(deps): update module github.com/stretchr/testify to v1.9.0

## v0.10.2 (Released 2024-02-12)

IMPROVEMENTS
Expand Down

0 comments on commit b4bbba3

Please sign in to comment.