Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 86b73e0

Browse files
author
Nils Lindemann
authored
Merge branch 'tiangolo:master' into review-en/docs/contributing.md
2 parents 8d332ac + b84f9f6 commit 86b73e0

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.github/workflows/build-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: pip install -r requirements-docs.txt
5151
# Install MkDocs Material Insiders here just to put it in the cache for the rest of the steps
5252
- name: Install Material for MkDocs Insiders
53-
if: ( github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false ) && steps.cache.outputs.cache-hit != 'true'
53+
if: ( github.event_name != 'pull_request' || github.secret_source == 'Actions' ) && steps.cache.outputs.cache-hit != 'true'
5454
run: |
5555
pip install git+https://${{ secrets.FASTAPI_MKDOCS_MATERIAL_INSIDERS }}@github.com/squidfunk/mkdocs-material-insiders.git
5656
pip install git+https://${{ secrets.FASTAPI_MKDOCS_MATERIAL_INSIDERS }}@github.com/pawamoy-insiders/griffe-typing-deprecated.git
@@ -88,7 +88,7 @@ jobs:
8888
if: steps.cache.outputs.cache-hit != 'true'
8989
run: pip install -r requirements-docs.txt
9090
- name: Install Material for MkDocs Insiders
91-
if: ( github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false ) && steps.cache.outputs.cache-hit != 'true'
91+
if: ( github.event_name != 'pull_request' || github.secret_source != 'Actions' ) && steps.cache.outputs.cache-hit != 'true'
9292
run: |
9393
pip install git+https://${{ secrets.FASTAPI_MKDOCS_MATERIAL_INSIDERS }}@github.com/squidfunk/mkdocs-material-insiders.git
9494
pip install git+https://${{ secrets.FASTAPI_MKDOCS_MATERIAL_INSIDERS }}@github.com/pawamoy-insiders/griffe-typing-deprecated.git

docs/en/docs/release-notes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ hide:
77

88
## Latest Changes
99

10+
* ⬆ Bump pillow from 9.5.0 to 10.1.0. PR [#10446](https://github.com/tiangolo/fastapi/pull/10446) by [@dependabot[bot]](https://github.com/apps/dependabot).
11+
* ⬆ Update mkdocs-material requirement from <9.0.0,>=8.1.4 to >=8.1.4,<10.0.0. PR [#5862](https://github.com/tiangolo/fastapi/pull/5862) by [@dependabot[bot]](https://github.com/apps/dependabot).
12+
* ⬆ Bump mkdocs-material from 9.1.21 to 9.4.7. PR [#10545](https://github.com/tiangolo/fastapi/pull/10545) by [@dependabot[bot]](https://github.com/apps/dependabot).
13+
* 👷 Install MkDocs Material Insiders only when secrets are available, for Dependabot. PR [#10544](https://github.com/tiangolo/fastapi/pull/10544) by [@tiangolo](https://github.com/tiangolo).
1014
* 🔧 Update sponsors badges, Databento. PR [#10519](https://github.com/tiangolo/fastapi/pull/10519) by [@tiangolo](https://github.com/tiangolo).
1115
* 👷 Adopt Ruff format. PR [#10517](https://github.com/tiangolo/fastapi/pull/10517) by [@tiangolo](https://github.com/tiangolo).
1216
* 🔧 Add `CITATION.cff` file for academic citations. PR [#10496](https://github.com/tiangolo/fastapi/pull/10496) by [@tiangolo](https://github.com/tiangolo).

requirements-docs.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-e .
22
-r requirements-docs-tests.txt
3-
mkdocs-material==9.1.21
3+
mkdocs-material==9.4.7
44
mdx-include >=1.4.1,<2.0.0
55
mkdocs-markdownextradata-plugin >=0.1.7,<0.3.0
66
mkdocs-redirects>=1.2.1,<1.3.0
@@ -10,7 +10,7 @@ pyyaml >=5.3.1,<7.0.0
1010
# For Material for MkDocs, Chinese search
1111
jieba==0.42.1
1212
# For image processing by Material for MkDocs
13-
pillow==9.5.0
13+
pillow==10.1.0
1414
# For image processing by Material for MkDocs
1515
cairosvg==2.7.0
1616
mkdocstrings[python]==0.23.0

0 commit comments

Comments
 (0)