This isn't really in proper GNU ChangeLog format, it just happens to look that way. 2024-04-26 Kovid Goyal * 0.4.10 release * Fix overly long MIME multipart separator on 64 bit systems 2023-11-07 Kovid Goyal * 0.4.9 release * Fix error on PyPy3 * Fix error CPython 3.12 2022-04-14 Kovid Goyal * 0.4.8 release * Handle mal-encoded robots.txt files more gracefully * Support HTTP 308 redirects 2021-09-19 Kovid Goyal * 0.4.7 release * Fix the ~ character being percent escaped when sending URLs to servers. See RFC 3986. 2021-09-01 Kovid Goyal * 0.4.6 release * Python 3.10 compatibility * Fix a bug in the regex used to parse www-authenticate headers that could lead to Denial-of-Service 2019-12-22 Kovid Goyal * 0.4.5 release * Add a set_html() method to the browser object 2019-11-07 Kovid Goyal * 0.4.4 release * URLs passed into mechanize now automatically have URL unsafe characters percent encoded. This is necessary because newer versions of python disallow processing of URLs with unsafe characters. Note that this means values return by get_full_url(), get_selector() etc will be percent encoded. 2019-08-18 Kovid Goyal * 0.4.3 release * When filling forms with unicode strings automatically encode them into the correct encoding fr the HTML page being viewed * Guess content type when uploading files if not specified * py3 compat - Have the version of simple cookies be 0 rather than None 2019-04-12 Kovid Goyal * 0.4.2 release * A couple of python 3 specific fixes for proxy authorization and * adding controls to forms 2019-03-16 Kovid Goyal * 0.4.1 release * A couple of python 3 specific fixes for servers with missing robots.txt files and also errors when using basic/digest auth 2019-01-16 Kovid Goyal * 0.4.0 release * Python 3 compatibility * Add a finalize_request_headers callback to Browser to allow users full control of what headers are sent with every request * Preserve header ordering when making HTTP requests 2018-09-11 Kovid Goyal * 0.3.7 release * Fix processing of http-equiv meta tags incorrectly lower casing the content * Fix error when a textbox contained within a form contains unicode characters 2017-10-13 Kovid Goyal * 0.3.6 release. * Use html5-parser for parsing HTML, when available instead of html5lib for a big performance boost. * Fix error when trying to submit forms with non-ascii values on systems where the default encoding is ascii. * Fix errors on python environments with broken threading 2017-06-24 Kovid Goyal * 0.3.5 release. * Fix error when trying to open pages that contain HTML entities that decode to unicode characters in their
sections 2017-05-05 Kovid Goyal * 0.3.3 release. * Add get() and __getitem__ methods to the response object for conveninent access to response headers 2017-04-29 Kovid Goyal * 0.3.2 release. * Allow overriding of Host headers via addheaders * Fix using unicode strings in addheaders and trying to send data with a request failing 2017-03-17 Kovid Goyal * 0.3.1 release. * Allow easily selecting forms based on HTML attributes of the