Skip to content

feat(cli): Print report on failure#3365

Merged
c-r33d merged 7 commits into
mainfrom
capture-errors-on-commit
Apr 22, 2026
Merged

feat(cli): Print report on failure#3365
c-r33d merged 7 commits into
mainfrom
capture-errors-on-commit

Conversation

@c-r33d
Copy link
Copy Markdown
Contributor

@c-r33d c-r33d commented Apr 22, 2026

Proposed Changes

1.) Print the progressed plan on any runtime errors during commit.
2.) Add additional documentation to the migrate namespaced-policy command

Testing Instructions

Screenshot 2026-04-22 at 12 23 36 PM

Summary by CodeRabbit

  • Bug Fixes

    • CLI now writes an updated migration summary before exiting when a namespaced-policy commit fails.
  • New Features

    • Summary separates created, pending (to_create), and failed items and adds consistent failure lines and a “Will Create” section.
  • Documentation

    • Expanded namespaced-policy docs with commit-failure behavior, prerequisites, best practices, and interactive guidance.
  • Tests

    • Added unit tests covering failed/pending create rendering and summary count formatting.
  • Chores

    • Added a script to populate legacy obligation triggers.

@c-r33d c-r33d requested a review from a team as a code owner April 22, 2026 17:41
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented Apr 22, 2026

Warning

Rate limit exceeded

@c-r33d has exceeded the limit for the number of commits that can be reviewed per hour. Please wait 18 minutes and 39 seconds before requesting another review.

Your organization is not enrolled in usage-based pricing. Contact your admin to enable usage-based pricing to continue reviews beyond the rate limit, or try again in 18 minutes and 39 seconds.

⌛ How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

🚦 How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: d349b21e-a2fc-4942-a4df-acfe0d9de6c5

📥 Commits

Reviewing files that changed from the base of the PR and between f4677b5 and 7483e75.

📒 Files selected for processing (5)
  • otdfctl/docs/man/migrate/namespaced-policy.md
  • otdfctl/migrations/namespacedpolicy/interactive_commit.go
  • otdfctl/migrations/namespacedpolicy/plan.go
  • otdfctl/migrations/namespacedpolicy/registered_resources_execute.go
  • otdfctl/migrations/namespacedpolicy/registered_resources_execute_test.go
📝 Walkthrough

Walkthrough

Writes an updated namespaced-policy summary on commit failure and refactors migration summary logic to classify creation outcomes into created, to_create (pending), and failed; updates tests and docs; and adds a script to populate legacy obligation triggers.

Changes

Cohort / File(s) Summary
CLI commit handling
otdfctl/cmd/migrate/namespaced_policy.go
Call writeNamespacedPolicySummary(plan, true, "failure") before exiting when executor.Execute(...) errors so a failure summary is emitted.
Migration summary logic
otdfctl/migrations/namespacedpolicy/summary.go
Major refactor: split create tracking into created/toCreate/failed; add classification helpers (classifyCreateExecution, classifyRegisteredResourceExecution, appendTargetStatusSummary, etc.); replace create-counting with formatSummaryCounts(...) and new failure formatting.
Registered resources note
otdfctl/migrations/namespacedpolicy/registered_resources_execute.go
Added inline comment clarifying existing-parent check behavior; no functional change.
Tests
otdfctl/migrations/namespacedpolicy/summary_test.go
Update assertions for failed and to_create; add TestRenderNamespacedPolicySummaryCommitFailureShowsFailedAndPendingCreates and TestFormatSummaryCounts; extend test plan execution data.
Documentation
otdfctl/docs/man/migrate/namespaced-policy.md
Expanded docs: commit-mode failure behavior, prerequisites, best practices, interactive guidance, examples, and migration notes.
Operational script
otdfctl/scripts/populate-legacy-obligation-triggers.sh
New Bash script to seed legacy obligation triggers into PostgreSQL with filtering/options, idempotent anti-join inserts, and reporting of inserted counts.

Sequence Diagram(s)

sequenceDiagram
participant User
participant CLI
participant Executor
participant Migrator
participant SummaryRenderer
participant Console

