Releases: bfitech/zapstore
Releases · bfitech/zapstore
2.3.0
2.2.0
- Upgrade zapcore dependency.
- Strict type checking.
- Isolate Redis API calls to separate class.
- SQLConn::get_connection_params always returns array, empty on
non-opened connection. - Fix code sample on disabling autocommit.
- More samples.
- Fix composer.json to properly comply with PSR-4.
2.1.0
2.0.0
- Update zapcore dependency.
- Drop support for PHP 5. Support PHP <= 7.3.
- Rename SQLUtils to SQLConn. This class manages and only manages
connection. Isolate it in separate file. - Isolate SQLError and RedisError in separate file.
- Remove private connection-related properties such as SQL->dbtype or
RedisConn->redistype. Use array properties SQL->verified_params or
RedisConn->verified_params instead. - Remove many setters such as SQL->set_connection() that is potentially
detrimental to expected behavior. Use SQL or RedisConn constructor
for total encapsulation of connection management. - Remove type parameter from SQL->stmt_fragment_datetime().