Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (4h)  pkgsrc-2024Q1 (10d)  pkgsrc-2023Q4 (57d)  pkgsrc-2023Q2 (90d)  pkgsrc-2023Q3 (169d) 

2024-05-28 08:49:54 UTC Now

2020-10-25 03:20:15 UTC MAIN commitmail json YAML

Updated math/R-Formula to 1.2.4

(wen)

2020-10-25 03:19:22 UTC MAIN commitmail json YAML

Update to 1.2.4

Upstream changes:
Formula 1.2-4

    model.part() method tries to avoid calling has_dot() by checking the data attributes first. This can greatly improve speed when there are lots of variables in a model part that is actually not of interest.

(wen)

2020-10-25 03:14:42 UTC MAIN commitmail json YAML

Updated math/R-carData to 3.0.4

(wen)

2020-10-25 03:13:50 UTC MAIN commitmail json YAML

Update to 3.0.4
Upstream changes:
Version 3.0-4

o Added "long"-format version of the O'Brien-Kaiser repeated-measures data set.

o Fix some typos in doc for CES11 data set (fixes courtesy of Andi Fugard).

Version 3.0-3

o Update references in docs and DESCRIPTION.

(wen)

2020-10-24 23:54:43 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-CheckOS to 1.85

(wen)

2020-10-24 23:53:49 UTC MAIN commitmail json YAML

Update to 1.85

Upstream changes:
1.85    2020-10-15      Add Linux::Raspbian and Linux::Ubuntu;
                        Add Linux::RealDebian for *actual* Debian Linux;
                        Add Linux::UnknownDebianLike for anything else that's like Debian;
                        Linux::Debian has become a family that includes all the above

1.84    2020-10-05      Add some more versions of MacOS;
                        Note change of name Mac OS X -> MacOS, but don't
                          change the module name for backward compatibility;
                        Add MSYS (reported by perl in MinGW environments)

(wen)

2020-10-24 23:43:16 UTC MAIN commitmail json YAML

Updated devel/p5-Config-AutoConf to 0.319

(wen)

2020-10-24 23:42:23 UTC MAIN commitmail json YAML

Update to 0.319

