--- a/doc/changes/3.14.rst Fri Jul 03 13:44:01 2015 +0200
+++ b/doc/changes/3.14.rst Fri Jul 03 13:43:40 2015 +0200
@@ -4,6 +4,7 @@
First notice CW 3.14 depends on yams 0.34 (which is incompatible with prior
cubicweb releases regarding instance re-creation).
+
API changes
-----------
--- a/doc/changes/3.15.rst Fri Jul 03 13:44:01 2015 +0200
+++ b/doc/changes/3.15.rst Fri Jul 03 13:43:40 2015 +0200
@@ -26,6 +26,7 @@
- most web-side exceptions take an optional ``status`` argument.
+
API changes
-----------
@@ -63,6 +64,7 @@
method now contains generic version of logic previously handled by
Twisted. `Controller.publish` is **not** affected.
+
Unintrusive API changes
-----------------------
--- a/doc/changes/3.16.rst Fri Jul 03 13:44:01 2015 +0200
+++ b/doc/changes/3.16.rst Fri Jul 03 13:43:40 2015 +0200
@@ -2,7 +2,7 @@
=================
New functionalities
---------------------
+-------------------
* Add a new dataimport store (`SQLGenObjectStore`). This store enables a fast
import of data (entity creation, link creation) in CubicWeb, by directly
--- a/doc/changes/3.17.rst Fri Jul 03 13:44:01 2015 +0200
+++ b/doc/changes/3.17.rst Fri Jul 03 13:43:40 2015 +0200
@@ -2,7 +2,7 @@
=================
New functionalities
---------------------
+-------------------
* add a command to compare db schema and file system schema
(see `#464991 <http://www.cubicweb.org/464991>`_)
@@ -43,15 +43,16 @@
Deprecation
----------------------
+-----------
* ``ldapuser`` have been deprecated. It'll be fully dropped in the next
version. If you are still using ldapuser switch to ``ldapfeed`` **NOW**!
* ``hijack_user`` have been deprecated. It will be dropped soon.
+
Deprecated Code Drops
-----------------------
+---------------------
* The progress views and adapters have been removed from CubicWeb. These
classes were deprecated since 3.14.0. They are still available in the
--- a/doc/changes/3.18.rst Fri Jul 03 13:44:01 2015 +0200
+++ b/doc/changes/3.18.rst Fri Jul 03 13:43:40 2015 +0200
@@ -5,7 +5,7 @@
New functionalities
---------------------
+-------------------
* add a security debugging tool
(see `#2920304 <http://www.cubicweb.org/2920304>`_)
@@ -70,7 +70,7 @@
values, on the sqlite and postgresql backends
Deprecation
----------------------
+-----------
* ``pyrorql`` sources have been deprecated. Multisource will be fully dropped
in the next version. If you are still using pyrorql, switch to ``datafeed``
@@ -85,7 +85,7 @@
`#3400448 <https://www.cubicweb.org/ticket/3400448>`_)
Deprecated Code Drops
-----------------------
+---------------------
* ``ldapuser`` have been dropped; use ``ldapfeed`` now
(see `#2936496 <http://www.cubicweb.org/2936496>`_)
--- a/doc/changes/3.19.rst Fri Jul 03 13:44:01 2015 +0200
+++ b/doc/changes/3.19.rst Fri Jul 03 13:43:40 2015 +0200
@@ -2,7 +2,7 @@
=================
New functionalities
---------------------
+-------------------
* implement Cross Origin Resource Sharing (CORS)
(see `#2491768 <http://www.cubicweb.org/2491768>`_)
@@ -168,7 +168,7 @@
Deprecated Code Drops
-----------------------
+---------------------
* session.hijack_user mechanism has been dropped.
--- a/doc/changes/3.20.rst Fri Jul 03 13:44:01 2015 +0200
+++ b/doc/changes/3.20.rst Fri Jul 03 13:43:40 2015 +0200
@@ -61,18 +61,40 @@
----------------------
* most of 3.10 and 3.11 backward compat is gone; this includes:
+
- CtxComponent.box_action() and CtxComponent.build_link()
+
- cubicweb.devtools.htmlparser.XMLDemotingValidator
- - various methods and properties on Entities, replaced by cw_edited and cw_attr_cache
+
+ - various methods and properties on Entities, replaced by cw_edited
+ and cw_attr_cache
+
- 'commit_event' method on hooks, replaced by 'postcommit_event'
- - server.hook.set_operation(), replaced by Operation.get_instance(...).add_data()
+
+ - server.hook.set_operation(), replaced by
+ Operation.get_instance(...).add_data()
+
- View.div_id(), View.div_class() and View.create_url()
+
- `*VComponent` classes
- - in forms, Field.value() and Field.help() must take the form and the field itself as arguments
- - form.render() must get `w` as a named argument, and renderer.render() must take `w` as first argument
- - in breadcrumbs, the optional `recurs` argument must be a set, not False
+
+ - in forms, Field.value() and Field.help() must take the form and
+ the field itself as arguments
+
+ - form.render() must get `w` as a named argument, and
+ renderer.render() must take `w` as first argument
+
+ - in breadcrumbs, the optional `recurs` argument must be a set, not
+ False
+
- cubicweb.web.views.idownloadable.{download_box,IDownloadableLineView}
- - primary views no longer have `render_entity_summary` and `summary` methods
- - WFHistoryVComponent's `cell_call` method is replaced by `render_body`
+
+ - primary views no longer have `render_entity_summary` and `summary`
+ methods
+
+ - WFHistoryVComponent's `cell_call` method is replaced by
+ `render_body`
+
- cubicweb.dataimport.ObjectStore.add(), replaced by create_entity
+
- ManageView.{folders,display_folders}
--- a/doc/changes/3.21.rst Fri Jul 03 13:44:01 2015 +0200
+++ b/doc/changes/3.21.rst Fri Jul 03 13:43:40 2015 +0200
@@ -50,7 +50,7 @@
session = repo.new_session(login, password=...)
with session.new_cnx() as cnx:
cnx.execute(...)
-
+
In tests, the 'repo_cnx' and 'client_cnx' methods of RepoAccess are now
aliases to 'cnx'.