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 (5m)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (154d) 

2024-05-13 11:54:47 UTC Now

2021-10-04 09:01:36 UTC MAIN commitmail json YAML

Updated biology/py-pydicom, finance/py-eth-account

(adam)

2021-10-04 09:01:19 UTC MAIN commitmail json YAML

py-eth-account: updated to 0.5.6

eth-account v0.5.6

Features

An explicit transaction type is no longer required for signing a transaction if we can implicitly determine the transaction type from the transaction parameters

Bugfixes

When signing a transaction, the regular JSON-RPC structure is now expected as input and is converted to the appropriate rlp transaction structure when signing
Fix string interpolation in ValidationError message of _hash_eip_191_message

Improved Documentation

Updated docs for sign_transaction to show that transaction type can be implicitly determined based on transaction parameters if one is not provided
Add encode_defunct to list of example message encoders

(adam)

2021-10-04 08:54:01 UTC MAIN commitmail json YAML

py-pydicom: updated to 2.2.2

Version 2.2.0

Changes
-------
* Data elements with a VR of **AT** must now be set with values
  acceptable to :func:`~pydicom.tag.Tag`, and are always stored as a
  :class:`~pydicom.tag.BaseTag`.  Previously, any Python type could be
  set.
* :meth:`BaseTag.__eq__()<pydicom.tag.BaseTag.__eq__>` returns ``False`` rather
  than raising an exception when the operand cannot be converted to
  :class:`~pydicom.tag.BaseTag` (:pr:`1327`)
* :meth:`DA.__str__()<pydicom.valuerep.DA.__str__>`,
  :meth:`DT.__str__()<pydicom.valuerep.DT.__str__>` and
  :meth:`TM.__str__()<pydicom.valuerep.TM.__str__>` return valid DICOM
  strings instead of the formatted date and time representations
  (:issue:`1262`)
* If comparing :class:`~pydicom.dataset.FileDataset` instances, the file
  metadata is now ignored. This makes it possible to compare a
  :class:`~pydicom.dataset.FileDataset` object with a
  :class:`~pydicom.dataset.Dataset` object.
* :func:`~pydicom.pixel_data_handlers.rle_handler.rle_encode_frame` is
  deprecated and will be removed in v3.0, use
  :meth:`~pydicom.dataset.Dataset.compress` or
  :attr:`~pydicom.encoders.RLELosslessEncoder` instead.
* :func:`~pydicom.filereader.read_file` is deprecated and will be removed in
  v3.0, use :func:`~pydicom.filereader.dcmread` instead.
* :func:`~pydicom.filewriter.write_file` is deprecated and will be removed in
  v3.0, use :func:`~pydicom.filewriter.dcmwrite` instead.
* Data dictionaries updated to version 2021b of the DICOM Standard
* :class:`~pydicom.dataset.Dataset` no longer inherits from :class:`dict`

Enhancements
------------
* Added a command-line interface for pydicom.  Current subcommands are:

    * ``show``: display all or part of a DICOM file
    * ``codify`` to produce Python code for writing files or sequence items
      from scratch.

  Please see the :ref:`cli_guide` for examples and details
  of all the options for each command.
* A field containing an invalid number of bytes will result in a warning
  instead of an exception when
  :attr:`~pydicom.config.convert_wrong_length_to_UN` is set to ``True``.
* Private tags known via the private dictionary will now get the configured
  VR if read from a dataset instead of **UN** (:issue:`1051`).
* While reading explicit VR, a switch to implicit VR will be silently attempted
  if the VR bytes are not valid VR characters, and config option
  :attr:`~pydicom.config.assume_implicit_vr_switch` is ``True`` (default)
* New functionality to help with correct formatting of decimal strings (**DS**)

    * Added :func:`~pydicom.valuerep.is_valid_ds` to check whether a string is
      valid as a DICOM decimal string and
      :func:`~pydicom.valuerep.format_number_as_ds` to format a given ``float``
      or ``Decimal`` as a DS while retaining the highest possible level of
      precision
    * If :attr:`~pydicom.config.enforce_valid_values` is set to ``True``, all
      **DS** objects created will be checked for the validity of their string
      representations.
    * Added optional ``auto_format`` parameter to the init methods of
      :class:`~pydicom.valuerep.DSfloat` and
      :class:`~pydicom.valuerep.DSdecimal` and the :func:`~pydicom.valuerep.DS`
      factory function to allow explicitly requesting automatic formatting of
      the string representations of these objects when they are constructed.
* Added methods to construct :class:`~pydicom.valuerep.PersonName` objects
  from individual components of names (``family_name``, ``given_name``, etc.).
  See :meth:`~pydicom.valuerep.PersonName.from_named_components` and
  :meth:`~pydicom.valuerep.PersonName.from_named_components_veterinary`.
* Added support for downloading the large test files with the `requests
  <https://docs.python-requests.org/en/master/>`_ package in addition to
  :mod:`urllib.request` (:pr:`1340`)
* Ensured :func:`~pydicom.pixel_data_handlers.util.convert_color_space` uses
  32-bit floats for calculation, added `per_frame` flag to allow frame-by-frame
  processing and improved the speed by ~20-60% (:issue:`1348`)
* Optimisations for RLE encoding using *pydicom* (~40% faster).
* Added support for faster decoding (~4-5x) and encoding (~20x) of *RLE Lossless*
  *Pixel Data* via the `pylibjpeg-rle
  <https://github.com/pydicom/pylibjpeg-rle>`_ plugin (:pr:`1361`, :pr:`1372`).
* Added :func:`Dataset.compress()<pydicom.dataset.Dataset.compress>` function for
  compressing uncompressed pixel data using a given encoding format as specified
  by a UID. Only *RLE Lossless* is currently supported (:pr:`1372`)
* Added :mod:`~pydicom.encoders` module and the following encoders:

  * :attr:`~pydicom.encoders.RLELosslessEncoder` with 'pydicom', 'pylibjpeg'
    and 'gdcm' plugins
* Added `read` parameter to :func:`~pydicom.data.get_testdata_file`
  to allow reading and returning the corresponding dataset (:pr:`1372`)
* Handle decoded RLE segments with padding (:issue:`1438`)
* Add option to JSON functions to suppress exception and continue (:pr:`1332`)
* Allow searching :class:`~pydicom.fileset.FileSet` s for a list of elements (:pr:`1428`)
* Added hash function to SR :class:`~pydicom.sr.Code` (:pr:`1434`)

Fixes
-----
* Fixed pickling a :class:`~pydicom.dataset.Dataset` instance with sequences
  after the sequence had been read (:issue:`1278`)
* Fixed JSON export of numeric values
* Fixed handling of sequences of unknown length that switch to implicit
  encoding, and sequences with VR **UN** (:issue:`1312`)
* Do not load external data sources until needed - fixes problems with
  standard workflow if `setuptools` are not installed (:issue:`1341`)
* Fixed empty **PN** elements read from file being :class:`str` rather than
  :class:`~pydicom.valuerep.PersonName` (:issue:`1338`)
* Fixed handling of JPEG (10918-1) images compressed using RGB colourspace
  rather than YBR with the Pillow pixel data handler (:pr:`878`)
* Allow to deepcopy a `~pydicom.dataset.FileDataset` object (:issue:`1147`)
* Fixed elements with a VR of **OL**, **OD** and **OV** not being set correctly
  when an encoded backslash was part of the element value (:issue:`1412`)
* Fixed expansion of linear segments with floating point steps in
  segmented LUTs (:issue:`1415`)
* Fixed handling of code extensions with person name component delimiter
  (:pr:`1449`)
* Fixed bug decoding RBG jpg with APP14 marker due to change in Pillow (:pr:`1444`)
* Fixed decoding for `FloatPixelData` and `DoubleFloatPixelData` via
  `pydicom.pixel_data_handlers.numpy_handler` (:issue:`1457`)

(adam)

2021-10-04 07:46:18 UTC MAIN commitmail json YAML

doc: Updated www/badwolf to 1.2.0

(pin)

2021-10-04 07:45:51 UTC MAIN commitmail json YAML

www/badwolf: update to 1.2.0

-Change buildsystem to use a ./configure script
-badwolf.1: Add tip to list dictionairies in enchant
-badwolf.h: Add WEBKIT_CHECK_VERSION
-Switch from libsoup-2.4 to glib's GUri
-badwolf.1: Fix gtk-doc css-properties URL

(pin)

2021-10-04 07:13:20 UTC MAIN commitmail json YAML

boost: revert to just c++ (not c++); reported by @tnn

(adam)

2021-10-03 20:42:19 UTC MAIN commitmail json YAML

doc: Updated textproc/split-thai to 2.9

(scole)

2021-10-03 20:40:08 UTC MAIN commitmail json YAML

Update to 2.9
changes mainly for pthai.el
- add spell checking capability, similar to ispell, for word, line,
  buffer, region and related functions
- many small clean ups, fix def display when downloading, double
  writing of files, always fetching some words, others fixes
- add grep-like function to search dictionary files
- add complete-word function for inserting words
- remove interactive args with \nP
- count nor-nayn as valid single char
- use completing-read instead of ido in a few places

(scole)

2021-10-03 19:14:31 UTC MAIN commitmail json YAML

doc: updated databases/{postgresql-timescaledb,prometheus,promscale}

(tnn)

2021-10-03 19:13:14 UTC MAIN commitmail json YAML

promscale: update to 0.6.0

(beta) Support for downsampling using continuous aggregate
(Experimental) Support for storage of exemplars
Performance improvements
Support of Thanos Store API

(tnn)

2021-10-03 19:12:46 UTC MAIN commitmail json YAML

2021-10-03 19:02:46 UTC MAIN commitmail json YAML

2021-10-03 18:10:21 UTC MAIN commitmail json YAML

postgresql-timescaledb: update to 2.4.2

Fixes the bug that broke background workers, and some other minor things.

(tnn)

2021-10-03 17:57:03 UTC MAIN commitmail json YAML

doc: Updated net/dbip-country-lite to 2021.10

(fcambus)

2021-10-03 17:56:53 UTC pkgsrc-2021Q3 commitmail json YAML

Pullup ticket #6502

I hereby declare the pullup season open :)

(bsiegert)

2021-10-03 17:56:52 UTC MAIN commitmail json YAML

dbip-country-lite: update to 2021-10.

No upstream ChangeLog.

(fcambus)

2021-10-03 17:56:08 UTC MAIN commitmail json YAML

doc: Updated net/dbip-city-lite to 2021.10

(fcambus)

2021-10-03 17:55:56 UTC pkgsrc-2021Q3 commitmail json YAML

Pullup ticket #6502 - requested by wiz
graphics/libexif: security fix

Revisions pulled up:
- graphics/libexif/Makefile                                    1.49
- graphics/libexif/distinfo                                    1.33

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Wed Sep 29 08:42:57 UTC 2021

  Modified Files:
  pkgsrc/graphics/libexif: Makefile distinfo

  Log Message:
  libexif: update to 0.6.23.

  libexif-0.6.23 (2021-09-12):

    * Translation updates: es, pl, uk, fr
    * EXIF_TAG_SENSITIVITY_TYPE decoder added, added some more Exif 2.3 tags:
      - EXIF_TAG_STANDARD_OUTPUT_SENSITIVITY
      - EXIF_TAG_RECOMMENDED_EXPOSURE_INDEX
      - EXIF_TAG_ISO_SPEED
      - EXIF_TAG_ISO_SPEEDLatitudeYYY
      - EXIF_TAG_ISO_SPEEDLatitudeZZZ
      - EXIF_TAG_OFFSET_TIME
      - EXIF_TAG_OFFSET_TIME_ORIGINAL
      - EXIF_TAG_OFFSET_TIME_DIGITIZED
      - EXIF_TAG_IMAGE_DEPTH
    * be more relaxed to out of order JPG / EXIF dataheaders in files generated by some tools
    * default GPS IFD table added
    * Decode more Nikon Makernote tag names
    * Added Apple iOS Makernote
    * Security fixes:
      * CVE-2020-0198: unsigned integer overflow in exif_data_load_data_content
      * CVE-2020-0452: compiler optimization could remove an a
        bufferoverflow check, making a buffer overflow possible with some
        EXIF tags
      * some more denial of service (compute time or stack exhaustion) counter-measures
        added that avoid minutes of decoding time with malformed files found
        by OSS-Fuzz

(bsiegert)

2021-10-03 17:55:54 UTC MAIN commitmail json YAML

dbip-city-lite: update to 2021-10.

No upstream ChangeLog.

(fcambus)

2021-10-03 17:55:14 UTC MAIN commitmail json YAML

doc: Updated net/dbip-asn-lite to 2021.10

(fcambus)

2021-10-03 17:55:01 UTC MAIN commitmail json YAML

dbip-asn-lite: update to 2021-10.

No upstream ChangeLog.

(fcambus)

2021-10-03 17:53:11 UTC MAIN commitmail json YAML

For the sake of MKPIE, we need to .include Makefile.common before
options.mk.

Since Makefile.common now does not see the x11 option, we have to move
all x11 related commands into options.mk. Within options, move
.includes to the end for consistency.

(hauke)

2021-10-03 17:34:11 UTC MAIN commitmail json YAML

Fix dynamic linking with rhash

Make the rhash package install a .so file
not just .so.0 so that -lrhash use
dynamic linking not static linking.
Remove depmethod build since the package now
works with dynamic linking.
While here add pkgconfig override to pkgconfig
file.
Bump PKGREVISION due to PLIST change.

(nros)

2021-10-03 17:31:23 UTC MAIN commitmail json YAML

log4cpp: don't autodetect doxygen

(tnn)

2021-10-03 13:42:07 UTC MAIN commitmail json YAML

doc: Added net/wget2 version 2.0.0

(ryoon)

2021-10-03 13:41:11 UTC MAIN commitmail json YAML

net/wget2: import wget2-2.0.0

GNU Wget2 is the successor of GNU Wget, a file and recursive website
downloader. Designed and written from scratch it wraps around
libwget, that provides the basic functions needed by a web client.
Wget2 works multi-threaded and uses many features to allow fast
operation.

(ryoon)

2021-10-03 13:19:42 UTC MAIN commitmail json YAML

doc: Updated misc/gnuls to 9.0

(ryoon)

2021-10-03 13:12:33 UTC MAIN commitmail json YAML

doc: Updated sysutils/coreutils to 9.0

(ryoon)

2021-10-03 13:11:56 UTC MAIN commitmail json YAML

coreutils: Update to 9.0

Changelog:
* Noteworthy changes in release 9.0 (2021-09-24) [stable]

** Bug fixes

  chmod -v no longer misreports modes of dangling symlinks.
  [bug introduced in coreutils-5.3.0]

  cp -a --attributes-only now never removes destination files,
  even if the destination files are hardlinked, or the source
  is a non regular file.
  [bug introduced in coreutils-8.6]

  csplit --suppress-matched now elides the last matched line
  when a specific number of pattern matches are performed.
  [bug introduced with the --suppress-matched feature in coreutils-8.22]

  df no longer outputs duplicate remote mounts in the presence of bind mounts.
  [bug introduced in coreutils-8.26]

  df no longer mishandles command-line args that it pre-mounts
  [bug introduced in coreutils-8.29]

  du no longer crashes on XFS file systems when the directory hierarchy is
  heavily changed during the run.
  [bug introduced in coreutils-8.25]

  env -S no longer crashes when given unusual whitespace characters
  [bug introduced in coreutils-8.30]

  expr no longer mishandles unmatched \(...\) in regular expressions.
  [bug introduced in coreutils-6.0]

  ls no longer crashes when printing the SELinux context for unstatable files.
  [bug introduced in coreutils-6.9.91]

  mkdir -m no longer mishandles modes more generous than the umask.
  [bug introduced in coreutils-8.22]

  nl now handles single character --section-delimiter arguments,
  by assuming a second ':' character has been specified, as specified by POSIX.
  [This bug was present in "the beginning".]

  pr again adjusts tabs in input, to maintain alignment in multi column output.
  [bug introduced in coreutils-6.9]

  rm no longer skips an extra file when the removal of an empty directory fails.
  [bug introduced by the rewrite to use fts in coreutils-8.0]

  split --number=K/N will again correctly split chunk K of N to stdout.
  Previously a chunk starting after 128KiB, output the wrong part of the file.
  [bug introduced in coreutils-8.26]

  tail -f no longer overruns a stack buffer when given too many files
  to follow and ulimit -n exceeds 1024.
  [bug introduced in coreutils-7.5]

  tr no longer crashes when using --complement with certain
  invalid combinations of case character classes.
  [bug introduced in coreutils-8.6]

  basenc --base64 --decode no longer silently discards decoded characters
  on (1024*5) buffer boundaries
  [bug introduced in coreutils-8.31]

