Skip to content

Commit

Permalink
Merge pull request #150 from A-Baji/master
Browse files Browse the repository at this point in the history
Bug fix for antd-table
  • Loading branch information
jverswijver authored Jan 13, 2023
2 parents 015dd1f + ce80f6d commit d3808ae
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
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"

0 comments on commit d3808ae

Please sign in to comment.