← Back to team overview

launchpad-reviewers team mailing list archive

[Merge] ~cjwatson/launchpad:lazr.restful-0.21.0 into launchpad:master

 

Colin Watson has proposed merging ~cjwatson/launchpad:lazr.restful-0.21.0 into launchpad:master.

Commit message:
Upgrade to lazr.restful 0.21.0

Requested reviews:
  Launchpad code reviewers (launchpad-reviewers)

For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/376906

One doctest needs to change slightly to account for lazr.restful now generating IEntry subinterfaces with field ordering matching that in the original interface.

I also adjusted a few other dependencies slightly, mainly to avoid zope.app.pagetemplate being prematurely dropped.
-- 
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:lazr.restful-0.21.0 into launchpad:master.
diff --git a/constraints.txt b/constraints.txt
index 8ffaaf9..b153e9e 100644
--- a/constraints.txt
+++ b/constraints.txt
@@ -225,7 +225,7 @@ lazr.delegates==2.0.4
 lazr.enum==1.1.3
 lazr.jobrunner==0.16
 lazr.lifecycle==1.2
-lazr.restful==0.20.1
+lazr.restful==0.21.0
 lazr.restfulclient==0.13.2
 lazr.smtptest==1.3
 lazr.sshserver==0.1.10
@@ -317,12 +317,10 @@ wsgi-intercept==0.5.1
 WSGIProxy2==0.4.6
 wsgiref==0.1.2
 z3c.pt==2.2.3
-z3c.ptcompat==0.5.7
+z3c.ptcompat[zpt]==0.5.7
 zc.zservertracelog==1.3.2
 zope.app.applicationcontrol==4.0.0
 zope.app.appsetup==4.1.0
-zope.app.debug==3.4.1
-zope.app.dependable==3.5.1
 zope.app.http==4.0.1
 zope.app.pagetemplate==3.11.2
 zope.app.publication==4.3.1
diff --git a/lib/lp/registry/stories/webservice/xx-distribution-mirror.txt b/lib/lp/registry/stories/webservice/xx-distribution-mirror.txt
index 9e4c932..db17b40 100644
--- a/lib/lp/registry/stories/webservice/xx-distribution-mirror.txt
+++ b/lib/lp/registry/stories/webservice/xx-distribution-mirror.txt
@@ -194,10 +194,10 @@ Some attributes are read-only via the API:
     >>> print response
     HTTP/1.1 400 Bad Request
     ...
+    distribution_link: You tried to modify a read-only attribute.
     enabled: You tried to modify a read-only attribute.
-    date_reviewed: You tried to modify a read-only attribute.
     reviewer_link: You tried to modify a read-only attribute.
-    distribution_link: You tried to modify a read-only attribute.
+    date_reviewed: You tried to modify a read-only attribute.
 
 While others can be set with the appropriate authorization:
 
diff --git a/setup.py b/setup.py
index 30391e6..2f9ab7a 100644
--- a/setup.py
+++ b/setup.py
@@ -236,7 +236,7 @@ setup(
         'WebTest',
         'WSGIProxy2',
         'z3c.pt',
-        'z3c.ptcompat',
+        'z3c.ptcompat[zpt]',
         'zc.zservertracelog',
         'zope.app.http',
         'zope.app.publication',