Skip to content

Commit ccef4ec

Browse files
Merge pull request #137 from Ernaldis/master
Fix flask bug
2 parents f4b4fd7 + 1212056 commit ccef4ec

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## [0.5.3] - 2022-10-11
6+
7+
### Fixed
8+
9+
- Flask would add empty body to request method PR [#137](https://github.com/datajoint/pharus/pull/137)
10+
511
## [0.5.2] - 2022-10-06
612

713
### Added
@@ -176,6 +182,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
176182
- Support for DataJoint attribute types: `varchar`, `int`, `float`, `datetime`, `date`, `time`, `decimal`, `uuid`.
177183
- Check dependency utility to determine child table references.
178184

185+
[0.5.3]: https://github.com/datajoint/pharus/compare/0.5.2...0.5.3
179186
[0.5.2]: https://github.com/datajoint/pharus/compare/0.5.1...0.5.2
180187
[0.5.1]: https://github.com/datajoint/pharus/compare/0.5.0...0.5.1
181188
[0.5.0]: https://github.com/datajoint/pharus/compare/0.4.1...0.5.0

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ To start the API server, use the command:
2929

3030
.. code-block:: bash
3131
32-
PHARUS_VERSION=0.4.1 docker-compose -f docker-compose-deploy.yaml up -d
32+
PHARUS_VERSION=0.5.3 docker-compose -f docker-compose-deploy.yaml up -d
3333
3434
To stop the API server, use the command:
3535

3636
.. code-block:: bash
3737
38-
PHARUS_VERSION=0.4.1 docker-compose -f docker-compose-deploy.yaml down
38+
PHARUS_VERSION=0.5.3 docker-compose -f docker-compose-deploy.yaml down
3939
4040
References
4141
----------

docker-compose-deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# PHARUS_VERSION=0.4.1 docker-compose -f docker-compose-deploy.yaml pull
2-
# PHARUS_VERSION=0.4.1 docker-compose -f docker-compose-deploy.yaml up -d
1+
# PHARUS_VERSION=0.5.3 docker-compose -f docker-compose-deploy.yaml pull
2+
# PHARUS_VERSION=0.5.3 docker-compose -f docker-compose-deploy.yaml up -d
33
#
44
# Intended for production deployment.
55
# Note: You must run both commands above for minimal outage

pharus/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def api_version() -> str:
117117
Content-Type: application/json
118118
119119
{
120-
"version": "0.4.1"
120+
"version": "0.5.3"
121121
}
122122
123123
:statuscode 200: No error.

pharus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Package metadata."""
2-
__version__ = "0.5.2"
2+
__version__ = "0.5.3"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
flask
1+
flask>=2.2.2
22
gunicorn
33
pyjwt[crypto]
44
datajoint>=0.13.0

0 commit comments

Comments
 (0)