Skip to content

Commit f903c8d

Browse files
authored
Disable hub mode for new versions, Update pyjnius to 1.6.1 and improve documentation (#74)
* Update documentation * Update pyjnius to 1.6.1 * Add "4.21.1" "4.23.2" "4.24.0" "4.25.1" lb versions to testing list * Disable hub mode argument for new versions >= "4.22.0" * remove 2.25.x version from tests
1 parent fb8ce29 commit f903c8d

File tree

4 files changed

+19
-18
lines changed

4 files changed

+19
-18
lines changed

README.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
[![License](http://img.shields.io/:license-apache%202.0-brightgreen.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)
22
![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)
3-
![Python package](https://github.com/memiiso/pyliquibase/workflows/Python%20package/badge.svg)
4-
3+
[![Create Pypi Release](https://github.com/memiiso/pyliquibase/actions/workflows/release.yml/badge.svg)](https://github.com/memiiso/pyliquibase/actions/workflows/release.yml)
54
# pyliquibase
65

7-
Use [liquibase](http://www.liquibase.org/) with python. Java integration is done using Java Native Interface (JNI) using [pyjnius](https://github.com/kivy/pyjnius)
6+
A Python module to use [liquibase](http://www.liquibase.org/) in python, using the Java Native Interface (JNI).
87

9-
MariaDB/MySQL, MSSQL, PostgreSQL, SQLite, H2, HSQLDB, Snowflake, Bigquery, Redshift JDBC Drivers included.
8+
For further details on python-java integration [please see here](#python-java-integration)
109

1110
## Installation
1211

@@ -33,6 +32,7 @@ pyliquibase --defaultsFile=changelogs/liquibase.properties update
3332
using python:
3433
```python
3534
from pyliquibase import Pyliquibase
35+
3636
if __name__ == '__main__':
3737
liquibase = Pyliquibase(defaultsFile="changelogs/liquibase.properties", logLevel="INFO")
3838
# call execute with arguments
@@ -53,10 +53,11 @@ if __name__ == '__main__':
5353
```
5454

5555
## Python Java Integration
56-
Python library is using `LiquibaseCommandLine` reflection class which uses/equivalent `LiquibaseCommandLine` java class.
57-
liquibase calls are executed by `LiquibaseCommandLine.execute(liquibaseargs)` method by passing given python arguments to java class.
5856

59-
python java integration class using pyjnius(using the Java Native Interface (JNI))
57+
Python library is based on `LiquibaseCommandLine` Python class. It is reflection of Java `LiquibaseCommandLine` class.
58+
liquibase calls are passed to Java `LiquibaseCommandLine.execute(liquibaseargs)` method.
59+
60+
[Pyjnius](https://github.com/kivy/pyjnius) is a Python library for accessing Java classes. It either starts a new JVM inside the process, or retrieves the already surrounding JVM. To read more on pyjnius please see https://pyjnius.readthedocs.io/en/latest/
6061
```python
6162
class LiquibaseCommandLine(JavaClass, metaclass=MetaJavaClass):
6263
__javaclass__ = 'liquibase/integration/commandline/LiquibaseCommandLine'

pyliquibase/__init__.py

+9-9
Original file line numberDiff line numberDiff line change
@@ -46,29 +46,29 @@ def __init__(self, defaultsFile: str,
4646
:param additionalClasspath: additional classpath to import java libraries and liquibase extensions
4747
"""
4848

49+
# if liquibaseDir is provided then switch to user provided liquibase.
50+
if liquibaseDir:
51+
self.liquibase_dir: str = liquibaseDir.rstrip("/")
52+
self.version: str = "user-provided"
53+
else:
54+
self.version: str = version
55+
self.liquibase_dir: str = resource_filename(__package__, LIQUIBASE_DIR.format(self.version))
56+
4957
self.args = []
5058
if defaultsFile:
5159
if not pathlib.Path.cwd().joinpath(defaultsFile).is_file() and not pathlib.Path(defaultsFile).is_file():
5260
raise FileNotFoundError("defaultsFile not found! %s" % defaultsFile)
5361

5462
self.args.append("--defaults-file=%s" % defaultsFile)
5563

56-
if liquibaseHubMode:
64+
if liquibaseHubMode and self.version < "4.22.0":
5765
self.args.append("--hub-mode=%s" % liquibaseHubMode)
5866

5967
if logLevel:
6068
self.args.append("--log-level=%s" % logLevel)
6169

6270
self.additional_classpath: str = additionalClasspath.rstrip('/') if additionalClasspath else None
6371

64-
# if liquibaseDir is provided then switch to user provided liquibase.
65-
if liquibaseDir:
66-
self.liquibase_dir: str = liquibaseDir.rstrip("/")
67-
self.version: str = "user-provided"
68-
else:
69-
self.version: str = version
70-
self.liquibase_dir: str = resource_filename(__package__, LIQUIBASE_DIR.format(self.version))
71-
7272
# if jdbcDriversDir is provided then use user provided jdbc driver libraries
7373
self.jdbc_drivers_dir: str = jdbcDriversDir.rstrip("/") if jdbcDriversDir else None
7474
self.liquibase_lib_dir: str = self.liquibase_dir + "/lib"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@
2424
include_package_data=True,
2525
license="Apache License 2.0",
2626
test_suite='tests',
27-
install_requires=["pyjnius~=1.6.0"],
27+
install_requires=["pyjnius~=1.6.1"],
2828
python_requires='>=3.8',
2929
)

tests/test_pyliquibase_version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -e
44

5-
declare -a lbVersionList=("4.9.0" "4.10.0" "4.11.0")
5+
declare -a lbVersionList=("4.9.0" "4.10.0" "4.11.0" "4.21.1" "4.23.2" "4.24.0")
66
for version in "${lbVersionList[@]}"; do
77
export TEST_LIQUIBASE_VERSION=$version
88
echo "Testing TEST_LIQUIBASE_VERSION ${TEST_LIQUIBASE_VERSION}"

0 commit comments

Comments
 (0)