Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jpadilla committed Oct 13, 2024
1 parent bc97f6a commit c8e1b13
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,13 @@ Changed

Before:

```
jwt.encode({"payload":"abc"}, key=None, algorithm=None)
```
.. code-block:: python
jwt.encode({"payload":"abc"}, key=None, algorithm=None)
After:

```
jwt.encode({"payload":"abc"}, key=None, algorithm='none')
```
.. code-block:: python
jwt.encode({"payload":"abc"}, key=None, algorithm='none')
- Added validation for 'sub' (subject) and 'jti' (JWT ID) claims in tokens

Expand Down

0 comments on commit c8e1b13

Please sign in to comment.