From 8aef2999c50a732741e671ff2a9cb2ffaad01236 Mon Sep 17 00:00:00 2001 From: Sisyphus Date: Sat, 18 Jul 2026 10:54:36 +0900 Subject: [PATCH] docs: address Oracle post-impl review residuals (links, version, filename) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - CONTRIBUTING.md: cubrid-cookbook → cubrid-cookbook-python (title + 2 links) - ROADMAP.md: milestones link → cubrid-cookbook-python - SUPPORT_MATRIX.md: SQLAlchemy 2.0–2.1 → 2.0–2.2 (stale) - parameterized-queries/: rename 04_prepared.py → 04_parameterized.py (+ .expected) to match directory name; update README link and docstring Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus --- CONTRIBUTING.md | 6 +++--- ROADMAP.md | 2 +- SUPPORT_MATRIX.md | 2 +- .../{04_prepared.py => 04_parameterized.py} | 2 +- fundamentals/parameterized-queries/README.md | 2 +- .../{04_prepared.expected => 04_parameterized.expected} | 0 6 files changed, 7 insertions(+), 7 deletions(-) rename fundamentals/parameterized-queries/{04_prepared.py => 04_parameterized.py} (98%) rename fundamentals/parameterized-queries/expected/{04_prepared.expected => 04_parameterized.expected} (100%) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0c35d5c..51e4e0e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,4 +1,4 @@ -# Contributing to cubrid-cookbook +# Contributing to cubrid-cookbook-python Thank you for your interest in contributing! This document provides guidelines and instructions for contributing to the project. @@ -156,5 +156,5 @@ For new example requests, describe the use case and framework. ## Questions? -Open a [GitHub Discussion](https://github.com/cubrid-lab/cubrid-cookbook/discussions) -or file an [issue](https://github.com/cubrid-lab/cubrid-cookbook/issues). +Open a [GitHub Discussion](https://github.com/cubrid-lab/cubrid-cookbook-python/discussions) +or file an [issue](https://github.com/cubrid-lab/cubrid-cookbook-python/issues). diff --git a/ROADMAP.md b/ROADMAP.md index 1a3d894..8fd1399 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -7,7 +7,7 @@ ## Links -- 📋 [GitHub Milestones](https://github.com/cubrid-lab/cubrid-cookbook/milestones) +- 📋 [GitHub Milestones](https://github.com/cubrid-lab/cubrid-cookbook-python/milestones) - 🗂️ [Org Project Board](https://github.com/orgs/cubrid-lab/projects/2) - 🌐 [Ecosystem Roadmap](https://github.com/cubrid-lab/.github/blob/main/ROADMAP.md) diff --git a/SUPPORT_MATRIX.md b/SUPPORT_MATRIX.md index efe9c89..a0f45ca 100644 --- a/SUPPORT_MATRIX.md +++ b/SUPPORT_MATRIX.md @@ -31,7 +31,7 @@ Tested combinations of CUBRID server, Python version, and driver/framework. |-----------|---------|--------| | pycubrid | ≥ 1.3.2 | ✅ Required | | sqlalchemy-cubrid | ≥ 1.0 | ✅ Required for SQLAlchemy recipes | -| SQLAlchemy | 2.0–2.1 | ✅ | +| SQLAlchemy | 2.0–2.2 | ✅ | | Flask | ≥ 3.0 | ✅ | | Flask-SQLAlchemy | ≥ 3.1 | ✅ | | FastAPI | ≥ 0.100 | ✅ | diff --git a/fundamentals/parameterized-queries/04_prepared.py b/fundamentals/parameterized-queries/04_parameterized.py similarity index 98% rename from fundamentals/parameterized-queries/04_prepared.py rename to fundamentals/parameterized-queries/04_parameterized.py index 37cbe6c..e6ca285 100644 --- a/fundamentals/parameterized-queries/04_prepared.py +++ b/fundamentals/parameterized-queries/04_parameterized.py @@ -1,4 +1,4 @@ -"""04_prepared.py — Parameterized queries and batch operations. +"""04_parameterized.py — Parameterized queries and batch operations. Demonstrates: - Parameterized queries (qmark style: ?) diff --git a/fundamentals/parameterized-queries/README.md b/fundamentals/parameterized-queries/README.md index 78aca49..c9595d3 100644 --- a/fundamentals/parameterized-queries/README.md +++ b/fundamentals/parameterized-queries/README.md @@ -13,7 +13,7 @@ qmark (`?`) placeholder style. | Recipe | Description | |--------|-------------| -| [`04_prepared.py`](04_prepared.py) | Parameterized queries, batch operations with `executemany()` | +| [`04_parameterized.py`](04_parameterized.py) | Parameterized queries, batch operations with `executemany()` | ## Why parameterized queries? diff --git a/fundamentals/parameterized-queries/expected/04_prepared.expected b/fundamentals/parameterized-queries/expected/04_parameterized.expected similarity index 100% rename from fundamentals/parameterized-queries/expected/04_prepared.expected rename to fundamentals/parameterized-queries/expected/04_parameterized.expected