Skip to content

Release 0.65.0

Choose a tag to compare

@github-actions github-actions released this 30 May 14:30
· 664 commits to main since this release
79e3985

Pup 0.65.0

Installation

# macOS (Apple Silicon)
curl -L https://github.com/DataDog/pup/releases/download/v0.65.0/pup_0.65.0_Darwin_arm64.tar.gz | tar xz

# macOS (Intel)
curl -L https://github.com/DataDog/pup/releases/download/v0.65.0/pup_0.65.0_Darwin_x86_64.tar.gz | tar xz

# Linux (x86_64)
curl -L https://github.com/DataDog/pup/releases/download/v0.65.0/pup_0.65.0_Linux_x86_64.tar.gz | tar xz

# Linux (arm64)
curl -L https://github.com/DataDog/pup/releases/download/v0.65.0/pup_0.65.0_Linux_arm64.tar.gz | tar xz

# Windows (x86_64)
curl -L https://github.com/DataDog/pup/releases/download/v0.65.0/pup_0.65.0_Windows_x86_64.zip -o pup.zip
tar -xf pup.zip

WASM

  • WASI (pup_wasi.wasm): Run in Wasmtime or any WASI Preview 2 runtime
  • Browser WASM (pup_browser_wasm.tar.gz): npm-ready package with PupClient JS class and TypeScript definitions

Verifying

# Verify checksums
sha256sum -c pup_0.65.0_checksums.txt

# Verify signature (requires cosign)
cosign verify-blob \
  --bundle pup_0.65.0_checksums.txt.sigstore.json \
  pup_0.65.0_checksums.txt

What's Changed

  • fix(config): fall back to ~/.config/pup/config.yaml on macOS by @platinummonkey in #538
  • feat(llm-obs): add dataset batch-update, clone, restore subcommands by @platinummonkey in #540
  • feat(error-tracking): add --state, --team, --assignee filters to issues search by @platinummonkey in #541
  • feat(cost): add OCI configs and cost anomalies list commands by @platinummonkey in #544
  • feat(security): add findings mute and rules bulk-convert commands by @platinummonkey in #545
  • feat(synthetics): add downtime list/create/delete commands by @platinummonkey in #546
  • feat(annotations): add dashboard/notebook annotations commands by @platinummonkey in #547
  • feat(metrics): add window-seconds and cross-org timeseries query by @platinummonkey in #548
  • chore(deps): upgrade datadog-api-client to master HEAD 2026-05-29 by @platinummonkey in #539
  • chore(release): bump version to v0.65.0 by @dd-octo-sts[bot] in #549

Full Changelog: v0.64.2...v0.65.0