doc/changes/3.27.rst
author Nicola Spanti <nicola.spanti@logilab.fr>
Fri, 13 Apr 2018 17:28:14 +0200
changeset 12787 be63e0fd43d0
parent 12754 22ece66dcd47
child 12796 4fe765f2f155
permissions -rw-r--r--
[web/views] Fix AutoformSectionRelationTags.set_muledit_editable It is a method call, so `self` is passed implicitely as first argument, so it is useless to pass it also explicitely as second argument. In fact, it does not work without this. A monkey patch had been done in a private client's project, but the fix is revelant for everyone.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12358
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
     1
3.27 (not yet released)
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
     2
=======================
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
     3
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
     4
New features
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
     5
------------
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
     6
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
     7
* Tests can now be run concurrently across multiple processes. You can use
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
     8
  `pytest-xdist`_ for that. For tests using `PostgresApptestConfiguration` you
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
     9
  should be aware that `startpgcluster()` can't run concurrently. Workaround is
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
    10
  to call pytest with ``--dist=loadfile`` to use a single test process per test
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
    11
  module or use an existing database cluster and set ``db-host`` and
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
    12
  ``db-port`` of ``devtools.DEFAULT_PSQL_SOURCES['system']`` accordingly.
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
    13
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
    14
.. _pytest-xdist: https://github.com/pytest-dev/pytest-xdist
e0b659abe4b8 Add changelog note for running tests with pytest-xdist
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents:
diff changeset
    15
12604
c755b73640ea [changelog] document pyramid.ini automatic generation
Laurent Peuch <cortex@worlddomination.be>
parents: 12585
diff changeset
    16
* on `cubicweb-ctl create` and `cubicweb-ctl pyramid`, if it doesn't already
c755b73640ea [changelog] document pyramid.ini automatic generation
Laurent Peuch <cortex@worlddomination.be>
parents: 12585
diff changeset
    17
  exist in the instance directory, the `pyramid.ini` file will be generated
c755b73640ea [changelog] document pyramid.ini automatic generation
Laurent Peuch <cortex@worlddomination.be>
parents: 12585
diff changeset
    18
  with the needed secrets.
c755b73640ea [changelog] document pyramid.ini automatic generation
Laurent Peuch <cortex@worlddomination.be>
parents: 12585
diff changeset
    19
12692
8673da7c2f85 [cubicweb-ctl] add '--pdb' global option to launch (i)pdb on exception
Laurent Peuch <cortex@worlddomination.be>
parents: 12685
diff changeset
    20
* add a --pdb flag to all cubicweb-ctl command to launch (i)pdb if an exception
8673da7c2f85 [cubicweb-ctl] add '--pdb' global option to launch (i)pdb on exception
Laurent Peuch <cortex@worlddomination.be>
parents: 12685
diff changeset
    21
  occurs during a command execution.
8673da7c2f85 [cubicweb-ctl] add '--pdb' global option to launch (i)pdb on exception
Laurent Peuch <cortex@worlddomination.be>
parents: 12685
diff changeset
    22
12737
56f7386bc6b9 [cubicweb-ctl] backport --dbglevel option of pyramid to all instance commands
Laurent Peuch <cortex@worlddomination.be>
parents: 12736
diff changeset
    23
* the --loglevel and --dbglevel flags are available for all cubicweb-ctl
56f7386bc6b9 [cubicweb-ctl] backport --dbglevel option of pyramid to all instance commands
Laurent Peuch <cortex@worlddomination.be>
parents: 12736
diff changeset
    24
  instance commands (and not only the ``pyramid`` one)
12736
5add82b08a6d [cubicweb-ctl] backport --loglevel option of pyramid to all instance commands
Laurent Peuch <cortex@worlddomination.be>
parents: 12730
diff changeset
    25
12738
a54037a68b14 [logging] send logs by default to stdout
Laurent Peuch <cortex@worlddomination.be>
parents: 12737
diff changeset
    26
* following "only in foreground" behavior all commands logs to stdout by
a54037a68b14 [logging] send logs by default to stdout
Laurent Peuch <cortex@worlddomination.be>
parents: 12737
diff changeset
    27
  default from now on. To still log to a file pass ``log_to_file=True`` to
a54037a68b14 [logging] send logs by default to stdout
Laurent Peuch <cortex@worlddomination.be>
parents: 12737
diff changeset
    28
  ``CubicWebConfiguration.config_for``
a54037a68b14 [logging] send logs by default to stdout
Laurent Peuch <cortex@worlddomination.be>
parents: 12737
diff changeset
    29
12742
ca698656251c Add a migration function in order to relocate bfss
Noe Gaumont <ngaumont@logilab.fr>
parents: 12738
diff changeset
    30
* add a new migration function `update_bfss_path(old_path, new_path)` to update
ca698656251c Add a migration function in order to relocate bfss
Noe Gaumont <ngaumont@logilab.fr>
parents: 12738
diff changeset
    31
  the path in Bytes File-System Storage (bfss).
