Skip to content

Commit 929d505

Browse files
committed
Cleanup, changes, contributors
1 parent 6ea287c commit 929d505

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

CHANGES.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- [pull #590] Fix underscores within bold text getting emphasized (#589)
66
- [pull #591] Add Alerts extra
77
- [pull #595] Fix img alt text being processed as markdown (#594)
8+
- [pull #600] Use urandom for SECRET_SALT
89
- [pull #602] Fix XSS issue in safe mode (#601)
910
- [pull #604] Fix XSS injection in image URLs (#603)
1011

CONTRIBUTORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,4 @@ Kishore (github.com/jk6521)
6060
Ircama (github.com/Ircama)
6161
Ankit Mahato (github.com/animator)
6262
Eric Dufresne (github.com/edufresne)
63+
Lyra Rebane (github.com/rebane2001)

lib/markdown2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@
119119
from abc import ABC, abstractmethod
120120
import functools
121121
from hashlib import sha256
122-
from random import randint, random
122+
from random import random
123123
from typing import Any, Callable, Collection, Dict, List, Literal, Optional, Tuple, Type, TypedDict, Union
124124
from enum import IntEnum, auto
125125
from os import urandom

0 commit comments

Comments
 (0)