** Changes in behavior

  cp and install now default to copy-on-write (COW) if available.

  cp, install and mv now use the copy_file_range syscall if available.
  Also, they use lseek+SEEK_HOLE rather than ioctl+FS_IOC_FIEMAP on sparse
  files, as lseek is simpler and more portable.

  On GNU/Linux systems, ls no longer issues an error message on a
  directory merely because it was removed.  This reverts a change
  that was made in release 8.32.

  ptx -T no longer attempts to substitute old-fashioned TeX escapes
  for 8-bit non-ASCII alphabetic characters.  TeX indexes should
  instead use '\usepackage[latin1]{inputenc}' or equivalent.

  stat will use decomposed (major,minor) device numbers in its default format.
  This is less ambiguous, and more consistent with ls.

  sum [-r] will output a file name, even if only a single name is passed.
  This is consistent with sum -s, cksum, and other sum(1) implementations.

** New Features

  cksum now supports the -a (--algorithm) option to select any
  of the existing sum, md5sum, b2sum, sha*sum implementations etc.
  cksum now subsumes all of these programs, and coreutils
  will introduce no future standalone checksum utility.

  cksum -a now supports the 'sm3' argument, to use the SM3 digest algorithm.

  cksum --check now supports auto detecting the digest type to use,
  when verifying tagged format checksums.

  expr and factor now support bignums on all platforms.

  ls --classify now supports the "always", "auto", or "never" flags,
  to support only outputting classifier characters if connected to a tty.

  ls now accepts the --sort=width option, to sort by file name width.
  This is useful to more compactly organize the default vertical column output.

  ls now accepts the --zero option, to terminate each output line with
  NUL instead of newline.

  nl --line-increment can now take a negative number to decrement the count.

  stat supports more formats for representing decomposed device numbers.
  %Hd,%Ld and %Hr,%Lr will output major,minor device numbers and device types
  respectively.  %d corresponds to st_dev and %r to std_rdev.

** Improvements

  cat --show-ends will now show \r\n as ^M$.  Previously the \r was taken
  literally, thus overwriting the first character in the line with '$'.

  cksum [-a crc] is now up to 4 times faster by using a slice by 8 algorithm,
  and at least 8 times faster where pclmul instructions are supported.
  A new --debug option will indicate if pclmul is being used.

  md5sum --check now supports checksum files with CRLF line endings.
  This also applies to cksum, sha*sum, and b2sum.

  df now recognizes these file systems as remote:
  acfs, coda, fhgfs, gpfs, ibrix, ocfs2, and vxfs.

  rmdir now clarifies the error if a symlink_to_dir/ has not been traversed.
  This is the case on GNU/Linux systems, where the trailing slash is ignored.

  stat and tail now know about the "devmem", "exfat", "secretmem", "vboxsf",
  and "zonefs" file system types.  stat -f -c%T now reports the file system
  type, and tail -f uses polling for "vboxsf" and inotify for the others.

  timeout now supports sub-second timeouts on macOS.

  wc is up to 5 times faster when counting only new line characters,
  where avx2 instructions are supported.
  A new --debug option will indicate if avx2 is being used.

(ryoon)

2021-10-03 12:49:58 UTC MAIN commitmail json YAML

blackbox: take maintainership

(gutteridge)

2021-10-03 12:46:01 UTC MAIN commitmail json YAML

doc: Updated devel/py-guppy3 to 3.1.1

(gutteridge)

2021-10-03 12:45:52 UTC MAIN commitmail json YAML

py-guppy3: update to 3.1.1

Version 3.1.1

    * Build linux aarch64 wheel [odidev]
    * Fix Py 3.9 to use SIZEOF_PYGC_HEAD in _testinternalcapi
    * Slightly uasier to use unsafe repr for Path
    * End of support for Python 3.5
    * Fixed MorePrinter in Stat objects
    * Add warning about pywin32 < 300, if it's imported
    * Add guppy.__version__

(gutteridge)

2021-10-03 12:42:43 UTC MAIN commitmail json YAML

doc: Updated textproc/py-markups to 3.1.2

(gutteridge)

2021-10-03 12:42:28 UTC MAIN commitmail json YAML

retext: py-markups dependency no longer supports Python 3.6

(gutteridge)

2021-10-03 12:41:42 UTC MAIN commitmail json YAML

py-markups: update to 3.1.2

Version 3.1.2, 2021-09-06
=========================

* Incompatible change: Python 3.6 is no longer supported.
* Fixed replacing Markdown extensions in document.
* Fixed crash when using TOC backrefs in reStructuredText (issue #14,
  thanks Hrissimir for the patch).

(gutteridge)

2021-10-03 09:22:28 UTC MAIN commitmail json YAML

xemacs: Adjust inclusion order so MKPIE is properly honored

(nia)

2021-10-03 07:13:15 UTC MAIN commitmail json YAML

gprolog: Disable MKPIE

(nia)

2021-10-03 07:10:44 UTC MAIN commitmail json YAML

2021-10-03 07:06:42 UTC MAIN commitmail json YAML

mk/ocaml.mk: Disable MKPIE pending investigation by an ocaml-knower

(nia)

2021-10-03 06:02:33 UTC MAIN commitmail json YAML

doc/TODO: add some

+ asciidoc-9.1.1, bison-3.8.2, cascadia-ttf-2108.26, itstool-2.0.7,
  neon-0.32.1, poppler-21.10.0, vala-0.54.1.

(wiz)

2021-10-03 00:08:48 UTC MAIN commitmail json YAML

cmake: use >= for depends

(wiz)

2021-10-02 21:45:23 UTC MAIN commitmail json YAML

doc: Updated audio/termusic to 0.3.16

(pin)

2021-10-02 21:45:03 UTC MAIN commitmail json YAML

audio/termusic: update to 0.3.16

[v0.3.16]
-Rename playlist to library, and queue to playlist.
-New: loop mode configuration. Default is queue mode(aka consume mode), can
switch to loop mode and single loop mode by pressing "m" key when focusing
Playlist. In queue mode, previous song cannot be played as it's already consumed
from the playlist. In single loop mode, previous song will be ignored.
-Show volume in progress bar title.

(pin)

2021-10-02 21:43:44 UTC MAIN commitmail json YAML

doc: Updated x11/qt5ct to 1.5

(pin)

2021-10-02 21:43:20 UTC MAIN commitmail json YAML

x11/qt5ct: update to 1.5

V1.4
-added troubleshooting settings
-added Japanese translation (UTUMI Hirosi)
-updated Dutch translation (Heimen Stoffels)
-updated Spanish translation (Toni Est辿vez)
-updated Russian translation
-updated Greek translation (Dimitrios Glentadakis)

V1.5
-fixed build regression

(pin)

2021-10-02 21:41:51 UTC MAIN commitmail json YAML

doc: Updated devel/git-cliff to 0.4.0

(pin)

2021-10-02 21:41:31 UTC MAIN commitmail json YAML

devel/git-cliff: update to 0.4.0