User->>CLI: run migrate --commit
CLI->>Executor: Execute(plan)
Executor->>Migrator: run target executions
Migrator-->>Executor: ExecutionResults (per-target)
Executor-->>CLI: error or success + ExecutionResults
CLI->>SummaryRenderer: writeNamespacedPolicySummary(plan, commit=true, result)
SummaryRenderer->>Console: render summary (created, to_create, failed, other counts)
alt Executor returned error
CLI->>Console: cli.ExitWithError("could not execute namespaced-policy commit", err)
else success
CLI->>Console: exit 0
end
Loading

Estimated code review effort

🎯 4 (Complex) | ⏱️ ~50 minutes

Possibly related PRs

Suggested labels

comp:policy, docs

Suggested reviewers

  • elizabethhealy
  • alkalescent

Poem

🐰 I hopped through counts both bold and small,

Created, pending, failed — I named them all.
When commits stumble, I scrawl the tale,
A tidy summary before we bail.
Thump-thump — migration done with flair! ✨

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title 'feat(cli): Print report on failure' directly aligns with the main PR objective of printing a progressed plan/report when runtime errors occur during commit operations.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch capture-errors-on-commit

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@gemini-code-assist
Copy link
Copy Markdown
Contributor

Summary of Changes

Hello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request significantly improves the user experience of the CLI by introducing comprehensive failure reporting for namespaced policy commit operations. Instead of a generic error message, users will now receive a detailed summary of the migration plan, highlighting which items were successfully created, which are still pending, and which specifically failed, along with their reasons. This provides crucial visibility into the partial success or failure of complex migrations, enabling quicker debugging and resolution.

Highlights

  • Enhanced Error Reporting: Implemented a mechanism to print a detailed migration plan summary when a namespaced policy commit operation fails, providing immediate feedback on the state of the migration.
  • Granular Migration Status Tracking: Introduced new fields in the migration status counts and summary structures to differentiate between successfully created, pending (to be created), and failed items during a commit.
  • Refactored Summary Generation: Updated the logic for rendering the namespaced policy summary to dynamically format counts and list items based on their execution state (created, pending, or failed), improving clarity and detail.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here.


When code does fail to run, A summary, clearly spun, Shows what was done, And what's undone, Bringing clarity, second to none.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@github-actions
Copy link
Copy Markdown
Contributor

Benchmark results, click to expand

Benchmark authorization.GetDecisions Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 195.229031ms

Benchmark authorization.v2.GetMultiResourceDecision Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 89.668584ms

Benchmark Statistics

Name № Requests Avg Duration Min Duration Max Duration

Bulk Benchmark Results

Metric Value
Total Decrypts 100
Successful Decrypts 100
Failed Decrypts 0
Total Time 400.325242ms
Throughput 249.80 requests/second

TDF3 Benchmark Results:

Metric Value
Total Requests 5000
Successful Requests 5000
Failed Requests 0
Concurrent Requests 50
Total Time 43.227231968s
Average Latency 430.419491ms
Throughput 115.67 requests/second

Copy link
Copy Markdown
Contributor

@gemini-code-assist gemini-code-assist Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request enhances the namespaced policy migration summary by introducing detailed tracking for failed and pending creation states. It refactors the summary logic to distinguish between items that were successfully created, those that failed, and those that are still pending during a dry-run. Key changes include updating the status count structures, adding execution state classification, and improving the rendered output to include failure details. Feedback suggests refactoring duplicated logic across summarization functions, removing dead code in recordTargetStatus, and simplifying conditional checks in classifyCreateExecution.

Comment thread otdfctl/migrations/namespacedpolicy/summary.go Outdated
Comment thread otdfctl/migrations/namespacedpolicy/summary.go Outdated
Comment thread otdfctl/migrations/namespacedpolicy/summary.go Outdated
@github-actions
Copy link
Copy Markdown
Contributor

Benchmark results, click to expand

Benchmark authorization.GetDecisions Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 140.537463ms

Benchmark authorization.v2.GetMultiResourceDecision Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 72.252527ms

Benchmark Statistics

Name № Requests Avg Duration Min Duration Max Duration

Bulk Benchmark Results

Metric Value
Total Decrypts 100
Successful Decrypts 100
Failed Decrypts 0
Total Time 338.222074ms
Throughput 295.66 requests/second

TDF3 Benchmark Results:

