]> git.ipfire.org Git - thirdparty/fastapi/fastapi.git/commitdiff
✏ Update Pydantic GitHub URLs (#5952)
authorYasser Tahiri <yasserth19@gmail.com>
Thu, 9 Feb 2023 19:28:54 +0000 (23:28 +0400)
committerGitHub <noreply@github.com>
Thu, 9 Feb 2023 19:28:54 +0000 (20:28 +0100)
.github/DISCUSSION_TEMPLATE/questions.yml
docs/en/docs/release-notes.md
tests/test_tutorial/test_dataclasses/test_tutorial002.py

index cbe2b9167b260c0db8819331a0735f3d438b601e..3726b7d18dfeade5df847c42161ef9bb850a472c 100644 (file)
@@ -36,7 +36,7 @@ body:
           required: true
         - label: I already read and followed all the tutorial in the docs and didn't find an answer.
           required: true
-        - label: I already checked if it is not related to FastAPI but to [Pydantic](https://github.com/samuelcolvin/pydantic).
+        - label: I already checked if it is not related to FastAPI but to [Pydantic](https://github.com/pydantic/pydantic).
           required: true
         - label: I already checked if it is not related to FastAPI but to [Swagger UI](https://github.com/swagger-api/swagger-ui).
           required: true
index 0846de1bbbe5fb49a5e0bb6dd4154603fa5fe604..f24c547993bb517ba762d35770ff068c38f09161 100644 (file)
@@ -1244,7 +1244,7 @@ Thanks to [Dima Boger](https://twitter.com/b0g3r) for the security report! 🙇
 
 ### Security fixes
 
-* 📌 Upgrade pydantic pin, to handle security vulnerability [CVE-2021-29510](https://github.com/samuelcolvin/pydantic/security/advisories/GHSA-5jqp-qgf6-3pvh). PR [#3213](https://github.com/tiangolo/fastapi/pull/3213) by [@tiangolo](https://github.com/tiangolo).
+* 📌 Upgrade pydantic pin, to handle security vulnerability [CVE-2021-29510](https://github.com/pydantic/pydantic/security/advisories/GHSA-5jqp-qgf6-3pvh). PR [#3213](https://github.com/tiangolo/fastapi/pull/3213) by [@tiangolo](https://github.com/tiangolo).
 
 ## 0.65.0
 
@@ -1799,11 +1799,11 @@ Note: all the previous parameters are still there, so it's still possible to dec
 
 ## 0.55.1
 
-* Fix handling of enums with their own schema in path parameters. To support [samuelcolvin/pydantic#1432](https://github.com/samuelcolvin/pydantic/pull/1432) in FastAPI. PR [#1463](https://github.com/tiangolo/fastapi/pull/1463).
+* Fix handling of enums with their own schema in path parameters. To support [pydantic/pydantic#1432](https://github.com/pydantic/pydantic/pull/1432) in FastAPI. PR [#1463](https://github.com/tiangolo/fastapi/pull/1463).
 
 ## 0.55.0
 
-* Allow enums to allow them to have their own schemas in OpenAPI. To support [samuelcolvin/pydantic#1432](https://github.com/samuelcolvin/pydantic/pull/1432) in FastAPI. PR [#1461](https://github.com/tiangolo/fastapi/pull/1461).
+* Allow enums to allow them to have their own schemas in OpenAPI. To support [pydantic/pydantic#1432](https://github.com/pydantic/pydantic/pull/1432) in FastAPI. PR [#1461](https://github.com/tiangolo/fastapi/pull/1461).
 * Add links for funding through [GitHub sponsors](https://github.com/sponsors/tiangolo). PR [#1425](https://github.com/tiangolo/fastapi/pull/1425).
 * Update issue template for for questions. PR [#1344](https://github.com/tiangolo/fastapi/pull/1344) by [@retnikt](https://github.com/retnikt).
 * Update warning about storing passwords in docs. PR [#1336](https://github.com/tiangolo/fastapi/pull/1336) by [@skorokithakis](https://github.com/skorokithakis).
index 34aeb0be5f54a3a05f9e5e4d26722c40809c6f81..f5597e30c4a1adf810e969319ff4bf2ecafb2771 100644 (file)
@@ -54,7 +54,7 @@ def test_openapi_schema():
     response = client.get("/openapi.json")
     assert response.status_code == 200
     # TODO: remove this once Pydantic 1.9 is released
-    # Ref: https://github.com/samuelcolvin/pydantic/pull/2557
+    # Ref: https://github.com/pydantic/pydantic/pull/2557
     data = response.json()
     alternative_data1 = deepcopy(data)
     alternative_data2 = deepcopy(data)