sqlalchemy-config 0.4.6b0__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.
- sqlalchemy_config-0.4.6b0/CHANGELOG.md +75 -0
- sqlalchemy_config-0.4.6b0/LICENSE.txt +674 -0
- sqlalchemy_config-0.4.6b0/MANIFEST.in +15 -0
- sqlalchemy_config-0.4.6b0/PKG-INFO +201 -0
- sqlalchemy_config-0.4.6b0/README.md +173 -0
- sqlalchemy_config-0.4.6b0/VERSION +1 -0
- sqlalchemy_config-0.4.6b0/contributors.txt +2 -0
- sqlalchemy_config-0.4.6b0/pyproject.toml +86 -0
- sqlalchemy_config-0.4.6b0/setup.cfg +4 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config/__init__.py +7 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config/_version.py +1 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config/column_info.py +158 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config/config.py +577 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config/orm_code.py +2980 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config/orm_doc.py +727 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config/test_connect.py +357 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config/type_cast.py +298 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config/utils.py +190 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config.egg-info/PKG-INFO +201 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config.egg-info/SOURCES.txt +22 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config.egg-info/dependency_links.txt +1 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config.egg-info/entry_points.txt +7 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config.egg-info/requires.txt +10 -0
- sqlalchemy_config-0.4.6b0/sqlalchemy_config.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to sqlalchemy-config will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## version `0.4.6b0`
|
|
6
|
+
* API - Added comprehensive top-level import and module API coverage tests.
|
|
7
|
+
* TESTS - Expanded test suite to 431 tests across config, orm_code, orm_doc, test_connect, type_cast, utils, and imports.
|
|
8
|
+
* TESTS - Added dedicated test helpers and golden-file assertions for reflected schema and ORM documentation outputs.
|
|
9
|
+
* BUGFIX - Fixed config permission handling regression and improved associated test coverage.
|
|
10
|
+
* BUGFIX - Fixed multiple type-casting date parsing edge cases.
|
|
11
|
+
* BUGFIX - Fixed ORM code generation issues in property/range handling and foreign-key column info updates.
|
|
12
|
+
* DOCS - Added developer reference API documentation page and refreshed generated API docs.
|
|
13
|
+
* BUILD - Standardized CI coverage collection via `coverage run`/`coverage report` and retained 80% coverage enforcement.
|
|
14
|
+
* BUILD - Added coverage path normalization settings for consistent reporting across local/docker/CI environments.
|
|
15
|
+
|
|
16
|
+
## version `0.4.5b0`
|
|
17
|
+
* BUILD - Migrated from setup.py to pyproject.toml with setuptools backend
|
|
18
|
+
* BUILD - Conda recipe consolidated to single noarch:python meta.yaml with Jinja2 templating
|
|
19
|
+
* BUILD - Updated supported Python versions from 3.8/3.9/3.10 to 3.11/3.12/3.13
|
|
20
|
+
* BUILD - Replaced git-based pyaddons dependency with cfin-pyaddons PyPI package
|
|
21
|
+
* BUILD - Added PyPI upload script (resources/pypi/pypi-upload.sh)
|
|
22
|
+
* BUILD - Rewrote MANIFEST.in with proper inclusions and exclusions
|
|
23
|
+
* BUILD - Updated CI Docker image from chrisfin/pypan:base to chrisfin/pypan:complete-3.13
|
|
24
|
+
* BUILD - Removed legacy setup.py, requirements.txt, and egg-info directory
|
|
25
|
+
* DOCS - Switched Sphinx theme from furo to sphinx-book-theme
|
|
26
|
+
* DOCS - Extracted changelog from README.md into standalone CHANGELOG.md
|
|
27
|
+
|
|
28
|
+
## version `0.4.4a0`
|
|
29
|
+
* SCRIPT - `orm-create-src` , fixed reflection errors due to SQLAlchemy 2.
|
|
30
|
+
|
|
31
|
+
## version `0.4.3a0`
|
|
32
|
+
* SCRIPT - `orm-test-connect` , improved the reporting of table query errors.
|
|
33
|
+
|
|
34
|
+
## version `0.4.2a0`
|
|
35
|
+
* BUGFIX - Fixed bug in ORM class detection for orm-doc-*.
|
|
36
|
+
|
|
37
|
+
## version `0.4.1a0`
|
|
38
|
+
* BUGFIX - Fixed import bug for SQLAlchemy 2.
|
|
39
|
+
|
|
40
|
+
## version `0.4.0a0`
|
|
41
|
+
* BUGFIX - Fixed config permissions checking added flexibility of perms arguments.
|
|
42
|
+
* BUGFIX - Fixed bug in exist check from config file.
|
|
43
|
+
* API - `get_new_sessionmaker` function, added option to raise on database exists.
|
|
44
|
+
* API - Added data type URLs
|
|
45
|
+
* API - Updated imports for SQLAlchemy 2
|
|
46
|
+
* TESTS - Added config tests.
|
|
47
|
+
* BUILD - Updated requirements to use SQLAlchemy >=2
|
|
48
|
+
* BUILD - Removed unused example directory and conftest.py
|
|
49
|
+
|
|
50
|
+
## version `0.3.1a0`
|
|
51
|
+
* API - added `get_new_sessionmaker` function and deprecated `get_sessionmaker`.
|
|
52
|
+
* DOCS - Added documentation for the test connection API.
|
|
53
|
+
|
|
54
|
+
## version `0.3.0a0`
|
|
55
|
+
* API - added better Python type conversion functions in Column objects.
|
|
56
|
+
* API - added a set of casting functions in the `sqlalchemy.type_cast` module.
|
|
57
|
+
* BUILD - added pytest calls from conda build.
|
|
58
|
+
|
|
59
|
+
## version `0.2.0a3`
|
|
60
|
+
* DOCS - added change log
|
|
61
|
+
* DOCS - Fixed missing columns in ``orm-create-src`` documentation.
|
|
62
|
+
|
|
63
|
+
## version `0.2.0a2`
|
|
64
|
+
* API - fixed description crash for columns with undefined doc attribute
|
|
65
|
+
|
|
66
|
+
## version `0.2.0a1`
|
|
67
|
+
* BUILD - added missing requirement.
|
|
68
|
+
|
|
69
|
+
## version `0.2.0a0`
|
|
70
|
+
* API - added a simpler sessionmaker function to the config module
|
|
71
|
+
* SCRIPTS - added scripts moved from pyaddons ``orm-doc-api``, ``orm-doc-schema``, ``orm-docstring``.
|
|
72
|
+
* SCRIPTS - added new ORM code producing script ``orm-create-src``.
|
|
73
|
+
* BUILD - removed Python v3.7
|
|
74
|
+
* BUILD - Updated requirements for new scripts
|
|
75
|
+
* DOCS - Added new script/API docs
|