Bug Fixes
-Update lychee arguments to skip checking files
-Remove tags from the base image names
-Remove only the leading "v" from tags (#18)

Documentation
-Add scope-sorted example (#16)
-Add raw/rendered output for scoped-sorted example
-Add packaging status badge to installation section
-Mention the signing key for binary releases (#17)
-Add "build from source" section to README.md

Features
-Add --sort argument for sorting commits (#15)

Miscellaneous Tasks
-Set a version for the checkout action
-Update the runner to ubuntu-20.04
-Use cache for docker builds
-Use docker meta for tagging for GHCR
-Extend the tags for docker meta
-Rename the GHCR package due to legacy reasons
-Specify the latest tag explicitly
-Use explicit image name for docker automated builds
-Use docker.yml workflow for CI/CD
-Upgrade dependencies

Styling
-Fix the newline issues in scoped-sorted example

(pin)

2021-10-02 21:39:42 UTC MAIN commitmail json YAML

doc: Updated sysutils/broot to 1.6.4

(pin)

2021-10-02 21:39:20 UTC MAIN commitmail json YAML

sysutils/broot: update to 1.6.4

-better scrolling behaviors - Fix #419
-fix special-path::Enter for symlinks - Fix #448

(pin)

2021-10-02 21:30:53 UTC MAIN commitmail json YAML

cmake: really require newer rhash

(wiz)

2021-10-02 20:54:57 UTC MAIN commitmail json YAML

Bump PKGREVISION of misc/rhash and require newer version in devel/cmake.
Fixes PR/56423.

(jklos)

2021-10-02 18:34:27 UTC MAIN commitmail json YAML

Updated devel/py-ruamel-yaml, textproc/py-ujson

(adam)

2021-10-02 18:33:50 UTC MAIN commitmail json YAML

py-ujson: updated to 4.2.0

4.2.0

Added

Add a default keyword argument to dumps
Add support for Python 3.10
Build 32-bit wheels for Windows
Build PyPy3 wheels for manylinux
Build wheels for musl aarch64 (aka ARM) Linux (musllinux_1_1_aarch64)
Build wheels for musl Linux (musllinux_1_1_x86_64)

Changed

Use declarative setup metadata
Wheel building updates
Rename master to main
Replace README.rst with Markdown

(adam)

2021-10-02 18:30:59 UTC MAIN commitmail json YAML

py-ruamel-yaml: updated to 0.17.16

0.17.16:
- also handle issue 397 when comment is newline

(adam)

2021-10-02 16:47:38 UTC MAIN commitmail json YAML

Updated devel/py-lazr.config, audio/faudio

(adam)

2021-10-02 16:46:31 UTC MAIN commitmail json YAML

faudio: updated to 21.10

21.10

New Features:

Update to FNA3D 21.10
Update to FAudio 21.10

Fixes:

Remove readonly from some internal math constants, mostly a GC microoptimization
Add a warning message when FAudio fails to load

(adam)

2021-10-02 16:45:42 UTC MAIN commitmail json YAML

py-lazr.config: updated to 2.2.3

2.2.3 (2021-01-26)
- Fix tests with zope.interface >= 5.0.0.
- Fix deprecation warning on Python >= 3.2.

(adam)

2021-10-02 15:01:47 UTC MAIN commitmail json YAML

Updated devel/p5-ExtUtils-CppGuess to 0.23

(wen)

2021-10-02 15:00:41 UTC MAIN commitmail json YAML

Update to 0.23

Upstream changes:
0.23 2021-05-31
- added CI - thanks @zmughal
- now recognises MacOS clang - thanks @xenu

0.22 2021-05-29
- Add C++ standard support flag detection - thanks @zmughal!
  See <https://github.com/tsee/extutils-cppguess/pull/24>.

(wen)

2021-10-02 13:28:26 UTC MAIN commitmail json YAML

Updated devel/p5-ExtUtils-CChecker to 0.11

(wen)

2021-10-02 13:27:46 UTC MAIN commitmail json YAML

Update to 0.11

Upstream changes:
0.11    2021-07-12
        [CHANGES]
        * Added `try_find_cflags_for`
        * Added `extend_module_build`
        * Various small style fixes

(wen)

2021-10-02 13:25:10 UTC MAIN commitmail json YAML

Updated devel/p5-Exception-Class to 1.45

(wen)

2021-10-02 13:24:27 UTC MAIN commitmail json YAML

Update to 1.45

Upstream changes:
1.45    2021-05-02

- The field names for an exception are now checked to ensure that they are
  valid Perl identifiers. Implemented by brian d foy. PR #13.

(wen)

2021-10-02 13:21:45 UTC MAIN commitmail json YAML

Updated devel/p5-enum to 1.12

(wen)

2021-10-02 13:21:00 UTC MAIN commitmail json YAML

Update to 1.12

Upstream changes:
1.12 2021-08-04 NEILB
    - Fixed documentation bug RT#132219, with PR#1 from JJ Atria.
    - Switched to Dist::Zilla

(wen)

2021-10-02 13:10:52 UTC MAIN commitmail json YAML

firefox: sync CHECK_PORTABILITY_SKIPs w/ devel/nss

(tnn)

2021-10-02 12:43:20 UTC MAIN commitmail json YAML

Updated devel/p5-Dist-Zilla to 6.024

(wen)

2021-10-02 12:42:00 UTC MAIN commitmail json YAML

Update to 6.024
Update DEPENDS

Upstream changes:
6.024    2021-08-01 15:38:44-04:00 America/New_York
        - pass the dist name to Software::License as the program name
          (thanks, Van de Bugger!)
        - create the ArchiveBuilder role for building the archive file
          (thanks, Graham Ollis!)

6.023    2021-07-06 21:37:37-04:00 America/New_York
        - tweak the autoprereqs tests to avoid failing when List::MoreUtils
          (which DZ does not actually need) is not installed)

6.022    2021-06-27 21:36:53-04:00 America/New_York
        - remove dependency on Class::Load, which is not used
        - bump prereq on PPI to 1.222, which is now used in PkgVersion
          (thanks, Dan Book and Sven Kirmess)

6.021    2021-06-27 21:31:21-04:00 America/New_York
        - [ broken release, don't bother ]

6.020    2021-06-14 12:16:09-04:00 America/New_York
        - The log colorization code was trying to use 24-bit color even when
          the installed Term::ANSIColor couldn't support it.  This has been
          fixed by requiring Term::ANSIColor v5.  Thanks, Robert Rothenberg,
          Michael McClimon, and Matthew Horsfall.

6.019    2021-06-13 08:39:14-04:00 America/New_York
        - When using "use_package" in PkgVersion, do not eradicate the entire
          block of "package NAME BLOCK" syntax!  Wow, what a bug...

6.018    2021-04-03 21:07:54-04:00 America/New_York (TRIAL RELEASE)
        - require perl v5.20.0, now seven years old
        - add Test::CleanNamespaces, clean all namespaces
        - add the same boilerplate of version/pragma/features to every module
        - colorize logger prefix when running in a terminal

6.017    2020-11-02 19:30:21-05:00 America/New_York
        - replace broken 6.016, released from a confused git repo

6.016    2020-11-02 19:27:18-05:00 America/New_York (TRIAL RELEASE)
        - the test generated by [MetaTests] is now an author test, not a
          release test (thanks, Karen Etheridge)
        - UploadToCPAN will now retry (thanks, PERLANCAR)
        - some bug fixes for msys (thanks, H奪kon H脱gland)

(wen)

2021-10-02 12:23:24 UTC MAIN commitmail json YAML

doc: Updated chat/matrix-synapse to 1.43.0

(js)

2021-10-02 12:23:13 UTC MAIN commitmail json YAML

Update chat/matrix-synapse to 1.43.0

Synapse 1.43.0 (2021-09-21)
===========================

This release drops support for the deprecated, unstable API for [MSC2858 (Multiple SSO Identity Providers)](https://github.com/matrix-org/matrix-doc/blob/master/proposals/2858-Multiple-SSO-Identity-Providers.md#unstable-prefix), as well as the undocumented `experimental.msc2858_enabled` config option. Client authors should update their clients to use the stable API, available since Synapse 1.30.

The documentation has been updated with configuration for routing `/spaces`, `/hierarchy` and `/summary` to workers. See [the upgrade notes](https://github.com/matrix-org/synapse/blob/release-v1.43/docs/upgrade.md#upgrading-to-v1430) for more details.

No significant changes since 1.43.0rc2.

Synapse 1.43.0rc2 (2021-09-17)
==============================

Bugfixes
--------

- Added opentracing logging to help debug [\#9424](https://github.com/matrix-org/synapse/issues/9424). ([\#10828](https://github.com/matrix-org/synapse/issues/10828))

Synapse 1.43.0rc1 (2021-09-14)
==============================

Features
--------

- Allow room creators to send historical events specified by [MSC2716](https://github.com/matrix-org/matrix-doc/pull/2716) in existing room versions. ([\#10566](https://github.com/matrix-org/synapse/issues/10566))
- Add config option to use non-default manhole password and keys. ([\#10643](https://github.com/matrix-org/synapse/issues/10643))
- Skip final GC at shutdown to improve restart performance. ([\#10712](https://github.com/matrix-org/synapse/issues/10712))
- Allow configuration of the oEmbed URLs used for URL previews. ([\#10714](https://github.com/matrix-org/synapse/issues/10714), [\#10759](https://github.com/matrix-org/synapse/issues/10759))
- Prefer [room version 9](https://github.com/matrix-org/matrix-doc/pull/3375) for restricted rooms per the [room version capabilities](https://github.com/matrix-org/matrix-doc/pull/3244) API. ([\#10772](https://github.com/matrix-org/synapse/issues/10772))

Bugfixes
--------

- Fix a long-standing bug where room avatars were not included in email notifications. ([\#10658](https://github.com/matrix-org/synapse/issues/10658))
- Fix a bug where the ordering algorithm was skipping the `origin_server_ts` step in the spaces summary resulting in unstable room orderings. ([\#10730](https://github.com/matrix-org/synapse/issues/10730))
- Fix edge case when persisting events into a room where there are multiple events we previously hadn't calculated auth chains for (and hadn't marked as needing to be calculated). ([\#10743](https://github.com/matrix-org/synapse/issues/10743))
- Fix a bug which prevented calls to `/createRoom` that included the `room_alias_name` parameter from being handled by worker processes. ([\#10757](https://github.com/matrix-org/synapse/issues/10757))
- Fix a bug which prevented user registration via SSO to require consent tracking for SSO mapping providers that don't prompt for Matrix ID selection. Contributed by @AndrewFerr. ([\#10733](https://github.com/matrix-org/synapse/issues/10733))
- Only return the stripped state events for the `m.space.child` events in a room for the spaces summary from [MSC2946](https://github.com/matrix-org/matrix-doc/pull/2946). ([\#10760](https://github.com/matrix-org/synapse/issues/10760))
- Properly handle room upgrades of spaces. ([\#10774](https://github.com/matrix-org/synapse/issues/10774))
- Fix a bug which generated invalid homeserver config when the `frontend_proxy` worker type was passed to the Synapse Worker-based Complement image. ([\#10783](https://github.com/matrix-org/synapse/issues/10783))

Improved Documentation
----------------------

- Minor fix to the `media_repository` developer documentation. Contributed by @cuttingedge1109. ([\#10556](https://github.com/matrix-org/synapse/issues/10556))
- Update the documentation to note that the `/spaces` and `/hierarchy` endpoints can be routed to workers. ([\#10648](https://github.com/matrix-org/synapse/issues/10648))
- Clarify admin API documentation on undoing room deletions. ([\#10735](https://github.com/matrix-org/synapse/issues/10735))
- Split up the modules documentation and add examples for module developers. ([\#10758](https://github.com/matrix-org/synapse/issues/10758))
- Correct 2 typographical errors in the [Log Contexts documentation](https://matrix-org.github.io/synapse/latest/log_contexts.html). ([\#10795](https://github.com/matrix-org/synapse/issues/10795))
- Fix a wording mistake in the sample configuration. Contributed by @bramvdnheuvel:nltrix.net. ([\#10804](https://github.com/matrix-org/synapse/issues/10804))

Deprecations and Removals
-------------------------

- Remove the [unstable MSC2858 API](https://github.com/matrix-org/matrix-doc/blob/master/proposals/2858-Multiple-SSO-Identity-Providers.md#unstable-prefix), including the undocumented `experimental.msc2858_enabled` config option. The unstable API has been deprecated since Synapse 1.35. Client authors should update their clients to use the stable API introduced in Synapse 1.30 if they have not already done so. ([\#10693](https://github.com/matrix-org/synapse/issues/10693))

Internal Changes
----------------

- Add OpenTracing logging to help debug stuck messages (as described by issue [#9424](https://github.com/matrix-org/synapse/issues/9424)). ([\#10704](https://github.com/matrix-org/synapse/issues/10704))
- Add type annotations to the `synapse.util` package. ([\#10601](https://github.com/matrix-org/synapse/issues/10601))
- Ensure `rooms.creator` field is always populated for easy lookup in [MSC2716](https://github.com/matrix-org/matrix-doc/pull/2716) usage later. ([\#10697](https://github.com/matrix-org/synapse/issues/10697))
- Add missing type hints to REST servlets. ([\#10707](https://github.com/matrix-org/synapse/issues/10707), [\#10728](https://github.com/matrix-org/synapse/issues/10728), [\#10736](https://github.com/matrix-org/synapse/issues/10736))
- Do not include rooms with unknown room versions in the spaces summary results. ([\#10727](https://github.com/matrix-org/synapse/issues/10727))
- Additional error checking for the `preset` field when creating a room. ([\#10738](https://github.com/matrix-org/synapse/issues/10738))
- Clean up some of the federation event authentication code for clarity. ([\#10744](https://github.com/matrix-org/synapse/issues/10744), [\#10745](https://github.com/matrix-org/synapse/issues/10745), [\#10746](https://github.com/matrix-org/synapse/issues/10746), [\#10771](https://github.com/matrix-org/synapse/issues/10771), [\#10773](https://github.com/matrix-org/synapse/issues/10773), [\#10781](https://github.com/matrix-org/synapse/issues/10781))
- Add an index to `presence_stream` to hopefully speed up startups a little. ([\#10748](https://github.com/matrix-org/synapse/issues/10748))
- Refactor event size checking code to simplify searching the codebase for the origins of certain error strings that are occasionally emitted. ([\#10750](https://github.com/matrix-org/synapse/issues/10750))
- Move tests relating to rooms having encryption out of the user directory tests. ([\#10752](https://github.com/matrix-org/synapse/issues/10752))
- Use `attrs` internally for the URL preview code & update documentation. ([\#10753](https://github.com/matrix-org/synapse/issues/10753))
- Minor speed ups when joining large rooms over federation. ([\#10754](https://github.com/matrix-org/synapse/issues/10754), [\#10755](https://github.com/matrix-org/synapse/issues/10755), [\#10756](https://github.com/matrix-org/synapse/issues/10756), [\#10780](https://github.com/matrix-org/synapse/issues/10780), [\#10784](https://github.com/matrix-org/synapse/issues/10784))
- Add a constant for `m.federate`. ([\#10775](https://github.com/matrix-org/synapse/issues/10775))
- Add a script to update the Debian changelog in a Docker container for systems that are not Debian-based. ([\#10778](https://github.com/matrix-org/synapse/issues/10778))
- Change the format of authenticated users in logs when a user is being puppeted by and admin user. ([\#10779](https://github.com/matrix-org/synapse/issues/10779))
- Remove fixed and flakey tests from the Sytest blacklist. ([\#10788](https://github.com/matrix-org/synapse/issues/10788))
- Improve internal details of the user directory code. ([\#10789](https://github.com/matrix-org/synapse/issues/10789))
- Use direct references to config flags. ([\#10798](https://github.com/matrix-org/synapse/issues/10798))
- Ensure the Rust reporter passes type checking with jaeger-client 4.7's type annotations. ([\#10799](https://github.com/matrix-org/synapse/issues/10799))

Synapse 1.42.0 (2021-09-07)
===========================

This version of Synapse removes deprecated room-management admin APIs, removes out-of-date email pushers, and improves error handling for fallback templates for user-interactive authentication. For more information on these points, server administrators are encouraged to read [the upgrade notes](docs/upgrade.md#upgrading-to-v1420).

No significant changes since 1.42.0rc2.

Synapse 1.42.0rc2 (2021-09-06)
==============================

Features
--------

- Support room version 9 from [MSC3375](https://github.com/matrix-org/matrix-doc/pull/3375). ([\#10747](https://github.com/matrix-org/synapse/issues/10747))

Internal Changes
----------------

- Print a warning when using one of the deprecated `template_dir` settings. ([\#10768](https://github.com/matrix-org/synapse/issues/10768))

Synapse 1.42.0rc1 (2021-09-01)
==============================

Features
--------

- Add support for [MSC3231](https://github.com/matrix-org/matrix-doc/pull/3231): Token authenticated registration. Users can be required to submit a token during registration to authenticate themselves. Contributed by Callum Brown. ([\#10142](https://github.com/matrix-org/synapse/issues/10142))
- Add support for [MSC3283](https://github.com/matrix-org/matrix-doc/pull/3283): Expose `enable_set_displayname` in capabilities. ([\#10452](https://github.com/matrix-org/synapse/issues/10452))
- Port the `PresenceRouter` module interface to the new generic interface. ([\#10524](https://github.com/matrix-org/synapse/issues/10524))
- Add pagination to the spaces summary based on updates to [MSC2946](https://github.com/matrix-org/matrix-doc/pull/2946). ([\#10613](https://github.com/matrix-org/synapse/issues/10613), [\#10725](https://github.com/matrix-org/synapse/issues/10725))

Bugfixes
--------

- Validate new `m.room.power_levels` events. Contributed by @aaronraimist. ([\#10232](https://github.com/matrix-org/synapse/issues/10232))
- Display an error on User-Interactive Authentication fallback pages when authentication fails. Contributed by Callum Brown. ([\#10561](https://github.com/matrix-org/synapse/issues/10561))
- Remove pushers when deleting an e-mail address from an account. Pushers for old unlinked emails will also be deleted. ([\#10581](https://github.com/matrix-org/synapse/issues/10581), [\#10734](https://github.com/matrix-org/synapse/issues/10734))
- Reject Client-Server `/keys/query` requests which provide `device_ids` incorrectly. ([\#10593](https://github.com/matrix-org/synapse/issues/10593))
- Rooms with unsupported room versions are no longer returned via `/sync`. ([\#10644](https://github.com/matrix-org/synapse/issues/10644))
- Enforce the maximum length for per-room display names and avatar URLs. ([\#10654](https://github.com/matrix-org/synapse/issues/10654))
- Fix a bug which caused the `synapse_user_logins_total` Prometheus metric not to be correctly initialised on restart. ([\#10677](https://github.com/matrix-org/synapse/issues/10677))
- Improve `ServerNoticeServlet` to avoid duplicate requests and add unit tests. ([\#10679](https://github.com/matrix-org/synapse/issues/10679))
- Fix long-standing issue which caused an error when a thumbnail is requested and there are multiple thumbnails with the same quality rating. ([\#10684](https://github.com/matrix-org/synapse/issues/10684))
- Fix a regression introduced in v1.41.0 which affected the performance of concurrent fetches of large sets of events, in extreme cases causing the process to hang. ([\#10703](https://github.com/matrix-org/synapse/issues/10703))
- Fix a regression introduced in Synapse 1.41 which broke email transmission on Systems using older versions of the Twisted library. ([\#10713](https://github.com/matrix-org/synapse/issues/10713))

Improved Documentation
----------------------

- Add documentation on how to connect Django with Synapse using OpenID Connect and django-oauth-toolkit. Contributed by @HugoDelval. ([\#10192](https://github.com/matrix-org/synapse/issues/10192))
- Advertise https://matrix-org.github.io/synapse documentation in the `README` and `CONTRIBUTING` files. ([\#10595](https://github.com/matrix-org/synapse/issues/10595))
- Fix some of the titles not rendering in the OpenID Connect documentation. ([\#10639](https://github.com/matrix-org/synapse/issues/10639))
- Minor clarifications to the documentation for reverse proxies. ([\#10708](https://github.com/matrix-org/synapse/issues/10708))
- Remove table of contents from the top of installation and contributing documentation pages. ([\#10711](https://github.com/matrix-org/synapse/issues/10711))

Deprecations and Removals
-------------------------

- Remove deprecated Shutdown Room and Purge Room Admin API. ([\#8830](https://github.com/matrix-org/synapse/issues/8830))

Internal Changes
----------------

- Improve type hints for the proxy agent and SRV resolver modules. Contributed by @dklimpel. ([\#10608](https://github.com/matrix-org/synapse/issues/10608))
- Clean up some of the federation event authentication code for clarity. ([\#10614](https://github.com/matrix-org/synapse/issues/10614), [\#10615](https://github.com/matrix-org/synapse/issues/10615), [\#10624](https://github.com/matrix-org/synapse/issues/10624), [\#10640](https://github.com/matrix-org/synapse/issues/10640))
- Add a comment asking developers to leave a reason when bumping the database schema version. ([\#10621](https://github.com/matrix-org/synapse/issues/10621))
- Remove not needed database updates in modify user admin API. ([\#10627](https://github.com/matrix-org/synapse/issues/10627))
- Convert room member storage tuples to `attrs` classes. ([\#10629](https://github.com/matrix-org/synapse/issues/10629), [\#10642](https://github.com/matrix-org/synapse/issues/10642))
- Use auto-attribs for the attrs classes used in sync. ([\#10630](https://github.com/matrix-org/synapse/issues/10630))
- Make `backfill` and `get_missing_events` use the same codepath. ([\#10645](https://github.com/matrix-org/synapse/issues/10645))
- Improve the performance of the `/hierarchy` API (from [MSC2946](https://github.com/matrix-org/matrix-doc/pull/2946)) by caching responses received over federation. ([\#10647](https://github.com/matrix-org/synapse/issues/10647))
- Run a nightly CI build against Twisted trunk. ([\#10651](https://github.com/matrix-org/synapse/issues/10651), [\#10672](https://github.com/matrix-org/synapse/issues/10672))
- Do not print out stack traces for network errors when fetching data over federation. ([\#10662](https://github.com/matrix-org/synapse/issues/10662))
- Simplify tests for device admin rest API. ([\#10664](https://github.com/matrix-org/synapse/issues/10664))
- Add missing type hints to REST servlets. ([\#10665](https://github.com/matrix-org/synapse/issues/10665), [\#10666](https://github.com/matrix-org/synapse/issues/10666), [\#10674](https://github.com/matrix-org/synapse/issues/10674))
- Flatten the `tests.synapse.rests` package by moving the contents of `v1` and `v2_alpha` into the parent. ([\#10667](https://github.com/matrix-org/synapse/issues/10667))
- Update `complement.sh` to rebuild the base Docker image when run with workers. ([\#10686](https://github.com/matrix-org/synapse/issues/10686))
- Split the event-processing methods in `FederationHandler` into a separate `FederationEventHandler`. ([\#10692](https://github.com/matrix-org/synapse/issues/10692))
- Remove unused `compare_digest` function. ([\#10706](https://github.com/matrix-org/synapse/issues/10706))

(js)

2021-10-02 11:49:13 UTC MAIN commitmail json YAML

doc: Updated chat/element-web to 1.9.0

(js)

2021-10-02 11:49:02 UTC MAIN commitmail json YAML

Update chat/element-web to 1.9.0

Changes in [1.9.0](https://github.com/vector-im/element-desktop/releases/tag/v1.9.0) (2021-09-27)
=================================================================================================

## 笨ィ Features
* Fix space keyboard shortcuts conflicting with native zoom shortcuts ([\#19037](https://github.com/vector-im/element-web/pull/19037)). Fixes #18481 and undefined/element-web#18481.
* Say Joining space instead of Joining room where we know its a space ([\#6818](https://github.com/matrix-org/matrix-react-sdk/pull/6818)). Fixes #19064 and #19064.
* Add warning that some spaces may not be relinked to the newly upgraded room ([\#6805](https://github.com/matrix-org/matrix-react-sdk/pull/6805)). Fixes #18858 and #18858.
* Delabs Spaces, iterate some copy and move communities/space toggle to preferences ([\#6594](https://github.com/matrix-org/matrix-react-sdk/pull/6594)). Fixes #18088, #18524 #18088 and #18088.
* Show "Message" in the user info panel instead of "Start chat" ([\#6319](https://github.com/matrix-org/matrix-react-sdk/pull/6319)). Fixes #17877 and #17877. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Fix space keyboard shortcuts conflicting with native zoom shortcuts ([\#6804](https://github.com/matrix-org/matrix-react-sdk/pull/6804)).
* Replace plain text emoji at the end of a line ([\#6784](https://github.com/matrix-org/matrix-react-sdk/pull/6784)). Fixes #18833 and #18833. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Simplify Space Panel layout and fix some edge cases ([\#6800](https://github.com/matrix-org/matrix-react-sdk/pull/6800)). Fixes #18694 and #18694.
* Show unsent message warning on Space Panel buttons ([\#6778](https://github.com/matrix-org/matrix-react-sdk/pull/6778)). Fixes #18891 and #18891.
* Hide mute/unmute button in UserInfo for Spaces as it makes no sense ([\#6790](https://github.com/matrix-org/matrix-react-sdk/pull/6790)). Fixes #19007 and #19007.
* Fix automatic field population in space create menu not validating ([\#6792](https://github.com/matrix-org/matrix-react-sdk/pull/6792)). Fixes #19005 and #19005.
* Optimize input label transition on focus ([\#6783](https://github.com/matrix-org/matrix-react-sdk/pull/6783)). Fixes #12876 and #12876. Contributed by [MadLittleMods](https://github.com/MadLittleMods).
* Adapt and re-use the RolesRoomSettingsTab for Spaces ([\#6779](https://github.com/matrix-org/matrix-react-sdk/pull/6779)). Fixes #18908 #18909 and #18908.
* Deduplicate join rule management between rooms and spaces ([\#6724](https://github.com/matrix-org/matrix-react-sdk/pull/6724)). Fixes #18798 and #18798.
* Add config option to turn on in-room event sending timing metrics ([\#6766](https://github.com/matrix-org/matrix-react-sdk/pull/6766)).
* Improve the upgrade for restricted user experience ([\#6764](https://github.com/matrix-org/matrix-react-sdk/pull/6764)). Fixes #18677 and #18677.
* Improve tooltips on space quick actions and explore button ([\#6760](https://github.com/matrix-org/matrix-react-sdk/pull/6760)). Fixes #18528 and #18528.
* Make space members and user info behave more expectedly ([\#6765](https://github.com/matrix-org/matrix-react-sdk/pull/6765)). Fixes #17018 and #17018.
* hide no-op m.room.encryption events and better word param changes ([\#6747](https://github.com/matrix-org/matrix-react-sdk/pull/6747)). Fixes #18597 and #18597.
* Respect m.space.parent relations if they hold valid permissions ([\#6746](https://github.com/matrix-org/matrix-react-sdk/pull/6746)). Fixes #10935 and #10935.
* Space panel accessibility improvements ([\#6744](https://github.com/matrix-org/matrix-react-sdk/pull/6744)). Fixes #18892 and #18892.

## �汾� Bug Fixes
* Fix spacing for message composer buttons ([\#6854](https://github.com/matrix-org/matrix-react-sdk/pull/6854)).
* Fix accessing field on oobData which may be undefined ([\#6830](https://github.com/matrix-org/matrix-react-sdk/pull/6830)). Fixes #19085 and #19085.
* Fix reactions aria-label not being a string and thus being read as [Object object] ([\#6828](https://github.com/matrix-org/matrix-react-sdk/pull/6828)).
* Fix missing null guard in space hierarchy pagination ([\#6821](https://github.com/matrix-org/matrix-react-sdk/pull/6821)). Fixes matrix-org/element-web-rageshakes#6299 and matrix-org/element-web-rageshakes#6299.
* Fix checks to show prompt to start new chats ([\#6812](https://github.com/matrix-org/matrix-react-sdk/pull/6812)).
* Fix room list scroll jumps ([\#6777](https://github.com/matrix-org/matrix-react-sdk/pull/6777)). Fixes #17460 #18440 and #17460. Contributed by [robintown](https://github.com/robintown).
* Fix various message bubble alignment issues ([\#6785](https://github.com/matrix-org/matrix-react-sdk/pull/6785)). Fixes #18293, #18294 #18305 and #18293. Contributed by [robintown](https://github.com/robintown).
* Make message bubble font size consistent ([\#6795](https://github.com/matrix-org/matrix-react-sdk/pull/6795)). Contributed by [robintown](https://github.com/robintown).
* Fix edge cases around joining new room which does not belong to active space ([\#6797](https://github.com/matrix-org/matrix-react-sdk/pull/6797)). Fixes #19025 and #19025.
* Fix edge case space issues around creation and initial view ([\#6798](https://github.com/matrix-org/matrix-react-sdk/pull/6798)). Fixes #19023 and #19023.
* Stop spinner on space preview if the join fails ([\#6803](https://github.com/matrix-org/matrix-react-sdk/pull/6803)). Fixes #19034 and #19034.
* Fix emoji picker and stickerpicker not appearing correctly when opened ([\#6793](https://github.com/matrix-org/matrix-react-sdk/pull/6793)). Fixes #19012 and #19012. Contributed by [Palid](https://github.com/Palid).
* Fix autocomplete not having y-scroll ([\#6794](https://github.com/matrix-org/matrix-react-sdk/pull/6794)). Fixes #18997 and #18997. Contributed by [Palid](https://github.com/Palid).
* Fix broken edge case with public space creation with no alias ([\#6791](https://github.com/matrix-org/matrix-react-sdk/pull/6791)). Fixes #19003 and #19003.
* Redirect from /#/welcome to /#/home if already logged in ([\#6786](https://github.com/matrix-org/matrix-react-sdk/pull/6786)). Fixes #18990 and #18990. Contributed by [aaronraimist](https://github.com/aaronraimist).
* Fix build issues from two conflicting PRs landing without merge conflict ([\#6780](https://github.com/matrix-org/matrix-react-sdk/pull/6780)).
* Render guest settings only in public rooms/spaces ([\#6693](https://github.com/matrix-org/matrix-react-sdk/pull/6693)). Fixes #18776 and #18776. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Fix message bubble corners being wrong in the presence of hidden events ([\#6776](https://github.com/matrix-org/matrix-react-sdk/pull/6776)). Fixes #18124 and #18124. Contributed by [robintown](https://github.com/robintown).
* Debounce read marker update on scroll ([\#6771](https://github.com/matrix-org/matrix-react-sdk/pull/6771)). Fixes #18961 and #18961.
* Use cursor:pointer on space panel buttons ([\#6770](https://github.com/matrix-org/matrix-react-sdk/pull/6770)). Fixes #18951 and #18951.
* Fix regressed tab view buttons in space update toast ([\#6761](https://github.com/matrix-org/matrix-react-sdk/pull/6761)). Fixes #18781 and #18781.

Changes in [1.8.6-rc.2](https://github.com/vector-im/element-desktop/releases/tag/v1.8.6-rc.2) (2021-09-22)
===========================================================================================================

## �汾� Bug Fixes
* Fix spacing for message composer buttons ([\#6854](https://github.com/matrix-org/matrix-react-sdk/pull/6854)).

Changes in [1.8.6-rc.1](https://github.com/vector-im/element-desktop/releases/tag/v1.8.6-rc.1) (2021-09-21)
===========================================================================================================

## 笨ィ Features
* Fix space keyboard shortcuts conflicting with native zoom shortcuts ([\#19037](https://github.com/vector-im/element-web/pull/19037)). Fixes #18481 and undefined/element-web#18481.
* Say Joining space instead of Joining room where we know its a space ([\#6818](https://github.com/matrix-org/matrix-react-sdk/pull/6818)). Fixes #19064 and #19064.
* Add warning that some spaces may not be relinked to the newly upgraded room ([\#6805](https://github.com/matrix-org/matrix-react-sdk/pull/6805)). Fixes #18858 and #18858.
* Delabs Spaces, iterate some copy and move communities/space toggle to preferences ([\#6594](https://github.com/matrix-org/matrix-react-sdk/pull/6594)). Fixes #18088, #18524 #18088 and #18088.
* Show "Message" in the user info panel instead of "Start chat" ([\#6319](https://github.com/matrix-org/matrix-react-sdk/pull/6319)). Fixes #17877 and #17877. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Fix space keyboard shortcuts conflicting with native zoom shortcuts ([\#6804](https://github.com/matrix-org/matrix-react-sdk/pull/6804)).
* Replace plain text emoji at the end of a line ([\#6784](https://github.com/matrix-org/matrix-react-sdk/pull/6784)). Fixes #18833 and #18833. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Simplify Space Panel layout and fix some edge cases ([\#6800](https://github.com/matrix-org/matrix-react-sdk/pull/6800)). Fixes #18694 and #18694.
* Show unsent message warning on Space Panel buttons ([\#6778](https://github.com/matrix-org/matrix-react-sdk/pull/6778)). Fixes #18891 and #18891.
* Hide mute/unmute button in UserInfo for Spaces as it makes no sense ([\#6790](https://github.com/matrix-org/matrix-react-sdk/pull/6790)). Fixes #19007 and #19007.
* Fix automatic field population in space create menu not validating ([\#6792](https://github.com/matrix-org/matrix-react-sdk/pull/6792)). Fixes #19005 and #19005.
* Optimize input label transition on focus ([\#6783](https://github.com/matrix-org/matrix-react-sdk/pull/6783)). Fixes #12876 and #12876. Contributed by [MadLittleMods](https://github.com/MadLittleMods).
* Adapt and re-use the RolesRoomSettingsTab for Spaces ([\#6779](https://github.com/matrix-org/matrix-react-sdk/pull/6779)). Fixes #18908 #18909 and #18908.
* Deduplicate join rule management between rooms and spaces ([\#6724](https://github.com/matrix-org/matrix-react-sdk/pull/6724)). Fixes #18798 and #18798.
* Add config option to turn on in-room event sending timing metrics ([\#6766](https://github.com/matrix-org/matrix-react-sdk/pull/6766)).
* Improve the upgrade for restricted user experience ([\#6764](https://github.com/matrix-org/matrix-react-sdk/pull/6764)). Fixes #18677 and #18677.
* Improve tooltips on space quick actions and explore button ([\#6760](https://github.com/matrix-org/matrix-react-sdk/pull/6760)). Fixes #18528 and #18528.
* Make space members and user info behave more expectedly ([\#6765](https://github.com/matrix-org/matrix-react-sdk/pull/6765)). Fixes #17018 and #17018.
* hide no-op m.room.encryption events and better word param changes ([\#6747](https://github.com/matrix-org/matrix-react-sdk/pull/6747)). Fixes #18597 and #18597.
* Respect m.space.parent relations if they hold valid permissions ([\#6746](https://github.com/matrix-org/matrix-react-sdk/pull/6746)). Fixes #10935 and #10935.
* Space panel accessibility improvements ([\#6744](https://github.com/matrix-org/matrix-react-sdk/pull/6744)). Fixes #18892 and #18892.

## �汾� Bug Fixes
* Revert Firefox composer deletion hacks ([\#6844](https://github.com/matrix-org/matrix-react-sdk/pull/6844)). Fixes #19103 and #19103. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Fix accessing field on oobData which may be undefined ([\#6830](https://github.com/matrix-org/matrix-react-sdk/pull/6830)). Fixes #19085 and #19085.
* Fix pill deletion on Firefox 78 ([\#6832](https://github.com/matrix-org/matrix-react-sdk/pull/6832)). Fixes #19077 and #19077. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Fix reactions aria-label not being a string and thus being read as [Object object] ([\#6828](https://github.com/matrix-org/matrix-react-sdk/pull/6828)).
* Fix missing null guard in space hierarchy pagination ([\#6821](https://github.com/matrix-org/matrix-react-sdk/pull/6821)). Fixes matrix-org/element-web-rageshakes#6299 and matrix-org/element-web-rageshakes#6299.
* Fix checks to show prompt to start new chats ([\#6812](https://github.com/matrix-org/matrix-react-sdk/pull/6812)).
* Fix room list scroll jumps ([\#6777](https://github.com/matrix-org/matrix-react-sdk/pull/6777)). Fixes #17460 #18440 and #17460. Contributed by [robintown](https://github.com/robintown).
* Fix various message bubble alignment issues ([\#6785](https://github.com/matrix-org/matrix-react-sdk/pull/6785)). Fixes #18293, #18294 #18305 and #18293. Contributed by [robintown](https://github.com/robintown).
* Make message bubble font size consistent ([\#6795](https://github.com/matrix-org/matrix-react-sdk/pull/6795)). Contributed by [robintown](https://github.com/robintown).
* Fix edge cases around joining new room which does not belong to active space ([\#6797](https://github.com/matrix-org/matrix-react-sdk/pull/6797)). Fixes #19025 and #19025.
* Fix edge case space issues around creation and initial view ([\#6798](https://github.com/matrix-org/matrix-react-sdk/pull/6798)). Fixes #19023 and #19023.
* Stop spinner on space preview if the join fails ([\#6803](https://github.com/matrix-org/matrix-react-sdk/pull/6803)). Fixes #19034 and #19034.
* Fix emoji picker and stickerpicker not appearing correctly when opened ([\#6793](https://github.com/matrix-org/matrix-react-sdk/pull/6793)). Fixes #19012 and #19012. Contributed by [Palid](https://github.com/Palid).
* Fix autocomplete not having y-scroll ([\#6794](https://github.com/matrix-org/matrix-react-sdk/pull/6794)). Fixes #18997 and #18997. Contributed by [Palid](https://github.com/Palid).
* Fix broken edge case with public space creation with no alias ([\#6791](https://github.com/matrix-org/matrix-react-sdk/pull/6791)). Fixes #19003 and #19003.
* Redirect from /#/welcome to /#/home if already logged in ([\#6786](https://github.com/matrix-org/matrix-react-sdk/pull/6786)). Fixes #18990 and #18990. Contributed by [aaronraimist](https://github.com/aaronraimist).
* Fix build issues from two conflicting PRs landing without merge conflict ([\#6780](https://github.com/matrix-org/matrix-react-sdk/pull/6780)).
* Render guest settings only in public rooms/spaces ([\#6693](https://github.com/matrix-org/matrix-react-sdk/pull/6693)). Fixes #18776 and #18776. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Fix message bubble corners being wrong in the presence of hidden events ([\#6776](https://github.com/matrix-org/matrix-react-sdk/pull/6776)). Fixes #18124 and #18124. Contributed by [robintown](https://github.com/robintown).
* Debounce read marker update on scroll ([\#6771](https://github.com/matrix-org/matrix-react-sdk/pull/6771)). Fixes #18961 and #18961.
* Use cursor:pointer on space panel buttons ([\#6770](https://github.com/matrix-org/matrix-react-sdk/pull/6770)). Fixes #18951 and #18951.
* Fix regressed tab view buttons in space update toast ([\#6761](https://github.com/matrix-org/matrix-react-sdk/pull/6761)). Fixes #18781 and #18781.

Changes in [1.8.5](https://github.com/vector-im/element-desktop/releases/tag/v1.8.5) (2021-09-14)
=================================================================================================

## 笨ィ Features
* Add bubble highlight styling ([\#6582](https://github.com/matrix-org/matrix-react-sdk/pull/6582)). Fixes #18295 and #18295. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Create narrow mode for Composer ([\#6682](https://github.com/matrix-org/matrix-react-sdk/pull/6682)). Fixes #18533 and #18533.
* Prefer matrix.to alias links over room id in spaces & share ([\#6745](https://github.com/matrix-org/matrix-react-sdk/pull/6745)). Fixes #18796 and #18796.
* Stop automatic playback of voice messages if a non-voice message is encountered ([\#6728](https://github.com/matrix-org/matrix-react-sdk/pull/6728)). Fixes #18850 and #18850.
* Show call length during a call ([\#6700](https://github.com/matrix-org/matrix-react-sdk/pull/6700)). Fixes #18566 and #18566. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Serialize and retry mass-leave when leaving space ([\#6737](https://github.com/matrix-org/matrix-react-sdk/pull/6737)). Fixes #18789 and #18789.
* Improve form handling in and around space creation ([\#6739](https://github.com/matrix-org/matrix-react-sdk/pull/6739)). Fixes #18775 and #18775.
* Split autoplay GIFs and videos into different settings ([\#6726](https://github.com/matrix-org/matrix-react-sdk/pull/6726)). Fixes #5771 and #5771. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Add autoplay for voice messages ([\#6710](https://github.com/matrix-org/matrix-react-sdk/pull/6710)). Fixes #18804, #18715, #18714 #17961 and #18804.
* Allow to use basic html to format invite messages ([\#6703](https://github.com/matrix-org/matrix-react-sdk/pull/6703)). Fixes #15738 and #15738. Contributed by [skolmer](https://github.com/skolmer).
* Allow widgets, when eligible, to interact with more rooms as per MSC2762 ([\#6684](https://github.com/matrix-org/matrix-react-sdk/pull/6684)).
* Remove arbitrary limits from send/receive events for widgets ([\#6719](https://github.com/matrix-org/matrix-react-sdk/pull/6719)). Fixes #17994 and #17994.
* Reload suggested rooms if we see the state change down /sync ([\#6715](https://github.com/matrix-org/matrix-react-sdk/pull/6715)). Fixes #18761 and #18761.
* When creating private spaces, make the initial rooms restricted if supported ([\#6721](https://github.com/matrix-org/matrix-react-sdk/pull/6721)). Fixes #18722 and #18722.
* Threading exploration work ([\#6658](https://github.com/matrix-org/matrix-react-sdk/pull/6658)). Fixes #18532 and #18532.
* Default to `Don't leave any` when leaving a space ([\#6697](https://github.com/matrix-org/matrix-react-sdk/pull/6697)). Fixes #18592 and #18592. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Special case redaction event sending from widgets per MSC2762 ([\#6686](https://github.com/matrix-org/matrix-react-sdk/pull/6686)). Fixes #18573 and #18573.
* Add active speaker indicators ([\#6639](https://github.com/matrix-org/matrix-react-sdk/pull/6639)). Fixes #17627 and #17627. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Increase general app performance by optimizing layers ([\#6644](https://github.com/matrix-org/matrix-react-sdk/pull/6644)). Fixes #18730 and #18730. Contributed by [Palid](https://github.com/Palid).

## �汾� Bug Fixes
* Fix autocomplete not having y-scroll ([\#6802](https://github.com/matrix-org/matrix-react-sdk/pull/6802)).
* Fix emoji picker and stickerpicker not appearing correctly when opened ([\#6801](https://github.com/matrix-org/matrix-react-sdk/pull/6801)).
* Debounce read marker update on scroll ([\#6774](https://github.com/matrix-org/matrix-react-sdk/pull/6774)).
* Fix Space creation wizard go to my first room button behaviour ([\#6748](https://github.com/matrix-org/matrix-react-sdk/pull/6748)). Fixes #18764 and #18764.
* Fix scroll being stuck at bottom ([\#6751](https://github.com/matrix-org/matrix-react-sdk/pull/6751)). Fixes #18903 and #18903.
* Fix widgets not remembering identity verification when asked to. ([\#6742](https://github.com/matrix-org/matrix-react-sdk/pull/6742)). Fixes #15631 and #15631.
* Add missing pluralisation i18n strings for Spaces ([\#6738](https://github.com/matrix-org/matrix-react-sdk/pull/6738)). Fixes #18780 and #18780.
* Make ForgotPassword UX slightly more user friendly ([\#6636](https://github.com/matrix-org/matrix-react-sdk/pull/6636)). Fixes #11531 and #11531. Contributed by [Palid](https://github.com/Palid).
* Don't context switch room on SpaceStore ready as it can break permalinks ([\#6730](https://github.com/matrix-org/matrix-react-sdk/pull/6730)). Fixes #17974 and #17974.
* Fix explore rooms button not working during space creation wizard ([\#6729](https://github.com/matrix-org/matrix-react-sdk/pull/6729)). Fixes #18762 and #18762.
* Fix bug where one party's media would sometimes not be shown ([\#6731](https://github.com/matrix-org/matrix-react-sdk/pull/6731)).
* Only make the initial space rooms suggested by default ([\#6714](https://github.com/matrix-org/matrix-react-sdk/pull/6714)). Fixes #18760 and #18760.
* Replace fake username in EventTilePreview with a proper loading state ([\#6702](https://github.com/matrix-org/matrix-react-sdk/pull/6702)). Fixes #15897 and #15897. Contributed by [skolmer](https://github.com/skolmer).
* Don't send prehistorical events to widgets during decryption at startup ([\#6695](https://github.com/matrix-org/matrix-react-sdk/pull/6695)). Fixes #18060 and #18060.
* When creating subspaces properly set restricted join rule ([\#6725](https://github.com/matrix-org/matrix-react-sdk/pull/6725)). Fixes #18797 and #18797.
* Fix the Image View not openning for some pinned messages ([\#6723](https://github.com/matrix-org/matrix-react-sdk/pull/6723)). Fixes #18422 and #18422. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Show autocomplete sections vertically ([\#6722](https://github.com/matrix-org/matrix-react-sdk/pull/6722)). Fixes #18860 and #18860. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Fix EmojiPicker filtering to lower case emojibase data strings ([\#6717](https://github.com/matrix-org/matrix-react-sdk/pull/6717)). Fixes #18686 and #18686.
* Clear currentRoomId when viewing home page, fixing document title ([\#6716](https://github.com/matrix-org/matrix-react-sdk/pull/6716)). Fixes #18668 and #18668.
* Fix membership updates to Spaces not applying in real-time ([\#6713](https://github.com/matrix-org/matrix-react-sdk/pull/6713)). Fixes #18737 and #18737.
* Don't show a double stacked invite modals when inviting to Spaces ([\#6698](https://github.com/matrix-org/matrix-react-sdk/pull/6698)). Fixes #18745 and #18745. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Remove non-functional DuckDuckGo Autocomplete Provider ([\#6712](https://github.com/matrix-org/matrix-react-sdk/pull/6712)). Fixes #18778 and #18778.
* Filter members on `MemberList` load ([\#6708](https://github.com/matrix-org/matrix-react-sdk/pull/6708)). Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Fix improper voice messages being produced in Firefox and sometimes other browsers. ([\#6696](https://github.com/matrix-org/matrix-react-sdk/pull/6696)). Fixes #18587 and #18587.
* Fix client forgetting which capabilities a widget was approved for ([\#6685](https://github.com/matrix-org/matrix-react-sdk/pull/6685)). Fixes #18786 and #18786.
* Fix left panel widgets not remembering collapsed state ([\#6687](https://github.com/matrix-org/matrix-react-sdk/pull/6687)). Fixes #17803 and #17803.
* Fix changelog link colour back to blue ([\#6692](https://github.com/matrix-org/matrix-react-sdk/pull/6692)). Fixes #18726 and #18726.
* Soften codeblock border color ([\#6564](https://github.com/matrix-org/matrix-react-sdk/pull/6564)). Fixes #18367 and #18367. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Pause ringing more aggressively ([\#6691](https://github.com/matrix-org/matrix-react-sdk/pull/6691)). Fixes #18588 and #18588. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Fix command autocomplete ([\#6680](https://github.com/matrix-org/matrix-react-sdk/pull/6680)). Fixes #18670 and #18670. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Don't re-sort the room-list based on profile/status changes ([\#6595](https://github.com/matrix-org/matrix-react-sdk/pull/6595)). Fixes #110 and #110. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Fix codeblock formatting with syntax highlighting on ([\#6681](https://github.com/matrix-org/matrix-react-sdk/pull/6681)). Fixes #18739 #18365 and #18739. Contributed by [SimonBrandner](https://github.com/SimonBrandner).
* Add padding to the Add button in the notification settings ([\#6665](https://github.com/matrix-org/matrix-react-sdk/pull/6665)). Fixes #18706 and #18706. Contributed by [SimonBrandner](https://github.com/SimonBrandner).

(js)

2021-10-02 10:57:25 UTC MAIN commitmail json YAML

Updated devel/p5-Software-License to 0.104001

(wen)

2021-10-02 10:56:29 UTC MAIN commitmail json YAML

Update to 0.104001

Upstream changes:
0.104001  2021-08-02 09:33:25-04:00 America/New_York
        - add "program" and "Program" arguments; this allows text generation
          like "CoolClient is license..." instead of "This software is..."
          (thanks, Van de Bugger)

0.104000  2021-06-25 21:56:24-04:00 America/New_York (TRIAL RELEASE)
        - documentation tweaks about non-core licenses and the use of
          guess_license_from_pod

0.103015  2021-06-25 21:54:19-04:00 America/New_York (TRIAL RELEASE)
        - update the text of Artistic License 1.0 to match upstream source
        - when using Apache 2.0, replace year and copyright holder
        - improve guessing at CC0
        - update author contact info

(wen)

2021-10-02 08:34:56 UTC MAIN commitmail json YAML

doc/TODO: + clang-13.0.0, clang-tools-13.0.0, llvm-13.0.0.

(wiz)

2021-10-02 07:54:38 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-OverloadInfo to 0.007

(wen)

2021-10-02 07:53:20 UTC MAIN commitmail json YAML

Update to 0.007

Upstream changes:
0.007    2021-04-28 16:18:49+01:00 Europe/London
  - No changes since 0.006

0.006    2021-04-22 18:55:28+01:00 Europe/London (TRIAL RELEASE)
  - Remove dependency on Sub::Identify

(wen)

2021-10-02 07:50:31 UTC MAIN commitmail json YAML

Remove p5-CPAN-FindDependencies, p5-CPAN-Perl-Releases, p5-CPANPLUS
and p5-Config-MVP, which had been updated.

(wen)

2021-10-02 07:47:49 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-NYTProf to 6.11

(wen)

2021-10-02 07:46:38 UTC MAIN commitmail json YAML

Update to 6.11

Upstream changes:
Changes in Devel::NYTProf 6.11 - 19th Sep 2021
Removed lib/Devel/NYTProf/js/jquery.floatThead.min.js in GH 194: Remove jquery.floatThead.min.js. In GH 192: nytprofhtml - internal anchor links in html pages go to wrong locations Shawn Laffan reported that internal links to anchors in the generated HTML pages were not correctly positioned in the vertical dimension. Discontinuing use of this Javascript file appears to correct the problem.

(wen)

2021-10-02 07:38:53 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-ebug to 0.64

(wen)

2021-10-02 07:37:38 UTC MAIN commitmail json YAML

Update to 0.64

Upstream changes:
0.64      2021-07-10 15:42:56 -0600
  - Remove dependency on FindBin and File::Which (gh#51)
  - Improve backend fallback; no longer require
    ebug_backend_perl be in the PATH (gh#49, gh#51)
  - Fix ebug_server and ebug_client documentation to
    use underscores (gh#50, gh#51)

(wen)

2021-10-02 06:52:11 UTC MAIN commitmail json YAML

py-pythran: mark as incompatible with Python 3.6

(adam)

2021-10-02 05:58:57 UTC MAIN commitmail json YAML

Use python27, bump version.

(rxg)

2021-10-02 03:06:02 UTC MAIN commitmail json YAML

doc: Updated net/mikutter to 4.1.7

(tsutsui)

2021-10-02 03:05:43 UTC MAIN commitmail json YAML

mikutter: update to 4.1.7.

Upstream changes:

mikutter 4.1.7
https://mikutter.hatenablog.com/entry/2021/10/02/114317

* make modules that use httpclient explicitly refer system's root CA

(tsutsui)

2021-10-02 02:38:59 UTC MAIN commitmail json YAML

Updated devel/p5-Curses to 1.38

(wen)

2021-10-02 02:38:18 UTC MAIN commitmail json YAML

Update to 1.38

No upstream changelog found.

(wen)

2021-10-02 02:30:24 UTC MAIN commitmail json YAML

Updated devel/p5-CPANPLUS to 0.9912

(wen)

2021-10-02 02:29:40 UTC MAIN commitmail json YAML

Update to 0.9912

Upstream changes:
0.9912      Sat Aug 21 12:22:49 BST 2021

* Removed circular dependency in CPANPLUS::Internals::*

0.9910      Sat Dec 19 10:41:41 GMT 2020

* Change default mirror to www.cpan.org
* Bugtracker is now github

(wen)

2021-10-02 01:57:28 UTC MAIN commitmail json YAML

Updated devel/p5-CPAN-Perl-Releases to 5.20210920

(wen)

2021-10-02 01:56:37 UTC MAIN commitmail json YAML

Update to 5.20210920

Upstream changes:
version 5.20210920 at 2021-09-20 19:46:30 +0000
-----------------------------------------------

  Change: 24a1abad8eb04aee991b0b9714e70e5331a10425
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-09-20 20:46:30 +0000

    Updated for v5.35.4

-----------------------------------------------
version 5.20210821 at 2021-08-21 10:00:22 +0000
-----------------------------------------------

  Change: f4f855a5df177f631a7712e4c925ece672b926a5
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-08-21 11:00:22 +0000

    Updated for v5.35.3

-----------------------------------------------
version 5.20210722 at 2021-07-23 14:21:25 +0000
-----------------------------------------------

  Change: 52aab1cd331696cce9c661e17d0147c8091f6686
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-07-23 15:21:25 +0000

    Updated for v5.35.2

-----------------------------------------------
version 5.20210620 at 2021-06-20 11:21:22 +0000
-----------------------------------------------

  Change: 52e4d99fed80030d7264f41944a0448d8c2730fa
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-06-20 12:21:22 +0000

    Updated for v5.35.1

-----------------------------------------------
version 5.20210521 at 2021-05-21 12:15:39 +0000
-----------------------------------------------

  Change: 262631aa56f0f85670eb75d33e0a96fd446b8c82
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-05-21 13:15:39 +0000

    Updated for v5.35.0

-----------------------------------------------
version 5.20210520 at 2021-05-20 19:14:50 +0000
-----------------------------------------------

  Change: 41fd3ee9d7fa964ed77fd43726d71ffe0916332e
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-05-20 20:14:50 +0000

    Updated for v5.34.0

-----------------------------------------------
version 5.20210515 at 2021-05-15 13:01:26 +0000
-----------------------------------------------

  Change: 8b6d37c848465dc30068d06f4496ff8081723a8e
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-05-15 14:01:26 +0000

    Updated for v5.34.0-RC2

-----------------------------------------------
version 5.20210505 at 2021-05-05 08:43:14 +0000
-----------------------------------------------

  Change: b48425c08182c3f211968019d284edfb5f7d1b72
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-05-05 09:43:14 +0000

    Updated for v5.34.0-RC1

-----------------------------------------------
version 5.20210420 at 2021-04-20 20:37:56 +0000
-----------------------------------------------

  Change: f42df136ab62e22996e6cbb313bcc3f21a9ac0d0
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-04-20 21:37:56 +0000

    Updated for v5.33.9

-----------------------------------------------
version 5.20210320 at 2021-03-21 09:18:55 +0000
-----------------------------------------------

  Change: fcbb2a3785228275b204b55466997cb4ad351839
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-03-21 09:18:55 +0000

    Updated for v5.33.8

-----------------------------------------------
version 5.20210220 at 2021-02-20 19:47:50 +0000
-----------------------------------------------

  Change: a95864081fcd9a9bedd52c1fb19d803bf560bf7f
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-02-20 19:47:50 +0000

    Updated for v5.33.7

-----------------------------------------------
version 5.20210123 at 2021-01-24 13:31:55 +0000
-----------------------------------------------

  Change: 33fa0b6da1b7d8b9ef23f7b3a19b438260845488
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-01-24 13:31:55 +0000

    Updated for v5.32.1

-----------------------------------------------
version 5.20210120 at 2021-01-21 09:25:46 +0000
-----------------------------------------------

  Change: 751286446f4d3fc7a80fa472853b0fc7f024b6ce
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-01-21 09:25:46 +0000

    Updated for v5.33.6

-----------------------------------------------
version 5.20210109 at 2021-01-09 20:20:55 +0000
-----------------------------------------------

  Change: 61bebeca60b84226993a9986abc8f2380ec9b31d
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2021-01-09 20:20:55 +0000

    Updated for v5.32.1-RC1

-----------------------------------------------
version 5.20201220 at 2020-12-20 13:39:07 +0000
-----------------------------------------------

  Change: 41eaf0dba694eaeea446be95510dd5ef0d3ca541
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2020-12-20 13:39:07 +0000

    Updated for v5.33.5

-----------------------------------------------
version 5.20201120 at 2020-11-20 13:40:19 +0000
-----------------------------------------------

  Change: 58b75fdec4e143a94500d48de5ed0936130bd141
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2020-11-20 13:40:19 +0000

    Updated for v5.33.4

-----------------------------------------------
version 5.20201020 at 2020-10-20 20:13:28 +0000
-----------------------------------------------

  Change: 6eb663a05c875fd7116026f520be58bdb7179d59
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2020-10-20 21:13:28 +0000

    Updated for v5.33.3

-----------------------------------------------
version 5.20200920 at 2020-09-20 13:41:27 +0000
-----------------------------------------------

  Change: 383aed7c7f02ce562a6a544e357506d3deabd97f
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2020-09-20 14:41:27 +0000

    Updated for v5.33.2

(wen)

2021-10-02 01:53:43 UTC MAIN commitmail json YAML

Updated www/mediawiki to 1.36.2

(wen)

2021-10-02 01:52:49 UTC MAIN commitmail json YAML

2021-10-02 00:38:38 UTC MAIN commitmail json YAML

Updated devel/p5-CPAN-FindDependencies to 3.10

(wen)

2021-10-02 00:37:51 UTC MAIN commitmail json YAML

Update to 3.10
Add missing DEPENDS

Upstream changes:
3.10    2021-08-11

- Stop leaking filehandles, so it should still work even when we're not allowed
  to have many open files.

3.09    2021-07-14

- No functional changes. Internal improvements for handling bzipped archives,
  and less picky (and hence more correct) testing of the bundled scripts'
  rendered help output.

3.08    2021-07-08

- Work around another bug in perl on Windows

3.07    2021-07-05

- Work around bug in perl 5.20 and below on Windows when dealing with bzipped archives

3.06    2021-06-29

- Add documentation about tree pruning

3.05    2021-02-23      Skip tests that rely on bzip2 when it's not available

3.04    2020-11-08      Script args can be --args, to be a bit more conventional

3.03    2020-10-29      There are more exciting ways in which perldoc can be
                          missing

3.02    2020-10-28      Patch to force perldoc to not use a pager when the
                          scripts use it to show help

3.01    2020-10-27      Patch for broken systems that don't have perldoc

3.00    2020-10-27      configure_requires is now on by default (and can't be
                          switched off either);
                        Support multiple CPAN mirrors;
                        CPAN indices are only cached for three minutes instead
                          of for the life of your process;
                        maxdepth 0 now works;
                        Add cpandeps-diff script;
                        Add extra doco re dynamic dependencies

(wen)

2021-10-02 00:22:54 UTC MAIN commitmail json YAML

Updated devel/p5-Convert-Binary-C to 0.84

(wen)

2021-10-02 00:21:38 UTC MAIN commitmail json YAML

Update to 0.84

Upstream changes:
Version 0.84 (2020-11-23)
----------------------------

* skip threads testing on 5.9.5 and 5.10.0 as
  Perl_clone() segfaults for these releases

----------------------------
Version 0.83 (2020-11-19)
----------------------------

* more Windows fixes

----------------------------
Version 0.82 (2020-11-19)
----------------------------

* fix speed tests (the new smaller code was parsing too
  quickly for caching to have a strong impact)

* update documentation, e.g. bugtracker

----------------------------
Version 0.81 (2020-11-18)
----------------------------

* fix parallel builds

----------------------------
Version 0.80 (2020-11-17)
----------------------------

* fix 602_threads.t

(wen)

2021-10-01 23:59:12 UTC MAIN commitmail json YAML

Updated devel/p5-Config-Tiny to 2.27

(wen)

2021-10-01 23:58:27 UTC MAIN commitmail json YAML

Update to 2.27

Upstream changes:
2.27  2021-09-21T15:48:00
        - Add the option of passing a hashref to the constructor, where it is turned into an
                object of the class. See POD under new([$config]) for details.
                This patch to the code and POD includes the new test t/08.constructor.t.
                The patch was provided by D Hauke, with thanx.
        - Move test.conf back into t/, where it was years ago, before someone tried to remove
                all uses of File::Spec. But since File::Spec is used often now, there is no point
                in keeping test.conf in the root directory of the distro.

(wen)

2021-10-01 23:56:46 UTC MAIN commitmail json YAML

Updated devel/p5-Config-MVP to 2.200012

(wen)

2021-10-01 23:55:59 UTC MAIN commitmail json YAML

Update to 2.200012

Upstream changes:
2.200012  2021-01-09 19:51:18-05:00 America/New_York
        - don't try to array-dereference non-array references (thanks, Sven
          Kirmess)

(wen)

2021-10-01 23:53:34 UTC MAIN commitmail json YAML

Updated devel/p5-Config-MVP-Reader-INI to 2.101464

(wen)

2021-10-01 23:52:49 UTC MAIN commitmail json YAML

Update to 2.101464

Upstream changes:
2.101464  2021-07-03 13:18:24-04:00 America/New_York
        - update author contact info
        - document perl version policy

(wen)

2021-10-01 23:50:23 UTC MAIN commitmail json YAML

Updated devel/p5-Config-INI to 0.027

(wen)

2021-10-01 23:49:37 UTC MAIN commitmail json YAML

Update to 0.027
Update DEPENDS

Upstream changes:
0.027    2021-06-22 22:27:53-04:00 America/New_York
        - require Mixin::Linewise v0.110 to cope with new error message

0.026    2021-06-20 17:14:32-04:00 America/New_York
        - update author contact info

(wen)

2021-10-01 23:47:21 UTC MAIN commitmail json YAML

Updated devel/p5-Config-INI-Reader-Ordered to 0.021

(wen)

2021-10-01 23:46:28 UTC MAIN commitmail json YAML

Update to 0.021

Upstream changes:
0.021    2021-06-20 17:18:35-04:00 America/New_York
          add perl-support to docs

(wen)

2021-10-01 23:44:24 UTC MAIN commitmail json YAML

Updated devel/p5-Config-AutoConf to 0.320

(wen)

2021-10-01 23:43:25 UTC MAIN commitmail json YAML

Update to 0.320

Upstream changes:
0.320  2021-06-25
        - fix check_prog to not find directories (RT#132993), thanks
          RJBS for reporting it again!

(wen)

2021-10-01 23:39:27 UTC MAIN commitmail json YAML

Updated devel/p5-Class-Data-Inheritable to 0.09

(wen)

2021-10-01 23:38:11 UTC MAIN commitmail json YAML

Update to 0.09

Upstream changes:
0.09  Fri Jul 30 22:42:00 UTC 2021
    - Update spelling errors to resolve #83824 and #86563

(wen)

2021-10-01 21:28:08 UTC MAIN commitmail json YAML

doc: Updated sysutils/macchina to 1.1.7

(pin)

2021-10-01 21:27:41 UTC MAIN commitmail json YAML

sysutils/macchina: update to 1.1.7

- macOS: Count Homebrew packages in `/opt/homebrew` (for Apple Silicon)

(pin)

2021-10-01 19:56:07 UTC MAIN commitmail json YAML

Added devel/py-astunparse, devel/py-gast, devel/py-beniget, math/py-pythran

(adam)

2021-10-01 19:55:37 UTC MAIN commitmail json YAML

py-pythran: added version 0.10.0

Pythran is an ahead of time compiler for a subset of the Python language, with
a focus on scientific computing. It takes a Python module annotated with a few
interface descriptions and turns it into a native Python module with the same
interface, but (hopefully) faster.

(adam)

2021-10-01 19:53:01 UTC MAIN commitmail json YAML

py-beniget: added version 0.4.1

A static analyzer for Python2 and Python3 code.

Beniget provides a static over-approximation of the global and local
definitions inside Python Module/Class/Function. It can also compute def-use
chains from each definition.

(adam)

2021-10-01 19:52:08 UTC MAIN commitmail json YAML

py-gast: added version 0.5.2

A generic AST to represent Python2 and Python3's Abstract Syntax Tree (AST).
GAST provides a compatibility layer between the AST of various Python versions,
as produced by ast.parse from the standard ast module.

(adam)

2021-10-01 19:51:00 UTC MAIN commitmail json YAML

py-astunparse: added version 1.6.3

This is a factored out version of unparse found in the Python source
distribution; under Demo/parser in Python 2 and under Tools/parser in Python 3.

(adam)

2021-10-01 18:54:45 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-nokogiri to 1.12.5

(tsutsui)

2021-10-01 18:54:25 UTC MAIN commitmail json YAML

ruby-nokogiri: update to 1.12.5.

Upstream changes:
https://github.com/sparklemotion/nokogiri/releases/tag/v1.12.5

1.12.5 / 2021-09-27

Security

[JRuby] Address CVE-2021-41098 (GHSA-2rr5-8q37-2w7h).

In Nokogiri v1.12.4 and earlier, on JRuby only, the SAX parsers resolve
external entities (XXE) by default. This fix turns off
entity-resolution-by-default in the JRuby SAX parsers to match the CRuby SAX
parsers' behavior.

CRuby users are not affected by this CVE.

Fixed

  * [CRuby] Document#to_xhtml properly serializes self-closing tags in libxml >
    2.9.10. A behavior change introduced in libxml 2.9.11 resulted in emitting
    start and and tags (e.g., <br></br>) instead of a self-closing tag (e.g.,
    <br/>) in previous Nokogiri versions. [#2324]

(tsutsui)

2021-10-01 17:59:06 UTC MAIN commitmail json YAML

2021-10-01 17:55:57 UTC MAIN commitmail json YAML

doc/guide: Update htdocs-share to 20211001 (pkgsrc-2021Q3)

(leot)

2021-10-01 17:20:27 UTC MAIN commitmail json YAML

2021-10-01 16:32:04 UTC MAIN commitmail json YAML

babl: better MASTER_SITES

(adam)

2021-10-01 16:31:27 UTC MAIN commitmail json YAML

gegl: fix for Darwin

(adam)

2021-10-01 16:14:48 UTC MAIN commitmail json YAML

2021-10-01 15:50:14 UTC MAIN commitmail json YAML

gimp: restore GIMP_DEBUG_TOOL_DIR in PLIST

(wiz)

2021-10-01 15:40:24 UTC MAIN commitmail json YAML

mikutter: explicitly pull ruby-httpclient>=2.8.3nb1 for proper access.

Bump PKGREVISION.

(tsutsui)

2021-10-01 15:31:26 UTC MAIN commitmail json YAML

2021-10-01 15:07:46 UTC MAIN commitmail json YAML

swc: mark unsupported with MKPIE for now

(nia)

2021-10-01 14:29:31 UTC MAIN commitmail json YAML

doc: Updated graphics/gimp to 2.10.28

(ryoon)

2021-10-01 14:29:05 UTC MAIN commitmail json YAML

gimp: Update to 2.10.28

Changelog:
Overview of Changes from GIMP 2.10.26 to GIMP 2.10.28
=====================================================

Translations:

  - 10 translations were updated: Catalan, Chinese (China), Finnish,
    Italian, Polish, Russian, Slovenian, Spanish, Swedish and Ukrainian.

Build:

  - Fix uninstalled white-border prelight file.

Overview of Changes from GIMP 2.10.24 to GIMP 2.10.26
=====================================================

Core:

  - Dashboard now has memory support in OpenBSD.
  - Default shortcuts Shift+[ and ] for tool size changed to { and }.
  - Performance improvements for GIMP on macOS Big Sur: these
    improvements were actually already applied in our macOS packages
    since GIMP 2.10.22, but were applied upstream directly only now.

User Interface:

  - Dark theme: improve accessibility of GtkRadioButton by adding a
    white border on mouse-hover.
  - Gray theme: set light background for selected text in Layers and
    Paths dockable dialogs to make text visible.
  - Dark, Gray and Light themes: remove 3D shadow box around eye and
    link toggles in Layers, Channels, and Paths dockable dialog tree
    views.

Plug-ins:

  - Improved DDS support and fix some red/blue bit swap for RGB10A2 DDS.
    The plug-in version is incremented so that it is able to catch and
    correct previously incorrect RGB10A2 images exported by older
    versions of our plug-in.
  - DDS files with "L16" - a 16 bit luminance channel - are now loaded
    in 16-bit.
  - DICOM images:
    * Support for planar configuration.
    * Support for deprecated big endian transfer.
  - TIFF images:
    * Thumbnail storing now done by storing the thumbnail as the second
      page in the file (through Exiv2) and setting metadata
      "Exif.Thumbnail.NewSubfileType" to 1 (reduced resolution image)
      instead of storing the thumbnail as a subifd. This was done
      because of a Windows bug locking TIFF files with thumbnail stored
      as subfid.
    * Symmetrically, loading will ignore pages marked as "reduced
      resolution image" (i.e. it will consider them as thumbnails), as
      well as try to guess if a page (without subfile type) is a
      thumbnail when it meets following criteria: second page with YCbCr
      PhotometricInterpretation, old style jpeg compression while the
      first page has a different PhotometricInterpretation or
      compression.

Script-fu:

  - New (dir-make "/dir/name" mode) function to create a directory.

Translations:

  - New translations for the Windows installer: Vietnamese, Lithuanian.
  - 13 translations were updated: Catalan, Chinese (China), Croatian,
    Dutch, German, Lithuanian, Polish, Russian, Slovenian, Spanish,
    Swedish, Ukrainian and Vietnamese.

Build:

  - On Windows, *.rs file extension is not associated with SUN Raster
    images anymore. The reason is that this file extension is mostly
    used for Rust code files nowadays. If Windows could detect file
    formats with "magic numbers" (i.e. byte identifiers), it would not
    be a problem, but since it relies apparently only the extension,
    it's better to remove this association.
  - Oppositely on Linux and other Unix-like systems using desktop files,
    add the image/x-sun-raster MimeType which was forgotten (there,
    detection should be fine and not depend on file extension).
  - gimp30-tips.mo is not installed anymore (only used during the build
    to generate gimp-tips.xml with multiple language support).
  - --enable-check-update now has an "auto" value, which is the new
    default. It is equivalent to "yes" for Windows and macOS and "no" in
    all other cases.
  - New unit test to check that localizations listed in the installer
    script match available po files in po-windows-installer/.
  - "msys*" host value now detected as Windows builds.
  - Bumping minimum GEGL to version 0.4.32.

(ryoon)

2021-10-01 14:28:29 UTC MAIN commitmail json YAML

doc: Updated graphics/gegl to 0.4.32

(ryoon)

2021-10-01 14:28:07 UTC MAIN commitmail json YAML

gegl: Update to 0.4.32

Changelog:
GEGL-0.4.32 2021-09-05

Docs/testing:

Fixes and improvements to the test system ands it integration for
comparing/keeping track of hashes of operation output by John Marshall
including and overhaul of reference compositions and hashes, improving
development as well as documentation.

json: fixing of leaks and dead code removal.

Operations:

distance-transform: openexr: fix build with newer OpenEXR 3
negative-darkroom: contrast boost and illuminant adjustment parameter,
reworked emulsion dye model, UI improvements, more black and white
paper presets. fill-path: 32bit float RGB and CMYK color processing,
using ctx as renderer.

(ryoon)

2021-10-01 14:27:42 UTC MAIN commitmail json YAML

doc: Updated graphics/babl to 0.1.88

(ryoon)

2021-10-01 14:27:09 UTC MAIN commitmail json YAML

babl: Update to 0.1.88

Changelog:
2021-07-01 babl-0.1.88
Consistency fixes to format names, in particular for palettized formats.

(ryoon)

2021-10-01 14:25:33 UTC MAIN commitmail json YAML

py-tensorboard: Dependencies incompatible with py2.7. Unbreak pkgsrc tree.

(nia)

2021-10-01 14:17:38 UTC MAIN commitmail json YAML

py-axolotl-curve25519: Fix PKGNAME. Unbreak pkgsrc tree.

(nia)

2021-10-01 13:34:12 UTC MAIN commitmail json YAML

netatalk22: Fix RELRO build.

(nia)

2021-10-01 13:31:52 UTC MAIN commitmail json YAML

firefox: 92 requires nss>=3.69

(gutteridge)

2021-10-01 12:49:34 UTC MAIN commitmail json YAML

Updated devel/py-test-benchmark, sysutils/py-filetype

(adam)

2021-10-01 12:49:08 UTC MAIN commitmail json YAML

py-filetype: add ALTERNATIVES

(adam)

2021-10-01 12:48:28 UTC MAIN commitmail json YAML

2021-10-01 12:47:27 UTC MAIN commitmail json YAML

py-test-benchmark: updated to 3.4.1

3.4.1 (2021-04-17)
------------------
* Republished with updated changelog.

  I intended to publish a ``3.3.0`` release but I messed it up because bumpversion doesn't work well with pre-commit
  apparently... thus ``3.4.0`` was set in by accident.

3.4.0 (2021-04-17)
------------------
* Disable progress indication unless ``--benchmark-verbose`` is used.
* Added Python 3.9, dropped Python 3.5.
* Changed the "cpu" data in the json output to include everything that cpuinfo outputs, for better or worse as cpuinfo 6.0 changed some
  fields. Users should now ensure they are an adequate cpuinfo package installed.
  **MAY BE BACKWARDS INCOMPATIBLE**
* Changed behavior of ``--benchmark-skip`` and ``--benchmark-only`` to apply early in the collection phase.
  This means skipped tests won't make pytest run fixtures for said tests unnecessarily, but unfortunately this also means
  the skipping behavior will be applied to any tests that requires a "benchmark" fixture, regardless if it would come from pytest-benchmark
  or not.
  **MAY BE BACKWARDS INCOMPATIBLE**
* Added ``--benchmark-quiet`` - option to disable reporting and other information output.
* Squelched unnecessary warning when ``--benchmark-disable`` and save options are used.
* ``PerformanceRegression`` exception no longer inherits ``pytest.UsageError`` (apparently a *final* class).

(adam)

2021-10-01 12:40:52 UTC MAIN commitmail json YAML

m1n1: Needs ImageMagick for "convert" at build-time

(nia)

2021-10-01 12:35:36 UTC MAIN commitmail json YAML

openimageio: Needs atomic64 to build on i386.

(nia)

2021-10-01 12:27:47 UTC MAIN commitmail json YAML

Switch default Python to 3.9.

Bulk builds have been running for some time, and this is expected to be
fine.

(nia)

2021-10-01 12:13:08 UTC MAIN commitmail json YAML

2021-10-01 11:58:00 UTC MAIN commitmail json YAML

doc: Removed gcc34, gcc44.

(nia)

2021-10-01 11:56:14 UTC MAIN commitmail json YAML

2021-10-01 11:49:59 UTC MAIN commitmail json YAML

2021-10-01 11:42:23 UTC MAIN commitmail json YAML

2021-10-01 11:32:50 UTC MAIN commitmail json YAML

2021-10-01 11:27:39 UTC MAIN commitmail json YAML

bulk-test-boost: restore poppler-glib

(adam)

2021-10-01 09:03:29 UTC MAIN commitmail json YAML

doc: Updated finance/gnucash-docs to 4.8

(wiz)

2021-10-01 09:03:20 UTC MAIN commitmail json YAML

gnucash-docs: update to 4.8.

4.8    - 28 September 2021
        o Remove outdated files.
        o Remove autotools.
4.7    - 26 September 2021
        o Bug 798226 - minor mistakes in Tutorial and Concepts guide 2
        o Bug 798226 - postprocessing: xmlformat
        o Bug 798236 - Remove comment about swapped A/P & A/R terminology
        o Replace COPYING file from GPL 3 to GPL 2.
        o Substantial editing of the C documentation to make the meanings more
          understandable to translators.
        o Apply dtd-locale to help/de/Help_para-assist-intro.xml.
        o Add ENTITY(s) prefix guisubmenu, guimenuitem, and guilabel as gsm,
          gmi, and gl, respectively.
        o Move untranslated entity messages from gnc-docbookx.dtd to each
          locale file.
        o Make DTD ENTITY(s) translatable. See docbook/README.
          Bug 798273 - Consider a entity import system like in docbook-xsl
        o Guide:C:Currency: update images Part 1
        o Fix license file to use actual file instead of softlink.
        o Unify words and account names. Fix minor typos and tags. Add commas
          to the numbers. Add some tags. Fix according to the review comments.
        o Add license file to git tracking
          It is an autogenerated file from autotools but it was ignored by our
          current git config. A previous commit chose to install the file, but
          that's difficult if it's missing.
        o Install license files COPYING and COPYING-DOCS
        o Help/de: Crop Export screenshots
        o Drop travis-ci in favour of github worflows
        o Remove obsolete appendix B about FAQ from guide.
        o Remove obsolete appendix C about VAT from guide.
        o Guide/C: Note on fieldnames in CSV import
        o Mark Guide's import chapter as outdated
        o Minor improvements in C and de Help Tips on alphavantage

(wiz)

2021-10-01 09:01:27 UTC MAIN commitmail json YAML

Updated graphics/libimagequant, graphics/pngquant

(adam)

2021-10-01 09:00:52 UTC MAIN commitmail json YAML

pngquant: updated to 2.16.0

version 2.16
- reduced stack usage, prevenitng stack overlfow in pathological cases

(adam)

2021-10-01 09:00:36 UTC MAIN commitmail json YAML

libimagequant: updated to 2.16.0

2.16.0:
Unknown changes

(adam)

2021-10-01 08:55:11 UTC MAIN commitmail json YAML

doc: Updated finance/gnucash to 4.8

(wiz)

2021-10-01 08:54:57 UTC MAIN commitmail json YAML

gnucash: update to 4.8.

4.8  - 28 September 2021
The ninth release of the 4.x stable series.

This is a snap release to fix a crasher bug on Linux. The only changes are
    [gsettings] Avoid crash from settings schema not being registered.
    Rethink how gsettings migration file is constructed
    GSettings hotfix - resolve crash due to bad schema reference

4.7  - 26 September 2021
The eighth release of the 4.x stable series.

Compatibility Notice

In order to allow flatpak users to share preferences with
installations outside of the sandbox we need to change the preference
path from /org/gnucash to /org/gnucash/GnuCash. This release of
GnuCash does that and it will automatically migrate existing
preferences. It does not, however, continue to write preferences to
the old path and it runs the migration only once. If you go back and
forth between GnuCash 4.7 and an older versions you'll have two sets
of preferences, one for GnuCash 4.7 and later and another for GnuCash
4.6 and earlier. This includes the file history list and last-opened
file.

Between 4.6 and 4.7, the following bugfixes were accomplished:

    Bug 87847 - RFE: Create a 'checkbox' cell type
    Bug 766052 - Job report payments wrong when payment contains splits
    Bug 797596 - New-owner - improved representation of payments with multiple
                non-APAR splits
    Bug 798142 - Tax rate appears as a fraction
    Bug 798180 - Update to macOS Big Sur 11.3 breaks Finance Quote
    Bug 798205 - Some transactions dropped with no apparent cause or warnings
                for credit card ofx import
                Do not exclude from import a transaction that has an FITID
                which matches an already existing split. This is because it
                    (1) may be a coincidence and therefore the transaction
                        needs to be added or
                    (2) could be on a transfer from the account being imported
                        to another bank account which has already been imported,
                        and so needs to be matched, not added.
    Bug 798208 - management fee transactions are ignored on OFX import
    Bug 798211 - Equity statement double calculates unrealized gain
    Bug 798219 - apply/OK truncates exchange rates from 4 to 2 decimal places;
                enter doesn't
    Bug 798221 - Transfer funds between accounts with different currencies
                crashes Gnucash on macOS
    Bug 798224 - Scheduled transactions are created with date-entered copied
                from the template transaction.
    Bug 798229 - GncDate::c_formats is being created and destroyed twice
                resulting in a double free crash on every exit.
    Bug 798234 - Cut Transaction discards the reference to the description/memo
                strings so that Paste Transaction will paste uninitialised
                data (or other strings)
    Bug 798235 - Reconciliation Ending Balance not recalculated the 2nd and
                subsequent times Statement Date is updated.
    Bug 798237 - Logging during XML file loading degrades performance
                significantly
    Bug 798238 - "New security" dialog doesn't save the "Display symbol"
    Bug 798250 - Gnucash permanent hang on save while loading report
    Bug 798256 - Crash in recnFinishCB
    Bug 798298 - Re-imported transactions no longer ignored
    Bug 798303 - account list is sorted wrong by amount
    Bug 798312 - Opening the help for dialogues in the wrong language.

The following fixes and improvements were not associated with bug reports:

    Lots of memory-leaks plugged
    Change the preferences path to org.gnucash.GnuCash to comply with flatpak
      requirements and migrate existing preferences to the new paths. This
      won't provide for automatic sync between a system-installed GnuCash and
      a flatpak one unless the system-installed one is GnuCash 4.7 or later.
      Please see the Wiki for more information and a procedure to convert your
      existing preferences.
    Cleanup - minimal glib=2.56.1 - drop all conditionals on older versions
    Add code to handle ofx files that include transfers between accounts
    During transaction import, ignore splits whose account is not the
      destination account
    Do not drop a potential match just because it has an online_id.
      Now that we don't exclude from import a transaction with an FITID that
      matches an already existing transaction, if one accidentally re-imports
      a transaction, this allows it to be automatically matched against the
      previously imported transaction.
    Add test for Transaction GetDate() in python bindings, pursuant to
      Bug 798284.
    In find customer dialog, add a column for "Shipping Contact" parameter
    Prep early splash screen messages for translation
    Change text for SX preference option 'Review created transactions' to
      better align with existing SX text.
    Fixed an XML backend problem where trying to open a locked file would clear
      the lock even if one didn't ask to, so the next attempt would find the
      file unlocked even if still open in another instance.
    Fix 2 crashes in Generic Transaction Matcher
    Handle very large denominators from Finance::Quote's OpenExchange source
    Update file extension in man pages per mailing list post.
    Changed some option names:
        * From "Show Accounts until level" to "Levels of Subaccounts"
        * From "Extra notes" to "Extra Notes"
        * From "Report title" to "Report Title"
        * From "Invoice number" to "Invoice Number" to ensure it matches all
          other invoice reports.
    Fix missing mnemonic keys after changes to GNCAmountEdit
      With the changes to GNCAmountEdit, the way the mnemonic keys are
      associated to the entry widget of the GNCAmountEdit needs to change so
      have created a function gnc_amount_edit_make_mnemeonic_target which does
      the same as GNCDateEdit.
    Fix rounding in Stock Split Assistant to correct earlier commit that rounded
      the share price to that of the currency.
    [Portfolio Reports] Allow share digits to 9 decimal places to match the
      maximum commodity fraction.

Deprecations

    Date options with a time of day setting.
    Removing the only use, an example in hello-world.scm. GnuCash doesn't use
      this value in any of its own report options and the feature will be
      removed in GnuCash 5. Related to bug 798297 Pref "Use 24-hour clock"
      obsolete?.
    gnc:owner-report-create

(wiz)

2021-10-01 08:51:53 UTC MAIN commitmail json YAML

notmuch: restore TEST_TARGET

(wiz)

2021-10-01 08:21:07 UTC MAIN commitmail json YAML

notmuch: disable perl test dependency

If this is here, the build on NetBSD breaks with

In file included from gmime-filter-reply.c:21:
gmime-filter-reply.h:22:10: fatal error: gmime/gmime-filter.h: No such file or directory
  22 | #include <gmime/gmime-filter.h>
      |          ^~~~~~~~~~~~~~~~~~~~~~
compilation terminated.

after

Checking for available C compiler warning flags...
        -Wall -Wextra -Wwrite-strings -Wmissing-declarations
./configure: perl_absolute: parameter not set
./configure: perl_absolute: parameter not set

Disable test target as well.

(wiz)

2021-10-01 02:57:20 UTC MAIN commitmail json YAML

xcolor: fix builds in some circumstances

(gutteridge)

2021-09-30 23:48:51 UTC MAIN commitmail json YAML

2021-09-30 21:40:04 UTC MAIN commitmail json YAML

doc: Updated devel/nss to 3.71

(wiz)

2021-09-30 21:39:55 UTC MAIN commitmail json YAML

nss: update to 3.71.

Changes:
- Bug 1717716 - Set nssckbi version number to 2.52.
- Bug 1667000 - Respect server requirements of tlsfuzzer/test-tls13-signature-algorithms.py
- Bug 1373716 - Import of PKCS#12 files with Camellia encryption is not supported
- Bug 1717707 - Add HARICA Client ECC Root CA 2021.
- Bug 1717707 - Add HARICA Client RSA Root CA 2021.
- Bug 1717707 - Add HARICA TLS ECC Root CA 2021.
- Bug 1717707 - Add HARICA TLS RSA Root CA 2021.
- Bug 1728394 - Add TunTrust Root CA certificate to NSS.

(wiz)

2021-09-30 21:38:47 UTC MAIN commitmail json YAML

doc: Updated net/tigervnc to 1.11.0.1.20.11nb5

(wiz)

2021-09-30 21:38:23 UTC MAIN commitmail json YAML

tigervnc: look in /usr/X11R7 for fonts

From Chavdar Ivanov in PR 56427.

Bump PKGREVISION.

(wiz)

2021-09-30 20:34:17 UTC MAIN commitmail json YAML

boost-libs: disable pch for all GCC versions on NetBSD-amd64

(adam)

2021-09-30 19:43:57 UTC MAIN commitmail json YAML

Updated devel/py-ipython, devel/py-immutabledict

(adam)

2021-09-30 19:43:38 UTC MAIN commitmail json YAML

py-immutabledict: updated to 2.2.0

Version 2.2.0

Use poetry-core instead of poetry for build-system.

Version 2.1.0

Fix type annotation on keyword argument in copy(**add_or_replace).

(adam)

2021-09-30 19:41:41 UTC MAIN commitmail json YAML

py-ipython: updated to 7.28.0

IPython 7.28 is again a minor release that mostly bring bugfixes, and couple of
improvement. Many thanks to MrMino, who again did all the work this month, and
made a number of documentation improvements.

Here is a non-exhaustive list of changes,

Fixes:

- async with doesn't allow newlines :ghpull:`13090`
- Dynamically changing to vi mode via %config magic) :ghpull:`13091`

Virtualenv handling fixes:

- init_virtualenv now uses Pathlib :ghpull:`12548`
- Fix Improper path comparison of virtualenv directories :ghpull:`13140`
- Fix virtual environment user warning for lower case pathes :ghpull:`13094`
- Adapt to all sorts of drive names for cygwin :ghpull:`13153`

New Features:

- enable autoplay in embed YouTube player :ghpull:`13133`

Documentation:

- Fix formatting for the core.interactiveshell documentation :ghpull:`13118`
- Fix broken ipyparallel's refs :ghpull:`13138`
- Improve formatting of %time documentation :ghpull:`13125`
- Reword the YouTubeVideo autoplay WN :ghpull:`13147`

(adam)

2021-09-30 19:03:01 UTC MAIN commitmail json YAML

Updated chat/py-axolotl, devel/protobuf, devel/py-protobuf, devel/py-cachetools

(adam)

2021-09-30 19:02:27 UTC MAIN commitmail json YAML

py-cachetools: updated to 4.2.4

v4.2.4 (2021-09-30)
- Add submodule shims for backward compatibility.

v4.2.3 (2021-09-29)
- Add documentation and tests for using ``TTLCache`` with
  ``datetime``.
- Link to typeshed typing stubs.
- Flatten package file hierarchy.

(adam)

2021-09-30 18:59:47 UTC MAIN commitmail json YAML

protobuf py-protobuf: updated to 3.18.0

Protocol Buffers v3.18.0

C++

Fix warnings raised by clang 11
Make StringPiece constructible from std::string_view
Add missing capability attributes for LLVM 12
Stop using std::iterator (deprecated in C++17).
Move field_access_listener from libprotobuf-lite to libprotobuf
Fix 7047 Safely handle setlocale
Remove deprecated version of SetTotalBytesLimit()
Support arena allocation of google::protobuf::AnyMetadata
Fix undefined symbol error around SharedCtor()
Fix default value of enum(int) in json_util with proto2
Better Smaller ByteSizeLong
Introduce event filters for inject_field_listener_events
Reduce memory usage of DescriptorPool
For lazy fields copy serialized form when allowed.
Re-introduce the InlinedStringField class
v2 access listener
Reduce padding in the proto's ExtensionRegistry map.
GetExtension performance optimizations
Make tracker a static variable rather than call static functions
Support extensions in field access listener
Annotate MergeFrom for field access listener
Fix incomplete types for field access listener
Add map_entry/new_map_entry to SpecificField in MessageDifferencer. They
record the map items which are different in MessageDifferencer's reporter.
Reduce binary size due to fieldless proto messages
TextFormat: ParseInfoTree supports getting field end location in addition to
start.
Fix repeated enum extension size in field listener
Enable Any Text Expansion for Descriptors::DebugString()
Switch from int{8,16,32,64} to int{8,16,32,64}_t

Python

Drops support for 2.7 and 3.5.

(adam)

2021-09-30 18:57:26 UTC MAIN commitmail json YAML

py-axolotl: updated to 0.2.3

0.2.3
- Apply padding also to messages of blocksize (16 bytes) length before
encryption

0.2.2
- Fixed error when plaintext to encrypt does not need padding

0.2.1
- Fixed error when signed prekey id is zero

0.2.0
- All operations are now to be done on bytes (which is str in py2),
removing all the need for decode/encode mumbo jumbo that was used in this lib
- Updated implementation of KeyHelper.generateRegistrationId to generate
values up to 16380 by default, and allow extending to 2147483647
- v2 messages are now not supported
- Use PKCS7 from cryptography lib for padding instead of own
implementation.

(adam)

2021-09-30 18:56:15 UTC MAIN commitmail json YAML

2021-09-30 16:15:37 UTC MAIN commitmail json YAML

doc: Updated devel/py-pysvn to 1.9.15

(hauke)

2021-09-30 16:15:10 UTC MAIN commitmail json YAML

2021-09-30 15:50:54 UTC MAIN commitmail json YAML

Updated databases/sql-workbench to 127

(abs)

2021-09-30 15:50:33 UTC MAIN commitmail json YAML

Updated databases/sql-workbench to 127

Build 127 (2020-08-22)
Bug fixes

- It was no longer possible to run GRANT or REVOKE statements.

Build 126 (2020-08-09)
Enhancements

- WbExport will now abort if a text export is started without a quote character but a quote character would be needed.
- For PostgreSQL, subscriptions and publications for logical replication are now shown in the DbTree and DbExplorer.
- For PostgreSQL, the attribute of IDENTITY REPLICA is now shown in the generated DDL.
- "Make uppercase" and "Make lowercase" now also work if no text is selected. In that case, (only) the character at the cursor is changed
- Passwords can now securely be encrypted using a master password. The old password encryption is no longer supported.
- The properties base profile storage (wb-profiles.properties) is now the default. The old XML format is still supported.
- WbVarDef now supports conditional execution.
- WbCopy now supports views as the source by using -includeViews=true.
- The result panel is now automatically displayed if it was minimized before running a statement.
- It's now possible to configure italic and bold for syntax highlighting
- For SQL Server, partitioning information about a table is now included in the generated DDL
- WbImport can now import all sheets of a spreadsheet into the same table when -sheetName=* is specified together with -table
- The annotation @WbResultAsText can now be used to turn the "text mode" display on for multiple statements
- For PostgreSQL, the "match mode" of foreign key constraints is now displayed and included in the generated DDL
- A new Windows launcher is available that removes the need for a separate 64 and 32 bit executables and can optionally download a JRE
- It's now possible to optionally open the saved file when using "Save As"
- It's now possible to use a special variable in WbImport to assign the input file's line number to a column.
- It's now possible to cycle through the result tabs using a keyboard shortcut.
- When exporting a single table from the table list (Database Explorer or DbTree) it's now possible to select the columns to export.
- It's now possible to display results in GUI mode as "text" in the messages area.
- It's now possible to define a SQL expression to be used in the INSERT statement that WbImport uses to apply SQL functions on the input value.
- Selecting foreign key values is now also supported for DELETE statements.
- The list of shortcut keys can now be exported (with the usual "Save As" formats)
- Invoking code completion in the WHERE clause without a column now displays all columns of all used tables of the query
- For MySQL and MariaDB versions that support them, check constraints are now shown in the generated DDL
- Recently opened files are now accessible through the "File" menu.
- For PostgreSQL, default values on columns of views are now shown in the generated DDL
- For HSQLDB 2.5, the new options for temporal tables are now shown in the generated DDL
- Added new command WbSetSchema to change the current schema using the driver's JDBC API
- For PostgreSQL 12, the new computed columns are now shown in the generated DDL
- The tooltip of a column header now always includes the table name if available

Bug fixes

- For Redshift, tables sources were not always displayed
- When using WbImport with mode=upsert and a table that has a multi-column primary key, the wrong MERGE statement was generated for SQL Server, HSQLDB and DB2
- When exporting to ODS, the generated files could not be opened with Microsoft Excel.
- Using nested WbIncludes failed with an exception
- When invoking code-completion in the ON part of a JOIN, not tables where shown.
- When selecting a global SSH configuration for a connection profile, it was no longer possible to revert to a "non-global" configuration
- When specifying a SSH Tunnel without a password and no keyfile, SQL Workbench did not prompt for the password
- For WbCopy, when using -createTarget=true together with -targetSchema the new table was created in the wrong schema
- Fixed an issue when loading the SQL Server JDBC driver with certain versions of OpenJDK
- For SQL Server, when including the CREATE TABLE statement in the output when exporting data as SQL the export failed
- WbDataDiff did not work properly if the key columns contained NULL values.
- When exporting or saving data, it was not possible to enter the filename manually into the dialog.
- Month names were case sensitive when using -dateFormat or -timestampFormat with WbImport
- For Oracle 18c and later, index information wasn't displayed correctly.
- For Oracle 18c and later, DDL for identity columns wasn't generated correctly.
- For Oracle, the generated IGNORE_DUP_KEY hint was incorrect if the order of the PK columns was different to the column order of the table.
- Assigning multiple variables with WbVarDef was not possible if -variable was used.
- For Redshift, finding tables on the search path was no longer working.
- For PostgreSQL, using the JDBC driver 42.2.11, the value for columns defined as "timestamp with time zone" could not be retrieved any longer.
- The cursor position wasn't calculated correctly, if real tabs where used in the editor (regression from 125.6)
- Sorting columns defined as arrays in the result did not work properly.
- The new Windows launcher (introduced in 125.5) did not work if run from a directory with spaces in the name
- Fixed some problems with the cursor position in the editor with High-DPI displays (on Windows)
- For PostgreSQL, the DDL for partitioned tables with sub-partitions was not generated correctly
- Using WbImport with temp tables as the target did not work with PostgreSQL and SQL Server
- When using UCanAccess certain types of "linked columns" are now displayed correctly.
- For DB2 on AS/400 the CSID attribute was also generated for data types where it wasn't relevant.
- Individual statements were not detected correctly in the editor if the text started with a semicolon.
- "Create SQL List" did not work properly if only a part of the first or last line was selected.
- For PostgreSQL, the dependency display of trigger functions wasn't working any more.
- When using Page Down when the editor text was shorter than the number of lines, the display was corrupted.
- When closing the macro dialog while macros were filtered, only the visible macros were saved.
- For PostgreSQL, check constraints and default values were no longer displayed correctly in the generated DDL
- For XLSX exports, using -infoSheet did not work any longer
- When using -endRow with WbImport, the following rows weren't exported, but the input file was still read until the end
- Filtering the list of macros did no longer work correctly.
- For SQLite, all values are now retrieved as strings to workaround problems with the lack of explicit data types.
- Common table expressions containing DML are now correctly identified when the "Read Only" option is selected in the connection profile.
- The XML file generated by WbSchemaDiff was incorrect when multiple views need to be dropped.
- The SQL formatter removed trailing semicolons if only a single statement was formatted.
- Fractional seconds were not correcly formatted in timestamp literals in generated SQL statements.
- When editing a result with columns from multiple tables where the columns were not fully qualified, an exception occurred rather than a usable error message.
- Conditional execution of Workbench commands using -ifDefined and -ifNotDefined behaved the same as -ifEmpty and -ifNotEmpty
- For Postgres, infinity values for timestamp with time zone could not be read from the database.
- If the JDBC driver returned LocalDateTime or LocalDate values, those weren't formatted properly in SQL statements or text files.

Build 125 (2019-05-08)
Enhancements

- All additional libraries are now expected in the directory "ext".
- In the DbExplorer, using "Show Rowcounts", now displays the row counts as a new column in the table list.
- WbDataDiff now also supports -clobAsFile when generating SQL statements
- For WbExport and WbDataDiff -clobFileThreshold has been added
- For MariaDB 10.3, sequences are now displayed in the DbExplorer
- The "Manage Macros" dialog now also supports filtering of the macros.
- For Oracle, the generated DDL for tables now contains the definitions of extended column statistics.
- It's now possible to control the behaviour of WbDefineVar when NULL values are retrieved through a SQL query
- It's now possible to specify a message with WbEcho that is displayed even if verbose logging was turned off (e.g. using -verbose=false for WbInclude)
- For WbExport and WbImport, it's now possible to define the values for -quoteChar and -delimiter using unicode escape notation (e.g. \0008)
- WbDefineVar now supports the -silent option so suppress the details about the defined variable
- For conditional execution of some SQL Workbench/J commands, checking for the (non) existence of files or tables is now supported
- For Postgres, comments on foreign key constraints are now displayed in the DbExplorer and the generated DDL source
- Confirmation to close "Other tabs" can now be configured separately.

Bug fixes

- For SQL Server, DateTime values were not displayed correctly
- For Oracle the source of materialized views using ON PREBUILT TABLE was incorrect.
- Relative file names were treated differently by the SQL Workbench commands and the ifFileExists check.
- For MySQL, the source of triggers wasn't displayed.
- Copy to clipboard did not use the format string for decimal values
- For Oracle, using -mode=upsert with CLOB columns did not work for WbImport
- For some JDBC drivers, the console did not display the column's alias, but the real column name in a result
- For Postgres, nesting dollar quoted strings did not work.
- When retrieving XML columns using a driver that supports the JDBC API getXML() NULL values would result in an error.
- For Postgres, the generated source for an extension in the DbExplorer was not correct.
- The detection of the DB2 version was no long working correctly
- Numbers that can't be stored in Excel's file format are now exported as strings rather than numbers
- For Oracle, certain timestamp values were incorrectly exported.
- For Oracle 12, statements using "WITH FUNCTION" or "/*+ WITH_PLSQL */" to create inline PL/SQL functions could not be executed.
- WbCall did not display values for OUT parameters for all data types.
- For Oracle, the status of foreign keys (enabled, validated) was no longer displayed in the DbExplorer.
- For PostgreSQL, retrieving the policies for row level security was not working for versions prior to 10 any more.
- When using -profileStorage wih a filename without a path, files located in the config directory where not found
- Generating a SQL script using WbDataDiff on tables with timestamptz columns in Postgres did not work

(abs)

2021-09-30 15:32:53 UTC MAIN commitmail json YAML

ghc90: Switch to fixed SunOS bootstrap.

Also apply the "cp -p" fix from other versions, removing the need for ln
workarounds on OmniOS.

(jperkin)

2021-09-30 14:25:18 UTC MAIN commitmail json YAML

firefox: Revert accidentally committed part

(ryoon)

2021-09-30 14:24:00 UTC MAIN commitmail json YAML

firefox: Fix SITES for nodejs-output-92.0.tgz

(ryoon)

2021-09-30 14:20:41 UTC MAIN commitmail json YAML

doc: Updated www/firefox-l10n to 92.0.1

(ryoon)

2021-09-30 14:20:01 UTC MAIN commitmail json YAML

firefox-l10n: Update to 92.0.1

* Sync with www/firefox-92.0.1.

(ryoon)

2021-09-30 14:19:36 UTC MAIN commitmail json YAML

doc: Updated www/firefox to 92.0.1

(ryoon)

2021-09-30 14:18:28 UTC MAIN commitmail json YAML

firefox: Update to 92.0.1

Changelog:
92.0.1
Fixed

  * Fixes an issue where audio playback was not working on some Linux systems (
    bug 1730499)

  * Fixes issues with the findbar close button on different operating systems (
    bug 1728368)

92.0
New

  * More secure connections: Firefox can now automatically upgrade to HTTPS
    using HTTPS RR as Alt-Svc headers.

  * Full-range color levels are now supported for video playback on many
    systems.

  * Mac users can now access the macOS share options from the Firefox File
    menu.

  * Support for images containing ICC v4 profiles is enabled on macOS.

Fixed

  * Firefox performance with screen readers and other accessibility tools is no
    longer severely degraded if Mozilla Thunderbird is installed or updated
    after Firefox.

  * macOS VoiceOver now correctly reports buttons and links marked as ??
    expanded?? using the aria-expanded attribute.

  * An open alert in a tab no longer causes performance issues in other tabs
    using the same process.

  * Various security fixes

Changed

  * Canonical is now building the official Firefox snap. It's also now
    available on two additional architectures, ARMhf and ARM64.

  * The bookmark toolbar menus on macOS now follow Firefox visual styles.

  * Certificate error pages have been redesigned for a better user experience.

  * Continuing work to restructure Firefox??s JavaScript memory management to
    be more performant and use less memory.

(ryoon)

2021-09-30 14:18:14 UTC MAIN commitmail json YAML

(lang/nqp) Update version in buildlink3.mk

(mef)

2021-09-30 14:17:20 UTC MAIN commitmail json YAML

(devel/MoarVM) Update version in buildlink3.mk

(mef)

2021-09-30 14:09:13 UTC MAIN commitmail json YAML

doc: Updated lang/rakudo to 2021.09

(mef)

2021-09-30 14:08:48 UTC MAIN commitmail json YAML

(lang/rakudo) Updated 2021.08 to 2021.09

Announce: Rakudo compiler, Release #150 (2021.09)

On behalf of the Rakudo development team, I?m very happy to announce the
September 2021 release of Rakudo #150. Rakudo is an implementation of the Raku^
1 language.

The source tarball for this release is available from https://rakudo.org/files/
rakudo. Pre-compiled archives will be available shortly.

New in 2021.09:

  * Additions:
      + Introduce the safe-snapper module. It is a shorthand for loading
        Telemetry and starting a snapper with control-c safety, allowing one to
        stop the script with control-c and still get a report [87152eba]
      + Add ability to subtract an Instant value from a DateTime object and
        vice versa [9a4af4b6]
      + Add Numeric coercer to DateTime [67138ec0]
  * Changes:
      + Make the sprintf method show its format string on error [ea8a95e5]
        [57841911]
      + The test named parameter of the dir routine now handles Junctions
        [21a7117d]
      + Improve error message for the X::Pragma::CannotPrecomp exception
        [a52f1f62][fe461d17]
  * Efficiency:
      + Numerous small speed-ups and memory-related improvements [94462dfa]
        [3aba9707][3c1c709c]
  * Fixes:
      + Properly handle List of Lists in the List.fmt method [a86ec91e]
      + Don't lose concurrent modifications to %!conc_table [72bc5623]
      + Fix potential race in Metamodel::Concretization [d666dfe8]
      + Make the default scheduler properly see RAKUDO_MAX_THREADS env variable
        [b14d404a]
  * Internal:
      + Support ROAST_TIMING_SCALE in telemetry tests [9681a093]
      + Fix false positive in basic telemetry test [c0a6823b]
      + Pass along whether the Rakudo runner was called with --full-cleanup
        [5492452b]
      + Update the concretization table more sparingly [b236dcfd]

(mef)

2021-09-30 13:43:06 UTC MAIN commitmail json YAML

doc: Updated lang/nqp to 2021.09

(mef)

2021-09-30 13:42:49 UTC MAIN commitmail json YAML

(lang/nqp) Updated 2021.08 to 2021.09, explicit ChangeLog unknown

(mef)

2021-09-30 13:36:37 UTC MAIN commitmail json YAML

Updated math/p5-Math-BigInt-GMP to 1.6009

(wen)

2021-09-30 13:34:54 UTC MAIN commitmail json YAML

Update to 1.6009

Upstream changes:
1.6009 2021-09-28

* Sync test files with Math-BigInt.

1.6008 2021-07-02

* Sync test files with Math-BigInt.

(wen)

2021-09-30 13:32:09 UTC MAIN commitmail json YAML

doc: Updated devel/MoarVM to 2021.09

(mef)

2021-09-30 13:31:58 UTC MAIN commitmail json YAML

(devel/MoarVM) Updated 2021.08 to 2021.009

New in 2021.09

Core:
+ [0b713ada,e5cbede8] Store `key_right_shift` - metadata_hash_bits in the hashtable
+ [5ead9f0d] Respect `--full-cleanup` in `nqp::exit`
+ [7a385a35] Fix possible access to fromspace in NativeCall callbacks

GC:
+ [bb14f423] Fix finalizers of gen2 objects rarely getting run

(mef)