File tree Expand file tree Collapse file tree 3 files changed +25
-3
lines changed
Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change 1+ ## Changelog
2+
3+ ##### v1.8.0 (Unreleased):
4+
5+ - No Changes
6+
7+ ##### v1.7.0 (2019-10-19):
8+
9+ - ** BREAKING ** Requires Python 3.7
10+ - Add info endpoint to get server version
11+ - Add management script to switch modules on or off
12+ - Increase gunicorn workers in docker and add options for configuration
13+ - Fix CSV export * (included as hotfix in previous version)*
14+ - Fix order PDF not found errors by mounting ` generated ` folder in docker
15+ - Fix ICal attribute errors and add tests
16+ - Fix Pentabarf export and add tests
17+ - Add workaround for multiprocess engine forking
18+ - Use pool pre ping option to avoid dropped connections
19+ - Add .env in docker compose to override environment variables
20+ - Configure redis and celery in sentry integration
21+ - Convert some classes to dataclasses
22+ - Update dependencies
Original file line number Diff line number Diff line change 66[ ![ Build Status] ( https://travis-ci.org/fossasia/open-event-server.svg?branch=development )] ( https://travis-ci.org/fossasia/open-event-server )
77[ ![ CircleCI Build Staus Badge] ( https://img.shields.io/circleci/build/github/fossasia/open-event-server?label=CircleCI%20Build )] ( https://www.circleci.com/gh/fossasia/open-event-server )
88[ ![ Codacy Badge] ( https://api.codacy.com/project/badge/Grade/1ac554483fac462797ffa5a8b9adf2fa?style=flat-square )] ( https://www.codacy.com/app/fossasia/open-event-server )
9- [ ![ Codecov branch] ( https://codecov.io/gh/fossasia/open-event-server/branch/master /graph/badge.svg?style=flat-square )] ( https://codecov.io/gh/fossasia/open-event-server )
9+ [ ![ Codecov branch] ( https://codecov.io/gh/fossasia/open-event-server/branch/development /graph/badge.svg?style=flat-square )] ( https://codecov.io/gh/fossasia/open-event-server )
1010[ ![ Gitter] ( https://img.shields.io/badge/chat-on%20gitter-ff006f.svg?style=flat-square )] ( https://gitter.im/fossasia/open-event-server )
1111[ ![ Reviewed by Hound] ( https://img.shields.io/badge/Reviewed_by-Hound-8E64B0.svg )] ( https://houndci.com )
1212[ ![ Mailing List] ( https://img.shields.io/badge/Mailing%20List-FOSSASIA-blue.svg )] ( https://groups.google.com/forum/#!forum/open-event )
Original file line number Diff line number Diff line change 11from flask import jsonify , Blueprint
22
3- SERVER_VERSION = '1.7.0-SNAPSHOT '
3+ SERVER_VERSION = '1.7.0'
44
5- info_route = Blueprint ('info' , __name__ , url_prefix = '/v1' )
5+ info_route = Blueprint ('info' , __name__ )
66_build = {'version' : SERVER_VERSION }
77
88
You can’t perform that action at this time.
0 commit comments