14
0

Accepting request 766041 from home:mcalabkova:branches:devel:languages:python

- update to 5.5.1
  * Stop sending a Referer header when browser.open or browser.post is called directly.
  * Add error checking to the setters for ListControl.displayValue and CheckboxListControl.displayValue: 
    in line with the old mechanize-based implementation, these will now raise ItemNotFoundError 
    if any of the given values are not found, or ItemCountError on trying to set more than one value 
    on a single-valued control.
  * Fix AttributeError in add_file when trying to add to a control which is not a file upload.
  * Fix a bug where browser.goBack() did not invalidate caches, so subsequent queries could use data 
    from the wrong response.
  * Support telling the browser not to follow redirects by setting Browser.follow_redirects to False.

OBS-URL: https://build.opensuse.org/request/show/766041
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.testbrowser?expand=0&rev=19
This commit is contained in:
Tomáš Chvátal
2020-01-21 11:37:44 +00:00
committed by Git OBS Bridge
parent 18d58dda0c
commit 6174729ed7
4 changed files with 19 additions and 5 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Tue Jan 21 10:36:36 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- update to 5.5.1
* Stop sending a Referer header when browser.open or browser.post is called directly.
* Add error checking to the setters for ListControl.displayValue and CheckboxListControl.displayValue:
in line with the old mechanize-based implementation, these will now raise ItemNotFoundError
if any of the given values are not found, or ItemCountError on trying to set more than one value
on a single-valued control.
* Fix AttributeError in add_file when trying to add to a control which is not a file upload.
* Fix a bug where browser.goBack() did not invalidate caches, so subsequent queries could use data
from the wrong response.
* Support telling the browser not to follow redirects by setting Browser.follow_redirects to False.
-------------------------------------------------------------------
Wed Nov 6 12:01:55 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>