Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fix for antd-table #150

Merged
merged 3 commits into from
Jan 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.7.2] - 2023-01-13

### Bugfix

- Re-add `antd-table` to regex match for dynamic api gen [#150] (https://github.com/datajoint/pharus/pull/150)

## [0.7.1] - 2023-01-10

### Bugfix
Expand Down Expand Up @@ -249,6 +255,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
- Support for DataJoint attribute types: `varchar`, `int`, `float`, `datetime`, `date`, `time`, `decimal`, `uuid`.
- Check dependency utility to determine child table references.

[0.7.2]: https://github.com/datajoint/pharus/compare/0.7.1...0.7.2
[0.7.1]: https://github.com/datajoint/pharus/compare/0.7.0...0.7.1
[0.7.0]: https://github.com/datajoint/pharus/compare/0.6.4...0.7.0
[0.6.4]: https://github.com/datajoint/pharus/compare/0.6.3...0.6.4
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ To start the API server, use the command:

.. code-block:: bash

PHARUS_VERSION=0.7.1 docker-compose -f docker-compose-deploy.yaml up -d
PHARUS_VERSION=0.7.2 docker-compose -f docker-compose-deploy.yaml up -d

To stop the API server, use the command:

.. code-block:: bash

PHARUS_VERSION=0.7.1 docker-compose -f docker-compose-deploy.yaml down
PHARUS_VERSION=0.7.2 docker-compose -f docker-compose-deploy.yaml down

References
----------
Expand Down
4 changes: 2 additions & 2 deletions docker-compose-deploy.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# PHARUS_VERSION=0.7.1 docker-compose -f docker-compose-deploy.yaml pull
# PHARUS_VERSION=0.7.1 docker-compose -f docker-compose-deploy.yaml up -d
# PHARUS_VERSION=0.7.2 docker-compose -f docker-compose-deploy.yaml pull
# PHARUS_VERSION=0.7.2 docker-compose -f docker-compose-deploy.yaml up -d
#
# Intended for production deployment.
# Note: You must run both commands above for minimal outage
Expand Down
2 changes: 1 addition & 1 deletion pharus/dynamic_api_gen.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def {method_name}() -> dict:
)
if re.match(
r"""
^(table|metadata|plot|file|slider|
^(table|antd-table|metadata|plot|file|slider|
dropdown-query|form|basicquery|external|delete).*$""",
comp["type"],
flags=re.VERBOSE,
Expand Down
2 changes: 1 addition & 1 deletion pharus/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def api_version() -> str:
Content-Type: application/json

{
"version": "0.7.1"
"version": "0.7.2"
}

:statuscode 200: No error.
Expand Down
2 changes: 1 addition & 1 deletion pharus/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Package metadata."""
__version__ = "0.7.1"
__version__ = "0.7.2"