Upstream changes:
0.319  2020-09-29
        - add optional extra_link_flags to search_libs
        - fix check_prog to not find directories (RT#132993), thanks
          RJBS for reporting
        - include .perltidyrc to allow CPAN distribution downloaders
          creating sane patches
        - tooling improvements

(wen)

2020-10-24 23:31:55 UTC MAIN commitmail json YAML

Updated converters/p5-Unicode-MapUTF8 to 1.14

(wen)

2020-10-24 23:30:56 UTC MAIN commitmail json YAML

Update to 1.14
Update LICENSE

Upstream changes:
1.14 2020.09.27  Fixing pod breakage in EUC-JP pod

1.13 2020.09.27  Fixing MANIFEST.SKIP error

1.12 2020.09.27  Build tool updates. Maintainer updates. POD error fixes.
                  Relicensed under MIT license.

(wen)

2020-10-11 15:25:21 UTC MAIN commitmail json YAML

Updated math/R to 4.0.3

(wen)

2020-10-11 15:22:56 UTC MAIN commitmail json YAML

Update to 4.0.3

CHANGES IN R 4.0.3:

  NEW FEATURES:

    * On platforms using configure option --with-internal-tzcode,
      additional values "internal" and (on macOS only) "macOS" are
      accepted for the environment variable TZDIR.  (See ?TZDIR.)

      On macOS, "macOS" is used by default if the system timezone
      database is a newer version than that in the R installation.

    * When install.packages(type = "source") fails to find a package in
      a repository it mentions package versions which are excluded by
      their R version requirement and links to hints on why a package
      might not be found.

    * The default value for options("timeout") can be set from
      enviromnent variable R_DEFAULT_INTERNET_TIMEOUT, still defaulting
      to 60 (seconds) if that is not set or invalid.

      This may be needed when child R processes are doing downloads,
      for example during the installation of source packages which
      download jars or other forms of data.

  LINK-TIME OPTIMIZATION on a UNIX-ALIKE:

    * There is now support for parallelized Link-Time Optimization
      (LTO) with GCC and for 'thin' LTO with clang _via_ setting the
      LTO macro.

    * There is support for setting a different LTO flag for the Fortran
      compiler, including to empty when mixing clang and gfortran (as
      on macOS).  See file config.site.

    * There is a new LTO_LD macro to set linker options for LTO
      compilation, for example to select an alternative linker or to
      parallelize thin LTO.

  DEPRECATED AND DEFUNCT:

    * The LINPACK argument to chol.default(), chol2inv(),
      solve.default() and svd() has been defunct since R 3.1.0.  Using
      it now gives a warning which will become an error in R 4.1.0.

  BUG FIXES:

    * The code mitigating stack overflow with PCRE regexps on very long
      strings is enabled for PCRE2 < 10.30 also when JIT is enabled,
      since stack overflows have been seen in that case.

    * Fix to correctly show the group labels in dotchart() (which where
      lost in the ylab improvement for R 4.0.0).

    * addmargins(*, ..) now also works when fn() is a local function,
      thanks to bug report and patch PR#17124 from Alex Bertram.

    * rank(x) and hence sort(x) now work when x is an object (as per
      is.object(x)) of type "raw" _and_ provides a valid `[` method,
      e.g., for gmp::as.bigz(.) numbers.

    * chisq.test(*, simulate.p.value=TRUE) and r2dtable() now work
      correctly for large table entries (in the millions).  Reported by
      Sebastian Meyer and investigated by more helpers in PR#16184.

    * Low-level socket read/write operations have been fixed to
      correctly signal communication errors. Previously, such errors
      could lead to a segfault due to invalid memory access. Reported
      and debugged by Dmitriy Selivanov in PR#17850.

    * quantile(x, pr) works more consistently for pr values slightly
      outside [0,1], thanks to Suharto Anggono's PR#17891.

      Further, quantile(x, prN, names=FALSE) now works even when prN
      contains NAs, thanks to Anggono's PR#17892.  Ditto for ordered
      factors or Date objects when type = 1 or 3, thanks to PR#17899.

    * Libcurl-based internet access, including curlGetHeaders(), was
      not respecting the "timeout" option.  If this causes
      unanticipated timeouts, consider increasing the default by
      setting R_DEFAULT_INTERNET_TIMEOUT.

    * as.Date(<char>) now also works with an initial "", thanks to
      Michael Chirico's PR#17909.

    * isS3stdGeneric(f) now detects an S3 generic also when it it is
      trace()d, thanks to Gabe Becker's PR#17917.

    * R_allocLD() has been fixed to return memory aligned for long
      double type PR#16534.

    * fisher.test() no longer segfaults when called again after its
      internal stack has been exceeded PR#17904.

    * Accessing a long vector represented by a compact integer sequence
      no longer segfaults (reported and debugged by Hugh Parsonage).

    * duplicated() now works also for strings with multiple encodings
      inside a single vector PR#17809.

    * phyper(11, 15, 0, 12, log.p=TRUE) no longer gives NaN; reported
      as PR#17271 by Alexey Stukalov.

    * Fix incorrect calculation in logLik.nls() PR#16100, patch from
      Sebastian Meyer.

    * A very old bug could cause a segfault in model.matrix() when
      terms involved logical variables.  Part of PR#17879.

    * model.frame.default() allowed data = 1, leading to involuntary
      variable capture (rest of PR#17879).

    * tar() no longer skips non-directory files, thanks to a patch by
      Sebastian Meyer, fixing the remaining part of PR#16716.

(wen)

2020-10-02 12:01:19 UTC MAIN commitmail json YAML

Updated www/p5-HTTP-CookieJar

(wen)

2020-10-02 11:59:37 UTC MAIN commitmail json YAML

Update to 0.010
Update DEPENDS

Upstream changes:
0.010    2020-09-20 11:28:49-04:00 America/New_York

    - No changes from 0.009

0.009    2020-09-17 22:39:16-04:00 America/New_York (TRIAL RELEASE)

    [FIXED]

    - Fixed handling of edge case where Max-Age == 0

(wen)

2020-10-02 10:32:52 UTC MAIN commitmail json YAML

Updated math/R-car to 3.0.10

(wen)

2020-10-02 10:31:59 UTC MAIN commitmail json YAML

Update to 3.0.10

Upstream changes:
Changes to Version 3.0-10

  o Fixed as error when using parameter name "(Intercept)" with deltaMethod().

  o Several changes to Boot() to correct bugs, support the plinear algorithm, to correct use of weights for lm, and allow use of weights for nls.

  o Fix quantregLine() to work with development version 5.69 of quantreg package (following heads-up from Roger Koenker).

(wen)

2020-10-02 07:17:34 UTC MAIN commitmail json YAML

Updated devel/p5-IO-HTML to 1.004

(wen)

2020-10-02 07:16:37 UTC MAIN commitmail json YAML

Update to 1.004

Upstream changes:
1.004  2020-09-26
        - No code changes since 1.003, just documentation improvements
        - New example file: detect-encoding.pl

1.003  2015-09-26 Trial Release
        - Do not use incomplete quoted attribute values in find_charset_in.
          If we reach the end of the string without finding the closing quote,
          terminate processing instead of using whatever we did collect as
          the attribute's value.
        - Add tests for the $bytes_to_check configuration variable (GitHub#1)

1.002  2015-09-19 Trial Release
        - Add $bytes_to_check configuration variable (GitHub#1)

(wen)

2020-10-02 02:18:07 UTC MAIN commitmail json YAML

Mediawiki had been updated to 1.35.

(wen)

2020-10-02 02:14:56 UTC MAIN commitmail json YAML

Updated www/py-django3 to 3.1.2

(wen)

2020-10-02 02:14:03 UTC MAIN commitmail json YAML

Update to 3.1.2

Upstream changes:
Django 3.1.2 release notes¶

October 1, 2020

Django 3.1.2 fixes several bugs in 3.1.1.
Bugfixes¶

    Fixed a bug in Django 3.1 where FileField instances with a callable storage were not correctly deconstructed (#31941).
    Fixed a regression in Django 3.1 where the QuerySet.ordered attribute returned incorrectly True for GROUP BY queries (e.g. .annotate().values()) on models with Meta.ordering. A model’s Meta.ordering doesn’t affect such queries (#31990).
    Fixed a regression in Django 3.1 where a queryset would crash if it contained an aggregation and a Q object annotation (#32007).
    Fixed a bug in Django 3.1 where a test database was not synced during creation when using the MIGRATE test database setting (#32012).
    Fixed a django.contrib.admin.EmptyFieldListFilter crash when using on a GenericRelation (#32038).
    Fixed a regression in Django 3.1.1 where the admin changelist filter sidebar would not scroll for a long list of available filters (#31986).

(wen)

2020-10-02 01:53:07 UTC MAIN commitmail json YAML

Updated www/mediawiki to 1.35.0

(wen)

2020-10-02 01:51:10 UTC MAIN commitmail json YAML

2020-10-01 03:37:23 UTC MAIN commitmail json YAML

Updated www/moodle to 3.9.2

(wen)

2020-10-01 03:36:40 UTC MAIN commitmail json YAML

Update to 3.9.2

Upstream changes:
3.9.2
General fixes and improvements

    MDL-63375 - Workshop rubric display issue in grid view
    MDL-60574 - Atto editor undo/redo (crtl-y/z) can sometimes wipe all content
    MDL-26401 - Byte order mark at the beginning of import groups file fail the process with the confusing error message
    MDL-51709 - Gradebook single view has a hard coded name format in grade view
    MDL-40227 - Numerical question in lesson - decimal fractions problem
    MDL-66665 - Reopened assignment shown as graded by student themselves
    MDL-61215 - Badge and user profile picture using an svg file doesn't display
    MDL-66810 - Allow microphone and camera to be accessed from content iframe
    MDL-69079 - Activity chooser does not display if site contains plugins missing from disk
    MDL-68178 - Email-based self-registration confirmation email is not re-sent
    MDL-67831 - The Message reply box is not fixed
    MDL-66670 - list bullet points are cut off in some browsers
    MDL-69246 - Question manual grading: floating point issues can lead to valid grades being rejected
    MDL-65819 - Contact request email must respect the receiver's language
    MDL-68715 - Condition: "Completion of other courses" is set without the course creator intervention
    MDL-52052 - Import grades with an empty identifier causes bad upload but it doesn't show error message
    MDL-55340 - Export labels from feedback
    MDL-67671 - Backup step 2 show type options missing activity names
    MDL-67440 - \core\task\analytics_cleanup_task extremely slow on Postgres site.
    MDL-68210 - Unable to edit user overrides if assignment is not available to student
    MDL-66900 - "Alternate image" gets removed upon editing course category settings.
    MDL-66755 - After editing a forum post, a user is unsubscribed from the discussion
    MDL-66626 - Assignfeedback_editpdf sending infinite request when page ready is not equal to page number of combined pdf
    MDL-69297 - File-based Assignments shouldn't accept submissions without any files
    MDL-69168 - Recently Accessed Items block uses stock LTI icon even if it has been customized
    MDL-69215 - load_fontawesome_icon_map web service does not respect current theme
    MDL-69414 - 3.9 regression - "Drag and drop onto image" flips in RTL lang.
    MDL-69336 - Collapsing columns in dynamic tables no longer functions
    MDL-55299 - Single and double quotes encoded in HTML characters in downloaded files
    MDL-68618 - Forum idnumber update not working
    MDL-68558 - Admin can get stuck on the Plugin dependencies check failure page
    MDL-68444 - Calendar accessibility followups
    MDL-69401 - Book's chapter title not showing max length limit
    MDL-69358 - The 'backup_cleanup_task' task deletes records related to incompleted adhoc tasks
    MDL-69375 - LTI Names and Roles Provisioning Service generates Link headers with incorrect format
    MDL-66818 - Portfolio "export whole discussion" button should not be visible if the user has inadequate permissions
    MDL-66707 - Forum too eager to mark messages as read (threaded view)
    MDL-69296 - Pressing cancel on a resource activity settings page may result in a file download
    MDL-69241 - Participants page pagination doesn't reset when applying filters
    MDL-69199 - Complete user report incorrectly shows last modified time of quiz attempts, not time submitted
    MDL-69112 - Underscore in folder name breaks assign feedback multi-upload
    MDL-69089 - Content bank allows empty names
    MDL-69069 - Insufficient colour contrast for in-place editable and drag and drop upload status
    MDL-69054 - Edit button for badge backpack not displayed when version is OBv1.0
    MDL-68964 - Swapping theme in chat window causing notice error
    MDL-68889 - Recently accessed courses not functioning on small view ports
    MDL-68731 - Forum digest processing does not mark posts as read
    MDL-68706 - Course Custom field text area cant be emptied
    MDL-42434 - Chat activity needs user help
    MDL-69448 - Course Copy in 3.9 and 3.9.1 not working for teacher with extended permissions
    MDL-69204 - User A can see the privacy and policies + data retention summary link on user B's profile page
    MDL-69645 - Preferences window can be opened on Safe Exam Browser Mac clients during quizzes using manual configuration

Accessibility improvements

    MDL-69394 - Insufficient colour contrast for calendar event colour indicators
    MDL-68344 - File Picker: focus lost on upload
    MDL-69391 - Some dropdown menus have insufficient colour contrast between text and background
    MDL-69389 - Insufficient colour contrast between link text and normal text
    MDL-69387 - Completion checkbox images don't have sufficient colour contrast
    MDL-69214 - Error reading database on Participants page if site:accessallgroups is set to prohibit
    MDL-69115 - Course and category management page accessibility followups
    MDL-69114 - Insufficient colour contrast for .*-info classes
    MDL-69111 - Forum grading panel cannot be used when zoomed to 400%

For developers

    MDL-69068 - Allow behat generators to be pivoted

Security fixes

    MSA-20-0011 Stored XSS via moodlenetprofile parameter in user profile
    MSA-20-0012 Reflected XSS in tag manager
    MSA-20-0013 "Log in as" capability in a course context may lead to some privilege escalation
    MSA-20-0014 Denial of service risk in file picker unzip functionality
    MSA-20-0015 Chapter name in book not always escaped with forceclean enabled

3.9.1
General fixes and improvements

    MDL-60827 - OAuth 2 still expecting email verification after "Require email verification" has been disabled
    MDL-68436 - Atto RecordRTC (record audio/video) plugin only works in the first editor on a page
    MDL-69049 - Moodle 3.9 upgrade fails due to missing column in privacy plugins if standalone GDPR plugins were used
    MDL-69106 - convert_submissions task with asynchronous document conversion cannot be completed by cron
    MDL-69109 - Theme icons are lost after web upgrade in 3.9 or theme change in other versions
    MDL-68992 - Update minimal age of digital consent according to current legislation
    MDL-68215 - Make the Activity results block styling consistent with other blocks
    MDL-69110 - Sorting does not work anymore in non-dynamic tables
    MDL-66899 - Regrading quiz attempts should be logged
    MDL-69077 - The capabilities moodle/question:tag* are not visible in the "Check permissions" page in the activity context
    MDL-69021 - Alert links hard to distinguish
    MDL-69099 - Some scheduled tasks are incorrectly labelled as "Disabled"
    MDL-67294 - Choosing bulk removal of empty submissions causes an error
    MDL-69031 - Missing Moodle app disable features settings for 3.9

Accessibility improvements

    MDL-69008 - Accessibility issues in the pagination bar template

Security improvements

    MDL-69047 - Content bank status message should be hard coded

Security fixes

    MSA-20-0008 Reflected XSS in admin task logs filter
    MSA-20-0009 Course enrolments allowed privilege escalation from teacher role into manager role
    MSA-20-0010 yui_combo should mitigate denial of service risk

3.9
Please visit: https://docs.moodle.org/dev/Moodle_3.9_release_notes#

(wen)

2020-09-04 01:11:03 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Strict to 0.52

(wen)

2020-09-04 01:09:46 UTC MAIN commitmail json YAML

Update to 0.52
Change the DEPENDS to BUILD_DEPENDS since it is only for test.

Upstream changes:
0.52  2019-06-16 10:10:00 MANWAR
      - Applied patch provided by Matthew (Issue #25).

0.51  2019-06-15 06:30:00 MANWAR
      - Now ignores .git folder (Issue #26).

0.50  2019-06-14 15:30:00 MANWAR
      - Added Test::Roo::Role to the list (Issue #29).

0.49  2019-06-13 12:20:00 MANWAR
      - Fixed CPANTS issue (main_module_version_matches_dist_version).

0.48  2019-05-29 11:00:00 MANWAR
      - Added Test::Most to modules with strictures, #27 @robrwo

(wen)

2020-08-16 03:02:24 UTC MAIN commitmail json YAML

Updated devel/p5-Hash-Merge to 0.302

(wen)

2020-08-16 03:01:21 UTC MAIN commitmail json YAML

Update to 0.302

Upstream changes:
0.302  2020-07-30
    - Prevent object-based test from failing randomly on BSDs and MacOS

0.301  2020-06-18
    - fix object-based interface memory leak (RT#132627) (Thanks to mithaldu)

(wen)

2020-08-16 02:50:09 UTC MAIN commitmail json YAML

Updated devel/p5-File-Util to 4.201720

(wen)

2020-08-16 02:48:39 UTC MAIN commitmail json YAML

Update to 4.201720

Upstream changes:
4.201720 2020-06-19
  - Bugfix for issue where @INC was being disrupted, detailed at
    https://rt.cpan.org/Ticket/Display.html?id=132060

    Sorry for the delay in fixing it - coronavirus happened to the world :(
    Good luck everyone and please stay safe.

(wen)

2020-08-16 02:38:53 UTC MAIN commitmail json YAML

Updated devel/p5-File-Slurp to 9999.32

(wen)

2020-08-16 02:37:36 UTC MAIN commitmail json YAML

Update to 9999.32

Upstream changes:
9999.32    2020-06-30
    - Re-release after fixing MANIFEST

9999.31    2020-06-28
    - Remove TravisCI and AppVeyor
    - Test using GitHub Actions/workflows on Windows, Mac, and Linux
    - Add See Also section to the docs. (PR#24 Thanks, Dan Book)
    - Add file existence and size checks (RT 132900 - Thanks, Bao Haojun)

(wen)

2020-08-16 01:37:28 UTC MAIN commitmail json YAML

Updated devel/p5-File-Flat to 1.06

(wen)

2020-08-16 01:35:56 UTC MAIN commitmail json YAML

Update to 1.06

Upstream changes:
1.06      2020-07-31 16:05:45Z
        - add a $VERSION to the internal File::Flat::Object package

(wen)

2020-08-16 01:17:37 UTC MAIN commitmail json YAML

Updated devel/p5-FFI-CheckLib to 0.27

(wen)

2020-08-16 01:16:34 UTC MAIN commitmail json YAML

Update to 0.27

Upstream changes:
0.27      2020-05-11 14:24:08 -0400
  - Added a FAQ section to the documentation (gh#22)

(wen)

2020-08-16 01:02:55 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-PPPort to 3.60

(wen)

2020-08-16 01:01:11 UTC MAIN commitmail json YAML

Update to 3.60

Upstream changes:
3.60 - 2020-08-11
* Restore PERL_BCDVERSION helper which is used on CPAN
* A few API elements were not properly found, like IVTYPE

3.59 - 2020-08-10

* Add PERL_VERSION_* compare macros
* Rename PERL_BCDVERSION to internal name to discourage future use
* Stop versioning generated test files
* Enforce strict & warnings
* Avoid indirect calls
* scanprov: multiple improvements
* Use ivers() in tests
* Update POD documentation and HACKERS file
* Change ppport.h --api-info to not output non-API info unless that is the
  only match
* Find more elements to be listed in the --api-info option (and similar) to
  ppport.h

(wen)

2020-08-16 00:54:23 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-Gladiator to 0.08

(wen)

2020-08-16 00:52:53 UTC MAIN commitmail json YAML

Update to 0.08

Upstream changes:
0.08    2020-06-11 17:42:46Z
        - fix sample code snippet for spotting new arena entries (mohawk)

(wen)

2020-08-16 00:35:42 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-Cover to 1.36

(wen)

2020-08-16 00:34:03 UTC MAIN commitmail json YAML

Update to 1.36

Upstream changes:
1.36 - 19 May 2020
- Fix pod error
- Quieten perltidy syntax highlighting errors
- Fix up minimum perl version (Dick Franks) (GH-268)
- Fix passing full path for cover DB (GH-267)

1.35 - 17 May 2020
- Replace "use vars" with "our" (James Raspass) (GH-255)
- Remove tray db file from release
- Don't chdir when given a -dir flag (Dave Rolsky) (GH-253)
- Manage code references in @INC (Slaven Rezić) (GH-249, GH-250)

1.34 - 16 May 2020
- Minimum supported version is now 5.10.0 (Karen Etheridge) (GH-226)
- Support 5.32 by accomodating signauture changes (GH-260)

(wen)

2020-08-16 00:20:46 UTC MAIN commitmail json YAML

Updated devel/p5-Date-Manip to 6.82

(wen)

2020-08-16 00:19:45 UTC MAIN commitmail json YAML

Update to 6.82

Upstream changes:
6.82  2020-06-01
  -  Time zone fixes
        Newest zoneinfo data (tzdata 2020a).

(wen)

2020-08-16 00:15:41 UTC MAIN commitmail json YAML

Updated www/p5-HTTP-Daemon to 6.12

(wen)

2020-08-16 00:14:08 UTC MAIN commitmail json YAML

Update to 6.12

Upstream changes:
6.12      2020-06-04 16:01:31Z
  - No changes since TRIAL release 6.11

6.11      2020-06-03 14:47:21Z (TRIAL RELEASE)
  - An IPv6 zone separator must be URI-quoted (GH#47) (Petr Pisar and Olaf
    Alders)

6.10      2020-05-26 16:20:36Z
  - No changes since TRIAL release 6.09

6.09      2020-05-25 16:52:14Z (TRIAL RELEASE)
  - Require IO::Socket::IP 0.25 so that HTTP::Tiny uses it (GH#45) (Shoichi Kaji)

6.08      2020-05-22 15:26:00Z (TRIAL RELEASE)
  - In t/chunked.t, leave choosing IP address family to IO::Socket::IP (GH#42) (Shoichi Kaji)
  - Add "IPv6 SUPPORT" section to pod (GH#43) (Shoichi Kaji)
  - Use HTTP::Tiny 0.042+ for IPv6 support (GH#41) (Shoichi Kaji)

6.07      2020-05-19 19:19:53Z (TRIAL RELEASE)
  - Prefer IP address for host in $d->url (GH#40) (Shoichi Kaji)
  - Improve documentation readability (GH#36) (Ferenc Erki)

(wen)

2020-08-15 08:03:35 UTC MAIN commitmail json YAML

Updated www/p5-Test-LWP-UserAgent to 0.034

(wen)

2020-08-15 08:02:27 UTC MAIN commitmail json YAML

Update to 0.034

Upstream changes:
Changes for version 0.034 - 2020-03-06

    fix t/10-request-args-network.t under EXTENDED_TESTING=1 where the test URL was returning random content for each request and therefore failing a comparison check

(wen)

2020-08-15 07:59:01 UTC MAIN commitmail json YAML

Updated www/p5-WWW-Mechanize-Cached to 1.54

(wen)

2020-08-15 07:53:54 UTC MAIN commitmail json YAML

Update to 1.54

Upstream changes:
1.54      2020-08-10 22:37:25Z
    - Don't poke at HTTP::Header internals (GH#24) (Olaf Alders)

1.53      2020-02-24 21:07:31Z
    - Remove warnings on new() (GH#15) (Jonathan Rubin, simbabque)
    - Remove new warnings (GH#22) (Julien Fiegehenn)
    - Add Test::Warn to develop requirements (GH#21) (Olaf Alders)
    - Remove Find::Lib and Path::Class from deps (GH#19) (Olaf Alders)

(wen)

2020-08-15 07:10:46 UTC MAIN commitmail json YAML

Updated www/p5-WWW-Mechanize-Shell to 0.59

(wen)

2020-08-15 07:06:45 UTC MAIN commitmail json YAML

Update to 0.59

Upstream changes:
Changes for version 0.59 - 2020-05-04

    HTML::Form::find_input() has a 1-based index Reported by the CPAN testers, thanks!

(wen)

2020-08-15 06:41:51 UTC MAIN commitmail json YAML

Updated www/p5-WWW-Mechanize to 2.00

(wen)

2020-08-15 06:39:07 UTC MAIN commitmail json YAML

Update to 2.00
Update DEPENDS

Upstream changes:
2.00      2020-06-09 19:09:53Z
    - Require LWP::UserAgent 6.45 (GH#302) (Shoichi Kaji)

1.99      2020-06-08 15:35:04Z
    - Bump HTTP::Daemon test dependency to 6.12 (GH#300) (Olaf Alders)

1.98      2020-05-25 17:06:47Z (TRIAL RELEASE)
    - Don't make assumptions about port 80 in test (GH#299) (Olaf Alders)

1.97      2020-05-14 00:46:53Z
    - Respect CDATA[[ sections when parsing HTML (GH#298) (Max Maischein)
    - extract image links also from css (GH#12) (Jozef Kutej) and (GH#297)
      (Julien Fiegehenn)
    - s/parm/param/ in documentation (GH#295) (Olaf Alders)

1.96      2020-02-21 02:23:40Z [FIXED]
    - HTML::Form::find_input() has a 1-based index (GH#293) (Olaf Alders)
    - Fix invocation of dump_forms in mech-dump (GH#288) (積丹尼 Dan Jacobson)
    - make xt/author/eol.t pass (GH#291) (Shoichi Kaji)
    [DOCUMENTATION]
    - Fix documentation of use of undef in form_with() and all_forms_with()
      (GH#289) (積丹尼 Dan Jacobson)

(wen)

2020-08-14 22:40:33 UTC MAIN commitmail json YAML

Updated www/p5-libwww to 6.46

(wen)

2020-08-14 22:39:27 UTC MAIN commitmail json YAML

Update to 6.46

Upstream changes:
6.46      2020-06-23 21:19:26Z
    - Fix a looping regression in 6.45 for redirect responses without
      a Location header (GH PR#342, Niko Tyni)

6.45      2020-06-08 14:51:28Z
    - Fix Client-Warning: Internal response sometimes reset (GH#341) (Jonathan
      Dahan and Julien Fiegehenn)

6.44      2020-04-14 19:37:45Z
    - Support basic authentication charset per RFC 7617 (GH#339) (Ville Skytt)
    - Fixed POD mistake. (GH PR#338. Sebastian Paaske T淡rholm)

(wen)

2020-07-23 13:56:16 UTC MAIN commitmail json YAML

Update to 1.4.2

Upstream changes:
Changes in version 1.4-1 (2020-xx-yy)

    warn on NULL projargs in CRS(); https://github.com/edzer/sp/pull/74

Changes in version 1.4-0 (2020-02-21)

    prepare for new (>= 1.5.1) rgdal, which creates and listens to a comments() field of a CRS object carrying a WKT representation of a CRS rather than the proj4string; @rsb, https://github.com/edzer/sp/pull/67 and https://github.com/edzer/sp/pull/69 ; for more info see e.g. https://github.com/edzer/sp/issues/68 and https://github.com/r-spatial/discuss/issues/28

Changes in version 1.3-2 (2019-11-07)

    fix length > 1 in coercion to logical error; #54, #60

    add is.na method for CRS objects

(wen)

2020-07-23 12:06:45 UTC MAIN commitmail json YAML

Updated databases/p5-Data-Table to 1.78

(wen)

2020-07-23 12:05:38 UTC MAIN commitmail json YAML

Update to 1.78

Upstream changes:
Changes for version 1.78

    Patch fromSQL to allow pre-executed handle Patch provided by Jeff Janes

(wen)

2020-07-23 11:47:22 UTC MAIN commitmail json YAML

Updated databases/p5-CDB_File to 1.02

(wen)

2020-07-23 11:45:58 UTC MAIN commitmail json YAML

Update to 1.02

Upstream changes:
1.02 - Todd Rinaldo <toddr@cpan.org> 2020-01-29
    - Invoke new as a class method in docs and practice.
    - Add support for COW PVs when returning key values. This will hopefully
      deduplicate returned strings where possible.
    - Adjust tests to skip exists tests on 5.8.1, not 5.6.2
    - Optimize cdb_hashadd as a inline macro
    - Croak if atomic re-write from the temp to the final file fails.

1.01 - Todd Rinaldo <toddr@cpan.org> 2020-01-27
    - Fix MANIFEST so Changelog is shpped.
    - Address file descriptor leak in CDB_File.

1.00 - Todd Rinaldo <toddr@cpan.org> 2020-01-19
    - Enable github actions for automated testing
    - Switch to github issues.

(wen)

2020-07-23 11:34:23 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Warnings to 0.030

(wen)

2020-07-23 11:33:25 UTC MAIN commitmail json YAML

Update to 0.030

Upstream changes:
0.030    2020-03-21 16:56:30Z
          - fix tests that can fail when there is already an installed module
            named Foo::Bar::Baz (RT#132140)

0.029    2020-03-14 05:27:59Z
          - new :report_warnings feature, for printing all of the (unexpected)
            warning content when had_no_warnings() is called (Tina Mueller, PR#10)

(wen)

2020-07-23 11:19:37 UTC MAIN commitmail json YAML

Updated mail/p5-Mail-AuthenticationResults to 1.20200331.1

(wen)

2020-07-23 11:18:29 UTC MAIN commitmail json YAML

Update to 1.20200331.1

Upstream changes:
1.20200331.1 2020-03-31 03:31:13+00:00 UTC
        - Treat an undefined value as emptystring in search

(wen)

2020-07-23 11:15:26 UTC MAIN commitmail json YAML

Updated mail/p5-Mail-Transport to 3.005

(wen)

2020-07-23 11:14:41 UTC MAIN commitmail json YAML

Update to 3.005

Upstream changes:
version 3.005: Wed 22 Jul 10:40:05 CEST 2020

        Improvements:
        - warn to use ::SMTP, not ::SendMail on bulk messages.
        - much lower elapse time on ::SMTP (local?) delivery.

version 3.004: Fri  3 May 09:29:07 CEST 2019

        Improvements:
        - add imap/imap4

(wen)

2020-07-23 11:05:41 UTC MAIN commitmail json YAML

Updated textproc/p5-PPIx-QuoteLike to 0.011

(wen)

2020-07-23 11:02:12 UTC MAIN commitmail json YAML

Update to 0.011

Upstream changes:
0.011          2020-03-31      T. R. Wyant
    Normalize interpolation before feeding to PPI. This produces a
    more-easily-analyzed PPI parse.

    The ->variables() method is now discouraged. It was written to support
    Perl::Critic::Policy::Variables::ProhibitUnusedVarsStricter, but turned
    out to be inadequate for the job.

    Deprecate new() argument postderef. At this stage it is only
    documented as deprecated. In the first release after October 1 2020
    it will warn on the first use. Eventually it will be retracted, and
    postfix dereferences will always be recognized. This is the default
    behavior now.

    Correct bracket matchers to accept multiple lines. This was, in some
    cases, causing interpolations to be misclassified as unknown tokens.

0.010          2020-03-09      T. R. Wyant
    Remove redundant and poorly-performing code introduced in version
    0.009.

0.009          2020-02-27      T. R. Wyant
    Add new() argument index_locations which causes locations to be
    indexed during the parse. This defaults based on whether a location
    argument was provided, and whether the string being parsed is a
    PPI::Element.

    Add method statement(), which returns the PPI statement containing
    the string element, or nothing if none.

    Add PPI::Element location methods, to wit: location(),
    column_number(), line_number(), logical_filename(),
    logical_line_number(), and visual_column_number().

    Add PPIx::QuoteLike::Utils::is_ppi_quotelike_element() which returns
    true if the argument is a PPI::Element of interest to us.

    All objects now have a variables() method inherited from
    PPIx::QuoteLike::Token. This method returns nothing unless
    overridden. It was added to eliminate $elem->can( 'variables' )
    ad-hocery.

    Eliminate redirections in POD URL links

0.008          2019-08-16      T. R. Wyant
    Fix broken POD links, and add test to ensure they stay fixed.

(wen)

2020-07-23 09:33:45 UTC MAIN commitmail json YAML

Updated www/p5-Plack-Middleware-RemoveRedundantBody to 0.09

(wen)

2020-07-23 09:32:37 UTC MAIN commitmail json YAML

Update to 0.09

Upstream changes:
0.09      2019-07-15 20:06:43+02:00 Europe/Amsterdam
    [Documentation]
    - Added dates to Changes (Robert Rothenberg)
    - Reformatted Changes to conform to contemporary specs.

    [Toolchain]
    - Update Changes through Dist::Zilla.

0.08      2019-07-14
    - Fixed response for 304 HTTP status code
    - Some tests for the 304 HTTP status code
    - Fixed versions

(wen)

2020-07-23 09:29:04 UTC MAIN commitmail json YAML

Updated devel/p5-Perl-PrereqScanner-NotQuiteLite to 0.9911

(wen)

2020-07-23 09:26:32 UTC MAIN commitmail json YAML

Update to 0.9911

Upstream changes:
0.9911 2020/05/10
  - Remove cached cpanmeta if prereqs are replaced

0.9910 2020/05/10
  - changed ::App->run to return processed cpanfile object if cpanfile option is set
  - changed ::App->run not to print unless print option is set

(wen)

2020-07-05 02:11:42 UTC MAIN commitmail json YAML

Updated www/p5-Dancer2 to 0.300004

(wen)

2020-07-05 02:10:28 UTC MAIN commitmail json YAML

Update to 0.300004

Upstream changes:
0.300004  2020-05-26 20:52:34-04:00 America/New_York

    [ BUG FIXES ]
    * GH #1509: Request instantiation fails throw 400 Bad Response (Russell
      @veryrusty Jenkins). This resolves GH #1056, 1482, 1496, 1507, 1508,
      and 1510.

    [ ENHANCEMENTS ]
    * GH #1510: Test for proper multi-part form handing (ice-lenor, Sawyer X)
    * GH #1547: Cookie SameSite support (Russell @veryrusty Jenkins)

    [ DOCUMENTATION ]
    * None

(wen)

2020-06-06 14:32:50 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-PatchPerl to 2.00

(wen)

2020-06-06 14:04:50 UTC MAIN commitmail json YAML

Update to 2.00

Upstream changes:
version 2.00 at 2020-06-04 10:20:07 +0000
-----------------------------------------

  Change: 0ab4bf0d8b02af79e1afed7fac9e91b75f1c1fda
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2020-06-04 11:20:07 +0000

    Resolve patching issues with v5.22.x and v5.24.x

    https://github.com/bingos/devel-patchperl/issues/44

    Configure changes had been backported to the v5.22 and v5.24 maint
    releases, so what worked for .0 releases didn't work for later maint
    releases.

    I have adjusted and tested the patch application criteria for all
    v5.22.x and v5.24.x releases.

-----------------------------------------
version 1.98 at 2020-05-25 18:17:30 +0000
-----------------------------------------

  Change: 25ccc65e1b2bd688983ced340c23561888456921
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2020-05-25 19:17:30 +0000

    Added command line switches to patchperl

    --version prints version of Devel::PatchPerl and exits

    --patchlevel will update patchlevel.h even in a git repository

    One may also set the PERL5_PATCHPERL_PATCHLEVEL env var to have the
    same effect as --patchlevel

-----------------------------------------
version 1.96 at 2020-05-25 11:21:50 +0000
-----------------------------------------

  Change: 15cdb6b32538d3cefc779735413f0fe8522aa27b
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2020-05-25 12:21:50 +0000

    Resolve reported issue with 1.94 release

    https://github.com/bingos/devel-patchperl/issues/42

    Will successfully patch all the way back to v5.6.0

-----------------------------------------
version 1.94 at 2020-05-24 12:52:39 +0000
-----------------------------------------

  Change: 14c825fc079cb8f0d626b6b9769d048db9771bc0
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2020-05-24 13:52:39 +0000

    Added Configure patch for GCC10

    https://github.com/perl/perl5/commit/9f4e6307232229875331a55e44e1245b
    0b91e219

    Fedora 32 now ships with GCC 10 as the system compiler

(wen)

2020-05-26 02:04:04 UTC MAIN commitmail json YAML

Updated fonts/p5-Font-FreeType to 0.16

(wen)

2020-05-26 01:46:04 UTC MAIN commitmail json YAML

Update to 0.16

Upstream changes:
0.16 2020-05-12 dmol@cpan.org
- fix cpan-testers failures
- fix C++ usages instead of C

0.15 2020-05-11 dmol@cpan.org
- fix tests for RT#132543

0.14 2020-05-11 htl10@users.sourceforge.net
- update glyph->load method()

(wen)

2020-05-17 09:20:28 UTC MAIN commitmail json YAML

Updated databases/p5-DBI to 1.643

(wen)

2020-05-17 09:12:01 UTC MAIN commitmail json YAML

Update to 1.643

Upstream changes:
Changes in DBI 1.643 - ...

Fix memory corruption in XS functions when Perl stack is reallocated
    thanks to Pali
Fix calling dbd_db_do6 API function
    thanks to Pali
Fix potentially calling newSV(0) in malloc_using_sv()
    thanks to Pali
Fix order of XS preparse() ps_accept and ps_return argument names
    thanks to Petr Písař
Fix a potential NULL profile dereference in dbi_profile()
    thanks to Petr Písař
Fix a buffer overflow on an overlong DBD class name
    thanks to Petr Písař

Remove remnants of support for perl <= v5.8.0
    thanks to Pali and H.Merijn Brand
Update Devel::PPPort and remove redundant compatibility macros
    thanks to Pali and H.Merijn Brand

Correct minor typo in documentation
    thanks to Mohammad Anwar
Correct documentation introducing $dbh->selectall_array()
    thanks to Pali
Introduce select and do wrappers earlier in the documentation
    thanks to Dan Book
Mark as deprecated old API functions which overflow or are affected by
    Unicode issues, thanks to Pali

Add new attribute RaiseWarn, similar to RaiseError,
    thanks to Pali

(wen)

2020-05-09 08:59:14 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-Compile-SOAP to 3.26

(wen)

2020-05-09 08:58:16 UTC MAIN commitmail json YAML

Update to 3.26
Update DEPENDS

Upstream changes:
version 3.26: Wed 20 Nov 08:43:52 CET 2019

        Fixes:
        - procedure detection cannot handle empty response messages
          anymore.  Got broken in 3.23.
          github XML-Compile-SOAP-Daemon#2 [Daniel Juarez]
        - soap implementations do not have a mimeType method anymore
          github XML-Compile-SOAP-Daemon#2 [Daniel Juarez]

        Improvements:
        - warning on producing templates for operations without message
          [Patrick Powell]

version 3.25: Wed 25 Sep 13:16:53 CEST 2019

        Improvements:
        - handle wsdl:arrayType
        - #1 File::Slurp::Tiny is discouraged in favor of File::Slurper
          [James Raspass]
        - remove dependency to Test::Deep again. rt.cpan.org#130096 [Kent Fredric]

(wen)

2020-05-09 08:41:59 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-Compile to 1.63

(wen)

2020-05-09 08:39:57 UTC MAIN commitmail json YAML

Update to 1.63

Upstream changes:
version 1.63: Tue 02 Jul 2019 04:35:01 PM CEST

        Improvements:
        - dataToXML auto-detects XML string when it starts with a BOM.

version 1.62: Wed 15 May 15:14:28 CEST 2019

        Fixes:
        - empty list elements are not an error [Rob De Langhe]
        - facet date_whiteSpace [Ferruccio Zamuner]

(wen)

2020-05-09 08:25:56 UTC MAIN commitmail json YAML

Updated www/p5-HTTP-Message to 6.22

(wen)

2020-05-09 08:25:03 UTC MAIN commitmail json YAML

Update to 6.22

Upstream changes:
6.22      2020-02-24 18:58:07Z
    - Full release.  No changes since TRIAL release 6.21

6.21      2020-02-19 14:35:09Z (TRIAL RELEASE)
    - Bump Encode to latest version (3.01) (GH#129) (Olaf Alders)
    - Revert #115 (GH#131) (Olaf Alders)
    - Revert (GH#125) "try hard to make a usable file name" (GH#130) (Olaf
      Alders)
    - Fix JSON request encoding examples in POD (GH#126) (Michael Schout)

6.20      2019-02-05 01:46:39Z (TRIAL RELEASE)
    - Fix encoded file names when LC_ALL=C (GH#125) (Lars Dɪᴇᴄᴋᴏᴡ 迪拉斯)

6.19      2019-01-16 15:17:35Z (TRIAL RELEASE)
    - Add support for RFC 8187 encoded filenames (GH#115) (Zaki Mughal)
    - Fix memoized _uri_canonical #121 (GH#123) (Dorian Taylor)
    - Don't overwrite $@ in decodable (gh #80) (GH#118) (mschae94)
    - Add support for RFC 8187 encoded filenames (GH#115) (Zaki Mughal)

(wen)

2020-05-09 08:20:15 UTC MAIN commitmail json YAML

Updated www/p5-HTTP-Cookies to 6.08

(wen)

2020-05-09 08:19:06 UTC MAIN commitmail json YAML

Update to 6.08

Upstream changes:
6.08      2019-12-02 15:58:32Z
    - allow different "ignore_discard" value at save() time (GH#2) (Alex Peters)

(wen)

2020-05-09 07:58:51 UTC MAIN commitmail json YAML

Updated www/p5-Catalyst-Devel to 1.40

(wen)

2020-05-09 07:57:57 UTC MAIN commitmail json YAML

Update to 1.40

Upstream changes:
1.40 2020-02-27 17:00:00
        - Note: There may be some additional fixes not listed below.  Its been
          a while since this has been released and I noted several commits in
          git.  Did my best to list but apologies if I missed your patch.
        - Use absolute path for do $file in t/generated_app.t
        - Add . to @INC in Makefile.PL
        - Catalyst::Restarter::Forking: clear watcher in child process
        - Typo fixes. RT#87103
        - Catalyst::Restarter::Forking: clear watcher in child process.
          RT#119830

(wen)

2020-05-09 07:55:27 UTC MAIN commitmail json YAML

Updated www/p5-HTTP-CookieMonster to 0.11

(wen)

2020-05-09 06:37:49 UTC MAIN commitmail json YAML

Update to 0.11

Upstream changes:
0.11      2020-01-31 17:32:56Z
    - Remove Storable dependency (GH#10)
    - Move WWW::Mechanize to develop dependencies

0.10      2020-01-30 18:20:52Z
    - Remove Data::Serializer (GH#5) (Olaf Alders)
    - Fixed pod error as reported by CPANTS. (GH#3) (Mohammad S Anwar)
    - Minor improvement to method set_cookie() with test. (GH#2) (Mohammad S Anwar)

(wen)

2020-05-09 03:08:21 UTC MAIN commitmail json YAML

Updated www/p5-HTML-Form to 6.07

(wen)

2020-05-09 03:07:14 UTC MAIN commitmail json YAML

Update to 6.07

Upstream changes:
6.07      2020-02-21 03:50:52Z
    - Restore =head1 NAME section to pod for HTML::Form

6.06      2020-02-20 14:48:37Z
    - Change the behaviour of find_input in list context (GH#21) (E. Choroba)
    - Pod tweaks (GH#17) (Olaf Alders)
    - Add list context examples for find_input() (GH#20) (Olaf Alders)
    - Modernize some tests (GH#18) (Olaf Alders)

(wen)

2020-05-09 03:01:07 UTC MAIN commitmail json YAML

Updated www/p5-FCGI to 0.79

(wen)

2020-05-09 03:00:15 UTC MAIN commitmail json YAML

Update to 0.79

Upstream changes:
Version 0.79 --  2019-12-14
  - Check socket path length in OS_CreateLocalIpcFd() and OS_FcgiConnect()
  to avoid buffer overrun (Petr Písař, pull request #5)
  - Fix a memory leak in ProcessManagementRecord() (Petr Písař, pull request #4)

(wen)

2020-05-09 02:53:40 UTC MAIN commitmail json YAML

Updated www/mediawiki to 1.34.1

(wen)

2020-05-09 02:52:41 UTC MAIN commitmail json YAML

2020-05-09 02:30:24 UTC MAIN commitmail json YAML

Updated www/moodle to 3.8.2

(wen)

2020-05-09 02:29:13 UTC MAIN commitmail json YAML

Update to 3.8.2

Upstream changes:
Moodle 3.8.2 release notes
Releases > Moodle 3.8.2 release notes

Release date: 9 March 2020

Here is the full list of fixed issues in 3.8.2.

CONTENTS
1 General fixes and improvements
2 Accessibility improvements
3 Security fixes and improvements
3.1 Security fixes
4 See also
General fixes and improvements
MDL-67175 - Chrome 80 support
MDL-57755 - Notifications automatically marked as read when messaging deactivated
MDL-67132 - LTI Adv grades do not roll up in course total
MDL-67414 - PostgreSQL 12.x support
MDL-67894 - Database error when sorting responses by "Groups"
MDL-67204 - Assignment calendar events with "alwaysshowdescription" get updated on every task run because of not updated "lastcron" field
MDL-65952 - mod_scorm automatically checks "passed" and "completed" completion options
MDL-67690 - Course Overview doesn't remember Starred filter state
MDL-63316 - Give back the default sort behaviour (lastname) in the participant table
MDL-49103 - Badge baking uses tEXt instead of iTXt
MDL-64531 - Delete quiz JSON error if question category deleted
MDL-67532 - Create Badge Page -- language defaults to 'Afar'
MDL-67817 - Update time zones listed in the language strings
MDL-67675 - Cannot cut and paste if H5P button is added to the Atto toolbar
MDL-60126 - Competency user data is not being erased when user gets deleted
MDL-67842 - Cannot remove the idnumber from a question
MDL-67674 - Performance: Course category tree cache can get built in parallel
MDL-66024 - tool_uploadcourse: fullname/shortname fields don't get length checked while uploading
MDL-51225 - Q&A forum recent activity reveals posts
MDL-67486 - Minimize how long we hold the global cron lock for
MDL-67721 - No 'View grade' button for single simple discussion forum
MDL-65884 - "Activity names auto-linking" filter and activity name like "-" (hyphen) breaks course content visualization
MDL-67471 - mark_notification_read fails if messaging disabled
MDL-66721 - Add an activity or resource menu "add" button appears below the fold
MDL-67364 - TinyMCE editor font sizes are too small in Classic theme (and other child themes)
MDL-67891 - Uninstalling Cohort roles tool can break site upgrade
MDL-67511 - Toast wrapper can interfere with Forum grading buttons
MDL-63424 - Required field indicator missing from Assign submission page
MDL-66875 - Calendar - Navigating months - URL doesn't work
MDL-66858 - <header> HTML5 tag is filtered out by Atto editor
MDL-66220 - Q&A forum allows students to reply to posts they cannot see
MDL-67830 - Error being logged when navigating from gradebook to quiz
MDL-67746 - Cleanup of task logs fails with big number of records to be deleted
MDL-66897 - 'The grades were not saved...' should not be displayed as a success message
MDL-67142 - Long quiz names break deletion ad hoc task when questions are backed up
MDL-67312 - Events without subscriptions can lock users out of their sites
MDL-66108 - Error "You cannot make a category of one of its own subcategories."
MDL-67644 - Allow to disable identity providers via Moodle app feature settings
MDL-67806 - Allow to disable Dark Mode via Moodle app feature settings
MDL-67237 - Option to disable "H5P Offline" feature in the app
MDL-67980 - Sort ad-hoc tasks by "nextruntime"
MDL-65573 - Splitting a discussion creates discussion record with an incorrect first post author
MDL-67732 - Respect the capability for displaying the fullname
MDL-64686 - "Search courses" layout should look good on all screen sizes
MDL-67942 - Quiz: report delete_selected_attempts notice when a user has multiple enrolments
MDL-67424 - Errors showing for Forums in Complete Report for students
Accessibility improvements
MDL-67969 - Calendar: View event details: Accessibility issues
MDL-67899 - Emoji picker button does not have a description
MDL-67876 - Forms with client-side validation should always scroll to the invalid element when you try to submit
MDL-67865 - Broken ARIA reference in the user menu
MDL-67863 - Ensure keyboard focus order is efficient and logical
MDL-67862 - Empty h3 tag in message deletion dialogue
MDL-67684 - Cache data contained in nested ul
MDL-67577 - Accessibility: Wrong tabindex order in top navbar (message+notification)
MDL-61390 - Forum: Heading structure on Search results page
MDL-61389 - Forum: "Discuss this topic" accessibility
MDL-59817 - Atto Accessibility Checker not catching accessibility issues in Firefox
MDL-35971 - Forum discussion table has no summary
Security fixes and improvements
Security fixes
MSA-20-0002 Grade history report does not respect Separate groups mode in the course settings
MSA-20-0003 IP addresses can be spoofed using X-Forwarded-For
MSA-20-0004 Admin PHP unit webrunner tool requires additional input escaping

Moodle 3.8.1 release notes
Releases > Moodle 3.8.1 release notes

Release date: 13 January 2020

Here is the full list of fixed issues in 3.8.1.

Fixes and improvements
MDL-67327 - Switching "JavaScript Cache" on crashes first.js
MDL-48024 - Plugins should be able to provide data generators for Behat
MDL-65956 - A teacher trying to remove a submission without having the relevant capability encounters an error
MDL-67410 - Ajax call to enroll potential users is too slow
MDL-66581 - Password reset email doesn't fill in $a->link when auth_method is LDAP
MDL-67392 - Forum information about timed discussion doesn't handle correctly "displaystartdate" and "displayenddate" containing quotes
MDL-67285 - Filepicker does not work in the modal forms - unable to click on input texts
MDL-66503 - Scorm player is really narrow in new window on classic theme
MDL-66871 - Moodle calendar is not able to import .ics files with repeated events anymore
MDL-67042 - Block overview course filter displays hidden custom fields
MDL-65735 - Activity completion report - clicking initial should reset page number
MDL-67152 - Current day not displayed by default when using the calendar day view
MDL-67458 - Fatal error if cohort_role_sync task is run when an assigned role no longer exists
MDL-67359 - Relocate the Notifications area in the grader interface
MDL-67300 - Calendar: Inconsistent behaviour of managegroupentries capability
MDL-67277 - Discussion list shows subjects in bold
MDL-67154 - Quiz print version should not split questions over two pages
MDL-66708 - LTI 1.3 private key reset on each tool edit
MDL-64695 - tool_dataprivacy doesn't filter multilang tags within $SITE->fullname
MDL-67233 - Choices with only open dates in the future do not appear on timeline
MDL-67336 - Forum inline reply option is applying filters before saving content in the DB
MDL-67596 - Cron / adhoc task runners ramp up slowly for no reason
Security fixes
MSA-20-0001 Stored XSS in message conversation overview

(wen)

2020-05-08 12:37:27 UTC MAIN commitmail json YAML

Updated www/p5-Catalyst-Runtime to 5.90126

(wen)

2020-05-08 12:30:01 UTC MAIN commitmail json YAML

Update to 5.90126

Upstream changes:
5.90126 - 2020-01-19
  - fix for broken distribution

5.90125 - 2020-01-18
  - Support samesite flag for cookies (mitchjacksontech++)
  - utility method on Catalyst::Action 'equals'
  - new predicate methods 'has_request' and 'has_response'. Useful in
    plugins that might run bits before a request is finalized.

(wen)

2020-05-08 07:32:47 UTC MAIN commitmail json YAML

Updated www/p5-CGI-Compile to 0.24

(wen)

2020-05-08 07:31:54 UTC MAIN commitmail json YAML

Update to 0.24

Upstream changes:
0.24  2020-01-30 13:59:56 UTC
        - use better packages/subnames for coderefs
        - add all CONTRIBUTORS to POD
        - add test for working alarm signal in CGIs

0.23  2020-01-17 10:31:33 UTC
        - fix race condition in temp dir creation (jr-dimedis) #24

(wen)

2020-05-08 07:14:28 UTC MAIN commitmail json YAML

Updated www/p5-CGI to 0.47

(wen)

2020-05-08 07:12:39 UTC MAIN commitmail json YAML

Update to 0.47

Upstream changes:
4.47 2020-05-01

    [ FIX / TESTING ]
    - fix typo in variable name (GH #239)

4.46 2020-02-03

    [ DOCUMENTATION ]
    - Document support for SameSite=None cookies (GH #238)

4.45 2019-06-03

    [ ENHANCEMENT ]
    - Add support for SameSite=None cookies (GH #237, thanks to Dur09)

(wen)

2020-05-08 01:04:33 UTC MAIN commitmail json YAML

Updated www/p5-Dancer2 to 0.300003

(wen)

2020-05-08 01:02:38 UTC MAIN commitmail json YAML

Update to 0.300003
Add missing DEPENDS

Upstream changes:
0.300003  2020-04-09 10:39:55-04:00 America/New_York

    [ BUG FIXES ]
    * None

    [ ENHANCEMENTS ]
    * None

    [ DOCUMENTATION ]
    * GH #1543: Various tutorial cleanups (Peter Mottram - SysPete)

0.300002  2020-04-07 11:44:59-04:00 America/New_York

    [ BUG FIXES ]
    * GH #1541: Fix broken test that is skipped under CI (Peter Mottram -
      SysPete)

    [ ENHANCEMENTS ]
    * None

    [ DOCUMENTATION ]
    * None

0.300001  2020-04-06 12:14:47-04:00 America/New_York

    [ BUG FIXES ]
    * GH #1461: Relax redirect to match RFC_7231 (James Raspass)
    * GH #1499: Don't double decode date strings (simbabque)
    * GH #1536: Fix storing objects in YAML sessions (Tom Hukins)

    [ ENHANCEMENTS ]
    * GH #1540: Improve configuration handling (Tom Hukins)

    [ DOCUMENTATION ]
    * GH #1425: Revamped Tutorial (Steve Dondley)
    * GH #1521: Documentation on configuring the adress to listen on:
      "server" does not seem to work, but "host" does (Ma_Sys.ma)
    * GH #1530: Fix missing space in docs (ferki)
    * GH #1535: Fix example code in SessionFactory::File (Sergiy Borodych)
    * GH #1538: Defined or should not be an assignment (Timothy Alexis
      Vass)

(wen)

2020-05-07 14:22:49 UTC MAIN commitmail json YAML

Updated www/p5-Dancer to 1.3513

(wen)

2020-05-07 14:19:10 UTC MAIN commitmail json YAML

Update to 1.3513
Add p5-JSON as BUILD_DEPENDS for test

Upstream changes:
1.3513    2020-01-29 21:00:41+00:00 Europe/London

[BUG FIXES]
- Fix test failures since YAML.pm 1.30 (GH #1208)
- More test failures with proxy env var set (GH #1204)

(wen)

2020-05-07 07:43:12 UTC MAIN commitmail json YAML

Updated devel/p5-experimental to 0.022

(wen)

2020-05-07 07:37:44 UTC MAIN commitmail json YAML

Update to 0.022

Upstream changes:
0.022    2020-05-04 22:34:48+02:00 Europe/Amsterdam
          - Skip tests when needed, to allow installation on <5.10

(wen)

2020-01-08 13:57:16 UTC MAIN commitmail json YAML

Updated textproc/p5-Text-Xslate to 3.5.7

(wen)

2020-01-08 13:55:33 UTC MAIN commitmail json YAML

Update to 3.5.7

Upstream changes:
v3.5.7 2019-11-25T16:15:32Z
    - Fix a segfault on array join (zanyou #199, #200)

(wen)

2020-01-08 13:47:18 UTC MAIN commitmail json YAML

Updated www/p5-Dancer2 to 0.300000

(wen)

2020-01-08 13:38:34 UTC MAIN commitmail json YAML

Update to 0.300000

Upstream changes:
0.300000  2019-12-23 23:55:09-06:00 America/Chicago

    [ BUG FIXES ]
    * None

    [ ENHANCEMENTS ]
    * GH #1127, GH #1476: Route parameters with types (Peter Mottram -
      SysPete)

    [ DOCUMENTATION ]
    * None

0.208002  2019-12-14 16:08:46-05:00 America/New_York

    [ BUG FIXES ]
    * GH#1527: Update travis dist to 'trusty' (Sergiy Borodych)

    [ ENHANCEMENTS ]
    * GH #1525: Remove use of Return::MultiLevel, and implement stack frame
      jumping manually (Graham Knop)

    [ DOCUMENTATION ]
    * GH #1505: Fix Flaskr link (Mohammad S Anwar)
    * GH #1506, 1520: Explain what add_route() does with args (Tom Hukins)
    * GH #1519: Fix Template Toolkit config docs (Tom Hukins)
    * GH #1522: Fix itetare typo (Stefan Hornburg - Racke)
    * GH #1523: Fix typo in Template Toolkit documentation (Mike Katasonov)
    * GH #1524: Fix error in configuration documentation (Tom Hukins)
    * GH #1526: Mention that TT2 config start_tag/end_tag need escaping
      (Chris White)
    * GH #1528: Note that"Engines" key must be merged in config.yml (Chris
      White)

(wen)

2020-01-07 13:43:19 UTC MAIN commitmail json YAML

Updated devel/p5-Perl-Tidy to 20191203

(wen)

2020-01-07 13:35:06 UTC MAIN commitmail json YAML

Update to 20191203

Upstream changes:
2019 12 03

- Fixed issue RT#131115: -bli option not working correctly.
  Closing braces were not indented in some cases due to a glitch
  introduced in version 20181120.

- Fixed issue RT#130394: Allow short nested blocks.  Given the following

    $factorial = sub { reduce { $a * $b } 1 .. 11 };

  Previous versions would always break the sub block because it
  contains another block (the reduce block).  The fix keeps
  short one-line blocks such as this intact.

- Implement issue RT#130640: Allow different subroutine keywords.
  Added a flag --sub-alias-list=s or -sal=s, where s is a string with
  one or more aliases for 'sub', separated by spaces or commas.
  For example,

    perltidy -sal='method fun'

  will cause the perltidy to treat the words 'method' and 'fun' to be
  treated the same as if they were 'sub'.

- Added flag --space-prototype-paren=i, or -spp=i, to control spacing
  before the opening paren of a prototype, where i=0, 1, or 2:
  i=0 no space
  i=1 follow input [current and default]
  i=2 always space

  Previously, perltidy always followed the input.
  For example, given the following input

    sub usage();

  The result will be:
    sub usage();    # i=0 [no space]
    sub usage();    # i=1 [default; follows input]
    sub usage ();  # i=2 [space]

- Fixed issue git#16, minor vertical alignment issue.

- Fixed issue git#10, minor conflict of -wn and -ce

- Improved some vertical alignments involving two lines.

(wen)

2020-01-07 13:12:33 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Warnings to 0.028

(wen)

2020-01-07 13:10:20 UTC MAIN commitmail json YAML

Update to 0.028

Upstream changes:
0.028    2019-12-21 20:16:01Z
          - allow for calling warnings->import being called after importing
            the "warnings" sub

0.027    2019-09-28 03:54:47Z
          - new :fail_on_warning feature, for more easily seeing where the
            surprising warning appeared during testing

(wen)

2020-01-07 13:04:06 UTC MAIN commitmail json YAML

Updated devel/p5-Perl-PrereqScanner-NotQuiteLite to 0.9909

(wen)

2020-01-07 13:01:16 UTC MAIN commitmail json YAML

Update to 0.9909

Upstream changes:
0.9909 2019/11/30
  - allowed full package names for Plack Middleware (Graham TerMarsch++)

(wen)

2019-12-06 13:39:41 UTC MAIN commitmail json YAML

Updated devel/p5-Type-Tiny to 1.006000

(wen)

2019-12-06 13:38:54 UTC MAIN commitmail json YAML

Update to 1.006000
Update DEPENDS

Upstream changes:
1.006000        2019-11-12

[ Documentation ]
- Links to Type::Tiny on GitHub/Travis/AppVeyor/Coveralls in Type::Tiny
  pod.
- Minor correction to POD header for Type::Params
  Jonas B Nielsen++
  <https://github.com/tobyink/p5-type-tiny/pull/43>
- Types::Standard documentation fix.
  Lucas Buchala++
  <https://github.com/tobyink/p5-type-tiny/pull/48>

[ Test Suite ]
- Improve test coverage.

[ Packaging ]
- Bump minimum required version of Exporter::Tiny to 1.000000.
- Type::Tiny::XS 0.016 is recommended.

[ Other ]
- Added: Type::Library now supports `of` and `where` options when
  importing type constraints.
- Added: Type::Params multisig function now supports custom error
  messages.
  Benct Philip Jonsson++
  <https://github.com/tobyink/p5-type-tiny/pull/44>
- Added: Type::Params named_to_list feature.
  <https://rt.cpan.org/Ticket/Display.html?id=128337>
- Added: Type::Params signatures with slurpy hashrefs now allow true
  hashrefs to be passed to them.
- Added: Type::Tiny::Enum now has a `unique_values` method.
  <https://rt.cpan.org/Ticket/Display.html?id=129650>
- Added: Types::Standard ArrayRef parameterized type can now take a second
  parameter, the minimum array length.
- Better implementation of is_subtype_of/is_supertype_of and related
  functions.
- Don't use Int from Type::Tiny::XS unless version 0.016 is available.
  <https://rt.cpan.org/Ticket/Display.html?id=130411>
- Eliminate memory cycles created by coderef overloading in Type::Tiny and
  Type::Coercion.
  Fixes RT#130823.
  Ivanov Anton++
  <https://rt.cpan.org/Ticket/Display.html?id=130823>
- Eval::TypeTiny's API is now considered to be stable.
- Fix Types::Standard's LazyLoad implementation.
- The `values` attribute of Type::Tiny::Enum now preserves order.
  Fixes RT#129650.
  Daniel Schr�er++
  <https://rt.cpan.org/Ticket/Display.html?id=129650>
- Tidy up Type::Tiny namespace a little by fully-referencing some
  functions instead of importing them.
- Tweaks to Type::Tiny and Type::Coercion to avoid unnecessarily loading
  overload.pm and overloading.pm.
- Types::TypeTiny::TypeTiny->has_coercion is now true.

1.005_004      2019-11-11

[ Documentation ]
- Types::Standard documentation fix.
  Lucas Buchala++
  <https://github.com/tobyink/p5-type-tiny/pull/48>

[ Other ]
- Added: Type::Tiny::Enum now has a `unique_values` method.
  <https://rt.cpan.org/Ticket/Display.html?id=129650>
- Don't use Int from Type::Tiny::XS unless version 0.016 is available.
  <https://rt.cpan.org/Ticket/Display.html?id=130411>
- Eliminate memory cycles created by coderef overloading in Type::Tiny and
  Type::Coercion.
  Fixes RT#130823.
  Ivanov Anton++
  <https://rt.cpan.org/Ticket/Display.html?id=130823>
- The `values` attribute of Type::Tiny::Enum now preserves order.
  Fixes RT#129650.
  Daniel Schr�er++
  <https://rt.cpan.org/Ticket/Display.html?id=129650>

1.005_003      2019-02-26

[ Test Suite ]
- Improve test coverage.

[ Other ]
- Fix Types::Standard's LazyLoad implementation.

1.005_002      2019-01-29

- Added: Type::Params named_to_list feature.
  <https://rt.cpan.org/Ticket/Display.html?id=128337>

1.005_001      2019-01-23

- Added: Type::Library now supports `of` and `where` options when
  importing type constraints.

1.005_000      2019-01-20

[ Bug Fixes ]
- Fix spelling in error message for Types::Common::String
  LowerCaseSimpleStr.
  Robert Rothenberg++
  <https://github.com/tobyink/p5-type-tiny/pull/47>

[ Documentation ]
- Fix Type::Params documentation error.
  Nelo Onyiah++
  <https://github.com/tobyink/p5-type-tiny/pull/45>
- Fix Types::Standard documentation error: incorrect third-party module
  name.
  Nelo Onyiah++
  <https://github.com/tobyink/p5-type-tiny/pull/46>
- Minor correction to POD header for Type::Params
  Jonas B Nielsen++
  <https://github.com/tobyink/p5-type-tiny/pull/43>

[ Packaging ]
- Bump minimum required version of Exporter::Tiny to 1.000000.

[ Other ]
- Added: Type::Params multisig function now supports custom error
  messages.
  Benct Philip Jonsson++
  <https://github.com/tobyink/p5-type-tiny/pull/44>
- Added: Types::Standard ArrayRef parameterized type can now take a second
  parameter, the minimum array length.
- Better implementation of is_subtype_of/is_supertype_of and related
  functions.
- Eval::TypeTiny's API is now considered to be stable.
- Tidy up Type::Tiny namespace a little by fully-referencing some
  functions instead of importing them.
- Tweaks to Type::Tiny and Type::Coercion to avoid unnecessarily loading
  overload.pm and overloading.pm.
- Type::Params signatures with slurpy hashrefs now allow true hashrefs to
  be passed to them.
- Types::TypeTiny::TypeTiny->has_coercion is now true.

(wen)

2019-12-06 13:27:22 UTC MAIN commitmail json YAML

Updated archivers/p5-Archive-Extract to 0.86

(wen)

2019-12-06 13:26:27 UTC MAIN commitmail json YAML

- Update to 0.86

Upstream changes:
0.86    Thu Dec  5 20:53:07 GMT 2019
* Fix RT#131072 which was due to tar.exe and CRLF line endings

0.84    Wed Dec  4 21:20:04 GMT 2019
* Fix RT#119084 - won't compile on MSWin32 with taint

0.82    Fri Nov 22 19:09:35 GMT 2019
* Correctly compare version string for Archive::Tar (#7)
* Remove duplicate entry from the MANIFEST file. (#6)
* Treat minix the same as NetBSD

(wen)

2019-11-20 13:55:30 UTC MAIN commitmail json YAML

Updated www/moodle to 3.8

(wen)

2019-11-20 13:49:28 UTC MAIN commitmail json YAML

Update to 3.8

Upstream changes:
Moodle 3.8 release notes

Releases > Moodle 3.8 release notes

Release date: 18 November 2019

Here is the full list of fixed issues in 3.8.

If you are upgrading from a previous version, please see Upgrading in the user docs.
Contents

    1 Server requirements
        1.1 Database requirements
    2 Client requirements
        2.1 Browser support
    3 Major features
        3.1 Analytics
        3.2 H5P integration
        3.3 Forum summary report
        3.4 Forum export
        3.5 Forum grading
        3.6 Forum UI improvements
        3.7 Assignment
        3.8 Question bank
        3.9 Course relative dates (experimental)
        3.10 Course overview
        3.11 Emojis
        3.12 Usability improvements
    4 Other highlights
        4.1 Functional changes
        4.2 For administrators
    5 For developers
        5.1 Web services additions and updates
        5.2 Component API upgrades
    6 See also

Server requirements

These are just the minimum supported versions. We recommend keeping all of your software and operating systems up-to-date.

    Moodle upgrade: Moodle 3.2 or later
    PHP version: minimum PHP 7.1.0 Note: minimum PHP version has increased since Moodle 3.6. PHP 7.2.x and 7.3.x are supported too. PHP 7.x could have some engine limitations.
    PHP extension intl is required since Moodle 3.4 (it was recommended in 2.0 onwards)

Database requirements

Moodle supports the following database servers. Again, version numbers are just the minimum supported version. We recommend running the latest stable version of any software.
Database Minimum version Recommended
PostgreSQL 9.4 Latest
MySQL 5.6 Latest
MariaDB 5.5.31 Latest
Microsoft SQL Server 2012 (increased since Moodle 3.7) Latest
Oracle Database 11.2 Latest
Client requirements
Browser support

Moodle is compatible with any standards compliant web browser. We regularly test Moodle with the following browsers:

Desktop:

    Chrome
    Firefox
    Safari
    Edge
    Internet Explorer

Mobile:

    MobileSafari
    Google Chrome

For the best experience and optimum security, we recommend that you keep your browser up to date.

Note: Legacy browsers with known compatibility issues with Moodle 3.8:

    Internet Explorer 10 and below
    Safari 7 and below

Major features
Analytics

    MDL-64739 - Analytics models may be restricted to category or course contexts
    MDL-65588 - Insights about students who have not logged in recently
    MDL-65562 - Report on the actions executed by users on predictions
    MDL-65633 - Allow targets to limit the analysis interval to a specific interface or parent class.
    MDL-66234 - Extra garbage collection for analytics
    MDL-66254 - Require enrolments to be active for most of the analysis interval
    MDL-62191 - Add bulk actions for analytics' insights
    MDL-66536 - Insight notifications improvements
    MDL-60949 - Analytics models should be sorted by name and not last modified
    MDL-66004 - Allow the Python machine learning backend to run from a separate server
    MDL-58992 - Add multi-class capabilities to prediction processors
    MDL-65585 - Global on/off switch for analytics

H5P integration

    MDL-66388 - Create a new button in Atto to add H5P content in anywhere from hp5.com and h5p.org external URLs
    MDL-66398 - Improve H5P filter to allow internal H5P content URLs
    MDL-66593 - Implement backup and restore process for H5P content
    MDL-67059 - Add Admin UI to manually upload H5P content-type libraries
    MDL-67057 - Create a capability to update H5P content-type libraries
    MDL-67058 - Create a task to install H5P content-type libraries
    MDL-66609 - Create the basic skeleton, library and interfaces for rendering H5P content
    MDL-66399 - Improve H5P Atto button to upload content
    MDL-66397 - Create a new filter to convert h5p.com and h5p.org URLs to embed code

Forum summary report

    MDL-66153 - Forum report: Basic skeleton
    MDL-66298 - Forum summary report option to message selected users
    MDL-66268 - Groups filter in forum summary report
    MDL-66373 - Dates filter in forum summary report
    MDL-66297 - Link forum summary report to export of each user's post content
    MDL-66694 - Add columns for word count and character count to the forum summary report
    MDL-66768 - Add the ability to download the forum summary report

Forum export

    MDL-66075 - Forum export functionality
    MDL-66631 - Dates filter in forum export
    MDL-66808 - Forum export options for human-readable dates and removing HTML

Forum grading

    MDL-66074 - Create forum grading interface
    MDL-66358 - Display grading form in the grading panel
    MDL-66365 - Add a button to display the entire discussion for a post being graded
    MDL-67116 - Make 'require grade' an activity completion criterion for the forum
    MDL-66381 - Forum grading user search
    MDL-66360 - Forum grading option to send notification to student
    MDL-66906 - Forum view grades option for students
    MDL-66359 - Support restricting the user list to a specific group

Forum UI improvements

    MDL-66477 - Create settings side drawer for new discussion view
    MDL-64821 - Create new discussion view for forum
    MDL-66481 - Update display of discussion in discussion list table
    MDL-65129 - Search starred discussions only option in forum advanced search

Assignment

    MDL-63349 - Assignment: Annotate PDF - Rotate submitted image automatically
    MDL-66537 - Annotate PDF - Right-to-left UI - The rotate buttons order is confusing
    MDL-63878 - Enable the saving and printing of annotated PDFs from previous attempts
    MDL-64811 - Assignment: Add warning about students falling into Default group if group submissions are enabled but not required
    MDL-65797 - Performance improvements for user / group overrides for mod assign

Question bank

    MDL-66553 - Display ID number and tags in the question bank UI
    MDL-66816 - Question bank: replace the row of edit icons with an Edit menu
    MDL-67153 - Allow question types to add extra actions to the Question bank edit menu

Course relative dates (experimental)

    MDL-66147 - Assignment due date relative to the student course start date
    MDL-66144 - Weeks format relative dates
    MDL-66143 - Course relative dates mode setting
    MDL-66148 - Option to override the assignment due date in a relative dates course

Course overview

    MDL-64901 - block_myoverview: Add admin setting to control the available layouts
    MDL-66016 - An admin can set which filters are available for users to select in their Dashboard course overview
    MDL-66017 - An admin can specify a course custom field as a filter for users to select in their Dashboard course overview
    MDL-63612 - Course card pattern colours may be specified by an admin
    MDL-65621 - Courses with course visibility set to hide should be labelled 'Hidden from students' in the course overview
    MDL-64860 - block_myoverview: Improve pagination widget
    MDL-64094 - Change 'Hidden' to 'Removed from view' in the course overview

Emojis

    MDL-65896 - Add emojis to messaging
    MDL-46779 - Atto should support full emoji

Usability improvements

    MDL-34498 - Session Timeout alert
    MDL-61043 - Provide a more consistent and better way of selecting and deselecting all items in a list
    MDL-48610 - Show alphabet filter in grader report even when there are less than 100 users
    MDL-38555 - Forms do not prevent same data submission multiple times
    MDL-59639 - Browser back button should work as expected in the administration menu with Boost theme
    MDL-57208 - Let users set their default homepage
    MDL-66178 - Participants list - Filter users with no roles
    MDL-65671 - Calendar view selector enables users to switch between month, day and upcoming events
    MDL-66563 - Improve drag and drop question accessibility in high-contrast mode
    MDL-64032 - The UI for setting enrolment end date/duration should be consistent
    MDL-65406 - Boost Theme accessibility: Nav drawer should be marked up as list
    MDL-65915 - Better progress display while re-grading quiz attempts
    MDL-67048 - Drag and drop upload progressbar invert inner and outer

Other highlights
Functional changes

    MDL-64745 - Administrative setting to show/not show "hide" feature in online users block
    MDL-62835 - The description should be displayed when viewing a Book, Lesson or IMS content package
    MDL-66496 - Option to include author information when importing entries into a database activity
    MDL-66740 - Make "course request" capability category context instead of system context
    MDL-65093 - Users should be informed that they can't block a user who has permission to message all users
    MDL-64002 - Add send message buffering
    MDL-66226 - Show plain text in Messages summary pane
    MDL-61649 - Several core emails provide only text format
    MDL-35773 - Include files option in backup settings
    MDL-63453 - VideoJS upgrade to 7.6.5 including HTTP Live Streaming (HLS) and Dynamic Adaptive Streaming over HTTP (MPEG-DASH) support
    MDL-56549 - Add support for FLAC files
    MDL-62836 - Make awarding badges groups/groupings compliant
    MDL-60916 - Global Search: Replace course search form with global search
    MDL-64438 - Display course category in course related block
    MDL-66326 - Global search: Delete from search index when courses are deleted
    MDL-65183 - block_timeline can cause JSON parse error on dashboard when activities are saved with newline characters
    MDL-66612 - Calendar course event icon is different from course icon
    MDL-66775 - Add new Mobile setting for forcing a minimum app version to access the site
    MDL-66375 - Option to disable the "Forgotten password" feature in the app
    MDL-66753 - The People block is no longer needed and should be removed from core

For administrators

    MDL-66034 - Log role changes in more detail
    MDL-66570 - Allow disabling of cron output when capturing logs
    MDL-61804 - Let the admin control if lists of courses should be pre-sorted by visibility or not
    MDL-66133 - Let the administrator configure which user filters are shown by default
    MDL-63643 - Add ability to search/filter users by Last IP Address
    MDL-66119 - Disable GUI plugin uninstalls (eg $CFG->uninstallclionly similar to $CFG->disableupdateautodeploy)
    MDL-65201 - Automated backup course ordering
    MDL-65404 - Add column for enrol start dates to Upload users CSV
    MDL-40669 - Upload users via text file should include the optional user field 'disable notifications'
    MDL-66705 - Add an example csv file for bulk uploading of users
    MDL-59470 - Option to duplicate a user tour
    MDL-65622 - Add a new event when a grade item has been created
    MDL-65369 - Include changed course settings in course_updated event
    MDL-65492 - Cache admin UI: make it easy re-purge the cache you just purged
    MDL-63127 - Redis Cache: implement compression
    MDL-66428 - Allow Redis cache to use PHP extension Zstd
    MDL-46317 - Private files space setting should use MB not Bytes
    MDL-7339 - Change 'Open to Google' setting to 'Open to search engines'
    MDL-65208 - Add cli upgrade option to test if an upgrade is required
    MDL-58439 - Admin pages login as guest and then throw Access denied error (should prompt for login) require_admin()

For developers

    MDL-66675 - New $CFG->behat_pause_on_fail option added
    MDL-46267 - The $CFG->httpswwwroot was removed
    MDL-66335 - New steps to navigate straight to any plugin web page. Plugins must implement their own resolver between page types and URLs.
    MDL-65349 - Profiling included and excluded URLs now are matched from start. Some adjustments may be needed.
    MDL-66633 - Quiz: quiz attempt API should let you create an attempt for a different user
    MDL-66709 - Components other than activity modules should be able to backup and restore question attempt data
    MDL-66754 - Question engine: report methods should not require a list of slots
    MDL-62497 - Add a new transpilation tool for ES6
    MDL-50346 - Remove the restriction to forbid subdirectories in the templates directory
    MDL-66327 - $DB->get_records uses a lot of Peak RAM (with Postgres)
    MDL-66173 - Add hooks to extend all forms with /login/
    MDL-66367 - Caching of templates should use a new templaterev variable
    MDL-66304 - Allow support for xsendfile in alternative_file_system_class independently of local files
    MDL-66166 - Improve the moodlebot user agent and expose a function for plugins to use
    MDL-65646 - Move dependencies and subplugins to JSON
    MDL-55751 - Remove the CSS chunker from Moodle
    MDL-65438 - Allow themes to alter the core css url's
    MDL-65747 - Removed unused Pear_Crypt_CHAP library

Web services additions and updates

    MDL-65794 - Make some web service calls idempotent over http GET
    MDL-67043 - Web service to enable H5P offline access in the Moodle app
    MDL-64254 - New Web Services for updating a forum post (or a discussion topic post)
    MDL-65017 - New web service to delete forum posts
    MDL-64588 - New web services for adding and deleting comments
    MDL-66376 - Enforce app security by using tokenpluginfile.php instead webservice/pluginfile.php
    MDL-65400 - Blocks Web Services (for course and dashboard) should return the block settings

Component API upgrades

    admin/upgrade.txt
    analytics/upgrade.txt
    blocks/recentlyaccessedcourses/upgrade.txt
    blocks/starredcourses/upgrade.txt
    blocks/upgrade.txt
    cache/upgrade.txt
    calendar/upgrade.txt
    comment/upgrade.txt
    course/format/upgrade.txt
    course/upgrade.txt
    customfield/field/upgrade.txt
    enrol/ldap/upgrade.txt
    enrol/upgrade.txt
    lib/mlbackend/php/upgrade.txt
    lib/mlbackend/python/upgrade.txt
    lib/upgrade.txt
    media/upgrade.txt
    message/upgrade.txt
    mod/assign/upgrade.txt
    mod/book/upgrade.txt
    mod/feedback/upgrade.txt
    mod/forum/upgrade.txt
    mod/glossary/upgrade.txt
    mod/lti/upgrade.txt
    mod/quiz/report/upgrade.txt
    mod/upgrade.txt
    mod/wiki/upgrade.txt
    mod/workshop/upgrade.txt
    question/type/upgrade.txt
    question/upgrade.txt
    search/upgrade.txt
    theme/upgrade.txt
    webservice/upgrade.txt

(wen)

2019-11-04 14:43:00 UTC MAIN commitmail json YAML

Updated textproc/p5-Locale-Maketext-Gettext to 1.30

(wen)

2019-11-04 14:42:06 UTC MAIN commitmail json YAML

Update to 1.30

Upstream changes:
2019-09-17      version 1.30
        Fix after 10 years.
        1. 12-cache.t: Fixed so that it works on MS-Win32.  I forgot to
            issue binmode when copying the MO files.
        2. 00-signature.t: Removed TEST_SIGNATURE, as this does not work
            on everybody who does not have my GPG public key, but me.
        3. 03-errors.t: Removed the debugging output.

2019-09-09      version 1.29
        Fix after 10 years.
        1. Gettext.pm: Added support to purge the lexicon cache and
            reread the MO file on calling textdomain() when MO file is
            updated automatically.  This enables MO file live update with
            persistant applications like Mojolicious or mod_perl.
        2. Source is now on Github.  See:
            https://github.com/imacat/Locale-Maketext-Gettext

(wen)

2019-11-04 14:21:51 UTC MAIN commitmail json YAML

Updated textproc/p5-PDF-Create to 1.46

(wen)

2019-11-04 14:21:00 UTC MAIN commitmail json YAML

Update to 1.46

Upstream changes:
1.46  2019-09-30 15:15:00 MANWAR
      - Updated SYNOPSIS code with/without 'use utf8;', thanks Mike West.

1.45  2019-09-29 10:10:00 MANWAR
      - Moved author test scripts to xt/ subfolder.

1.44  2019-09-28 02:30:00 MANWAR
      - Fixed typo in the pod w.r.t method string_underline().

(wen)

2019-11-04 14:14:10 UTC MAIN commitmail json YAML

Updated textproc/p5-Pod-Markdown to 3.200

(wen)

2019-11-04 14:13:09 UTC MAIN commitmail json YAML

Update to 3.200
Add missing DEPENDS

Upstream changes:
3.200    2019-10-09T16:36:15Z

  - Allow local_module_url_prefix to be '' [rt-129865].
  - URI Escape the module name in external pod links
    (introduces dependency on URI::Escape).

(wen)

2019-11-04 13:18:55 UTC MAIN commitmail json YAML

Updated textproc/p5-Pod-Simple to 3.40

(wen)

2019-11-04 13:15:37 UTC MAIN commitmail json YAML

Update to 3.40

Upstream changes:
3.40 2019-10-23 Karl Williamson <khw@cpan.org>
        - Fixed iusse #108, Roy Storey++
        - Make case sensitivity determination overridable by user, Kenneth
          �lwing++
        - Add expand_verbatim_tabs() method, which also can turn off
          expansion, fixing #110
3.39 2019-06-30 Karl Williamson <khw@cpan.org>
        - Fixed JustPod not opening file with :raw.  Spotted by Dave Mitchell.
          Fixed by James Keenan
        - Fixed garbage line looking like pod.  Spotted by Todd Rinaldo.
        - Finished fixing Issue 95 by adding note that = in column 1 can be
          misinterpreted as pod.

3.38 2019-05-30 Karl Williamson <khw@cpan.org>
        - Removed some alien files that somehow got in the tar, including a copy
        of Pod::Escapes.  Spotted by Petr Pisar++

3.37 2019-05-30 Karl Williamson <khw@cpan.org>
        - Suppressed some expected diagnostics under harness
        - Pod::Simple now depends on the 'if' module

3.36 2019-05-15 Karl Williamson <khw@cpan.org>
        - Added Pod::Simple::JustPod to extract the pod lines from a file
        - Improved detection of input encoding CP1252 vs UTF-8
        - Fixed github issue #79, =cut event out of order
        - Fixed github issue #85, verbatim_indent doesn't work on HTML
        - Fixed github issue #89, css files refer to themselves
        - Fixed github issue #92, broken RTF with Unicode inputs
        - Extended RTF to handle Unicode code points above 0xFFFF
        - Nested L<> is now flagged as an error
        - Turned off negative repeat count does nothing warnings
        - Fixed/improved some docs about this distribution

(wen)

2019-10-14 13:35:53 UTC MAIN commitmail json YAML

Updated databases/p5-DBIx-Class-EncodedColumn to 0.00020

(wen)

2019-10-14 13:34:37 UTC MAIN commitmail json YAML

Update to 0.00020

Upstream changes:
0.00020 2019-09-25
        - Skip author tests unless AUTHOR_TESTING is set
0.00019 2019-09-19
        - Skip author tests unless DBIC::TimeStamp is avail
0.00018 2019-09-16 08:00:00
        - Bugfix author tests (#130447, by jplesnik)
        - Previous release was broken
0.00017 2019-09-03
        - Add '.' to @inc (perlpunk)
        - Update prereqs (perlpunk)
0.00016 2019-06-12
        - Add charset option in ::Digest to handle non-ASCII strings, RT#127553 (rrwo)

(wen)

2019-10-04 07:07:28 UTC MAIN commitmail json YAML

Updated devel/p5-Perl-PrereqScanner-NotQuiteLite to 0.9908

(wen)

2019-10-04 07:05:15 UTC MAIN commitmail json YAML

Update to 0.9908

Upstream changes:
0.9908 2019/08/24
  - fixed Win32 path separator issues

0.9907 2019/08/22
  - changed scan_also and features options to accept glob expressions
  - added "version" option to show what's going on

0.9906 2019/07/06
  - fixed PackageVariant parser not to die when it finds something
    other than importing

(wen)

2019-10-04 03:07:34 UTC MAIN commitmail json YAML

Updated www/p5-Catalyst-Manual to 5.9010

(wen)

2019-10-04 03:06:38 UTC MAIN commitmail json YAML

Update to 5.9010

Upstream changes:
5.9010 - 2019-04-25
    - updated stale urls
    - numerous typo fixes
    - many pod syntax fixes
    - other pod syntax cleanup
    - added references to the RT issues queue, mailing list, and irc channel

(wen)

2019-10-04 02:47:18 UTC MAIN commitmail json YAML

Updated www/p5-Catalyst-View-JSON to 0.37

(wen)

2019-10-04 02:46:24 UTC MAIN commitmail json YAML

Update to 0.37
Update DEPENDS

Upstream changes:
0.37 - 2019-04-28
        - fix Makefile.PL when current directory not in @INC (perl 5.26+)
        - convert from Module::Install to Distar for release tooling
        - Drop unneeded prerequisite on YAML

(wen)

2019-10-04 02:40:47 UTC MAIN commitmail json YAML

Updated www/p5-Catalyst-Runtime to 5.90124

(wen)

2019-10-04 02:39:29 UTC MAIN commitmail json YAML

Update to 5.90124

Upstream changes:
5.90124 - 2019-01-18
  - Fix problem with from_psgi_response and streaming applications (
    https://github.com/perl-catalyst/catalyst-runtime/pull/168).

(wen)

2019-10-04 00:09:47 UTC MAIN commitmail json YAML

Updated www/p5-HTML-Scrubber to 0.19

(wen)

2019-10-04 00:08:54 UTC MAIN commitmail json YAML

Update to 0.19

Upstream changes:
0.19      2019-09-24 13:26:46+01:00 Europe/London
    - Made List::Util import explicitly require version 1.33 (for 'any')

0.18      2019-09-22 12:10:47+01:00 Europe/London
    - Reduced standard build dependancies (removed author deps)

(wen)

2019-10-04 00:03:43 UTC MAIN commitmail json YAML

Updated www/p5-HTML-Clean to 1.4

(wen)

2019-10-04 00:02:53 UTC MAIN commitmail json YAML

Update to 1.4

Upstream changes:
1.3 Tue Sep 13 14:36 MSK 2019

    - Fix meta description

1.3 Tue Sep 9 14:10 MSK 2019

    - Fix pod and typo

1.1 Tue Sep 9 12:30 MSK 2019

    - Fix pod. Add github repository

(wen)

2019-10-04 00:00:31 UTC MAIN commitmail json YAML

Updated www/p5-Cookie-Baker to 0.11

(wen)

2019-10-03 23:59:31 UTC MAIN commitmail json YAML

Update to 0.11

Upstream changes:
0.11 2019-06-07T06:27:50Z

  - Supportt SameSite=None https://github.com/kazeburo/Cookie-Baker/pull/15

(wen)

2019-10-03 23:56:39 UTC MAIN commitmail json YAML

Updated www/p5-CGI-Simple to 1.22

(wen)

2019-10-03 23:55:41 UTC MAIN commitmail json YAML

Update to 1.22

Upstream changes:
1.22  2019-09-07 MANWAR
      - Fixed issue RT# 130454, samesite parameter missing from sub cookie().

(wen)

2019-09-18 14:35:47 UTC MAIN commitmail json YAML

Updated textproc/p5-PDF-Table to 0.11.0

(wen)

2019-09-18 14:29:41 UTC MAIN commitmail json YAML

Update to 0.11.0

Upstream changes:
Version 0.11.0 Colspan feature by domm

(wen)

2019-09-18 14:27:08 UTC MAIN commitmail json YAML

Updated textproc/p5-PDF-API2 to 2.036

(wen)

2019-09-18 14:25:01 UTC MAIN commitmail json YAML

Update to 2.036

Upstream changes:
2.036    2019-09-17

    - Eliminate another uninitialized value warning in BaseFont.pm.

2.035    2019-08-09

    - The bounding box methods (mediabox, cropbox, bleedbox, trimbox, and
      artbox) now return their values when called without arguments.

    - The get_[media|crop|bleed|trim|art]box page methods have been deprecated
      since they're now redundant, but they continue to work.

    - [RT #130074] Remove unneeded (and newly-broken) calls to is_utf8 in
      Annotation.pm and NamedDestination.pm (reported by Mathieu Arnold).

    - Eliminate some uninitialized value warnings in BaseFont.pm.

2.034    2019-06-29

    - SUPPORTED PERL VERSIONS: Starting with this release, PDF::API2 will
      support major Perl versions released in the past six years, plus the major
      release before that one.  This should provide backward compatibility for
      the life of most LTS server distributions, while eliminating the need to
      troubleshoot warnings and bugs that only show up in increasingly-ancient
      versions of Perl.

      For this release, it means that the minimum supported Perl is 5.18, which
      was first released on 2013-05-18.

    - Add support for cross-reference streams using 64-bit field widths.

    - When the utf8 flag is set for a PDF string, automatically encode it as
      UCS-16BE instead of requiring a separate flag to be set in the PDF object.
      This resolves [RT #33497] and [RT #117031] in addition to making the code
      easier to maintain.

    - [RT #126274] Fix alignment when using UniFont with text_center or
      text_right when all characters are in the same block.

    - [RT #121911] Fix adding pages to a document structure with nested Pages
      elements.  This included a fairly substantial rewrite of the relevant
      code, so please report any new bugs related to adding pages (report and
      troubleshooting by Vadim Repin).

    - Renamed pdfile() to pdf_file() in PDF::API2::Annotation and
      PDF::API2::Outline.  The old name continues to work, but is deprecated.

(wen)

2019-09-18 13:14:22 UTC MAIN commitmail json YAML

Updated devel/p5-Term-Shell to 0.11

(wen)

2019-09-18 13:13:30 UTC MAIN commitmail json YAML

Update to 0.11

Upstream changes:
0.11    2019-04-30
    - Apply https://github.com/shlomif/Term-Shell/pull/3
        - Fix aliases.
    - Add tidyall, TestCount, PerlCritic, PerlTidy checks.

(wen)

2019-09-18 13:11:17 UTC MAIN commitmail json YAML

Updated devel/p5-SUPER to 1.20190531

(wen)

2019-09-18 13:09:50 UTC MAIN commitmail json YAML

Update to 1.20190531

Upstream changes:
1.20190531 2019-05-31 16:57:30-07:00 America/Los_Angeles
    - allow main->SUPER::... to work when SUPER.pm is loaded (PR #1, Charles McGarvey)

(wen)

2019-09-13 14:22:28 UTC MAIN commitmail json YAML

Updated textproc/p5-Text-CSV to 2.00

(wen)

2019-09-13 14:21:35 UTC MAIN commitmail json YAML

Update to 2.00

Upstream changes:
2.00  2019-05-11
    - Imported tests/fixes from Text::CSV_XS 1.39
      - Fix strict on streaming EOF
    - Fixed to update (cached) eol_len correctly

(wen)

2019-09-13 14:17:27 UTC MAIN commitmail json YAML

Updated textproc/p5-YAML-LibYAML to 0.80

(wen)

2019-09-13 14:16:07 UTC MAIN commitmail json YAML

Update to 0.80

Upstream changes:
0.80 Thu 22 Aug 2019 01:17:13 PM CEST
- Fix memory leak when loading invalid YAML (PR#93 tinita)

0.79 Tue 11 Jun 2019 09:35:22 PM CEST
- Support aliasing scalars resolved as null or booleans (tinita)
- Add YAML::XS::LibYAML::libyaml_version() (tinita)
- Support standard !!int/!!float tags instead of dying (tinita)

0.78 Sat 18 May 2019 06:35:21 PM CEST
- Fix double free/core dump when Dump()ing binary data, see issue#91
  (tinita)
- Update config.h from libyaml (tinita)

0.77 Mon 15 Apr 2019 10:55:13 PM CEST
- Update libyaml to version 0.2.2. Most important change for users is that
  plain urls in flow style can be parsed now. Example: `[ http://yaml.org
  ]`. (tinita)

(wen)

2019-09-13 14:12:30 UTC MAIN commitmail json YAML

Updated time/p5-DateTime-Calendar-Julian to 0.101

(wen)

2019-09-13 14:10:30 UTC MAIN commitmail json YAML

Update to 0.101

Upstream changes:
0.101          2019-08-14      T. R. Wyant
    - Fix broken POD links, and add test to ensure they stay fixed.

(wen)

2019-09-13 09:56:48 UTC MAIN commitmail json YAML

Updated time/p5-DateTime-TimeZone to 2.37

(wen)

2019-09-13 09:55:05 UTC MAIN commitmail json YAML

Update to 2.37

Upstream changes:
2.37    2019-09-11

- This release is based on version 2019c of the Olson database. This release
  includes contemporary changes for Fiji and Norfolk Island.

2.36    2019-07-01

- This release is based on version 2019b of the Olson database. This release
  includes contemporary changes for Brazil and Palestine.

(wen)

2019-09-13 09:49:55 UTC MAIN commitmail json YAML

Updated time/p5-Time-Format to 1.15

(wen)

2019-09-13 09:48:33 UTC MAIN commitmail json YAML

Update to 1.15

Upstream changes:
1.15  2019 July 26
        - Fix a bug in the test suite due to floating-point rounding.  Thanks to
          Slaven Rezic (see CPAN RT bug 130150:
                              https://rt.cpan.org/Ticket/Display.html?id=130150)
        - Also improved __DATA__ handling, so as not to hold a lock on the library.

1.14  2019 July 22
        - Fix CPAN RT bug 87484 (https://rt.cpan.org/Ticket/Display.html?id=87484),
          concerning very small floating-point values (e.g. "2.1458e-06").
        - Fix CPAN RT Bug 95447, concerning floating-point numerical time values.
        - Fix CPAN RT Bug 121367, concerning loading perl-only routines after forking.
          This might (?) also fix bug 74880, but I can't reproduce that.
        - Skip locale tests on openbsd platform.
        - Fix accented strings in locale.t

1.13  2019 July 18
        - Fix CPAN RT bug 85001.
          This was a problem in the test suite only; no code changes were made
          in the main module lib/Time/Format.pm.
          The problem existed in how the test suite checked for whether certain
          CPAN modules were installed, and especially in how it attempted to
          unload them from memory afterward.
          Thanks to Sendu Bala for reporting this -- and to Jim Keenan for
          pushing me to fix this.

(wen)

2019-09-13 08:45:38 UTC MAIN commitmail json YAML

Updated devel/p5-Array-Diff to 0.09

(wen)

2019-09-13 08:44:18 UTC MAIN commitmail json YAML

Update to 0.09

Upstream changes:
0.09 2019-05-10 NEILB
    - Set minimum Perl version in metadata. PR from MANWAR.
    - Clarified in the doc that the arrays must be sorted. RT#39184

0.08 2019-05-08 NEILB
    - First non-developer release since switching to Dist::Zilla

0.07_03 2019-05-08 NEILB
    - Added Array::Compare to SEE ALSO
    - Added List::Compare to SEE ALSO
    - Really just making another developer release, as PAUSE and then
      CPAN Testers had issues, so previous dev releases didn't get much
      testing.

0.07_02 2019-05-07 NEILB
    - Added a bunch of entries to SEE ALSO.

0.07_01 2019-05-06 NEILB
    - Added version dependency for Algorithm::Diff in Array/Diff.pm
    - Switched to Dist::Zilla

(wen)

2019-09-13 08:36:47 UTC MAIN commitmail json YAML

Updated devel/p5-Array-Compare to 3.0.3

(wen)

2019-09-13 08:36:09 UTC MAIN commitmail json YAML

Update to 3.0.3

Upstream changes:
3.0.3 2019-08-12

- Added NoSkip method to clear Skip setting
  (Thanks to Mohammed Anwar)

(wen)

2019-09-13 08:33:12 UTC MAIN commitmail json YAML

Updated databases/p5-SQL-Translator to 1.60

(wen)

2019-09-13 08:32:08 UTC MAIN commitmail json YAML

Update to 1.60

Upstream changes:
1.60 - 2019-05-29
* No changes since 1.59_01

1.59_01 - 2019-04-28
* Add support for parsing PostgreSQL dollar-quoted strings
* Add support for materialized views in Oracle producer
* switched JSON backend from JSON.pm to JSON::MaybeXS
* Port Makefile.PL from Module::Install to Distar
* Synchronise the version number across all modules

(wen)

2019-09-13 08:11:43 UTC MAIN commitmail json YAML

Updated databases/p5-DBIx-Class-Helpers to 2.034000

(wen)

2019-09-13 08:09:30 UTC MAIN commitmail json YAML

Update to 2.034000

Upstream changes:
2.034000  2019-08-02 10:45:04-07:00 America/Los_Angeles
- Added dt_SQL_subtract to ::DateMethods1
  (Thanks Thomas Klausner!) (closes GH#96)

(wen)

2019-09-13 03:06:25 UTC MAIN commitmail json YAML

Updated www/moodle to 3.7.2

(wen)

2019-09-13 02:59:11 UTC MAIN commitmail json YAML

Update to 3.7.2

Upstream changes:
Moodle 3.7.2 release notes

Releases > Moodle 3.7.2 release notes

Release date: 9 September 2019

Here is the full list of fixed issues in 3.7.2.
Contents

    1 Fixes and improvements
    2 Security fixes and improvements
        2.1 Security fixes
        2.2 Security improvements
    3 See also

Fixes and improvements

    MDL-59911 - Unoconv doesn't work after the scheduled task conversion_cleanup_task has run
    MDL-65219 - Broken link in messages contact request notification
    MDL-58026 - Regrading a quiz in progress causes student to lose data
    MDL-66071 - Cannot update user profile with non-internal auth method such as LDAP
    MDL-63458 - Do not display "Send a message" option in course participants list if messaging is disabled site-wide
    MDL-33884 - Export of questions with lots of images as Moodle XML runs out of memory
    MDL-66136 - Online text assignment error when attempting to submit an image only (with no text)
    MDL-66021 - 'Delete and then restore' doesn't delete when using asynchronous restore
    MDL-64598 - Emojis are very big in forum notification emails
    MDL-35939 - Quiz page title does not tell the user where they are in the quiz
    MDL-65555 - Course restore excluding groups still restores quiz overrides resulting in extra calendar events
    MDL-65517 - Manually completed course activities showing in Timeline
    MDL-65925 - Grade page is broken if submission other than PDF was deleted
    MDL-66110 - Error reading from database after upgrade to 3.7.1 (MySQL 8.0.2)
    MDL-65679 - Expanding/collapsing PDF comments causes other annotations to change position
    MDL-57342 - "Is this your first time here?" shows when self registration disabled and no message in auth_instructions
    MDL-65954 - Exporting table data to PDF places entries in wrong columns
    MDL-65116 - Assignment due date does not update for group selection
    MDL-65786 - Blog-like format forum no longer shows unread messages count
    MDL-65908 - Annotated PDF - Comments can't be added and viewed in RTL user interface
    MDL-65749 - Upgrade PHPMailer
    MDL-50472 - Maintenance Mode messages don't appear with Force Login enabled
    MDL-52849 - File picker error messages are not read out in assignment to screen reader users
    MDL-66272 - Custom theme favicon on LTI provider site breaks LTI authentication
    MDL-66230 - Deleting a user tour causes error in privacy data export
    MDL-64757 - Some Dashboard elements are following browser language, not page language
    MDL-66120 - Remove community finder block - as part of Sunsetting moodle.net
    MDL-66072 - Remove course-sharing functionality - as part of Sunsetting moodle.net
    MDL-65595 - Multiple choice question text not wrapped in Lesson

Security fixes and improvements
Security fixes

Details of any security issues will be released after a period of approximately one week to allow system administrators to safely update to the latest version.
Security improvements

    MDL-65443 - Context freezing not logged

Moodle 3.7.1 release notes

Releases > Moodle 3.7.1 release notes

Release date: 8 July 2019

Here is the full list of fixed issues in 3.7.1.
Contents

    1 Fixes and improvements
    2 Security fixes and improvements
        2.1 Security fixes
        2.2 Security improvements
    3 See also

Fixes and improvements

    MDL-59650 - Calendar export no longer limited to 40 events
    MDL-64935 - Jump to dropdown menu no longer overlaps before / next activity links
    MDL-53778 - Quiz with activity completion 'Or all available attempts completed' no longer possible with unlimited attempts
    MDL-65101 - Users with capability moodle/site:messageanyuser are no longer restricted from messaging users with 'My contacts only' messaging privacy enabled
    MDL-65660 - Guest users prompted to enrol in order to post in a forum
    MDL-65675 - 'Re' no longer duplicated in forum post subject line
    MDL-65249 - Redis cache store correctly displays exception after failed connections
    MDL-65084 - Recently accessed items block no longer attempts to load items from deleted courses
    MDL-57729 - Ampersand in site title no longer breaks LTI provider cartridge XML
    MDL-65655 - Forum mailings and maintenance jobs no longer fail with 'Suspended account' exception
    MDL-55821 - The individual assignment grading page when using marking workflow and rubrics now displays the current gradebook grade
    MDL-65696 - PDF annotation comments no longer expand unexpectedly
    MDL-64784 - Enrolled users list sort order no longer changes after adding or removing a user
    MDL-55197 - Multi-lang filter no longer ignores 'en' parent language
    MDL-65829 - Enrolments whose start date is after the analytics analysis start time are no longer discarded
    MDL-65708 - Child themes have base layouts loaded
    MDL-65888 - Fix for 'error/usernotconfirmed' exception in forum mailings and maintenance jobs
    MDL-65661 - Long course names in 'Recently accessed courses' block correctly displayed
    MDL-65839 - Improved memory usage of analytics evaluation and initial training processes
    MDL-65705 - Badges from other sites which are displayed via a backpack no longer show date in the future
    MDL-65326 - Restore process no longer fails if a capability it is attempting to assign does not exist
    MDL-65665 - Quick reply now respects subscribe on reply user preference
    MDL-65814 - Item counts for action events are now shown in the timeline block
    MDL-65666 - Unread forum posts are once again highlighted
    MDL-65883 - Quiz navigation buttons once again scroll to the correct question on the page
    MDL-65901 - Forum advanced search form styling improvements
    MDL-65634 - Analytics 'students at risk' models now discard user enrolments whose start and end dates fall outside of the analysed time interval
    MDL-65297 - Atto 'Manage files' now detects filenames containing a hash symbol (#)
    MDL-65591 - Language customisation page once again displays the correct buttons
    MDL-65606 - Database activity unapproved entries are once again highlighted

Security fixes and improvements
Security fixes

    MSA-19-0013 Missing sesskey (CSRF) token in loading/unloading XML files
    MSA-19-0014 Ability to delete glossary entries that belong to another glossary
    MSA-19-0015 Quiz group overrides did not observe groups membership or accessallgroups
    MSA-19-0016 Assignment group overrides did not observe separate groups mode
    MSA-19-0017 Upgrade TCPDF library for PHP 7.3 and bug fixes (upstream)

Security improvements

The following bug fixes or improvements were made, which contribute to improving security or privacy best practices:

    MDL-65779 - Forum backup and restore now retains any private replies as private
    MDL-60347 - SMTP debugging now also requires developer level debugging messages to be enabled before being displayed. Although SMTP debugging is not intended for production site use, this provides an additional fallback measure to prevent verbose debugging from being unintentionally being visible to users

(wen)

2019-09-13 00:02:31 UTC MAIN commitmail json YAML

Updated databases/p5-DBD-SQLite to 1.64

(wen)

2019-09-12 23:59:55 UTC MAIN commitmail json YAML

Update to 1.64

Upstream changes:
1.64 2019-08-12
    - Switched to a production version

1.63_05 2019-07-12
    - Upgraded SQLite to 3.29.0
    - Added sqlite_get_autocommit private method (GH#52)
    - Addded new db_config constants, notably to prohibit
      double-quoted string literals

1.63_04 2019-05-25
    - Upgraded SQLite to 3.28.0
    - Modified doc for sqlite_db_filename which actually returns undef
      or an empty string (GH#50)
    - Fixed ->quote($blob, SQL_BLOB) to quote correctly (GH#51, pali++)

1.63_03 2019-02-15
    - Applied a patch to fix segmentation fault on 32-bit big-endian
      platforms by Niko Tyni (GH#45)

1.63_02 2019-02-14
    - Upgraded SQLite to 3.27.1
    - Let a URI filename test skip if SQLite is compiled with URI filename
      support (GH#47)

1.63_01 2019-01-26
    - Made sure an internal hv is initialized (GH#45)
    - Fixed a number of tests to skip
    - Bumped up Test::More requirement
    - Replaced bundled Test::NoWarnings with Test::FailWarnings
    - Handle 'unknown' op in DBD::SQLite::VirtualTable::PerlData (Corion++)

(wen)

2019-09-12 23:55:46 UTC MAIN commitmail json YAML

Updated databases/p5-DBD-Mock to 1.49

(wen)

2019-09-12 23:54:44 UTC MAIN commitmail json YAML

Update to 1.49

Upstream changes:
1.49 2019-09-12T12:59:51Z
    - Fixing tests that fail on some old versions of Perl

1.48 2019-09-12T06:34:47Z
    - Added execution_history feature to enable tracking of multiple
      executes for prepared statements.
    - Added support for $dbh->table_info calls
    - Fixed bug rt91055 "insert IGNORE" doesn't raise last_insert_id
    - Fixed bug rt82243 Bug with Regex in DBD::Mock::Session

1.47 2019-09-06T10:03:39Z
    - Applied Max Carey's patch from rt86294 adding support for
      nested keys to fetchall_hashref
    - Added experimental Connection Callbacks feature
    - Fixed build for Perl v5.8

1.46 2019-09-04T12:02:08Z
    - Added git-repo url to meta-data
    - Fixed bug rt70587 Spelling Mistake
    - Added regex support to mock_add_resultset

(wen)

2019-08-31 14:22:27 UTC MAIN commitmail json YAML

Updated www/p5-HTTP-OAI to 4.09

(wen)

2019-08-31 14:18:41 UTC MAIN commitmail json YAML

Update to 4.09

Upstream changes:
4.09  2019-08-22 10:39:03 CEST
  - Fixing set option in script/oai_pmh.pl [stain]

(wen)

2019-08-31 13:33:33 UTC MAIN commitmail json YAML

Updated www/p5-HTTP-Daemon to 6.06

(wen)

2019-08-31 13:32:27 UTC MAIN commitmail json YAML

Update to 6.06

Upstream changes:
6.06      2019-08-29 14:23:17Z
  - Delimit IPv6 numeric address with brackets and URI-quote an IPv6 zone
    separator in url() method output (GH#32) (Petr Pisar)
  - Handle undef and empty LocalAddr value in new() constructor as an
    unspecified address (GH#24, RT#123069) (Petr Pisar)
  - Use IO::Socket::IP for IPv6 support. (GH#31) (Chase Whitener)

6.05      2019-07-26 20:41:05Z
  - Added the .perltidyrc from the libwww-perl distribution
  - Tidied the test suite with perltidy
  - Tidied Daemon.pm
  - Turned on EOL and tab tests
  - Removed obvious indirect object syntax in test suite
  - Added IPv6 support. (GH#24) Thanks, @ppisar and @intrigeri
  - Added IO::Socket::IP as a prerequisite rather than IO::Socket::INET

(wen)

2019-08-31 11:25:39 UTC MAIN commitmail json YAML

Updated www/p5-HTML-Clean to 0.9

(wen)

2019-08-31 11:24:54 UTC MAIN commitmail json YAML

Update to 0.9

Upstream changes:
0.9 Tue Aug 20 09:24 PDT 2019

  - Fix warnings - use IO::File instead deprecated module IO.

(wen)

2019-08-31 10:35:12 UTC MAIN commitmail json YAML

Updated www/p5-Dancer2 to 0.208001

(wen)

2019-08-31 10:34:05 UTC MAIN commitmail json YAML

Update to 0.208001
Update DEPENDS

Upstream changes:
0.208001  2019-08-04 21:06:25-04:00 America/New_York

    [ BUG FIXES ]
    * GH #1515: Add Types::Standard to cpanfile (Russell @veryrusty Jenkins)

    [ ENHANCEMENTS ]
    * None

    [ DOCUMENTATION ]
    * GH #1513: Fix Dancer2::Test typo (Utkarsh Gupta)

(wen)

2019-08-14 15:14:36 UTC MAIN commitmail json YAML

Updated devel/p5-PPI to 1.270

(wen)

2019-08-14 15:13:34 UTC MAIN commitmail json YAML

Update to 1.270

Upstream changes:
1.270  2019-07-09 15:14:57Z
        Summary:
        - attempt to handle new blead binary/hexadecimal parsing behavior in tests

(wen)

2019-08-14 14:56:24 UTC MAIN commitmail json YAML

Updated devel/p5-Proc-ProcessTable to 0.59

(wen)

2019-08-14 14:55:14 UTC MAIN commitmail json YAML

Update to 0.59

Upstream changes:
0.59 2019-06-20
  * works again on AIX
  * fixed mswin32 stuff, hope it works now
  * reogranized code and started to use newest version ExtUtils::MakeMaker

(wen)