| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
Co-authored-by: Max Parke <max.parke@scale.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> Co-authored-by: Stas Moreinis <stas.moreinis@scale.com> Co-authored-by: Declan Brady <declan.brady@scale.com> Co-authored-by: Michael Chou <michael.chou@scale.com> Co-authored-by: Daniel Miller <daniel.miller@scale.com>
Co-authored-by: Max Parke <max.parke@scale.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: stainless-app[bot] <142633134+stainless-app[bot]@users.noreply.github.com> Co-authored-by: Stas Moreinis <stas.moreinis@scale.com> Co-authored-by: Declan Brady <declan.brady@scale.com> Co-authored-by: Michael Chou <michael.chou@scale.com> Co-authored-by: Daniel Miller <daniel.miller@scale.com> Co-authored-by: Matteo Librizzi <matteo.librizzi@scale.com>
Merge main (0.11.5 + 0.11.6 releases) into next. Conflicts resolved: - version bookkeeping (.release-please-manifest.json, pyproject.toml, _version.py): take 0.11.6 from main - CHANGELOG.md: keep main's released 0.11.6 section - span_queue.py / test_span_queue.py: keep next's version, which carries bounded-concurrency export (#374) on top of the linger change (#362) that main has only as the squashed 0.11.5 commit
| Back | FazBrowse Home | New Git URL |
Why
next had diverged from main, leaving release PR #382 (release: 0.11.6) with merge conflicts. main carries the 0.11.5 + 0.11.6 releases (where #362's span-queue linger change landed as a squashed commit), while next carries the original #362 plus bounded-concurrency export (#374) stacked on the same span_queue.py region — so git saw two unrelated commits editing the same lines and couldn't auto-merge.
This back-merges main into next to realign the histories. Once merged, release-please regenerates #382 conflict-free.
Conflict resolution
Verification
Greptile Summary
This PR back-merges main (carrying the 0.11.5 and 0.11.6 releases) into next to resolve the merge conflict that was blocking release PR #382. Only version bookkeeping files are touched — no functional code changed.
Confidence Score: 5/5
Safe to merge — all changes are pure version bookkeeping with no functional code touched.
All four changed files do exactly what the description says: bump the version string from 0.11.5 to 0.11.6 in lockstep across the manifest, pyproject, and generated version file, and prepend the correct 0.11.6 changelog section. The version numbers are consistent across every file, no conflict markers remain, and the functional code (span_queue.py and its tests) is untouched by this diff.
No files require special attention.
Important Files Changed
Sequence Diagram
sequenceDiagram participant main participant next participant release_please as release-please note over main: v0.11.5 squash-merged (#362 linger change) note over main: v0.11.6 released (features, bug fixes) note over next: #362 original commit note over next: #374 bounded-concurrency export stacked on top main->>next: "back-merge (this PR #384)" note over next: Version files → 0.11.6 (from main) note over next: span_queue.py → kept from next (preserves #374) next->>release_please: "trigger #382 regeneration" release_please-->>next: conflict-free release PRReviews (1): Last reviewed commit: "chore: back-merge release 0.11.6 into ne..." | Re-trigger Greptile