Changelog History
Page 2
-
v2.18.3
March 03, 2019 -
v2.18.2
February 26, 2019 -
v2.17.2
October 06, 2018 -
v2.17.1 Changes
August 06, 2018π Many bug fixes and integration with pyDAL 18.08
-
v2.17.1-2 Changes
- pydal 18.08
- π many small bug fixes
-
v2.16.1 Changes
November 14, 2017- pydal 17.11
- bootstrap 4
- π better welcome examples
- π many bug fixes
-
v2.15.1-4 Changes
- pydal 17.08
- β¬οΈ dropped support for python 2.6
- β¬οΈ dropped web shell
- π experimental python 3 support
- experimental authapi for service login
- π allow ajax file uploads
- β more tests
- more pep8 compliance
- d3.js model visulization
- π improved scheduler
- π is_email support for internationalized Domain Names
- π improved used of cookies with CookieJar
- SQLFORM.grid(showblobs=True)
- import JS events (added w2p.componentBegin event)
- β added support for CASv3
- allow first_name and last_name placeholders in verify_email message
- β added three-quote support in markmin
- β‘οΈ updated pg8000 driver (but we still recommend psycopg2)
- compiled views use . separator not _ separator (must recompile code)
- π better serbian, french, and catalan translations
- π¨ speed improvements (refactor of compileapp and pyc caching)
- β removed web shell (never worked as intended)
- allow Expose(..., follow_symlink_out=False).
- β‘οΈ Updated fpdf to latest version
- π JWT support
- π import fabfile for remote deployment
- β± scheduler new feature: you can now specify intervals with cron
- π gluon/* removed from sys.path. Applications relying on statements like e.g. "from storage import Storage" will need to be rewritten with "from gluon.storage import Storage"
- tests can only be run with the usual web2py.py --run_system_tests OR with python -m unittest -v gluon.tests on the root dir
- jQuery 3.2.1
- PyDAL 17.07 including: allow jsonb support for postgres correctly configure adapters that need connection for configuration better caching updated IMAP adapter methods to new API experimental suport for joinable subselects improved Teradata support improved mongodb support overall refactoring experimental support for Google Cloud SQL v2 new pymysql driver
-
v2.14.6 Changes
- β Increased test coverage (thanks Richard)
- π Fixed some newly discovered security issues in admin: CSRF vulnerability in admin that allows disabling apps Brute force password attack vulnerability in admin (thanks Narendra and Leonel)
-
v2.14.1-5 Changes
- π fixed two major security issues that caused the examples app to leak information
- π new Auth(β¦,host_names=[β¦]) to prevent host header injection
- π improved scheduler
- pep8 enhancements
- π many bug fixes
- βͺ restored GAE support that was broken in 2.13.*
- π improved fabfile for deployment
- π¨ refactored examples with stupid.css
- π new JWT implementation (experimental)
- π new gluon.contrib.redis_scheduler
- myconf.get
- LDAP groups (experimental)
- .flash -> .w2p_flash
- β‘οΈ Updated feedparser.py 5.2.1
- β‘οΈ Updated jQuery 1.12.2
- welcome app now checks for version number
Redis improvements. New syntax:
BEFORE: from gluon.contrib.redis_cache import RedisCache cache.redis = RedisCache('localhost:6379',db=None, debug=True)
NOW: from gluon.contrib.redis_utils import RConn from gluon.contrib.redis_cache import RedisCache rconn = RConn()
or RConn(host='localhost', port=6379,
db=0, password=None, socket_timeout=None,
socket_connect_timeout=None, .....)
exactly as a redis.StrictRedis instance
cache.redis = RedisCache(redis_conn=rconn, debug=True)
BEFORE: from gluon.contrib.redis_session import RedisSession sessiondb = RedisSession('localhost:6379',db=0, session_expiry=False) session.connect(request, response, db = sessiondb)
NOW: from gluon.contrib.redis_utils import RConn from gluon.contrib.redis_session import RedisSession rconn = RConn() sessiondb = RedisSession(redis_conn=rconn, session_expiry=False) session.connect(request, response, db = sessiondb)
Many thanks to Richard and Simone for their work and dedication.
-
v2.13 Changes
- fixed a security issue in request_reset_password
- β added fabfile.py
- π fixed oauth2 renew token, thanks dokime7
- fixed add_membership, del_membership, add_membership IntegrityError (when auth.enable_record_versioning)
- π allow passing unicode to template render
- allow IS_NOT_IN_DB to work with custom primarykey, thanks timmyborg
- π allow HttpOnly cookies
- french pluralizaiton rules, thanks Mathieu Clabaut
- π fixed bug in redirect to cas service, thanks Fernando GonzΓ‘lez
- π allow deploying to pythonanywhere from the web2py admin that you're running locally, thanks Leonel
- π better tests
- π many more bug fixes