Skip to content

Commit

Permalink
WL#15836: Split mysql and mysqlx into different packages
Browse files Browse the repository at this point in the history
Change-Id: I19ec1773b447ff98723a5ac8dfa37888f456e686
  • Loading branch information
oscpache committed Nov 16, 2023
1 parent a55960b commit 5302916
Show file tree
Hide file tree
Showing 573 changed files with 10,700 additions and 2,403 deletions.
36 changes: 29 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,27 +1,49 @@
# general
*.diff
*.egg-info/
*.so
*.patch
*.pyc
*__pycache__*
*.mypy_cache
*_output.txt
.DS_Store
.coverage
.idea/
.python-version
.vscode/
MANIFEST
build/
commit.txt
cpy_server*/
dev*.py
dist/
docs/INFO_BIN
docs/INFO_SRC
lib/mysql/vendor/
src/mysqlxpb/mysqlx/mysqlx*
pip-wheel-metadata/
tests_*.log
venv/
venv2/
venv3/
docs
dist
build

# Classic protocol connector (aka mysql)
mysql-connector-python/build/
mysql-connector-python/dist/
mysql-connector-python/docs/INFO_BIN
mysql-connector-python/docs/INFO_SRC
mysql-connector-python/lib/mysql/vendor/
mysql-connector-python/tests_*.log
mysql-connector-python/README.txt
mysql-connector-python/README.rst
mysql-connector-python/LICENSE.txt
mysql-connector-python/CHANGES.txt

# X protocol connector (aka XDevAPI or mysqlx)
mysqlx-connector-python/build/
mysqlx-connector-python/dist/
mysqlx-connector-python/docs/INFO_BIN
mysqlx-connector-python/docs/INFO_SRC
mysqlx-connector-python/src/mysqlxpb/mysqlx/mysqlx*
mysqlx-connector-python/README.txt
mysqlx-connector-python/README.rst
mysqlx-connector-python/LICENSE.txt
mysqlx-connector-python/CHANGES.txt

8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@

repos:
- repo: https://github.com/psf/black
rev: 23.3.0
rev: 23.7.0
hooks:
- id: black
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.3.0
rev: v1.7.0
hooks:
- id: mypy
additional_dependencies: [
Expand All @@ -47,8 +47,8 @@ repos:
typing-extensions>=3.7.4,
zipp>=0.5,
]
files: lib
exclude: lib/mysql/opentelemetry
files: '(mysql|mysqlx)-connector-python/lib/(mysql|mysqlx)'
exclude: mysql-connector-python/lib/mysql/opentelemetry
args: [
--disallow-untyped-defs,
--show-error-codes,
Expand Down
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ v8.3.0
- WL#15983: Stop using mysql_ssl_set api
- WL#15982: Remove use of mysql_shutdown
- WL#15942: Improve type hints and standardize byte type handling
- WL#15836: Split mysql and mysqlx into different packages
- WL#15523: Support Python DB API asynchronous execution
- BUG#35912790: Binary strings are converted when using prepared statements
- BUG#35832148: Fix Django timezone.utc deprecation warning
Expand Down
155 changes: 121 additions & 34 deletions CONTRIBUTING.rst

Large diffs are not rendered by default.

52 changes: 0 additions & 52 deletions docs/mysqlx/_themes/sphinx_rtd_theme/__init__.py

This file was deleted.

84 changes: 0 additions & 84 deletions docs/mysqlx/_themes/sphinx_rtd_theme/breadcrumbs.html

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.

This file was deleted.

0 comments on commit 5302916

Please sign in to comment.