Skip to content

Commit

Permalink
1.4.3
Browse files Browse the repository at this point in the history
Changelog:
* Update dependences.
* Optimize performance.
* Add health page in API `api/health/` (return state of db, cache and rpc).
* Add views for password reset via email.
* Add command `dockerrun` for running via docker (gets settings from ENV).

See merge request polemarch/ce!160
  • Loading branch information
onegreyonewhite committed Sep 2, 2019
2 parents 8df71ea + 2339f3a commit 2ded9f8
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions doc/api_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ info:
url: https://gitlab.com/vstconsulting/polemarch.git
Request:
- name: Question
url: https://gitlab.com/vstconsulting/polemarch/issues/new?issuable_template%5D=Ask&issue%5Btitle%5D=Ask%20about%20version%201.4.2
url: https://gitlab.com/vstconsulting/polemarch/issues/new?issuable_template%5D=Ask&issue%5Btitle%5D=Ask%20about%20version%201.4.3
- name: Bug report
url: https://gitlab.com/vstconsulting/polemarch/issues/new?issuable_template%5D=Bug&issue%5Btitle%5D=Bug%20in%20version%201.4.2
url: https://gitlab.com/vstconsulting/polemarch/issues/new?issuable_template%5D=Bug&issue%5Btitle%5D=Bug%20in%20version%201.4.3
- name: Feature request
url: https://gitlab.com/vstconsulting/polemarch/issues/new?issuable_template%5D=Feature%20request&issue%5Btitle%5D=
x-menu:
Expand Down Expand Up @@ -54,11 +54,11 @@ info:
span_class: fa fa-plug
url: /hook
x-versions:
application: 1.4.2
library: 1.4.2
vstutils: 2.3.10
django: 2.2.1
ansible: 2.8.1
application: 1.4.3
library: 1.4.3
vstutils: 2.6.3
django: 2.2.4
ansible: 2.8.4
version: v2
host: localhost:8080
schemes:
Expand Down
2 changes: 1 addition & 1 deletion polemarch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
"VST_ROOT_URLCONF": os.getenv("VST_ROOT_URLCONF", 'vstutils.urls'),
}

__version__ = "1.4.2"
__version__ = "1.4.3"

prepare_environment(**default_settings)
2 changes: 1 addition & 1 deletion polemarch/main/tests/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def setUp(self):

def test_api_versions_list(self):
result = self.get_result("get", "/api/")
self.assertEqual(len(result), 2)
self.assertEqual(len(result), 3)
self.assertTrue(result.get(self._settings('VST_API_VERSION'), False))
self.assertTrue(result.get('openapi', False))

Expand Down
2 changes: 1 addition & 1 deletion requirements-doc.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Docs
vstutils[doc]~=2.3.10
vstutils[doc]~=2.6.3
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Main
vstutils[rpc,ldap,doc,prod]~=2.3.10
vstutils[rpc,ldap,doc,prod]~=2.6.3
docutils==0.15.2
markdown2==2.3.8

Expand Down

0 comments on commit 2ded9f8

Please sign in to comment.