ca698656251c Add a migration function in order to relocate bfss
Noe Gaumont <ngaumont@logilab.fr>
parents: 12738
diff changeset
    32
12750
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    33
* on every request display request path and selected controller in CLI
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    34
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    35
* migration interactive mode improvements:
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    36
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    37
  * when an exception occurs, display the full traceback instead of only the exception
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    38
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    39
  * on migration p(db) choice, launch ipdb if it's installed
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    40
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    41
  * on migration p(db) choice, give the traceback to pdb if it's available,
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    42
    this mean that the (i)pdb interactive session will be on the stack of
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    43
    the exception instead of being on the stack where pdb is launched which
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    44
    will allow the user to access all the relevant context of the exception
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    45
    which otherwise is lost
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    46
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    47
* on DBG_SQL and/or DBG_RQL, if pygments is installed, syntax highlight sql/rql
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    48
  debug output
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    49
12751
30b205676182 [pyramid/ctl] add a new option to activate the debugtoolbar (-t)
Laurent Peuch <cortex@worlddomination.be>
parents: 12750
diff changeset
    50
* add a new '-t/--toolbar' option the pyramid command to activate the pyramid debugtoolbar
30b205676182 [pyramid/ctl] add a new option to activate the debugtoolbar (-t)
Laurent Peuch <cortex@worlddomination.be>
parents: 12750
diff changeset
    51
12754
22ece66dcd47 [ctl] allow to specific instance name for instance commands in $CW_INSTANCE
Laurent Peuch <cortex@worlddomination.be>
parents: 12751
diff changeset
    52
* allow to specify the instance id for any instance command using the
22ece66dcd47 [ctl] allow to specific instance name for instance commands in $CW_INSTANCE
Laurent Peuch <cortex@worlddomination.be>
parents: 12751
diff changeset
    53
  CW_INSTANCE global variable instead of or giving it as a cli argument
22ece66dcd47 [ctl] allow to specific instance name for instance commands in $CW_INSTANCE
Laurent Peuch <cortex@worlddomination.be>
parents: 12751
diff changeset
    54
12526
b78e3472a7d6 Remove ctl commands using the Twisted backend
Denis Laxalde <denis.laxalde@logilab.fr>
parents: 12508
diff changeset
    55
Backwards incompatible changes
b78e3472a7d6 Remove ctl commands using the Twisted backend
Denis Laxalde <denis.laxalde@logilab.fr>
parents: 12508
diff changeset
    56
------------------------------
b78e3472a7d6 Remove ctl commands using the Twisted backend
Denis Laxalde <denis.laxalde@logilab.fr>
parents: 12508
diff changeset
    57
12585
933c2b3839ab [cubicweb-ctl] remove "cubicweb-ctl wsgi" command following pyramid standardization
Laurent Peuch <cortex@worlddomination.be>
parents: 12583
diff changeset
    58
* Standardization on the way to launch a cubicweb instance, from now on the
933c2b3839ab [cubicweb-ctl] remove "cubicweb-ctl wsgi" command following pyramid standardization
Laurent Peuch <cortex@worlddomination.be>
parents: 12583
diff changeset
    59
  only way to do that will be the used the ``pyramid`` command. Therefore:
12526
b78e3472a7d6 Remove ctl commands using the Twisted backend
Denis Laxalde <denis.laxalde@logilab.fr>
parents: 12508
diff changeset
    60
12585
933c2b3839ab [cubicweb-ctl] remove "cubicweb-ctl wsgi" command following pyramid standardization
Laurent Peuch <cortex@worlddomination.be>
parents: 12583
diff changeset
    61
   * ``cubicweb-ctl`` commands "start", "stop", "restart", "reload" and "status"
933c2b3839ab [cubicweb-ctl] remove "cubicweb-ctl wsgi" command following pyramid standardization
Laurent Peuch <cortex@worlddomination.be>
parents: 12583
diff changeset
    62
     have been removed because they relied on the Twisted web server backend that
933c2b3839ab [cubicweb-ctl] remove "cubicweb-ctl wsgi" command following pyramid standardization
Laurent Peuch <cortex@worlddomination.be>
parents: 12583
diff changeset
    63
     is no longer maintained nor working with Python 3.
933c2b3839ab [cubicweb-ctl] remove "cubicweb-ctl wsgi" command following pyramid standardization
Laurent Peuch <cortex@worlddomination.be>
parents: 12583
diff changeset
    64
933c2b3839ab [cubicweb-ctl] remove "cubicweb-ctl wsgi" command following pyramid standardization
Laurent Peuch <cortex@worlddomination.be>
parents: 12583
diff changeset
    65
   * Twisted web server support has been removed.
933c2b3839ab [cubicweb-ctl] remove "cubicweb-ctl wsgi" command following pyramid standardization
Laurent Peuch <cortex@worlddomination.be>
parents: 12583
diff changeset
    66
