Skip to content
ChangeLog 249 KiB
Newer Older
Florent's avatar
Florent committed
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000
Weboob 1.3 (2017-09-20)

	General
	* Big step for python 3 full support (many patches to improve python3
	  support (core is compatible, a number of modules are compatible))
	* New QGalleroob application for CapImage and CapGallery
	* New CapProfile capability (used in boobank for example)
	* Don't check updates of modules automatically (new --auto-update option)
	* Some code cleanups since python 2.6 is not supported
	* New bibliothequesparis module (CapBook)
	* New billetreduc module (CapCalendarEvent)
	* New blogspot module (CapMessages)
	* New bnppere module (CapBank)
	* New btpbanque module (CapBank)
	* New capeasi module (CapBank)
	* New cices module (CapBank)
	* New cityscoot module (CapDocument)
	* New cmes module (CapBank)
	* New cmmc module (CapBank, CapContact)
	* New ensap module (CapDocument)
	* New erehsbc module (CapBank)
	* New esalia module (CapBank)
	* New foncia module (CapHousing)
	* New lameteoagricole module (CapWeather)
	* New lampiris module (CapDocument)
	* New larousse module (CapTranslate)
	* New linebourse module (CapBank)
	* New myfoncia module (CapDocument)
	* New pixabay module (CapFile, CapImage)
	* New pradoepargne module (CapBank)
	* New ratp module (CapGauge)
	* New tumblr module (CapGallery)
	* New zerobin module (CapPaste)
	* Deleted champslibres module
	* Deleted citelis module
	* Deleted ovs module

	General: core
	* Use https for module updates by default
	* Real cleanup of modules folder in installation
	* Force utf-8 for backends config file encoding
	* API change: BrowserPasswordExpired exception now inherit from ActionNeeded
	  (previously from BrowserIncorrectPassword )
	* Print progress on stderr instead of stdout

	Documentation
	* Improved module guide

	Browser
	* Introduce weboob.browser.nss to replace OpenSSL by libnss
	* Add magic_highlight to open a browser showing an el
	* In debug, write html responses highlighting involved selectors when
	  _highlight_el is set in backend config
	* Enable expiration duration on state
	* URL.open can take headers and methods, like URL.go
	* Support '*' special char in DictElement
	* Print session when debug is enabled
	* Rework of AbstractBrowser build
	* Support headers in stay_or_go method
	* Normalize URL before opening
	* Save content of response after headers, in case there is a crash during
	  call of r.content

	Browser: Filters
	* Introduce filters.base, move or alias filters
	* Add AbsoluteLink filter
	* Add FormValue filter
	* Add HasElement filter
	* Add QueryValue filter
	* CleanText(children=False) now reads all text nodes, not just the first one
	* Allow for setting options on CleanHTML filter
	* Fix Type filter when data has already the right data type
	* Add debug() decorator to several filters

	Browser: Pages
	* Fix PartialHTMLPage in case of empty content
	* Fix off-by-one error skipping last row on XLSPage

	Old Browser
	* Remove support for older mechanize versions

	Tools: backend
	* Set fields to NotAvailable instead of NotLoaded when a module does not
	  fill it after fill request.
	* New Module.get_proxy() method

	Tools
	* Remove weboob.tools.ordereddict since we now use python>=2.7
	* Remove weboob.tools.compat.check_output since we now use python>=2.7
	* Remove obsolete and unused weboob.tools.property
	* New ValueDate class
	* If a Value is required, it must be set to be valid (in configuration)
	* Value's regexp must now match until end of string

	Tools: pdf
	* get_pdf_rows now handles unsorted table lines
	* Support LTCurve objects and output debug images
	* Open method new read as bytes (windows support)

	Tools: media_player
	* Use requests instead of urllib2

	Capabilities
	* Replace some Field objects by more specialized types (IntField,
	  BoolField, etc)
	* DeltaField now accepts int and long for seconds
	* Copy() of BaseObject now copies fields

	CapBank
	* New steps/API to manage transfer (see do_add_recipient, new_recipient
	  and add_recipient)
	* New CapBankTransferAddRecipient to filter out module without relevant
	  methods
	* Use OrderedDict for currencies
	* Add better error codes for TransferError exception
	* Add Pocket class
	* Add Loan class to have more detailed info on loans (not printed today with boobank, only avaiable with weboob API)
	* New code_type field for Investment
	* Add basic tests for banking modules
	* Add sorted_transactions helper
	* New ISIN code checker

	CapHousing
	* New 'rooms' and 'bedrooms' and 'utilities' fields for Housing objects

	CapVideo
	* Introduce video.ytdl which uses youtube-dl

	Applications
	* Support --nss and 'use_nss' in config to replace OpenSSL by NSS
	* Allow user to use '~' when picking log file name
	* Honor quiet option for progress messages

	Applications: Qt
	* Add ResultModel for viewing objects hierarchies and FilterTypeMode
	* Some code cleanups/improvements
	* Quit faster by aborting running weboob backend calls
	* Limit results count in ResultsModel
	* Replace urllib.urlopen with requests.get
	* Do not keep references to main windows so that they can be garbage-collected

	Applications: boobank
	* Load config at startup
	* New error messages for TransferError childrens
	* Improve OFX formatter

	Applications: boobill
	* Reduce number of requests run by download command
	* Add optional PDF conversion on download

	Applications: boobcoming
	* Report CANCELLED status

	Applications: boobmsg
	* Add a few fillobj calls and export_thread support using numbers

	Applications: boobooks
	* Add a new "rented" command

	Applications: cookbook
	* Fix unicode comments display in python2

	Applications: qcookboob
	* Fix unicode issues
	* Use ID as export filename default

	Applications: radioob
	* Fix playlist decoding

	Applications: videoob
	* Display xterm-256 color thumbnail
	* Decode utf-8 lines

	Formatters: csv
	* Use to_unicode() to be sure it does not fail
	* Fix unicode output in python2

	Modules: 750g
	* fix recipe parsing because of website update

	Modules: adecco
	* fix parsing job location
	* fix mode site changed
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: afer
	* fix history parsing and transactions date
	* add certificate

	Modules: agendaculturel
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: agendadulibre
	* fix french region choice and use https

	Modules: allocine
	* fix get_movie_release and pep8
	* bump to browser2
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: allrecipes
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: amazon
	* don't crash anymore on broken links
	* Patch Amazon module
	* Bug fix in payment list (proper)
	* fix order not found crash
	* retry on TooManyRedirects error
	* fixed redirect loop error
	* use xpath "$vars" in a few modules

	Modules: amazonstorecard
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: ameli
	* detect more wrong password + improve login state management
	* fixing wrong regexp
	* Use weboob.tools.compat instead of urllib/urlparse
	* fix login validation URL
	* remove some useless ":443" in URLs since weboob normalizes them

	Modules: amelipro
	* Use weboob.tools.compat instead of urllib/urlparse
	* remove some useless ":443" in URLs since weboob normalizes them

	Modules: americanexpress
	* use url field instead of _link for Accounts
	* parse some other types of accounts
	* sort each transaction page to avoid sorting the whole list
	* set rdate to date
	* handle transactions as deferred
	* coding style
	* fix incorrect date (like 13th month)
	* fixing some accounts
	* fixing xpath on accounts2
	* skip some canceled cards
	* port to python3
	* fixing history and date on deferred
	* detect ActionNeeded
	* handle the new js site along with old site
	* add another fallback for fetching end_of_period

	Modules: amundi
	* detect NoAccountsException

	Modules: arte
	* do not crash if there is no video in creativ frame + improve test to handle this case
	* fix module / handle date not available in arte cinema json
	* do not handle arte-cinema program submenu
	* fix default 'quality' value
	* fix search and port to Python3
	* base url changed
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: attilasub
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: audioaddict
	* fix Frescaradio + set a default test config in case no one exists
	* bump to browser2 / import unicode_literals
	* remove frescaradio / add classicalradio / There are No public stream available anymore (www.radiotunes.com/founder-letter)
	* fix type in tests

	Modules: aum
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: axabanque
	* avoid "is" comparison for strings
	* the history url is not fixed
	* axabanque : adding new browser to handle wealth part
	* fix: handle perp on wealth part
	* fix:: handle bank and wealth part at same time
	* fix: troubles on some accounts / ActionNeeded
	* when accounts have no detailed investments, just return empty
	* use io.BytesIO where deprecated StringIO module was used for bytes
	* investment uses dot decimals and date can be missing
	* do a get request to finish login
	* fixing account type with PEA
	* investments page changed
	* portfolio_share uses comma separator
	* Fix no account and get_form warning
	* fill the diff_percent instead of diff for life insurances
	* avoid relogin after visiting an erroneous wealth page
	* fix url for post
	* Fix recuperation value of invest
	* Fix open for personnal loan and label xpath
	* add isin_code to investments, add history for life insurance accounts
	* handle life insurance history this way only on main website
	* fixing navigation to get rights investments/history
	* deferred card transactions are now flagged as coming
	* improve pagination code
	* sometimes the pagination doesn't work at all
	* iter_coming is not implemented for wealth site
	* basic port to python3
	* pagination of transaction history is broken

	Modules: banqueaccord
	* remove dummy test.py files as they are false negatives for weboob_lint
	* use io.BytesIO where deprecated StringIO module was used for bytes
	* html had 2 elements with same id
	* fix exception raised in case of wrong password length
	* fix raise BrowserIncorrectpassword
	* adding missing account type for several banks

	Modules: banquepopulaire
	* don't update with an empty token
	* handle new natixis life insurance website
	* fix iter_investement vdate on natixis json
	* set date for investment history and label
	* fix natixis json with missing date
	* some years do not exist as pdf, fallback on json
	* some invest history just have no label
	* don't raise when natixis site is broken
	* retry the backend method in case of unexpected logout
	* minor improvements on retry decorator
	* return investment history in reverse chronological order
	* add another url for natixis error pages
	* fetch quantity of history invest
	* skip transactions without date on natixis
	* handling empty page
	* adding advisor
	* fix 500 errors on natixis website
	* adding entry to match some loans
	* cleaner handling of website crash
	* detection of another pattern for error on page
	* fix saving accounts with investments
	* Raise BrowserUnvalaible when site does not work
	* use now linebourse module to handle more investments
	* remove liquidity + fetch balance with invests
	* [banquepop] natixis website might be broken
	* fix list command when investments not available
	* fix BrowserUnavailable.
	* [banquechaix/banquepopulaire] replace a website choice
	* modules: fix AbstractBrowser use
	* login changed
	* basic port to python3
	* skip natixis accounts if website is broken
	* misc improvements
	* CardsPage changed a little
	* new natixis page
	* no coming on invest accounts
	* handle when card page has no cards
	* Add alternative to get card accounts currency
	* rewrite natixis pdf parsing
	* skip investment when account is unavailable

	Modules: barclays
	* support the revolving credit url
	* fix accounts balance parsing
	* fix rebuild data request when get iban.
	* Handle new website, add it to py3 compatible modules list
	* misc improvements
	* don't try to access loan accounts
	* fix parsing when there are 0 transactions

	Modules: bforbank
	* remove dummy test.py files as they are false negatives for weboob_lint
	* skip history and invest on not available market accounts
	* handle when spirica is broken
	* use io.BytesIO where deprecated StringIO module was used for bytes
	* handle logout when opening a spirica page
	* fetch deferred card transactions
	* fixing account type with PEA
	* handle transactions rdate
	* handle another login url
	* [ing/bforbank] use now ValueDate
	* adapt ValueDate formats
	* password can only contain digits
	* deferred debit card are now a separate account
	* fetch new coming page
	* recognize withdrawal transactions
	* pyflakes in bforbank
	* handle multiple immediates card on an account
	* don't generate card account if all cards are canceled
	* changes on deferred card summary transactions handling
	* skip not yet available cards
	* use url field instead of _link for Accounts in a few modules
	* [banquepopulaire][bforbank][bp] deinit sub-browsers
	* sometimes there are 2 "synthese-encours"
	* handle currency on deferred cards
	* change assertion to match multiple cards with 1 deferred
	* parse when multiple deferred cards one same checking account
	* modules: fix AbstractBrowser use
	* port to python3
	* add another login url
	* add another life insurance url
	* use xpath "$vars" in a few modules
	* Get transactions of the day
	* remove some useless ":443" in URLs since weboob normalizes them
	* do "get today operations" only for checking accounts
	* add another url for errors on spirica login

	Modules: blablacar
	* fix module website changed
	* fix departure time parsing
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: bnporc
	* skip recipients without valid iban
	* fix bnporc bullshit
	* fetch waiting to be validated recipients
	* add_recipient
	* adding CapProfile to bnporc ent
	* fix empty recipient currency
	* use io.BytesIO where deprecated StringIO module was used for bytes
	* change exception for "1001" json code on login page
	* fixing wording for bnp enterprise
	* fix crash on not caught wrongpass
	* fixing account type with PEA
	* fix crash after password renewal
	* reject expired password if we won't be able to restore it
	* raise expired password when we can't apply temp password
	* use new TransferError codes in a few modules
	* use new TransferError subclasses in modules
	* adding perp type
	* handle pea account type
	* adding an account type
	* bnporc/entreprise: if label contains a date, use it for rdate
	* bnporc/entreprise: don't set coming transactions as deferred
	* ignore "sans suite" life insurance transactions
	* remove deprecated 'ppold' website
	* virtual keyboard has changed
	* fixing coming amount for enterprise accounts
	* update modules to use new CapBankTransferAddRecipient
	* don't get investments on liquidity accounts
	* added card account for entreprise site
	* raise NotImplementedError when profile is not available
	* fetch balance from market page and fix diff
	* entreprise:] fixing wrong amounts and date on cards
	* corrected useless pipe on password regex
	* remove enter/exit browser1 leftover
	* Add currency to card account
	* advisor page may be missing
	* Handle cards transactions as deferred
	* hellobank: raise ActionNeeded when bnporc pp should be used instead
	* bnporc entreprise: no more deferred_card transactions on checking account
	* entreprise: sometimes card date format has dots
	* add investments on PERP

	Modules: boursorama
	* skip external cards (amex cards here)
	* adding CapProfile to boursorama
	* use io.BytesIO where deprecated StringIO module was used for bytes
	* recognize another type of transfer
	* correctly type PEA account
	* card accounts, coming, card transactions
	* rdate is parsed by Raw and add new transaction pattern
	* fix cards number
	* fix date of card transactions
	* fix some cards where there is no info
	* get_history must return an iterable, not None
	* fix card number regexp
	* do not yield not activated cards
	* on card accounts, transactions should be TYPE_DEFERRED_CARD
	* retry to login when virtkeyboard process fails
	* stop crashing on obvious wrongpass
	* fix crash when job_start_date is unavailable
	* fetch pro accounts
	* handle other deferred cards
	* handle transfers
	* execute_transfer returns the passed Transfer
	* fixing card_summary on main account
	* fix coming and date of deferred_card trs
	* use new TransferError codes in a few modules
	* handle invests on PEA
	* use new TransferError subclasses in modules
	* adding advisor : hotline
	* implement adding recipients
	* remove useless config field
	* fix date of history of deffered_card
	* recognize more loan accounts + clean obj_type
	* fixing rdate on deferred cb
	* fix regexp on old versions
	* definitly fix rdate on deferred card
	* fix regexp on buggy python versions
	* use url field instead of _link for Accounts in a few modules
	* parse recipients bank_name
	* field webid with iban on new_recipient
	* fix recipient label regex pattern
	* update modules to use new CapBankTransferAddRecipient
	* fix label of external recipient (corner case)
	* improve condition to skip more summary in coming
	* create url object for PEP saving
	* fetch balance on pea and li from invs page
	* fix account type
	* create liquidity investment
	* load state only if double auth or add recipient
	* fix regexp to match summary
	* verify some kind of status page
	* search for danger instead of warning to raise Unavailable
	* fix wrongpass cornercase
	* the MarketPage history may have a different format
	* fix accounts parsing + typing
	* fix id transactions not being parsed
	* fix ord accounts typing
	* transaction id can be missing for coming transactions
	* sometimes data-deffered is just missing, drop the assert
	* fixed prelevement transaction amount being 0
	* change typing for some accounts
	* port to python3
	* now handle alpha password
	* handle alnum instead of digit + alpha
	* TableElement takes 2 a nodes and messes up label

	Modules: bouygues
	* remove dummy test.py files as they are false negatives for weboob_lint
	* Fix Bouygues module bills fetching for Internet clients
	* handle an insecure HTTP page to avoid BrowserHTTPSDowngrade
	* fix documents list
	* Fix ref can be not found, so add a condition before return the regex exp
	* fix wrongpass not detected sometime on backend or blackbox
	* Corrected subscription id duplication
	* Check if activation date is null
	* use xpath "$vars" in a few modules

	Modules: bp
	* sometimes, sending account id of transfer not present in recap
	* same id problem on recipient recap
	* new url for CheckPassword and use location instead of open
	* fix some internal recipients label
	* handle another change password url
	* use io.BytesIO instead of StringIO.StringIO
	* use io.BytesIO where deprecated StringIO module was used for bytes
	* pro, fix corrupted csv
	* set StatesMixin duration to 15 minutes
	* use new TransferError codes in a few modules
	* use new TransferError subclasses in modules
	* adding isin code on cachemire contract
	* handle one more deferred card url
	* fix handling pages with right classes
	* handle new par website
	* add cb deferred history and coming amount
	* get deferred card history, fix error when account has no balance
	* don't get shitty accounts on shitty page
	* account page is on error
	* fix empty wording on some transactions
	* fix coding style
	* fix detecting no accounts cases, and remove dead code
	* correctly handle multiple cards
	* do not consider hours in transaction labels
	* do not hardcode currency
	* ignore accounts without amount
	* fix cards crash when website is unavailable, and fix positive loans
	* fix crash on accounts without cards
	* really fix positive loans and remove useless code
	* now loan's history is not recovered
	* state duration of 5 minutes is enough
	* use exec_date field in transfer
	* fix no more history on pro website
	* avoid pro code in par browser
	* use linebourse browser for handling PEA accounts
	* fix date parsing for solesio life insurance
	* fix history and investment for cachemire and gmo life insurances
	* fixed browser unvailable error when getting deffered card account history
	* fix multiple recipients with same iban, and label parsing
	* use url field instead of _link for Accounts in a few modules
	* fix when transaction doesn't have investments attached
	* fix table with multiple invests on multiple spaces
	* more history for checking, savings and market accounts, fix wrong label for transactions
	* Bug #4020 - change url image
	* fix wrong iter_history method for non typed accounts
	* fixing login xpath and pattern
	* set_variables only needs a url, not a page
	* matching account types by label
	* fix crash during fetch of cards history (closes #4019)
	* [banquepopulaire][bforbank]deinit sub-browsers
	* [bp][pro] raise BrowserUnavailable on history page
	* corrected useless pipe on password regex
	* get history from html page and not from csv file.
	* [bp pro] enhance transaction parsing
	* [bp pro] fix parsing of rdate
	* fix bad regex URL.
	* detect another BrowserUnavailable at login
	* modules: fix AbstractBrowser use
	* wip add_recipient
	* [bp transfer] add urls
	* [bp pro] pagination on history
	* port to python3
	* Use weboob.tools.compat instead of urllib/urlparse
	* [bp pro] handle more pro_history pagination pages
	* wip handle mandate space
	* handle mandate space
	* handle more informations for loans
	* handle one more loan detail's url
	* add url for loan
	* support more investment account types
	* support SEPA transfers
	* Convert byte buffer to unicode string (py3 compat)

	Modules: bred
	* fix json when they put "null" elements
	* disable pagination since the json is FUBAR
	* pyflakes
	* fix id not unique for some accounts
	* raise ActionNeeded when 2FA is enabled
	* adding loans accounts
	* port dispobank to browser2 the easy way
	* put back pagination, but limit pagination number
	* detect coming transactions
	* fix dispobank certificate + fix history
	* remove useless whitespaces
	* increase history size limit

	Modules: btmon
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: caels
	* remove dummy test.py files as they are false negatives for weboob_lint
	* modules: fix AbstractBrowser use

	Modules: caissedepargne
	* fix date format
	* fix balance for life insurance accounts
	* Fixing absolut amount for credit
	* adding CapProfile to caissedepargne
	* fix history for cenet pages since search is too stupid
	* add regex to type CB
	* fixing account type with PEA
	* cache accounts list
	* transfer feature
	* fix mistake when changing account type
	* handling revolving credit amout
	* fix iter_recipients internal accounts matching
	* skip itering recipients on double auth accounts
	* fix recipients iban regexp
	* fix transfer not allowed on iter_recipients
	* fixing palatine account type
	* fixing home loan
	* refix regexp to find iban on external recipients
	* use a more often present cookie to find name
	* fixing cb nature was not handle for palatine
	* fix profile and recipient
	* improve recipient parsing
	* try to come back from bourse website
	* fix crash on missing link
	* fix wrong loan amount
	* use new TransferError codes in a few modules
	* use new TransferError subclasses in modules
	* recognize more account types
	* fix navigation to transfer page
	* fix crash when transfer are not available
	* handle loans on old website
	* [palatine] work around broken fcking website
	* missing title yield None, not empty string
	* add recipients
	* ignore cards if site returns an error
	* fix loan account parsing.
	* don't list transfer recipients for loan accounts
	* handle corner case of recipient parsing
	* don't raise TransferBankError in iter_recipients
	* catch another transfer error
	* check password is not empty...
	* update modules to use new CapBankTransferAddRecipient
	* do not try to go into the loans space if we do not have one, add some account types
	* fix 500 error on iter_recipients try, wrong detection of transfer space link, and some coding style
	* fix iter_recipients when user has a dash char
	* add unrecovered corrency, prevent some problems
	* handle more credits
	* fix when page is None.
	* use vk to fix login
	* cnet now returns decimal values
	* go to home page between multiple PEA accounts
	* separate CENET website to a dedicated browser
	* straightforward port to py2/py3
	* python3 fix (s/iteritems/items)
	* use xpath "$vars" in a few modules
	* use sorted_transactions
	* fix detection of recipient IBAN during transfer (zd:2595)
	* fix detection of recipient iban
	* Get deferred card transactions from card summary detail
	* Increased max history to 40 pages
	* increase again history limit

	Modules: canalplus
	* canalplus is now on browser2
	* remove deprecated and useless stuff + fix contextmanager use
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: cappedtv
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: cci
	* use xpath "$vars" in a few modules

	Modules: chronopost
	* remove dummy test.py files as they are false negatives for weboob_lint

	Modules: cic
	* login url changed
	* update modules to use new CapBankTransferAddRecipient
	* modules: fix AbstractBrowser use

	Modules: cmb
	* adding advisor for cmb/cmso/cmmc
	* modules: fix AbstractBrowser use
	* clean code with AbstractModule
	* adding CapBak/CapContact capabilities

	Modules: cmso
	* use more accurate account id for life insurance accounts
	* improve clarity for some list comprehensions
	* Fix cmso par: wrong types for deferred cards
	* Fix cmso pro: wrong xpath
	* add rdate for deferred card
	* adding new accounts type
	* some life insurance have no invests
	* ignore errors when logging out
	* [cmb/cmso/cmmc] adding account types
	* [cmso par] livret vie bla bla wrongly typed life insurancehhh
	* recognize more life insurance accounts
	* don't return accounts which seem duplicate
	* [cmso par] skip 0 amount loan transactions
	* [cmso/cmb/cmmc] fix positive balances on loan accounts
	* adding advisor for cmb/cmso/cmmc
	* [cmb/cmso/cmmc] fixing coming and deferred date
	* fix itering on loans
	* [cmb] Detect BrowserUnavailable on MarketPage
	* change browserunvalaible to empty iter for investment
	* coding style
	* [cmso/pro] disambiguate market account ids
	* [cmso/cmb/cmmc] fixing id on loan accounts
	* fixed bad request for market account history
	* cleaning cmso login
	* incorrect password may also return 401 http code
	* [cmso/cmmc/cmb] fixing id on loan accounts
	* [cmso/cmmc/cmb] fixing deferred date
	* do not crash on deinit() if we haven't been logged
	* [cmmc] hope to fix duplicates transactions
	* [cmb/cmmb] clean code with AbstractModule
	* [cmb/cmso/cmmc] fixing random ClientError, ServerError
	* fix relogging when currently on another domain

	Modules: colissimo
	* fixed date parsing
	* New website

	Modules: cpasbien
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: cragr
	* raise ActionNeeded on trading password creation
	* adding advisor to cragr
	* port to browser2 the quick way
	* fix debug leftover
	* fix shared URL instance modification
	* fix browser1 leftover
	* fix cragr broken html
	* fix method name after browser2 switch
	* escape error message during authentication
	* use ActionNeeded exception when it is appropriated
	* implement transfers
	* fix TransferPage url to avoid the pattern match other pages
	* fix Transfer object after execute_transfer
	* fixing cragr : advisor on cmds
	* use TYPE_CARD_SUMMARY and TYPE_DEFERRED_CARD transaction types
	* adding CapProfile to cragr
	* use bytes since content is bytes
	* Fix BGPI go_to don't work without return, change DAV PEA type
	* adding xpath to get card's balance
	* fix mistake on card balance xpath
	* fixing account type with PEA
	* fix rdate, there are not always sorted
	* keep usage of LinearDateGuesser for other than cards accounts
	* fix cragr dateguesser for deferred cards
	* catch more broken html to replace
	* improve domain management
	* use new TransferError codes in a few modules
	* use new TransferError subclasses in modules
	* match another card_summary type
	* for card accounts, separate history from coming
	* fix advisor fetching navigation
	* handle perimeter having "&/et" sometimes
	* adding an account type
	* add autoencoding and fix market accounts
	* implement adding new transfer recipients
	* use url field instead of _link for Accounts in a few modules
	* update modules to use new CapBankTransferAddRecipient
	* more wtf on cards being debitted 37 weeks later!
	* Fixing using number instead of webid
	* some accounts need a form submit to go to history
	* "Remise carte" is not a TYPE_CARD_SUMMARY Transaction
	* Fix deferred cards
	* return list of deferred cards or url
	* fix deferred debit cards when it's a link, not a form
	* detect browser unavailable page when account uses a form
	* set card balance at 0 if there is no coming
	* Set balance to 0 if there is no coming transactions
	* get account base on acc.balance
	* handle some BGIPage investments
	* straightforward py2/py3 port
	* use xpath "$vars" in a few modules
	* use BankStandardTest
	* split get_cards_or_card
	* added BASEURL initialisation in init
	* sometimes site returns recipients iban not in uppercase
	* raise BrowserUnavailable
	* handle unavalaible browser a better way
	* handle more informations for loans. duration is now given in months
	* remove some useless ":443" in URLs since weboob normalizes them
	* handle closed loans that stay on the accounts list
	* add default value for Loan start/end date
	* sometimes there's no link for the loan

	Modules: creditcooperatif
	* port to browser2 the easy way
	* pro: fix for multiple cards on same account
	* don't modify raw label
	* detect PEL accounts
	* first implementation of transfers for perso accounts
	* implement transfers to external recipients
	* fix debug leftover
	* fix transfer exec_date parsing
	* use xpath "$vars" in a few modules
	* skip coming transactions without a date
	* use another page for coming transactions
	* quick port to python3

	Modules: creditdunord
	* adding CapProfile to creditdunord
	* fix when no accounts + improve js search code
	* fixing account type with PEA
	* fix accounts parsing
	* fix investments date parsing
	* Add support for banque laydernier
	* catch no iban error, change some account id
	* some transactions have no dates ...
	* fix account not well typed
	* Changed json loads to literal eval to prevent useless replaces
	* Use weboob.tools.compat instead of urllib/urlparse
	* correctly type checking account
	* correctly sort transactions
	* port to python3
	* fix py3 compat

	Modules: creditdunordpee
	* remove dummy test.py files as they are false negatives for weboob_lint
	* fix homepage regexp and virtualkeyboard
	* use io.BytesIO where deprecated StringIO module was used for bytes
	* fix "-" amount
	* iter_accounts now returns an iterable
	* fix warning

	Modules: creditmutuel
	* fixing creditmutuel/cic : remove deleted from summary manually summed
	* remove dirt from label
	* adding CapProfile to cm/cic
	* call super-classes on_load
	* fix some missing @need_login
	* fix advisor fetch
	* [cm/cic] fixing account type with PEA
	* remove dup URL
	* fix investement on PEA accounts + NotImplemented for history
	* catch another error message during transfer
	* [creditmut] add recipient feature
	* [cm/cic] adding account type
	* remove useless commented code
	* use new TransferError codes in a few modules
	* use new TransferError subclasses in modules
	* catch ActionNeeded on add recipient
	* [creditmut] change deferred card webid to be uniq
	* [creditmut & cic] fix bug following change of account webid
	* handle empty key error
	* [cm/cic] fix accounts type
	* if a transaction commission is present, exclude it from amount
	* [creditmut] handle new transfer bank error
	* P.E.A accounts has now the good type
	* [cic] better transfer errors handling
	* [cic/cm] fix problems on deferred cards and coming
	* update modules to use new CapBankTransferAddRecipient
	* [credimut] fix consecutive new recipients
	* [creditmut] fix check on recap transfer
	* [creditmut] fix fetching iban
	* [creditmut] preventively use has-class instead of @class=
	* [cm/cic] create new account to keep consistency
	* [cm/cic] match another loan account
	* remove regex on login
	* [cm/cic] adding word to match order
	* Use weboob.tools.compat instead of urllib/urlparse
	* use xpath "$vars" in a few modules
	* new URL for OperationsPage + call sorted_transactions
	* handle more informations for loans
	* stop taking closed loans into account
	* fix unhandled page for loans condition
	* [cic/creditmutuel] fixed some pages not being matched
	* CMCIC: fix catching URI for life insurances
	* CMCIC another fix for uri for life assurances
	* CMCIC better xpath for banqueprivee subbank for accounts items
	* fix validation message when the transfer is registered
	* CMCIC same xpath for account items for all subbanks
	* [credit mut] add_recipient, might have multiples hashes for same key

	Modules: cuisineaz
	* port to python3

	Modules: dailymotion
	* set a default test config in case no-one exists
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: delubac
	* fix parsing when there are several accounts
	* detected terminated account
	* Corrected not accessible account and balance unavailable
	* fix unaccessible transactions
	* Improve iban recuperation
	* Skip unreachable accounts
	* some changes to be compatible with his childrens
	* port to python3

	Modules: dlfp
	* quick-and-dirty port to Browser2
	* fix browser1 leftovers and port to python3

	Modules: ebonics
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: edf
	* remove dummy test.py files as they are false negatives for weboob_lint
	* fetch 3 years of documents instead of fixed begining date
	* [edf pro] catch ActionNeeded (CGU validation)
	* fixing parsing doc
	* fix edf pro: bad detection of wrongpass and dl method change
	* Fix edfpro: crashes when no bills found, and make subscription labels clean
	* fix new page for bills and new method for download
	* fix multiple subscriptions documents, fix download doc (same case), and fix invalid price
	* [edf pro] fix non-static id for subscriptions, and clean some code
	* fix multiple persons for multiple subs
	* [EDF] Factures correction
	* pyflakes
	* Fix PAR documents & PRO bills ID
	* [edf-par] fix disconnect on download bills
	* [edf - par] Corrected is_logged that was always true

	Modules: ehentai
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: entreparticuliers
	* fix land rent type
	* correctly handle RENT queries
	* Update Entreparticuliers module
	* Partial fix for entreparticuliers single housing fetching
	* Use a dedicated field for utilities status in housing capability
	* Fix some discrepancies between list and infos in entreparticuliers module
	* fix pyflakes
	* fix area detection when number of rooms is unknow + fix description parsing + fis nbroom parsing
	* Fix a bug due to invalid XML encoding in entreparticuliers module
	* fix parsing crappy adverts
	* fix module website got updated

	Modules: europarl
	* Clean up imports

	Modules: explorimmo
	* fix module: handle case price in not in search result
	* fix error parsing prices
	* handle empty search cities result
	* Update explorimmo module
	* Remove useless imports in explorimmo module
	* Update explorimmo single housing fetching
	* Use a dedicated field for utilities status in housing capability
	* Correctly fetch the area in Explorimmo listing when there is a comma
	* Fix according to comment by @Bezleputh
	* Fix explorimmo agency in details
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: feedly
	* Use weboob.tools.compat instead of urllib/urlparse

	Modules: fortuneo
	* fixing account type with PEA
	* fix broken html
	* fetch PEA balance from account page because it's more up to date
	* handle another actionNeeded
	* do not use 'with' on browser
	* use url field instead of _link for Accounts
	* changed way accounts links are retrieved
	* added history for PEA and life insurrances accounts
	* Form not found correction
	* ignore auto assurance account
	* added action needed exception for recently created profiles
	* [Fortuneo] Handling of liquidities because investments are very volatiles, investments are cached during list command in order to keep consistancy between list' balances and investments sums
	* added action needed exception when profile require it
	* added another case of action needed on the site
	* fixing account type
	* added BrowserUnvailable exception for unreachable accounts
	* fix crash on loans
	* port to python3
	* Now full handle loans
	* detect BrowserUnavailable at login
	* another ActionNeede
	* Delete liquidity for stock account
	* now get sub transactions from main one

	Modules: francetelevisions
	* site changed
	* sometimes there is no date or sublabel
	* handle ls command + fix test

	Modules: freemobile
	* Fix for https://symlink.me/issues/3664