release: 1.2.0 — Taking to water - #18
Merged
Merged
Conversation
New features: - cygnet.follow_many: batched foreign-key navigation. Resolves a whole collection's FK targets in one WHERE pk = ANY($1) round-trip instead of N (the classic N+1), aligned to the inputs. - Faster bulk INSERT: the row-invariant column derivation is hoisted out of the per-row render loop (~1.64x faster bulk-INSERT rendering), byte-identical output. Bumps version 1.1.0 -> 1.2.0 and refreshes uv.lock + CHANGELOG.
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.
Prepares the 1.2.0 release ("Taking to water"). Version bump + lockfile + changelog only — all the actual code already merged (#14, #16) and is on
main.Contents (since 1.1.0)
New features:
cygnet.follow_many(feat: cygnet.follow_many — batched FK navigation (N+1 → 1 round-trip) #16) — batched FK navigation: resolve a whole collection's FK targets in oneWHERE pk = ANY($1)round-trip instead of N (the classic N+1), aligned to the inputs. The reason this is a minor bump (new public API).Docs (#15, #17) — ARCHITECTURE/THEORY notes and a refreshed cross-ORM benchmark table with a 1000-row bulk row — are already on
main.Validation
version = "1.2.0"(single-sourced in pyproject;uv.lockupdated,uv sync --lockedclean).1.2.0not yet on PyPI (no collision),uv buildproduces clean sdist + wheel,twine check --strictPASSED.just checkgreen (523 tests, 95% coverage, ruff + mypy clean).Release trigger (human-gated)
After this merges, the PyPI publish fires when a GitHub Release is published (
publish.yml, trusted publishing / OIDC — no stored token). That's the irreversible step (PyPI is append-only), so it's yours to pull:Creating the release publishes
cygnet-orm==1.2.0to PyPI.