Skip to content

Commit 3f49218

Browse files
rerun generation
2 parents 5f4de0f + afaa48f commit 3f49218

24 files changed

Lines changed: 4480 additions & 4050 deletions

.github/dependabot.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/workflows/changelog-preview.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ permissions:
1616
jobs:
1717
changelog-preview:
1818
uses: getsentry/craft/.github/workflows/changelog-preview.yml@6143e76379c342e247687c4ab5c83d8b900cc273 # v2
19-
secrets: inherit
19+
secrets:
20+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -30,68 +30,52 @@ permissions:
3030
# name: DBs
3131
# if: false # TEMP: skipping, see PR #xxxx
3232
# uses: ./.github/workflows/test-integrations-dbs.yml
33-
# secrets: inherit
3433
jobs:
3534
common:
3635
name: Common
3736
uses: ./.github/workflows/test-integrations-common.yml
38-
secrets: inherit
3937
mcp:
4038
name: MCP
4139
uses: ./.github/workflows/test-integrations-mcp.yml
42-
secrets: inherit
4340
agents:
4441
name: Agents
4542
uses: ./.github/workflows/test-integrations-agents.yml
46-
secrets: inherit
4743
ai_workflow:
4844
name: AI Workflow
4945
uses: ./.github/workflows/test-integrations-ai-workflow.yml
50-
secrets: inherit
5146
ai:
5247
name: AI
5348
uses: ./.github/workflows/test-integrations-ai.yml
54-
secrets: inherit
5549
cloud:
5650
name: Cloud
5751
uses: ./.github/workflows/test-integrations-cloud.yml
58-
secrets: inherit
5952
dbs:
6053
name: DBs
6154
uses: ./.github/workflows/test-integrations-dbs.yml
62-
secrets: inherit
6355
flags:
6456
name: Flags
6557
uses: ./.github/workflows/test-integrations-flags.yml
66-
secrets: inherit
6758
gevent:
6859
name: Gevent
6960
uses: ./.github/workflows/test-integrations-gevent.yml
70-
secrets: inherit
7161
graphql:
7262
name: GraphQL
7363
uses: ./.github/workflows/test-integrations-graphql.yml
74-
secrets: inherit
7564
network:
7665
name: Network
7766
uses: ./.github/workflows/test-integrations-network.yml
78-
secrets: inherit
7967
tasks:
8068
name: Tasks
8169
uses: ./.github/workflows/test-integrations-tasks.yml
82-
secrets: inherit
8370
web_1:
8471
name: Web 1
8572
uses: ./.github/workflows/test-integrations-web-1.yml
86-
secrets: inherit
8773
web_2:
8874
name: Web 2
8975
uses: ./.github/workflows/test-integrations-web-2.yml
90-
secrets: inherit
9176
misc:
9277
name: Misc
9378
uses: ./.github/workflows/test-integrations-misc.yml
94-
secrets: inherit
9579
report:
9680
name: Combine and report coverage
9781
needs:

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ typing = [
6767
"httpx2",
6868
"botocore-stubs",
6969
"werkzeug",
70+
"mcp>=2.0.0b1",
71+
"starlette>=1.3.1",
72+
"python-multipart>=0.0.32",
73+
"pydantic>=2.13.4",
7074
]
7175
test = [
7276
"dataclasses ; python_full_version < '3.7'",

renovate.json

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": ["config:recommended"],
4+
"enabledManagers": ["custom.regex", "github-actions", "pep621"],
5+
"includePaths": [
6+
"pyproject.toml",
7+
"uv.lock",
8+
"scripts/split_tox_gh_actions/templates/test_group.jinja",
9+
"scripts/split_tox_gh_actions/templates/test_orchestrator.jinja",
10+
".github/workflows/*.yml"
11+
],
12+
"lockFileMaintenance": {
13+
"enabled": true
14+
},
15+
"packageRules": [
16+
{
17+
"description": "Disable pyproject.toml version updates.",
18+
"matchManagers": ["pep621"],
19+
"matchUpdateTypes": ["major", "minor", "patch", "pin"],
20+
"enabled": false
21+
},
22+
{
23+
"description": "Disable Ubuntu image updates.",
24+
"matchManagers": ["github-actions"],
25+
"matchDatasources": ["github-runners"],
26+
"enabled": false
27+
},
28+
{
29+
"description": "Group GitHub workflow updates.",
30+
"matchManagers": ["custom.regex", "github-actions"],
31+
"groupName": "GitHub Workflows",
32+
"groupSlug": "github-workflows",
33+
"separateMajorMinor": false,
34+
"separateMinorPatch": false,
35+
"separateMultipleMajor": false
36+
}
37+
],
38+
"customManagers": [
39+
{
40+
"customType": "regex",
41+
"description": "Update GitHub Actions in templates.",
42+
"managerFilePatterns": [
43+
"/^scripts\\/split_tox_gh_actions\\/templates\\/(test_group|test_orchestrator)\\.jinja$/"
44+
],
45+
"matchStrings": [
46+
"(?<depName>[A-Za-z0-9-]+\\/[A-Za-z0-9_.-]+(?:\\/[A-Za-z0-9_.-]+)*)@(?<currentDigest>[a-f0-9]{40})[ \\t]+#[ \\t]+(?<currentValue>v?\\d+(?:\\.\\d+){0,2})"
47+
],
48+
"datasourceTemplate": "github-tags",
49+
"versioningTemplate": "github-actions",
50+
"autoReplaceStringTemplate": "{{{depName}}}@{{{newDigest}}} # {{{newValue}}}"
51+
},
52+
{
53+
"customType": "regex",
54+
"description": "Update (some) Docker images in templates.",
55+
"managerFilePatterns": [
56+
"/^scripts\\/split_tox_gh_actions\\/templates\\/test_group\\.jinja$/"
57+
],
58+
"matchStrings": [
59+
"(?<depName>ghcr\\.io\\/getsentry\\/image-mirror-library-[a-z0-9_.-]+):(?<currentValue>[A-Za-z0-9_.-]+)"
60+
],
61+
"datasourceTemplate": "docker",
62+
"versioningTemplate": "docker",
63+
"autoReplaceStringTemplate": "{{{depName}}}:{{{newValue}}}"
64+
}
65+
]
66+
}

scripts/populate_tox/package_dependencies.jsonl

Lines changed: 355 additions & 356 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)