Skip to content

Commit b28c4b6

Browse files
Merge branch 'main' into dependabot/pip/all-52dec45471
2 parents eabf5d0 + f80bd24 commit b28c4b6

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/cicd.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
# Setup Python (faster than using Python container)
2828
- name: Setup Python
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: ${{ matrix.python }}
3232
cache: pip
@@ -76,7 +76,7 @@ jobs:
7676
uses: actions/checkout@v5
7777

7878
- name: Setup Python
79-
uses: actions/setup-python@v5
79+
uses: actions/setup-python@v6
8080
with:
8181
python-version: "3.11"
8282
cache: pip
@@ -105,7 +105,7 @@ jobs:
105105
- uses: actions/checkout@v5
106106

107107
- name: Setup Python
108-
uses: actions/setup-python@v5
108+
uses: actions/setup-python@v6
109109
with:
110110
python-version: "3.11"
111111
cache: pip

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Pages
2727
uses: actions/configure-pages@v5
2828
- name: Set up Python 3.10
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: "3.10"
3232
cache: pip

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v5
1414
- name: Set up Python 3.x
15-
uses: actions/setup-python@v5
15+
uses: actions/setup-python@v6
1616
with:
1717
python-version: "3.x"
1818
- name: Install release dependencies

stac_fastapi/pgstac/models/links.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
# These can be inferred from the item/collection so they aren't included in the database
1313
# Instead they are dynamically generated when querying the database using the classes defined below
14-
INFERRED_LINK_RELS = ["self", "item", "parent", "collection", "root"]
14+
INFERRED_LINK_RELS = ["self", "item", "parent", "collection", "root", "items"]
1515

1616

1717
def filter_links(links: List[Dict]) -> List[Dict]:

0 commit comments

Comments
 (0)