933c2b3839ab [cubicweb-ctl] remove "cubicweb-ctl wsgi" command following pyramid standardization
Laurent Peuch <cortex@worlddomination.be>
parents: 12583
diff changeset
    67
   * ``cubicweb-ctl wsgi`` has also been removed.
12530
9d88e1177c35 Remove Twisted web server
Denis Laxalde <denis.laxalde@logilab.fr>
parents: 12526
diff changeset
    68
12557
dc04947379b5 [doc/changes] document that legacy cube support has been dropped
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents: 12530
diff changeset
    69
* Support for legacy cubes (in the 'cubes' python namespace) has been dropped.
dc04947379b5 [doc/changes] document that legacy cube support has been dropped
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents: 12530
diff changeset
    70
  Use of environment variables CW_CUBES_PATH and CUBES_DIR is removed.
dc04947379b5 [doc/changes] document that legacy cube support has been dropped
Philippe Pepiot <philippe.pepiot@logilab.fr>
parents: 12530
diff changeset
    71
12567
26744ad37953 Drop python2 support
Denis Laxalde <denis.laxalde@logilab.fr>
parents: 12557
diff changeset
    72
* Python 2 support has been dropped.
26744ad37953 Drop python2 support
Denis Laxalde <denis.laxalde@logilab.fr>
parents: 12557
diff changeset
    73
12583
4f59a56e6d89 [enh] don't catch all exceptions in notification hooks during tests
Laurent Peuch <cortex@worlddomination.be>
parents: 12567
diff changeset
    74
* Exceptions in notification hooks aren't catched-all anymore during tests so
4f59a56e6d89 [enh] don't catch all exceptions in notification hooks during tests
Laurent Peuch <cortex@worlddomination.be>
parents: 12567
diff changeset
    75
  one can expect tests that seem to pass (but were actually silently failing)
4f59a56e6d89 [enh] don't catch all exceptions in notification hooks during tests
Laurent Peuch <cortex@worlddomination.be>
parents: 12567
diff changeset
    76
  to fail now.
4f59a56e6d89 [enh] don't catch all exceptions in notification hooks during tests
Laurent Peuch <cortex@worlddomination.be>
parents: 12567
diff changeset
    77
12685
84a8a8915512 [cubicweb-ctl] move to accepting only once instance name per command
Laurent Peuch <cortex@worlddomination.be>
parents: 12604
diff changeset
    78
* All "cubicweb-ctl" command only accept one instance argument from now one
84a8a8915512 [cubicweb-ctl] move to accepting only once instance name per command
Laurent Peuch <cortex@worlddomination.be>
parents: 12604
diff changeset
    79
  (instead of 0 to n)
84a8a8915512 [cubicweb-ctl] move to accepting only once instance name per command
Laurent Peuch <cortex@worlddomination.be>
parents: 12604
diff changeset
    80
12730
6c48a49cd3c2 [pyramid/ctl] pyramid command will always run in foreground from now on
Laurent Peuch <cortex@worlddomination.be>
parents: 12716
diff changeset
    81
* 'pyramid' command will always run in the foreground now, by consequence the
6c48a49cd3c2 [pyramid/ctl] pyramid command will always run in foreground from now on
Laurent Peuch <cortex@worlddomination.be>
parents: 12716
diff changeset
    82
  option ``--no-daemon`` has been removed.
6c48a49cd3c2 [pyramid/ctl] pyramid command will always run in foreground from now on
Laurent Peuch <cortex@worlddomination.be>
parents: 12716
diff changeset
    83
12716
f5300acd8f4f [debug/clean] remove unused DBG_MS flag
Laurent Peuch <cortex@worlddomination.be>
parents: 12692
diff changeset
    84
* DBG_MS flag has been removed since it is not used anymore
f5300acd8f4f [debug/clean] remove unused DBG_MS flag
Laurent Peuch <cortex@worlddomination.be>
parents: 12692
diff changeset
    85
12750
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    86
* transactions db logs where displayed using the logging
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    87
  (debug/info/warning...) mechanism, now it is only displayed if the
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    88
  corresponding DBG_OPS flag is used
74b473f288d5 [changelog] add missing information to the 3.27 changelog
Laurent Peuch <cortex@worlddomination.be>
parents: 12742
diff changeset
    89
12508
a8c1ea390400 Drop most of deprecated code
Denis Laxalde <denis.laxalde@logilab.fr>
parents: 12358
diff changeset
    90
Deprecated code drops
a8c1ea390400 Drop most of deprecated code
Denis Laxalde <denis.laxalde@logilab.fr>
parents: 12358
diff changeset
    91
---------------------
a8c1ea390400 Drop most of deprecated code
Denis Laxalde <denis.laxalde@logilab.fr>
parents: 12358
diff changeset
    92
a8c1ea390400 Drop most of deprecated code
Denis Laxalde <denis.laxalde@logilab.fr>
parents: 12358
diff changeset
    93
Most code deprecated until version 3.25 has been dropped.