matrx-orm 2.0.3__tar.gz → 2.0.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/PKG-INFO +1 -1
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/pyproject.toml +1 -1
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/release.sh +7 -2
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/.arman/pending/versioning/INITIAL.md +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/.env.example +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/.github/workflows/publish.yml +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/.gitignore +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/.python-version +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/CLAUDE.md +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/MIGRATIONS.md +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/README.md +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/RESERVED_NAMES.md +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/docs/migrations.md +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/main.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/adapters/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/adapters/base_adapter.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/adapters/postgresql.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/client/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/client/postgres_connection.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/core/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/core/async_db_manager.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/core/base.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/core/config.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/core/expressions.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/core/extended.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/core/fields.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/core/paginator.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/core/registry.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/core/relations.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/core/signals.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/core/transaction.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/error_handling.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/exceptions.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/extended/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/extended/app_error_handler.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/middleware/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/middleware/base.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/migrations/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/migrations/cli.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/migrations/ddl.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/migrations/diff.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/migrations/executor.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/migrations/integration.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/migrations/loader.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/migrations/operations.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/migrations/state.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/migrations/table_filter.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/operations/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/operations/create.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/operations/delete.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/operations/read.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/operations/update.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/python_sql/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/python_sql/db_objects.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/python_sql/table_detailed_relationships.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/python_sql/table_typescript_relationship.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/query/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/query/builder.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/query/executor.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/columns.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/common.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/generator.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/helpers/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/helpers/base_generators.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/helpers/entity_generators.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/helpers/git_checker.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/relationships.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/runner.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/schema.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/schema_manager.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/tables.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/views.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/sql_executor/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/sql_executor/executor.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/sql_executor/queries.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/sql_executor/registry.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/sql_executor/types.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/sql_executor/utils.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/state.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/utils/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/utils/sql_utils.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/utils/type_converters.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/conftest.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_config.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_ddl_generator.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_exceptions.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_fields.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_migration_diff_types.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_migration_loader.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_model_instance.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_model_meta.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_query_builder.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_query_executor_sql.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_registry.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_relations.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level1/test_state_cache.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level2/__init__.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level2/conftest.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level2/test_bulk_ops.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level2/test_cache_integration.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level2/test_crud.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level2/test_foreign_keys.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level2/test_m2m.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level2/test_manager.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level2/test_migrations_live.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level2/test_query_execution.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/level2/test_schema_diff.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/sample_project/.env.example +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/sample_project/README.md +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/sample_project/generate.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/sample_project/generated/.gitkeep +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/sample_project/matrx_orm.yaml +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/sample_project/test_schema_generation.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/schema/entity_tests.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/schema/test_base_generation.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/schema/test_generate_schema.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/tests/test_model_cls_refactor.py +0 -0
- {matrx_orm-2.0.3 → matrx_orm-2.0.4}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: matrx-orm
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.4
|
|
4
4
|
Summary: Async-first PostgreSQL ORM with bidirectional migrations, schema introspection, many-to-many relationships, and built-in state caching. Works with any PostgreSQL database.
|
|
5
5
|
Project-URL: Homepage, https://github.com/armanisadeghi/matrx-orm
|
|
6
6
|
Project-URL: Repository, https://github.com/armanisadeghi/matrx-orm
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "matrx-orm"
|
|
3
|
-
version = "2.0.
|
|
3
|
+
version = "2.0.4"
|
|
4
4
|
description = "Async-first PostgreSQL ORM with bidirectional migrations, schema introspection, many-to-many relationships, and built-in state caching. Works with any PostgreSQL database."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
license = { text = "MIT" }
|
|
@@ -67,7 +67,7 @@ echo ""
|
|
|
67
67
|
# ── Update pyproject.toml and amend the commit ─────────────────────────────
|
|
68
68
|
|
|
69
69
|
info "Updating $PYPROJECT to version $NEW_VERSION..."
|
|
70
|
-
sed -i "s/^version = \"$CURRENT_VERSION\"/version = \"$NEW_VERSION\"/" "$PYPROJECT"
|
|
70
|
+
sed -i '' "s/^version = \"$CURRENT_VERSION\"/version = \"$NEW_VERSION\"/" "$PYPROJECT"
|
|
71
71
|
ok "Version updated in $PYPROJECT"
|
|
72
72
|
|
|
73
73
|
info "Amending last commit to include version bump..."
|
|
@@ -99,6 +99,11 @@ echo -e "${GREEN} Released matrx-orm $NEW_VERSION${NC}"
|
|
|
99
99
|
echo -e "${GREEN} GitHub Actions will now build and publish to PyPI.${NC}"
|
|
100
100
|
echo -e "${GREEN}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
|
|
101
101
|
echo ""
|
|
102
|
+
echo ""
|
|
103
|
+
echo -e "${CYAN}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
|
|
102
104
|
echo -e " Monitor: ${CYAN}https://github.com/armanisadeghi/matrx-orm/actions${NC}"
|
|
103
|
-
echo -e " Update: ${CYAN}uv add matrx-orm
|
|
105
|
+
echo -e " Update: ${CYAN}uv add matrx-orm==${NEW_VERSION}${NC}"
|
|
106
|
+
echo ""
|
|
107
|
+
echo -e " --> Not Available Yet? Speed up indexing: ${CYAN}pip index versions matrx-orm${NC}"
|
|
108
|
+
echo -e "${CYAN}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${NC}"
|
|
104
109
|
echo ""
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/python_sql/table_detailed_relationships.py
RENAMED
|
File without changes
|
{matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/python_sql/table_typescript_relationship.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{matrx_orm-2.0.3 → matrx_orm-2.0.4}/src/matrx_orm/schema_builder/helpers/entity_generators.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|