Skip to content

chore(main): release 0.6.5#1149

Open
Aureliolo wants to merge 2 commits intomainfrom
release-please--branches--main--components--synthorg
Open

chore(main): release 0.6.5#1149
Aureliolo wants to merge 2 commits intomainfrom
release-please--branches--main--components--synthorg

Conversation

@Aureliolo
Copy link
Copy Markdown
Owner

@Aureliolo Aureliolo commented Apr 8, 2026

🤖 I have created a release beep boop

0.6.5 (2026-04-08)

Features

Bug Fixes

CI/CD

  • bump wrangler from 4.80.0 to 4.81.0 in /.github in the all group (#1144) (b7c0945)

Maintenance

  • bump python from 6869258 to 5e59aae in /docker/backend in the all group (#1141) (01e99c2)
  • bump python from 6869258 to 5e59aae in /docker/sandbox in the all group (#1143) (ea755bd)
  • bump python from 6869258 to 5e59aae in /docker/web in the all group (#1142) (5416dd9)
  • bump the all group across 1 directory with 3 updates (#1146) (c609e6c)
  • bump vitest from 4.1.2 to 4.1.3 in /site in the all group (#1145) (a8c1194)
  • consolidated web deps (11 packages + hono security + test fixes) (#1150) (63a9390), closes #1147 #1136 #1137

This PR was generated with Release Please. See documentation.

Copilot AI review requested due to automatic review settings April 8, 2026 11:07
@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Apr 8, 2026

Important

Review skipped

Ignore keyword(s) in the title.

⛔ Ignored keywords (1)
  • chore(main): release

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Repository UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: a03135b8-f0e2-4669-9b3e-0b347278d348

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

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

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

Release PR for SynthOrg v0.6.5, updating project version metadata and generated changelog entries to reflect the new release (per Release Please).

Changes:

  • Bump library/package version references from 0.6.4 to 0.6.5
  • Add the 0.6.5 entry to .github/CHANGELOG.md
  • Update LICENSE “Change Date” to align with the new release date

Reviewed changes

Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.

Show a summary per file
File Description
src/synthorg/__init__.py Updates __version__ to 0.6.5.
pyproject.toml Updates Commitizen version to 0.6.5 for tagging/release automation.
LICENSE Adjusts BSL “Change Date” from April 7, 2029 to April 8, 2029 (consistent with the 2026-04-08 release date).
.github/CHANGELOG.md Adds the autogenerated 0.6.5 release notes section.
.github/.release-please-manifest.json Updates Release Please manifest version to 0.6.5.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Apr 8, 2026

Preview Deployment

URL: https://pr-1149.synthorg-pr-preview.pages.dev

Built from commit f41f40e

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Apr 8, 2026

Dependency Review

✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.

Snapshot Warnings

⚠️: No snapshots were found for the head SHA f41f40e.
Ensure that dependencies are being submitted on PR branches. Re-running this action after a short time may resolve the issue. See the documentation for more information and troubleshooting advice.

Scanned Files

None

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 updates the project version to 0.6.5 across the manifest, changelog, and configuration files. A critical Python syntax error was identified in the exception handling logic of the newly added communication hardening features, specifically regarding the incorrect syntax for catching multiple exceptions which is invalid in Python 3.


### Bug Fixes

* communication hardening -- meeting cooldown, circuit breaker backoff, debate fallback ([#1140](https://github.com/Aureliolo/synthorg/issues/1140)) ([fe82894](https://github.com/Aureliolo/synthorg/commit/fe82894feaadd6fde8c17e1b7a7c50c64fecb10d)), closes [#1115](https://github.com/Aureliolo/synthorg/issues/1115) [#1116](https://github.com/Aureliolo/synthorg/issues/1116) [#1117](https://github.com/Aureliolo/synthorg/issues/1117)
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

The implementation of the communication hardening features mentioned here contains a critical Python syntax error that will prevent the code from running. The except MemoryError, RecursionError: syntax used in several files is invalid in Python 3 (it results in a SyntaxError). Even in Python 2, it would catch MemoryError and assign it to a variable named RecursionError instead of catching both types. This issue is present in src/synthorg/communication/loop_prevention/circuit_breaker.py (lines 256 and 298) and src/synthorg/communication/conflict_resolution/debate_strategy.py (line 104). These should be updated to use a tuple: except (MemoryError, RecursionError):.

@codecov
Copy link
Copy Markdown

codecov bot commented Apr 8, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 88.88%. Comparing base (581c494) to head (f41f40e).
✅ All tests successful. No failed tests found.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #1149   +/-   ##
=======================================
  Coverage   88.88%   88.88%           
=======================================
  Files         857      857           
  Lines       50440    50440           
  Branches     5072     5072           
=======================================
  Hits        44835    44835           
  Misses       4643     4643           
  Partials      962      962           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@Aureliolo Aureliolo force-pushed the release-please--branches--main--components--synthorg branch from 8e23d1c to da54132 Compare April 8, 2026 12:31
@Aureliolo Aureliolo temporarily deployed to cloudflare-preview April 8, 2026 12:34 — with GitHub Actions Inactive
@Aureliolo Aureliolo force-pushed the release-please--branches--main--components--synthorg branch from 2b6fcb0 to d2dd707 Compare April 8, 2026 14:19
@Aureliolo Aureliolo temporarily deployed to cloudflare-preview April 8, 2026 14:21 — with GitHub Actions Inactive
@Aureliolo Aureliolo force-pushed the release-please--branches--main--components--synthorg branch 4 times, most recently from f27c3eb to 4c47bfc Compare April 8, 2026 15:03
@Aureliolo Aureliolo temporarily deployed to cloudflare-preview April 8, 2026 15:05 — with GitHub Actions Inactive
@Aureliolo Aureliolo force-pushed the release-please--branches--main--components--synthorg branch from 644750a to 244564e Compare April 8, 2026 15:25
@Aureliolo Aureliolo temporarily deployed to cloudflare-preview April 8, 2026 15:27 — with GitHub Actions Inactive
@Aureliolo Aureliolo force-pushed the release-please--branches--main--components--synthorg branch from c507d2b to b070e6f Compare April 8, 2026 15:58
@Aureliolo Aureliolo temporarily deployed to cloudflare-preview April 8, 2026 16:00 — with GitHub Actions Inactive
@Aureliolo Aureliolo force-pushed the release-please--branches--main--components--synthorg branch from f11e945 to c4115de Compare April 8, 2026 19:04
@Aureliolo Aureliolo temporarily deployed to cloudflare-preview April 8, 2026 19:06 — with GitHub Actions Inactive
@Aureliolo Aureliolo force-pushed the release-please--branches--main--components--synthorg branch from 1f87cf1 to 654a452 Compare April 8, 2026 20:19
@Aureliolo Aureliolo temporarily deployed to cloudflare-preview April 8, 2026 20:21 — with GitHub Actions Inactive
@Aureliolo Aureliolo force-pushed the release-please--branches--main--components--synthorg branch from f5eb365 to d8a5477 Compare April 8, 2026 22:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

2 participants