This commit is contained in:
Laurent Mazuel 2017-11-20 14:21:10 -08:00
Родитель ca1b9ad6d9
Коммит d090cda6c7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 8A1A37C887DC49D8
4 изменённых файлов: 28 добавлений и 4 удалений

Просмотреть файл

@ -20,6 +20,30 @@ To install:
Release History
---------------
2017-11-20 Version 0.4.19
+++++++++++++++++++++++++
**Features**
- The interpretation of Swagger 2.0 "discriminator" is now lenient. This means for these two scenarios:
- Discriminator value is missing from the received payload
- Discriminator value is not defined in the Swagger
Instead of failing with an exception, this now returns the base type for this "discriminator".
Note that this is not a contradiction of the Swagger 2.0 spec, that specifies
"validation SHOULD fail [...] there may exist valid reasons in particular circumstances to ignore a particular item,
but the full implications must be understood and carefully weighed before choosing a different course."
This cannot be configured for now and is the new default behvaior, but can be in the future if needed.
**Bugfixes**
- Optional formdata parameters were raising an exception (#65)
- "application/x-www-form-urlencoded" form was sent using "multipart/form-data".
This causes problems if the server does not support "multipart/form-data" (#66)
2017-10-26 Version 0.4.18
+++++++++++++++++++++++++

Просмотреть файл

@ -58,9 +58,9 @@ copyright = u'2016-2017, Microsoft'
# built documents.
#
# The short X.Y version.
version = '0.4.18'
version = '0.4.19'
# The full version, including alpha/beta/rc tags.
release = '0.4.18'
release = '0.4.19'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

Просмотреть файл

@ -25,4 +25,4 @@
# --------------------------------------------------------------------------
msrest_version = "0.4.18"
msrest_version = "0.4.19"

Просмотреть файл

@ -28,7 +28,7 @@ from setuptools import setup
setup(
name='msrest',
version='0.4.18',
version='0.4.19',
author='Microsoft Corporation',
packages=['msrest'],
url=("https://github.com/Azure/msrest-for-python"),