Metric Value
Total Requests 5000
Successful Requests 5000
Failed Requests 0
Concurrent Requests 50
Total Time 33.216726651s
Average Latency 331.405616ms
Throughput 150.53 requests/second

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@otdfctl/docs/man/migrate/namespaced-policy.md`:
- Around line 63-65: The second sentence in "Other information" is a fragment
and mixes singular/plural; replace it with a complete, consistent sentence. For
the scope example (strings 'subject-mappings', 'actions',
'subject-condition-sets'), reword to something like: "For example, if you
specify the scope 'subject-mappings', the migration will also include the
dependent scopes 'actions' and 'subject-condition-sets'." Ensure quotes around
the scope names and match pluralization.
- Around line 37-51: The ordered list is broken because the sublist (the Actions
/ Subject-Condition-Sets / Subject-Mappings / Obligation-Triggers /
Registered-Resources items) is not indented, so move that bullet list to be
nested under the parent ordered item (indent each sublist line by four spaces or
one tab) so it remains part of item 2; also fix the comma splice in the sentence
starting "Use `--interactive` mode when migrating policy, this will give you…"
by splitting into two sentences (e.g., "Use `--interactive` mode when migrating
policy. This will give you the best chance…") or replacing the comma with a
semicolon.

In `@otdfctl/migrations/namespacedpolicy/summary.go`:
- Around line 169-180: The current code eagerly constructs all five formatted
lines for every target before calling appendTargetStatusSummary, causing
redundant allocations and repeated styles.Info().Render calls; change to lazy
factories by replacing targetSummaryLines (used at call site in
appendTargetStatusSummary) with a struct of functions (e.g., created, toCreate,
failed, skipped, unresolved func() string) or similar lazy closures so only the
matching branch in appendTargetStatusSummary invokes its factory; update the
call site where targetSummaryLines is built (the block passing
formatCreatedLine, formatFailedLine, etc.) to pass zero-arg functions that call
those format helpers, and adjust appendTargetStatusSummary
signature/implementation to call the appropriate factory instead of using
prebuilt strings.

In `@otdfctl/scripts/populate-legacy-obligation-triggers.sh`:
- Around line 1-255: The script currently places the DB password in the process
list by passing PGPASSWORD via env when DATABASE_URL is not set (see usage of
OPENTDF_DB_PASSWORD and the psql_env/env invocation); either avoid exporting
PGPASSWORD or mitigate this by creating a secure temporary .pgpass file (set
restrictive permissions, write host:port:database:user:password, set PGPASSFILE
to it) and use that for psql, or at minimum add a short header comment
documenting the operational risk of PGPASSWORD appearing in process listings and
recommending use of DATABASE_URL or a .pgpass file for production/shared-host
runs.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: b9d9df1c-4569-45fa-bb3c-9dc87a43a6f9

📥 Commits

Reviewing files that changed from the base of the PR and between 87e2e55 and a68440e.

📒 Files selected for processing (3)
  • otdfctl/docs/man/migrate/namespaced-policy.md
  • otdfctl/migrations/namespacedpolicy/summary.go
  • otdfctl/scripts/populate-legacy-obligation-triggers.sh

Comment thread otdfctl/docs/man/migrate/namespaced-policy.md Outdated
Comment thread otdfctl/docs/man/migrate/namespaced-policy.md
Comment thread otdfctl/migrations/namespacedpolicy/summary.go
Comment thread otdfctl/scripts/populate-legacy-obligation-triggers.sh Outdated
@github-actions
Copy link
Copy Markdown
Contributor

@github-actions
Copy link
Copy Markdown
Contributor

Benchmark results, click to expand

Benchmark authorization.GetDecisions Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 187.538733ms

Benchmark authorization.v2.GetMultiResourceDecision Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 96.869146ms

Benchmark Statistics

Name № Requests Avg Duration Min Duration Max Duration

Bulk Benchmark Results

Metric Value
Total Decrypts 100
Successful Decrypts 100
Failed Decrypts 0
Total Time 387.087073ms
Throughput 258.34 requests/second

TDF3 Benchmark Results:

Metric Value
Total Requests 5000
Successful Requests 5000
Failed Requests 0
Concurrent Requests 50
Total Time 41.767381679s
Average Latency 416.341238ms
Throughput 119.71 requests/second

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@otdfctl/migrations/namespacedpolicy/registered_resources_execute.go`:
- Around line 61-63: Remove the inline "? We should remove this right? As we
don't currently check. We must keep the call to existingRegisteredResource as it
is required for the reuse path: the call that assigns created,
hasExistingParent, err := e.existingRegisteredResource(ctx, target) should
remain and you should simply delete the TODO/question comment. This call relies
on target.ExistingID (set by the planner in finalize_plan) to detect and load an
existing parent RR and skip unconditional creation (enabling per-value
reconciliation), so do not remove or short-circuit the
existingRegisteredResource invocation.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: 4b23dde0-fe16-422f-afd9-de68b6c0fe79

