forked from peakwinter/python-nginx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGELOG
More file actions
33 lines (28 loc) · 1.39 KB
/
Copy pathCHANGELOG
File metadata and controls
33 lines (28 loc) · 1.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Change Log
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## Unreleased
### Fixed
- Fixed bug with map crashing loading of nginx.conf.
## [1.2.0] - 2017-09-06
### Fixed
- Fixed several bugs involving parsing of messy files and brace locations (thanks @lelik9!)
- Fixed a bug where an exception was raised if a key was found in the top level of the configuration.
## [1.1.0] - 2017-01-14
### Fixed
- Fixed a bug where an exception was raised if location blocks didn't contain any normal keys.
- Fixed a bug where an exception was raised if a closing brace was used inside a key's value.
## [1.0.0] - 2016-08-19
### Changed
- Some API changes:
- `all()` methods replaced with `children` property
- `as_list()` methods replaced with `as_list` property
- `as_dict()` methods replaced with `as_dict` property
- `as_block()` methods replaced with `as_strings` property
- `conf.server` convenience property, for getting first server found in the Conf
- Added `inline` property to `Comment`: set to `True` if you want the comment to be appended to the end of the previous line on dump
- Added loading of inline code comments.
- Cleaned code for full PEP8 compatibility and added comments.
- Added simple tests.
### Fixed
- Fixed a bug where unexpected behaviour would occur when a pound symbol was used inside a key value.