You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by ke...@apache.org on 2020/03/12 18:55:27 UTC

[allura] branch master updated (c973a60 -> 1551993)

This is an automated email from the ASF dual-hosted git repository.

kentontaylor pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git.


    from c973a60  Bump pillow from 6.1.0 to 6.2.0
     add aaafbb9  [#8354] latest virtualenv works with py2 again
     add 9ad951b  [#8354] replace webhelpers literal with Markup (already inherited from it, we already use it aka jinja2.Markup elsewhere too)
     add 5b371e0  [#8354] fix six cookie import
     add dbebcd5  [#8354] change StringIO uses that really are BytesIO
     add 6e0a2ce  [#8354] six-ify email mime imports
     add 61a80ca  [#8354] webhelpers.paginate -> standalone paginate package
     add 9c46fb0  [#8354] webhelpers.feedgenerator -> standalone feedgenerator package
     add e270237  [#8354] webhelpers -> webhelpers2
     add dcdfa27  [#8354] misc other import-time weird fixes
     add fa63fe6  [#8354] remove iteritems() usage in templates; assuming none of these are such huge lists that py2-non-iter will matter
     add 9ad5f3d  [#8354] make sure jinja2 config values are of the right type
     add 99a5ef8  [#8354] unicode/byte fixes encountered during nearly all tests setup
     add 921c3b7  [#8354] avoid error: dictionary changed size during iteration
     add e2aad50  [#8354] make .ini settings compatible with py3 configparser
     add d5f5e01  [#8354] antispam fixes for py3
     add 33d8446  [#8354] modernize run_tests script
     new 1551993  [#8354] Ming version bump

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Allura/allura/app.py                               | 16 +++++------
 Allura/allura/config/app_cfg.py                    |  7 ++---
 Allura/allura/config/middleware.py                 |  4 +--
 Allura/allura/controllers/site_admin.py            |  2 +-
 Allura/allura/controllers/static.py                |  5 ++--
 .../allura/ext/admin/templates/project_trove.html  |  2 +-
 Allura/allura/lib/app_globals.py                   | 14 +++++-----
 Allura/allura/lib/custom_middleware.py             |  2 +-
 Allura/allura/lib/decorators.py                    |  6 ++++-
 Allura/allura/lib/helpers.py                       | 15 +++++++----
 Allura/allura/lib/mail_util.py                     |  4 +--
 Allura/allura/lib/markdown_extensions.py           |  4 ++-
 Allura/allura/lib/plugin.py                        |  8 +++---
 Allura/allura/lib/utils.py                         | 31 ++++++++++++----------
 Allura/allura/lib/widgets/form_fields.py           |  6 +++--
 Allura/allura/lib/widgets/forms.py                 |  9 ++++---
 Allura/allura/model/artifact.py                    |  4 +--
 Allura/allura/model/filesystem.py                  |  4 +--
 Allura/allura/model/multifactor.py                 |  2 +-
 Allura/allura/model/project.py                     |  8 +++++-
 Allura/allura/tasks/mail_tasks.py                  |  2 +-
 .../allura/templates/browse_trove_categories.html  |  4 +--
 Allura/allura/templates/jinja_master/lib.html      |  4 +--
 Allura/allura/templates/reconfirm_auth.html        |  2 +-
 .../templates/repo/merge_request_changed.html      |  2 +-
 Allura/allura/templates/widgets/forge_form.html    |  2 +-
 Allura/allura/templates/widgets/page_list.html     |  2 +-
 Allura/allura/templates/widgets/page_size.html     |  2 +-
 Allura/allura/templates/widgets/search_help.html   |  2 +-
 Allura/allura/templates/widgets/state_field.html   |  2 +-
 .../templates_responsive/widgets/forge_form.html   |  2 +-
 Allura/allura/tests/functional/test_admin.py       | 23 +++++++++++-----
 .../allura/tests/functional/test_neighborhood.py   |  6 ++---
 Allura/allura/tests/model/test_discussion.py       | 26 +++++++++---------
 Allura/allura/tests/model/test_filesystem.py       | 21 +++++++--------
 Allura/allura/tests/test_mail_util.py              |  4 +--
 Allura/allura/tests/test_plugin.py                 |  1 +
 Allura/allura/tests/test_tasks.py                  |  1 +
 Allura/allura/websetup/bootstrap.py                |  4 +--
 Allura/development.ini                             | 24 ++++++++++-------
 Allura/docker-dev.ini                              |  3 ++-
 Allura/production-docker-example.ini               |  3 ++-
 Allura/test.ini                                    |  9 +++----
 ForgeActivity/forgeactivity/main.py                |  2 +-
 .../templates/blog_widgets/page_list.html          |  4 +--
 ForgeBlog/forgeblog/tests/functional/test_feeds.py |  4 +--
 ForgeBlog/forgeblog/tests/test_app.py              |  4 +--
 .../forgediscussion/tests/functional/test_forum.py | 12 ++++-----
 .../tests/functional/test_forum_admin.py           |  1 -
 ForgeDiscussion/forgediscussion/tests/test_app.py  |  4 +--
 ForgeImporters/forgeimporters/base.py              | 12 ++++-----
 ForgeImporters/forgeimporters/github/tracker.py    |  8 ++----
 .../forgeimporters/templates/project_base.html     |  4 +--
 .../forgeimporters/tests/github/test_extractor.py  | 30 ++++++++++-----------
 .../forgeimporters/tests/github/test_tracker.py    |  2 +-
 ForgeSVN/forgesvn/model/svn.py                     |  4 +--
 ForgeSVN/forgesvn/tests/model/test_repository.py   |  9 +++----
 ForgeTracker/forgetracker/import_support.py        |  4 +--
 .../templates/tracker/admin_fields.html            |  2 +-
 .../tracker_widgets/custom_field_admin_detail.html |  2 +-
 .../forgetracker/tests/functional/test_root.py     |  6 ++---
 ForgeTracker/forgetracker/tests/test_app.py        |  4 +--
 ForgeTracker/forgetracker/tracker_main.py          |  2 +-
 ForgeTracker/forgetracker/widgets/ticket_form.py   |  6 ++---
 ForgeWiki/forgewiki/tests/functional/test_root.py  |  6 ++---
 ForgeWiki/forgewiki/tests/test_app.py              |  4 +--
 requirements.in                                    |  6 +++--
 requirements.txt                                   |  6 +++--
 run_tests                                          | 25 ++++++++++-------
 scripts/init-docker-dev.sh                         |  2 +-
 70 files changed, 260 insertions(+), 219 deletions(-)


[allura] 01/01: [#8354] Ming version bump

Posted by ke...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kentontaylor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git

commit 155199387eeaefa4d689ca2a1acf671345475b7d
Author: Kenton Taylor <kt...@slashdotmedia.com>
AuthorDate: Thu Mar 12 18:55:03 2020 +0000

    [#8354] Ming version bump
---
 requirements.in  | 2 +-
 requirements.txt | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/requirements.in b/requirements.in
index d25b8d1..43334a2 100644
--- a/requirements.in
+++ b/requirements.in
@@ -19,7 +19,7 @@ Jinja2==2.10
 Markdown<3
 markdown-checklist==0.4.1
 MarkupSafe
-Ming==0.5.6
+Ming==0.5.7
 # oauth2 doesn't have py3.6 support.  There's a fork with fixes but no pypi releases I can find.  https://github.com/joestump/python-oauth2/issues/223
 oauth2
 paginate
diff --git a/requirements.txt b/requirements.txt
index 3ad0464..d75b014 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -47,7 +47,7 @@ jinja2==2.10
 markdown-checklist==0.4.1
 markdown==2.6.11
 markupsafe==1.1.1
-ming==0.5.6
+ming==0.5.7
 mock==3.0.5
 nose==1.3.7
 oauth2==1.9.0.post1