Open

Description
Initial Checks
- I confirm that I'm using Pydantic V2
Description
AnyURL now adds a trailing slash in validation of URLs that dont have a trailing slash. This caused CORS issues for us, because CORS doesnt allow trailing slash (I think, seems to be written here: https://www.w3.org/TR/2008/WD-access-control-20080214/)
In my opinion i see this as a bug because I dont see the option toggle this addition of trailing slash. Maybe its expected behaviour, please let me know then how I can turn it off.
Example Code
from pydantic import AnyHttpUrl as AnyUrlv2
from pydantic.v1 import AnyHttpUrl as AnyUrlv1
print(AnyUrlv2("http://localhost:3000"))
print(AnyUrlv1("http://localhost:3000", scheme="http"))
prints:
http://localhost:3000/
http://localhost:3000
Python, Pydantic & OS Version
pydantic version: 2.2.1
pydantic-core version: 2.6.1
pydantic-core build: profile=release pgo=false
install path: /Users/charelfeltenrq/.pyenv/versions/3.10.8/lib/python3.10/site-packages/pydantic
python version: 3.10.8 (main, Dec 2 2022, 11:54:08) [Clang 14.0.0 (clang-1400.0.29.202)]
platform: macOS-13.3.1-arm64-arm-64bit
optional deps. installed: ['email-validator', 'typing-extensions']
Selected Assignee: @dmontagu