Changelog¶
All notable changes to Pydantic Airtable are documented here.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[1.0.1] - 2026-01-06¶
Changed¶
- Consolidated Manager Classes: Removed
BaseManagerandTableManagerclasses. All functionality is now available through the unifiedAirtableManagerclass. - Renamed Example Table: Changed
Userstable toEmployeesin the table_management example to avoid conflicts with the simple_usage example.
Fixed¶
- Multi-field Filtering: Fixed
find_by()method inmodels.pyto correctly generate Airtable formulas when filtering by multiple fields. Now properly usesAND(condition1, condition2)syntax instead of invalidcondition1 AND condition2syntax.
Added¶
- Multi-field Filter Examples: Added examples demonstrating
find_by()with multiple field filters in simple_usage and table_management examples. - AUTO_NUMBER Documentation: Added documentation noting that Airtable API does not support creating AUTO_NUMBER fields. Users must create NUMBER fields and convert them to Auto number in the Airtable UI.
- AUTO_NUMBER Warning: Added runtime warning when attempting to create a table with an AUTO_NUMBER field, automatically substituting NUMBER type.
[1.0.0] - 2025-12-18¶
Initial Release¶
First public release of Pydantic Airtable — the most intuitive way to integrate Pydantic models with Airtable.
Added¶
- Core Features
@airtable_modeldecorator for Pydantic model integrationAirtableModelbase class with full CRUD operations-
airtable_field()function for field customization -
CRUD Operations
create()- Create single recordsget()- Retrieve by IDall()- Get all records with filteringfind_by()- Query by field valuesfirst()- Get first matching recordbulk_create()- Batch record creationsave()- Update existing records-
delete()- Remove records -
Configuration
AirtableConfigdataclassconfigure_from_env()for environment-based setupset_global_config()andget_global_config()- Per-model configuration support
-
Multiple base support
-
Table Management
create_table()- Create tables from modelssync_table()- Synchronize model schemas-
AirtableManagerfor direct API access -
Field Types
- All standard Airtable field types
- Automatic field type detection for email, phone, URL, etc.
- Enum support for SELECT fields
- List support for MULTI_SELECT fields
- Custom field name mapping
-
Read-only field support
-
** Field Type Detection**
| Pattern | Detected Type |
|---|---|
| email, mail, contact | |
| phone, tel, mobile, cell | PHONE |
| url, link, website | URL |
| description, note, bio | LONG_TEXT |
| price, cost, amount | CURRENCY |
| percent, rate, ratio | PERCENT |
- Examples
- Simple Usage — Basic CRUD operations
- Table Management — Schema creation and evolution
-
Agentic Researcher — AI-powered research assistant with OpenAI integration
-
Documentation
- Comprehensive MkDocs documentation
- API reference
- User guide
- Examples
Upcoming¶
Planned for Future Releases¶
- [ ] Async support
- [ ] Linked records handling
- [ ] Attachment field support
- [ ] Webhook integration
- [ ] Rate limit handling improvements
- [ ] Record versioning
- [ ] Soft delete support
- [ ] Cache layer
Version History¶
| Version | Date | Status |
|---|---|---|
| 1.0.1 | 2026-01-06 | Bug fixes & consolidation |
| 1.0.0 | 2025-12-18 | Initial Release |