release: v0.9.0 — telemetry + injection-path hardening - #37
Merged
Conversation
Promote the unreleased work on main to a tagged release. Cut as a minor, not a patch: telemetry is a new capability that is on by default and makes the library's first outbound network call, and the tool-call action shape changes in a way that can silently stop a custom PolicyRule from matching. Semantic versioning reserves patch releases for backwards-compatible fixes, and burying a default-on phone-home in one would be the wrong way to ship it. - Version bumped across every parity site: pyproject, __version__, README badge and prose, all 7 TypeScript package.json files, and the internal @agentegrity/client dependency pins (which would otherwise have published 0.9.0 packages depending on client 0.8.1). - CHANGELOG [Unreleased] promoted to [0.9.0] with a summary that leads with the telemetry default and the opt-out, so nobody meets it by surprise. - Roadmap: v0.9.0 is now this release; Federation + fleet moves to v0.10.0. Also corrects a README claim that the release would have made false. The "what it does" paragraph still said the library "never makes network calls to Cogensec or any other service" while the same file documented default-on telemetry posting to PostHog. It now states plainly that evaluation runs locally and no agent content leaves the process, that shape-only telemetry is the one outbound call, and links the opt-out. Verified: 670 passed, ruff clean, mypy --strict clean, and both the Python and TypeScript version-parity checkers green.
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The CHANGELOG header states the project adheres to Semantic Versioning and that pre-1.0 minor versions may contain breaking changes. Patch releases are for backwards-compatible fixes. Shipping a default-on phone-home under a patch number is also how telemetry backlashes happen, so the version signals it instead of burying it.
Roadmap consequence: Federation + fleet moves from v0.9.0 to v0.10.0.
Fixes a claim this release would have made false
The "What it does" paragraph still read:
The same README documents default-on telemetry posting to
https://us.i.posthog.com. Tagging a release with both statements in one file would have been indefensible against Design Principle #6 ("every claim the library makes is defensible in writing").Rewritten to state plainly that evaluation runs locally and no agent content, prompt, tool argument, or attestation leaves the process; that shape-only telemetry is the one outbound call; and to link the opt-out.
Version parity
Bumped every site the two parity checkers enforce, plus one they don't:
pyproject.toml,src/agentegrity/__init__.pyships/(current)/As of)package.jsonfiles@agentegrity/clientdependency pins — without these, we would have published 0.9.0 packages declaring a dependency onclient@0.8.1Release contents
Unchanged from what already landed on
main; this PR only promotes and documents it.DO_NOT_TRACK=1,AGENTEGRITY_TELEMETRY_DISABLED=1, oragentegrity.disable_telemetry().payment_executewith{"tool": "noop"}skipped GOV-001's approval gate entirely; underenforce=Truethe dangerous tool ran, and in observe-only mode the signed attestation recordedgovernance: passfor a check that never happened.shared_memoryandbroadcast_messages, so a compromised peer's injection reached neither strong detector. That is the cross-agent cascade (T-CASCADE) those v0.8 channels exist to defend.Migration from 0.8.1
Tool-call actions nest their arguments.
context["action"]is now{"tool": …, "type": "tool_call", "arguments": {…}}. CustomPolicyRuleconditions reading call-derived keys off the top level must read them fromaction["arguments"]. Rules matching onlytoolortypeare unaffected.