Skip to content

Bump version of datadog-checks-dev and update tag-release #20370

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
May 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitlab/tagger/tag-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ git config --global user.name "$TAGGER_NAME"
set +e
ddev release tag all --skip-prerelease
status=$?
# If we fail to fetch tags, fallback to the old behavior of getting list of tags even if they're not fetched
if [[ $status -eq 3 ]]; then
echo "Failed to fetch tags, falling back to list tags without fetching"
ddev release tag all --skip-prerelease --no-fetch
status=$?
fi
set -e

# Only build packages if there were new releases
Expand Down
1 change: 1 addition & 0 deletions ddev/changelog.d/20370.added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Bump datadog-checks-dev version to 35.1
2 changes: 1 addition & 1 deletion ddev/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies = [
"click~=8.1.6",
"coverage",
"datadog-api-client==2.20.0",
"datadog-checks-dev[cli]~=35.0",
"datadog-checks-dev[cli]~=35.1",
"hatch>=1.8.1",
"httpx",
"jsonpointer",
Expand Down
Loading