Skip to content

Release 1.8.0

Choose a tag to compare

@github-actions github-actions released this 24 Jul 19:43
· 133 commits to main since this release
df43130

Pup 1.8.0

Installation

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

# macOS (Intel)
curl -L https://github.com/DataDog/pup/releases/download/v1.8.0/pup_1.8.0_Darwin_x86_64.tar.gz | tar xz

# Linux (x86_64)
curl -L https://github.com/DataDog/pup/releases/download/v1.8.0/pup_1.8.0_Linux_x86_64.tar.gz | tar xz

# Linux (arm64)
curl -L https://github.com/DataDog/pup/releases/download/v1.8.0/pup_1.8.0_Linux_arm64.tar.gz | tar xz

# Windows (x86_64)
curl -L https://github.com/DataDog/pup/releases/download/v1.8.0/pup_1.8.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_1.8.0_checksums.txt

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

What's Changed

  • feat(skills): add Cursor plugin manifest by @platinummonkey in #668
  • feat(llm-obs): add dataset-records reads + experiment eval-metric submit by @gsvigruha in #674
  • chore(release): bump version to v1.8.0 by @dd-octo-sts[bot] in #675

New Contributors

Full Changelog: v1.7.0...v1.8.0