📥 Commits

Reviewing files that changed from the base of the PR and between a68440e and f4677b5.

📒 Files selected for processing (2)
  • otdfctl/migrations/namespacedpolicy/registered_resources_execute.go
  • otdfctl/migrations/namespacedpolicy/summary.go

Comment thread otdfctl/migrations/namespacedpolicy/registered_resources_execute.go Outdated
@github-actions
Copy link
Copy Markdown
Contributor

Benchmark results, click to expand

Benchmark authorization.GetDecisions Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 142.051116ms

Benchmark authorization.v2.GetMultiResourceDecision Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 71.367801ms

Benchmark Statistics

Name № Requests Avg Duration Min Duration Max Duration

Bulk Benchmark Results

Metric Value
Total Decrypts 100
Successful Decrypts 100
Failed Decrypts 0
Total Time 353.776745ms
Throughput 282.66 requests/second

TDF3 Benchmark Results:

Metric Value
Total Requests 5000
Successful Requests 5000
Failed Requests 0
Concurrent Requests 50
Total Time 35.162991741s
Average Latency 349.716917ms
Throughput 142.19 requests/second

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions
Copy link
Copy Markdown
Contributor

Benchmark results, click to expand

Benchmark authorization.GetDecisions Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 197.10516ms

Benchmark authorization.v2.GetMultiResourceDecision Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 104.545767ms

Benchmark Statistics

Name № Requests Avg Duration Min Duration Max Duration

Bulk Benchmark Results

Metric Value
Total Decrypts 100
Successful Decrypts 100
Failed Decrypts 0
Total Time 408.473629ms
Throughput 244.81 requests/second

TDF3 Benchmark Results:

Metric Value
Total Requests 5000
Successful Requests 5000
Failed Requests 0
Concurrent Requests 50
Total Time 43.424194s
Average Latency 433.264787ms
Throughput 115.14 requests/second

elizabethhealy
elizabethhealy previously approved these changes Apr 22, 2026
Comment thread otdfctl/docs/man/migrate/namespaced-policy.md Outdated
Comment thread otdfctl/docs/man/migrate/namespaced-policy.md Outdated
@github-actions
Copy link
Copy Markdown
Contributor

Benchmark results, click to expand

Benchmark authorization.GetDecisions Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 209.67679ms

Benchmark authorization.v2.GetMultiResourceDecision Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 103.320614ms

Benchmark Statistics

Name № Requests Avg Duration Min Duration Max Duration

Bulk Benchmark Results

Metric Value
Total Decrypts 100
Successful Decrypts 100
Failed Decrypts 0
Total Time 417.70759ms
Throughput 239.40 requests/second

TDF3 Benchmark Results:

Metric Value
Total Requests 5000
Successful Requests 5000
Failed Requests 0
Concurrent Requests 50
Total Time 45.560296007s
Average Latency 454.339377ms
Throughput 109.74 requests/second

@github-actions
Copy link
Copy Markdown
Contributor

@c-r33d c-r33d requested a review from elizabethhealy April 22, 2026 20:52
@c-r33d c-r33d enabled auto-merge April 22, 2026 20:54
@github-actions
Copy link
Copy Markdown
Contributor

Benchmark results, click to expand

Benchmark authorization.GetDecisions Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 186.954114ms

Benchmark authorization.v2.GetMultiResourceDecision Results:

Metric Value
Approved Decision Requests 1000
Denied Decision Requests 0
Total Time 101.143424ms

Benchmark Statistics

Name № Requests Avg Duration Min Duration Max Duration

Bulk Benchmark Results

Metric Value
Total Decrypts 100
Successful Decrypts 100
Failed Decrypts 0
Total Time 399.477231ms
Throughput 250.33 requests/second

