Skip to content

Commit f98f6a9

Browse files
authored
Merge branch 'master' into lru_cache_fix
2 parents 13c9c85 + 8ced660 commit f98f6a9

24 files changed

+296
-186
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ jobs:
4545
python-version: 3.12
4646

4747
- run: |
48-
pip install jinja2
49-
python scripts/split-tox-gh-actions/split-tox-gh-actions.py --fail-on-changes
48+
pip install -r scripts/split_tox_gh_actions/requirements.txt
49+
python scripts/split_tox_gh_actions/split_tox_gh_actions.py --fail-on-changes
5050
5151
build_lambda_layer:
5252
name: Build Package
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: "Automation: Notify issues for release"
2+
on:
3+
release:
4+
types:
5+
- published
6+
workflow_dispatch:
7+
inputs:
8+
version:
9+
description: Which version to notify issues for
10+
required: false
11+
12+
# This workflow is triggered when a release is published
13+
jobs:
14+
release-comment-issues:
15+
runs-on: ubuntu-20.04
16+
name: Notify issues
17+
steps:
18+
- name: Get version
19+
id: get_version
20+
run: echo "version=${{ github.event.inputs.version || github.event.release.tag_name }}" >> $GITHUB_OUTPUT
21+
22+
- name: Comment on linked issues that are mentioned in release
23+
if: |
24+
steps.get_version.outputs.version != ''
25+
&& !contains(steps.get_version.outputs.version, 'a')
26+
&& !contains(steps.get_version.outputs.version, 'b')
27+
&& !contains(steps.get_version.outputs.version, 'rc')
28+
uses: getsentry/release-comment-issues-gh-action@v1
29+
with:
30+
github_token: ${{ secrets.GITHUB_TOKEN }}
31+
version: ${{ steps.get_version.outputs.version }}

.github/workflows/test-integrations-ai.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# Do not edit this file. This file is generated automatically by executing
2-
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
1+
# Do not edit this YAML file. This file is generated automatically by executing
2+
# python scripts/split_tox_gh_actions/split_tox_gh_actions.py
3+
# The template responsible for it is in
4+
# scripts/split_tox_gh_actions/templates/base.jinja
35
name: Test AI
46
on:
57
push:
@@ -78,7 +80,7 @@ jobs:
7880
coverage xml
7981
- name: Upload coverage to Codecov
8082
if: ${{ !cancelled() }}
81-
uses: codecov/codecov-action@v5.0.7
83+
uses: codecov/codecov-action@v5.1.1
8284
with:
8385
token: ${{ secrets.CODECOV_TOKEN }}
8486
files: coverage.xml
@@ -150,7 +152,7 @@ jobs:
150152
coverage xml
151153
- name: Upload coverage to Codecov
152154
if: ${{ !cancelled() }}
153-
uses: codecov/codecov-action@v5.0.7
155+
uses: codecov/codecov-action@v5.1.1
154156
with:
155157
token: ${{ secrets.CODECOV_TOKEN }}
156158
files: coverage.xml

.github/workflows/test-integrations-aws.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# Do not edit this file. This file is generated automatically by executing
2-
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
1+
# Do not edit this YAML file. This file is generated automatically by executing
2+
# python scripts/split_tox_gh_actions/split_tox_gh_actions.py
3+
# The template responsible for it is in
4+
# scripts/split_tox_gh_actions/templates/base.jinja
35
name: Test AWS
46
on:
57
push:
@@ -97,7 +99,7 @@ jobs:
9799
coverage xml
98100
- name: Upload coverage to Codecov
99101
if: ${{ !cancelled() }}
100-
uses: codecov/codecov-action@v5.0.7
102+
uses: codecov/codecov-action@v5.1.1
101103
with:
102104
token: ${{ secrets.CODECOV_TOKEN }}
103105
files: coverage.xml

.github/workflows/test-integrations-cloud.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# Do not edit this file. This file is generated automatically by executing
2-
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
1+
# Do not edit this YAML file. This file is generated automatically by executing
2+
# python scripts/split_tox_gh_actions/split_tox_gh_actions.py
3+
# The template responsible for it is in
4+
# scripts/split_tox_gh_actions/templates/base.jinja
35
name: Test Cloud
46
on:
57
push:
@@ -74,7 +76,7 @@ jobs:
7476
coverage xml
7577
- name: Upload coverage to Codecov
7678
if: ${{ !cancelled() }}
77-
uses: codecov/codecov-action@v5.0.7
79+
uses: codecov/codecov-action@v5.1.1
7880
with:
7981
token: ${{ secrets.CODECOV_TOKEN }}
8082
files: coverage.xml
@@ -142,7 +144,7 @@ jobs:
142144
coverage xml
143145
- name: Upload coverage to Codecov
144146
if: ${{ !cancelled() }}
145-
uses: codecov/codecov-action@v5.0.7
147+
uses: codecov/codecov-action@v5.1.1
146148
with:
147149
token: ${{ secrets.CODECOV_TOKEN }}
148150
files: coverage.xml

