Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repeated headers list for ASGI frameworks #2361

Merged
merged 24 commits into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c7f28eb
avoid loosing repeated HTTP headers
samuelcolvin Feb 23, 2024
2f6a998
fix fof wsgi, test in falcon
samuelcolvin Feb 23, 2024
88a6553
add changelog
samuelcolvin Feb 26, 2024
109ac8c
add more tests
samuelcolvin Feb 26, 2024
d71e093
linting
samuelcolvin Feb 26, 2024
8c89f4a
Merge branch 'main' into avoid-loosing-repeated-headers
samuelcolvin Mar 18, 2024
3ad7587
fix falcon and flask
samuelcolvin Mar 18, 2024
f29c5b9
remove unused test
samuelcolvin Mar 18, 2024
113d346
Merge branch 'main' into avoid-loosing-repeated-headers
lzchen Mar 18, 2024
0fa0a36
Use a list for repeated HTTP headers
samuelcolvin Mar 20, 2024
8f7ff48
linting
samuelcolvin Mar 20, 2024
a9a260a
Merge branch 'main' into repeated-headers-list
samuelcolvin May 1, 2024
dc39259
add changelog entry
samuelcolvin May 1, 2024
2ea4ebd
update docs and improve fastapi tests
samuelcolvin May 1, 2024
94ad9c1
revert changes in wsgi based webframeworks
samuelcolvin May 1, 2024
299ea99
fix linting
samuelcolvin May 1, 2024
7fe3d12
Merge branch 'main' into repeated-headers-list
ocelotl May 6, 2024
b32716b
Merge branch 'main' into repeated-headers-list
ocelotl May 8, 2024
26d9c73
Merge branch 'main' into repeated-headers-list
ocelotl May 14, 2024
fa3683f
Fix import path of typing symbols
ocelotl May 14, 2024
8dc8c16
Merge branch 'main' into repeated-headers-list
lzchen May 24, 2024
06c9816
Merge branch 'main' into repeated-headers-list
lzchen May 28, 2024
6c3b8e5
Merge branch 'main' into repeated-headers-list
lzchen May 30, 2024
d5bfbc1
Merge branch 'main' into repeated-headers-list
ocelotl Jun 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import unittest
from collections.abc import Mapping
from timeit import default_timer
from typing import Mapping, Tuple
from typing import Tuple
from unittest.mock import patch

import fastapi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@

from __future__ import annotations

from collections.abc import Mapping
ocelotl marked this conversation as resolved.
Show resolved Hide resolved
from os import environ
from re import IGNORECASE as RE_IGNORECASE
from re import compile as re_compile
from re import search
from typing import Callable, Iterable, Mapping, Optional
from typing import Callable, Iterable, Optional
from urllib.parse import urlparse, urlunparse

from opentelemetry.semconv.trace import SpanAttributes
Expand Down
Loading