feat: add 8 v1.6.x feature recipes#27
Merged
Merged
Conversation
Adds 8 new cookbook recipes covering features shipped in pycubrid v1.6.0/v1.6.1 and sqlalchemy-cubrid v1.6.0 that previously had zero examples: New topic folders: - fundamentals/async/ — pycubrid.aio + SQLAlchemy async engine - fundamentals/alembic/ — programmatic Alembic migrations - fundamentals/json/ — native JSON columns + JSON_EXTRACT/UNQUOTE - fundamentals/isolation-levels/ — 6 numeric levels + dirty-read demo Extended driver folders: - fundamentals/sqlalchemy/07_collection_types.py — SET/MULTISET/SEQUENCE ORM - fundamentals/pycubrid/15_cursor_memory_bound.py — fetch_size + tracemalloc - fundamentals/pycubrid/16_batch_error_handling.py — executemany_batch errors Docs updated: README.md, fundamentals/README.md, fundamentals/pycubrid/README.md, llms.txt, SUPPORT_MATRIX.md, CHANGELOG.md. All 8 scripts pass ruff check, ruff format, and ast.parse static checks. Oracle design review: ses_08a7adf25ffecqa4sT46tsBhdw Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
3 fixes from Oracle review (session ses_08a7544c2ffev6MH10xHzTpMRa): MANDATORY: - Rename 01_alembic_programmatic.py → alembic_programmatic.py Module names starting with digits are invalid Python identifiers. Updated docstring, run command, and env.py import line. RECOMMENDED: - Add CUBRID 11.2+ ->/->> JSON operator shorthand to cheat sheet - Add time.sleep(0.1) before writer_done.set() in dirty-read demo to eliminate theoretical startup race condition Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
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.
Summary
Adds 8 new cookbook recipes covering pycubrid v1.6.0/v1.6.1 and sqlalchemy-cubrid v1.6.0 features that previously had zero examples. Oracle design review: `ses_08a7adf25ffecqa4sT46tsBhdw`. Post-implementation review in progress (`bg_1d24302f`).
Recipes Added
New topic folders (4 recipes)
Extended driver folders (3 recipes)
Key Patterns Documented
Static Checks
Docs Updated
Ultraworked with Sisyphus