Skip to content

Commit 1144479

Browse files
committed
Merge branch 'master' into feat/span-first
2 parents 7c9de72 + 2ce4379 commit 1144479

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+1915
-398
lines changed

.github/release.yml

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
# This configuration is used by Craft to categorize changelog entries based on
2-
# PR labels. To avoid some manual work, there is a PR labeling GitHub action in
3-
# .github/workflows/pr-labeler.yml that adds a changelog label to PRs based on
4-
# the title.
5-
61
changelog:
72
exclude:
83
labels:
@@ -13,22 +8,25 @@ changelog:
138
- title: New Features ✨
149
labels:
1510
- "Changelog: Feature"
16-
- Feature
17-
- Improvement
18-
- New Integration
11+
commit_patterns:
12+
- "^feat\\b"
1913
- title: Bug Fixes 🐛
2014
labels:
2115
- "Changelog: Bugfix"
22-
- Bug
16+
commit_patterns:
17+
- "^(fix|bugfix)\\b"
2318
- title: Deprecations 🏗️
2419
labels:
2520
- "Changelog: Deprecation"
21+
commit_patterns:
22+
- "deprecat" # deprecation, deprecated
2623
- title: Documentation 📚
2724
labels:
2825
- "Changelog: Docs"
29-
- Docs
30-
- "Component: Docs"
26+
commit_patterns:
27+
- "^docs?\\b"
3128
- title: Internal Changes 🔧
3229
labels:
3330
- "Changelog: Internal"
34-
- Quality Improvement
31+
commit_patterns:
32+
- "^(build|ref|chore|ci|tests?)\\b"

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
timeout-minutes: 10
2525

2626
steps:
27-
- uses: actions/checkout@v6.0.0
27+
- uses: actions/checkout@v6.0.1
2828
- uses: actions/setup-python@v6
2929
with:
3030
python-version: 3.14
@@ -39,7 +39,7 @@ jobs:
3939
timeout-minutes: 10
4040

4141
steps:
42-
- uses: actions/checkout@v6.0.0
42+
- uses: actions/checkout@v6.0.1
4343
- uses: actions/setup-python@v6
4444
with:
4545
python-version: 3.12
@@ -70,7 +70,7 @@ jobs:
7070
timeout-minutes: 10
7171

7272
steps:
73-
- uses: actions/checkout@v6.0.0
73+
- uses: actions/checkout@v6.0.1
7474
- uses: actions/setup-python@v6
7575
with:
7676
python-version: 3.12

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
steps:
5050
- name: Checkout repository
51-
uses: actions/checkout@v6.0.0
51+
uses: actions/checkout@v6.0.1
5252

5353
# Initializes the CodeQL tools for scanning.
5454
- name: Initialize CodeQL

.github/workflows/pr-labeler.yml

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

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
steps:
2121
- name: Get auth token
2222
id: token
23-
uses: actions/create-github-app-token@7e473efe3cb98aa54f8d4bac15400b15fad77d94 # v2.2.0
23+
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
2424
with:
2525
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2626
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
27-
- uses: actions/checkout@v6.0.0
27+
- uses: actions/checkout@v6.0.1
2828
with:
2929
token: ${{ steps.token.outputs.token }}
3030
fetch-depth: 0

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# Use Docker container only for Python 3.6
3939
container: ${{ matrix.python-version == '3.6' && 'python:3.6' || null }}
4040
steps:
41-
- uses: actions/checkout@v6.0.0
41+
- uses: actions/checkout@v6.0.1
4242
- uses: actions/setup-python@v6
4343
if: ${{ matrix.python-version != '3.6' }}
4444
with:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# Use Docker container only for Python 3.6
3939
container: ${{ matrix.python-version == '3.6' && 'python:3.6' || null }}
4040
steps:
41-
- uses: actions/checkout@v6.0.0
41+
- uses: actions/checkout@v6.0.1
4242
- uses: actions/setup-python@v6
4343
if: ${{ matrix.python-version != '3.6' }}
4444
with:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# Use Docker container only for Python 3.6
3939
container: ${{ matrix.python-version == '3.6' && 'python:3.6' || null }}
4040
steps:
41-
- uses: actions/checkout@v6.0.0
41+
- uses: actions/checkout@v6.0.1
4242
- uses: actions/setup-python@v6
4343
if: ${{ matrix.python-version != '3.6' }}
4444
with:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
# Use Docker container only for Python 3.6
4343
container: ${{ matrix.python-version == '3.6' && 'python:3.6' || null }}
4444
steps:
45-
- uses: actions/checkout@v6.0.0
45+
- uses: actions/checkout@v6.0.1
4646
- uses: actions/setup-python@v6
4747
if: ${{ matrix.python-version != '3.6' }}
4848
with:

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# Use Docker container only for Python 3.6
3939
container: ${{ matrix.python-version == '3.6' && 'python:3.6' || null }}
4040
steps:
41-
- uses: actions/checkout@v6.0.0
41+
- uses: actions/checkout@v6.0.1
4242
- uses: actions/setup-python@v6
4343
if: ${{ matrix.python-version != '3.6' }}
4444
with:

0 commit comments

Comments
 (0)