Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jpadilla committed Oct 7, 2024
1 parent c387281 commit defdc16
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,19 @@ Changed
- Use ``Sequence`` for parameter types rather than ``List`` where applicable by @imnotjames in `#970 <https://github.com/jpadilla/pyjwt/pull/970>`__
- Remove algorithm requirement from JWT API, instead relying on JWS API for enforcement, by @luhn in `#975 <https://github.com/jpadilla/pyjwt/pull/975>`__
- Add JWK support to JWT encode by @luhn in `#979 <https://github.com/jpadilla/pyjwt/pull/979>`__
- Encoding and decoding payloads using the `none` algorithm

Before:

```
jwt.encode({"payload":"abc"}, key=None, algorithm=None)
```

After:

```
jwt.encode({"payload":"abc"}, key=None, algorithm='none')
```

Fixed
~~~~~
Expand Down

0 comments on commit defdc16

Please sign in to comment.