.github/workflows/test-integrations-common.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# Do not edit this file. This file is generated automatically by executing
2-
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
1+
# Do not edit this YAML file. This file is generated automatically by executing
2+
# python scripts/split_tox_gh_actions/split_tox_gh_actions.py
3+
# The template responsible for it is in
4+
# scripts/split_tox_gh_actions/templates/base.jinja
35
name: Test Common
46
on:
57
push:
@@ -62,7 +64,7 @@ jobs:
6264
coverage xml
6365
- name: Upload coverage to Codecov
6466
if: ${{ !cancelled() }}
65-
uses: codecov/codecov-action@v5.0.7
67+
uses: codecov/codecov-action@v5.1.1
6668
with:
6769
token: ${{ secrets.CODECOV_TOKEN }}
6870
files: coverage.xml

.github/workflows/test-integrations-dbs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# Do not edit this file. This file is generated automatically by executing
2-
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
1+
# Do not edit this YAML file. This file is generated automatically by executing
2+
# python scripts/split_tox_gh_actions/split_tox_gh_actions.py
3+
# The template responsible for it is in
4+
# scripts/split_tox_gh_actions/templates/base.jinja
35
name: Test DBs
46
on:
57
push:
@@ -101,7 +103,7 @@ jobs:
101103
coverage xml
102104
- name: Upload coverage to Codecov
103105
if: ${{ !cancelled() }}
104-
uses: codecov/codecov-action@v5.0.7
106+
uses: codecov/codecov-action@v5.1.1
105107
with:
106108
token: ${{ secrets.CODECOV_TOKEN }}
107109
files: coverage.xml
@@ -196,7 +198,7 @@ jobs:
196198
coverage xml
197199
- name: Upload coverage to Codecov
198200
if: ${{ !cancelled() }}
199-
uses: codecov/codecov-action@v5.0.7
201+
uses: codecov/codecov-action@v5.1.1
200202
with:
201203
token: ${{ secrets.CODECOV_TOKEN }}
202204
files: coverage.xml

.github/workflows/test-integrations-graphql.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# Do not edit this file. This file is generated automatically by executing
2-
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
1+
# Do not edit this YAML file. This file is generated automatically by executing
2+
# python scripts/split_tox_gh_actions/split_tox_gh_actions.py
3+
# The template responsible for it is in
4+
# scripts/split_tox_gh_actions/templates/base.jinja
35
name: Test GraphQL
46
on:
57
push:
@@ -74,7 +76,7 @@ jobs:
7476
coverage xml
7577
- name: Upload coverage to Codecov
7678
if: ${{ !cancelled() }}
77-
uses: codecov/codecov-action@v5.0.7
79+
uses: codecov/codecov-action@v5.1.1
7880
with:
7981
token: ${{ secrets.CODECOV_TOKEN }}
8082
files: coverage.xml
@@ -142,7 +144,7 @@ jobs:
142144
coverage xml
143145
- name: Upload coverage to Codecov
144146
if: ${{ !cancelled() }}
145-
uses: codecov/codecov-action@v5.0.7
147+
uses: codecov/codecov-action@v5.1.1
146148
with:
147149
token: ${{ secrets.CODECOV_TOKEN }}
148150
files: coverage.xml

.github/workflows/test-integrations-misc.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# Do not edit this file. This file is generated automatically by executing
2-
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
1+
# Do not edit this YAML file. This file is generated automatically by executing
2+
# python scripts/split_tox_gh_actions/split_tox_gh_actions.py
3+
# The template responsible for it is in
4+
# scripts/split_tox_gh_actions/templates/base.jinja
35
name: Test Misc
46
on:
57
push:
@@ -90,7 +92,7 @@ jobs:
9092
coverage xml
9193
- name: Upload coverage to Codecov
9294
if: ${{ !cancelled() }}
93-
uses: codecov/codecov-action@v5.0.7
95+
uses: codecov/codecov-action@v5.1.1
9496
with:
9597
token: ${{ secrets.CODECOV_TOKEN }}
9698
files: coverage.xml
@@ -174,7 +176,7 @@ jobs:
174176
coverage xml
175177
- name: Upload coverage to Codecov
176178
if: ${{ !cancelled() }}
177-
uses: codecov/codecov-action@v5.0.7
179+
uses: codecov/codecov-action@v5.1.1
178180
with:
179181
token: ${{ secrets.CODECOV_TOKEN }}
180182
files: coverage.xml

.github/workflows/test-integrations-network.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
# Do not edit this file. This file is generated automatically by executing
2-
# python scripts/split-tox-gh-actions/split-tox-gh-actions.py
1+
# Do not edit this YAML file. This file is generated automatically by executing
2+
# python scripts/split_tox_gh_actions/split_tox_gh_actions.py
3+
# The template responsible for it is in
4+
# scripts/split_tox_gh_actions/templates/base.jinja
35
name: Test Network
46
on:
57
push:
@@ -74,7 +76,7 @@ jobs:
7476
coverage xml
7577
- name: Upload coverage to Codecov
7678
if: ${{ !cancelled() }}
77-
uses: codecov/codecov-action@v5.0.7
79+
uses: codecov/codecov-action@v5.1.1
7880
with:
7981
token: ${{ secrets.CODECOV_TOKEN }}
8082
files: coverage.xml
@@ -142,7 +144,7 @@ jobs:
142144
coverage xml
143145
- name: Upload coverage to Codecov
144146
if: ${{ !cancelled() }}
145-
uses: codecov/codecov-action@v5.0.7
147+
uses: codecov/codecov-action@v5.1.1
146148
with:
147149
token: ${{ secrets.CODECOV_TOKEN }}
148150
files: coverage.xml

0 commit comments

Comments
 (0)