TDF3 Benchmark Results:

Metric Value
Total Requests 5000
Successful Requests 5000
Failed Requests 0
Concurrent Requests 50
Total Time 43.673727028s
Average Latency 435.228011ms
Throughput 114.49 requests/second

@github-actions
Copy link
Copy Markdown
Contributor

⚠️ Govulncheck found vulnerabilities ⚠️

The following modules have known vulnerabilities:

  • examples
  • otdfctl
  • sdk
  • service
  • lib/fixtures
  • tests-bdd

See the workflow run for details.

@c-r33d c-r33d added this pull request to the merge queue Apr 22, 2026
Merged via the queue into main with commit 05a4473 Apr 22, 2026
39 checks passed
@c-r33d c-r33d deleted the capture-errors-on-commit branch April 22, 2026 21:17
JBCongdon pushed a commit to JBCongdon/platform that referenced this pull request May 24, 2026
🤖 I have created a release *beep* *boop*
---


##
[0.32.0](opentdf/platform@otdfctl/v0.31.0...otdfctl/v0.32.0)
(2026-05-19)


### Features

* **cli:** Add better unit testing.
([opentdf#3378](opentdf#3378))
([3ad33dc](opentdf@3ad33dc))
* **cli:** Add interactive review for prune plans
([opentdf#3421](opentdf#3421))
([c11680b](opentdf@c11680b))
* **cli:** Add prune confirmation.
([opentdf#3469](opentdf#3469))
([c6d47ec](opentdf@c6d47ec))
* **cli:** Add prune planner.
([opentdf#3411](opentdf#3411))
([3e294e6](opentdf@3e294e6))
* **cli:** Add prune summary information
([opentdf#3456](opentdf#3456))
([c900c53](opentdf@c900c53))
* **cli:** add sensitive flag annotation to DocFlag
([opentdf#3457](opentdf#3457))
([98f48d2](opentdf@98f48d2))
* **cli:** Confirm and execute pruning of legacy objects
([opentdf#3458](opentdf#3458))
([24c09dd](opentdf@24c09dd))
* **cli:** Print report on failure
([opentdf#3365](opentdf#3365))
([05a4473](opentdf@05a4473))
* **cli:** Sort parameters.
([opentdf#3478](opentdf#3478))
([73ad878](opentdf@73ad878))
* **policy:** Add FQN to RegisteredResourceValues
([opentdf#3446](opentdf#3446))
([3199583](opentdf@3199583))
* **policy:** Add resource mapping group FQNs
([opentdf#3447](opentdf#3447))
([6a0b3c6](opentdf@6a0b3c6))


### Bug Fixes

* **cli:** Prune was not classifying multi-namespaced RRs properly.
([opentdf#3488](opentdf#3488))
([eae8645](opentdf@eae8645))
* **cli:** support json profile output
([opentdf#3448](opentdf#3448))
([61f194c](opentdf@61f194c))
* **deps:** bump github.com/opentdf/platform/lib/identifier from 0.3.0
to 0.4.0 in /otdfctl
([opentdf#3367](opentdf#3367))
([aa23179](opentdf@aa23179))
* **deps:** bump github.com/opentdf/platform/protocol/go from 0.27.0 to
0.28.0 in /otdfctl
([opentdf#3419](opentdf#3419))
([c80374f](opentdf@c80374f))
* **deps:** bump github.com/opentdf/platform/sdk from 0.16.0 to 0.17.0
in /otdfctl ([opentdf#3397](opentdf#3397))
([bb9fcd6](opentdf@bb9fcd6))
* **deps:** bump go.opentelemetry.io/otel from 1.40.0 to 1.41.0 in
/otdfctl ([opentdf#3400](opentdf#3400))
([5631c37](opentdf@5631c37))
* **deps:** bump module protocol/go to v0.30.0 throughout
([opentdf#3459](opentdf#3459))
([8eaa502](opentdf@8eaa502))

---
This PR was generated with [Release
Please](https://github.com/googleapis/release-please). See
[documentation](https://github.com/googleapis/release-please#release-please).

Co-authored-by: opentdf-automation[bot] <149537512+opentdf-automation[bot]@users.noreply.github.com>
Co-authored-by: Chris Reed <87077975+c-r33d@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants