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 (30m)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (41d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (153d) 

2024-05-12 13:12:33 UTC Now

2023-12-18 15:57:12 UTC MAIN commitmail json YAML

doc: Updated security/putty to 0.80

(wiz)

2023-12-18 15:57:00 UTC MAIN commitmail json YAML

putty: update to 0.80.

PuTTY version 0.80 is released
------------------------------

This is a SECURITY UPDATE. We recommend that _everybody_ upgrade, as
soon as possible.

There is one security fix in this release:

- Fix for a newly discovered security issue known as the 'Terrapin'
  attack, also numbered CVE-2023-48795. The issue affects widely-used
  OpenSSH extensions to the SSH protocol: the ChaCha20+Poly1305
  cipher system, and 'encrypt-then-MAC' mode.

  In order to benefit from the fix, you must be using a fixed version
  of PuTTY _and_ a server with the fix, so that they can agree to
  adopt a modified version of the protocol. Alternatively, you may be
  able to reconfigure PuTTY to avoid selecting any of the affected
  modes.

  If PuTTY 0.80 connects to an SSH server without the fix, it will
  warn you if the initial protocol negotiation chooses an insecure
  mode to run the connection in, so that you can abandon the
  connection. If it's possible to alter PuTTY's configuration to
  avoid the problem, then the warning message will tell you how to do
  it.

As well as this security fix, there are two other ordinary bug fixes
in 0.80:

- On Windows, if you installed the MSI package, PuTTY could not find
  its help file. The help file was installed, but PuTTY wouldn't be
  able to open it, so the help buttons in its dialog boxes were
  missing.

- Sometimes, if you were looking at the terminal scrollback, the view
  position would be reset to the bottom of the scrollback unwantedly,
  if the server sent terminal output that didn't actually cause
  anything to be printed.

(wiz)

2023-12-18 15:53:27 UTC MAIN commitmail json YAML

devel/hdf5: rename unsafe-threads to hdf5-unsafe-threads and document it

(thor)

2023-12-18 15:52:20 UTC MAIN commitmail json YAML

py-asyncssh: bump PKGREVISION for previous

(wiz)

2023-12-18 15:52:05 UTC MAIN commitmail json YAML

py-asyncssh: convert to wheel.mk

Fix LICENSE while here.

(wiz)

2023-12-18 15:38:45 UTC MAIN commitmail json YAML

doc: Updated security/openssh to 9.6p1

(wiz)

2023-12-18 15:38:34 UTC MAIN commitmail json YAML

openssh: update to 9.6p1.

Changes since OpenSSH 9.5
=========================

This release contains a number of security fixes, some small features
and bugfixes.

Security
========

This release contains fixes for a newly-discovered weakness in the
SSH transport protocol, a logic error relating to constrained PKCS#11
keys in ssh-agent(1) and countermeasures for programs that invoke
ssh(1) with user or hostnames containing invalid characters.

* ssh(1), sshd(8): implement protocol extensions to thwart the
  so-called "Terrapin attack" discovered by Fabian Bäumer, Marcus
  Brinkmann and Jörg Schwenk. This attack allows a MITM to effect a
  limited break of the integrity of the early encrypted SSH transport
  protocol by sending extra messages prior to the commencement of
  encryption, and deleting an equal number of consecutive messages
  immediately after encryption starts. A peer SSH client/server
  would not be able to detect that messages were deleted.

  While cryptographically novel, the security impact of this attack
  is fortunately very limited as it only allows deletion of
  consecutive messages, and deleting most messages at this stage of
  the protocol prevents user user authentication from proceeding and
  results in a stuck connection.

  The most serious identified impact is that it lets a MITM to
  delete the SSH2_MSG_EXT_INFO message sent before authentication
  starts, allowing the attacker to disable a subset of the keystroke
  timing obfuscation features introduced in OpenSSH 9.5. There is no
  other discernable impact to session secrecy or session integrity.

  OpenSSH 9.6 addresses this protocol weakness through a new "strict
  KEX" protocol extension that will be automatically enabled when
  both the client and server support it. This extension makes
  two changes to the SSH transport protocol to improve the integrity
  of the initial key exchange.

  Firstly, it requires endpoints to terminate the connection if any
  unnecessary or unexpected message is received during key exchange
  (including messages that were previously legal but not strictly
  required like SSH2_MSG_DEBUG). This removes most malleability from
  the early protocol.

  Secondly, it resets the Message Authentication Code counter at the
  conclusion of each key exchange, preventing previously inserted
  messages from being able to make persistent changes to the
  sequence number across completion of a key exchange. Either of
  these changes should be sufficient to thwart the Terrapin Attack.

  More details of these changes are in the PROTOCOL file in the
  OpenSSH source distribition.

* ssh-agent(1): when adding PKCS#11-hosted private keys while
  specifying destination constraints, if the PKCS#11 token returned
  multiple keys then only the first key had the constraints applied.
  Use of regular private keys, FIDO tokens and unconstrained keys
  are unaffected.

* ssh(1): if an invalid user or hostname that contained shell
  metacharacters was passed to ssh(1), and a ProxyCommand,
  LocalCommand directive or "match exec" predicate referenced the
  user or hostname via %u, %h or similar expansion token, then
  an attacker who could supply arbitrary user/hostnames to ssh(1)
  could potentially perform command injection depending on what
  quoting was present in the user-supplied ssh_config(5) directive.

  This situation could arise in the case of git submodules, where
  a repository could contain a submodule with shell characters in
  its user/hostname. Git does not ban shell metacharacters in user
  or host names when checking out repositories from untrusted
  sources.

  Although we believe it is the user's responsibility to ensure
  validity of arguments passed to ssh(1), especially across a
  security boundary such as the git example above, OpenSSH 9.6 now
  bans most shell metacharacters from user and hostnames supplied
  via the command-line. This countermeasure is not guaranteed to be
  effective in all situations, as it is infeasible for ssh(1) to
  universally filter shell metacharacters potentially relevant to
  user-supplied commands.

  User/hostnames provided via ssh_config(5) are not subject to these
  restrictions, allowing configurations that use strange names to
  continue to be used, under the assumption that the user knows what
  they are doing in their own configuration files.

Potentially incompatible changes
--------------------------------

* ssh(1), sshd(8): the RFC4254 connection/channels protocol provides
  a TCP-like window mechanism that limits the amount of data that
  can be sent without acceptance from the peer. In cases where this
  limit was exceeded by a non-conforming peer SSH implementation,
  ssh(1)/sshd(8) previously discarded the extra data. From OpenSSH
  9.6, ssh(1)/sshd(8) will now terminate the connection if a peer
  exceeds the window limit by more than a small grace factor. This
  change should have no effect of SSH implementations that follow
  the specification.

New features
------------

* ssh(1): add a %j token that expands to the configured ProxyJump
  hostname (or the empty string if this option is not being used)
  that can be used in a number of ssh_config(5) keywords. bz3610

* ssh(1): add ChannelTimeout support to the client, mirroring the
  same option in the server and allowing ssh(1) to terminate
  quiescent channels.

* ssh(1), sshd(8), ssh-add(1), ssh-keygen(1): add support for
  reading ED25519 private keys in PEM PKCS8 format. Previously
  only the OpenSSH private key format was supported.

* ssh(1), sshd(8): introduce a protocol extension to allow
  renegotiation of acceptable signature algorithms for public key
  authentication after the server has learned the username being
  used for authentication. This allows varying sshd_config(5)
  PubkeyAcceptedAlgorithms in a "Match user" block.

* ssh-add(1), ssh-agent(1): add an agent protocol extension to allow
  specifying certificates when loading PKCS#11 keys. This allows the
  use of certificates backed by PKCS#11 private keys in all OpenSSH
  tools that support ssh-agent(1). Previously only ssh(1) supported
  this use-case.

Bugfixes
--------

* ssh(1): when deciding whether to enable the keystroke timing
  obfuscation, enable it only if a channel with a TTY is active.

* ssh(1): switch mainloop from poll(3) to ppoll(3) and mask signals
  before checking flags set in signal handler. Avoids potential
  race condition between signaling ssh to exit and polling. bz3531

* ssh(1): when connecting to a destination with both the
  AddressFamily and CanonicalizeHostname directives in use,
  the AddressFamily directive could be ignored. bz5326

* sftp(1): correct handling of the limits@openssh.com option when
  the server returned an unexpected message.

* A number of fixes to the PuTTY and Dropbear regress/integration
  tests.

* ssh(1): release GSS OIDs only at end of authentication, avoiding
  unnecessary init/cleanup cycles. bz2982

* ssh_config(5): mention "none" is a valid argument to IdentityFile
  in the manual. bz3080

* scp(1): improved debugging for paths from the server rejected for
  not matching the client's glob(3) pattern in old SCP/RCP protocol
  mode.

* ssh-agent(1): refuse signing operations on destination-constrained
  keys if a previous session-bind operation has failed. This may
  prevent a fail-open situation in future if a user uses a mismatched
  ssh(1) client and ssh-agent(1) where the client supports a key type
  that the agent does not support.

Portability
-----------

* Better identify unsupported and unstable compiler flags, such as
  -fzero-call-used-regs which has been unstable across a several
  clang releases.

* A number of fixes to regression test reliability and log
  collection.

* Update the OpenSSL dependency in the RPM specification.

* sshd(8): for OpenSolaris systems that support privilege limitation
  via the getpflags() interface, prefer using the newer PRIV_XPOLICY
  to PRIV_LIMIT. bz2833

(wiz)

2023-12-18 14:25:32 UTC MAIN commitmail json YAML

2023-12-18 14:22:33 UTC MAIN commitmail json YAML

doc: Updated ham/nec2c to 1.3.1

(mef)

2023-12-18 14:22:24 UTC MAIN commitmail json YAML

(ham/nec2c) Updated 1.3 to 1.3.1

  Version 1.3.1: Fixed a bug in the fbar() in somnec.c reported by
  Ward Harriman, AE6TY, that caused corrupt results with wire dipoles
  close to ground and while using Sommerfeld/Norton approximation.

(mef)

2023-12-18 14:19:55 UTC MAIN commitmail json YAML

doc: Updated ham/xnec2c to 4.2.3

(mef)

2023-12-18 14:19:35 UTC MAIN commitmail json YAML

(ham/xnec2c) Updated 4.2.1 to 4.2.3

(From doc/xnec2c.html)
Version 4.2.2:

  Fixed a bug in the fbar() in somnec.c reported by Ward Harriman,
  AE6TY, that caused corrupt results with wire dipoles close to ground
  and while using Sommerfeld/Norton approximation.

Version 4.2.3:

  Fixed a bug in Child_Process() in fork.c which resulted in an
  out-of-bounds (by 1) write to the rc_config.input_file[] character
  array.

(mef)

2023-12-18 13:53:18 UTC MAIN commitmail json YAML

pkgtools/pkglint: update to 23.2.5

Changes since 23.2.4:

For Python packages that do not support Python 2, warn that egg.mk is
deprecated and should be replaced with wheel.mk.  Provide detailed
migration instructions.

(rillig)

2023-12-18 13:43:58 UTC MAIN commitmail json YAML

doc: Updated devel/p5-MooseX-SetOnce to 0.203

(mef)

2023-12-18 13:43:46 UTC MAIN commitmail json YAML

(devel/p5-MooseX-SetOnce) Updated 0.200002 to 0.203

0.203    2022-12-31 21:33:33-05:00 America/New_York
        - update author email contact info (again)
        - fix how perl version was declared (sorry)

0.202    2022-12-31 17:07:01-05:00 America/New_York
        - declare required perl version
        - update author email contact info (again)

0.201    2021-06-18 20:54:02-04:00 America/New_York
          update author email contact info

(mef)

2023-12-18 13:40:40 UTC MAIN commitmail json YAML

doc: Updated devel/p5-MooseX-App to 1.43nb2

(mef)

2023-12-18 13:40:25 UTC MAIN commitmail json YAML

(devel/p5-MooseX-App) Updated 1.42 to 1.43

1.43 2023-10-21
    - Remove duplicate license
    - Require Config::Any
    - Fix cmd_aliases for flags (fixed by William Barker)
    - Remove smartmatch (implemented by Petr Pisar)
    - Allow to override build date with SOURCE_DATE_EPOCH (implemented by Bernhard M. Wiedemann)

(mef)

2023-12-18 13:35:54 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Module-ScanDeps to 1.35

(mef)

2023-12-18 13:35:44 UTC MAIN commitmail json YAML

(devel/p5-Module-ScanDeps)

1.35  2023-11-05

- massive speed up, esp. for scripts using stuff from
  the Moose ecosystem, thanks to @shawnlaffan:

  - add package level caches for INC searches (_find_in_inc, _glob_in_inc)
  - faster add_deps on case insensitive systems AKA Windows

1.34  2023-09-24

- Fix issue #19 (AKA rschupp/PAR-Packer#78): invalid paths in zip file

  - Restore behaviour from version 1.31 when using "pp --execute ..." or
    "scandeps.pl --execute ...".

    When using "scan_deps(execute => 1, ...)", %INC as gleaned from
    running the script must be sanitized. Contrary to documentation
    "The  key  is the filename you specified (with module names
    converted to pathnames)" %INC *may* contain keys that are
    *absolute pathnames* (or start with "./relativ/path" when
    "relative/path" is in @PATH). Examples are autosplitted modules
    (for autosplit.ix and *.al files). pp will pack these absolute
    paths into the zip (Archive::Zip doesn't complain) which
    results in strange error messages when the packed executable
    tries to unpack them under CACHEDIR/inc on Windows.

    Add t/19-autosplit.t to test for this.
    Add IPC::Run3 to TEST_REQUIRES, used in t/19-autosplit.t

- Add GitHub CI

1.33  2023-08-04

- Recognize Moose/Moo/Mouse style inheritance ("extends")
  or composition ("with") statements.

- Add %Preload entries for known dependants of XS::Parse::Keyword.

  Note: XS::Parse::Keyword is loaded from XS code, grep.metacpan.org
  for calls of boot_xs_parse_keyword() in *.xs files.

1.32  2023-07-05

- Ensure $inc gets removed from the start of $File::Find::name

  On Windows, if $inc contains backslashes then it won't always get removed
  from the start of $File::Find::name because the latter may be canonicalized
  to only contain forward slashes.

- Provide dedicated test scripts for some tests instead of using
  the test scripts themselves: Test::More draws in all kinds of stuff,
  totally unpredictable

- Rewrite test helpers in t/Utils.pm to use Test::More's subtest feature

- Code cleanup; fix detection of 'do STRING' (cf PR #15)

- scandeps.pl:  sort items in "used by" column

- Handle spaces after quote operator, e.g. eval qq {Some::Module}

- Fixes #12: share dir not returned when require module is in an eval

- Recognize constructs like "eval qq{require Inline::C}".

- Recognize idioms like "if (eval { require Foo }) { ..."

- Add %preload rules for some Mojo resource files

  Fixes rschupp/PAR-Packer#44

- Bump perl dependency to guard against ancient perls without FindBin::again()

- Add tool to trace when (and from where) Perl searches for a module

(mef)

2023-12-18 13:33:35 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Module-Install-RTx to 0.43

(mef)

2023-12-18 13:33:24 UTC MAIN commitmail json YAML

(devel/p5-Module-Install-RTx) Updated 0.42 to 0.43

0.43 2022-02-09
- Fix "require" remove_files for perl 5.26+

(mef)

2023-12-18 13:31:07 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Module-Install to 1.21

(mef)

2023-12-18 13:30:55 UTC MAIN commitmail json YAML

(devel/p5-Module-Install) Updated 1.19 to 1.21

1.21  2023-04-28
  - fix tests broken by Module::Install::DSL removal

1.20  2023-04-27
  - Module::Install::DSL has been removed, as its use is highly discouraged.

(mef)

2023-12-18 13:27:32 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Module-Find to 0.16

(mef)

2023-12-18 13:27:20 UTC MAIN commitmail json YAML

(devel/p5-Module-Find) Updated 0.15 to 0.16

    0.16, 2022-08-01
            Fixes an issue where symlink tests failed on systems that do not
            support creation of symlinks. The issue appears on Windows
            systems due to changed behaviour in "File::Find" described in
            perl5/issue #19995 <https://github.com/Perl/perl5/issues/19995>
            Symlink tests were previously skipped if symlink() is not
            available, and now also if creation of a symlink is not
            possible.

            Fixes issue #9 <https://github.com/crenz/Module-Find/issues/9>.
            Note that on Windows system, the patch to "File::Find" from
            perl5/PR #20008 <https://github.com/Perl/perl5/pull/20008> will
            be required for proper operation.

(mef)

2023-12-18 13:24:29 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Module-ExtractUse to 0.345

(mef)

2023-12-18 13:24:16 UTC MAIN commitmail json YAML

(devel/p5-Module-ExtractUse) Updated 0.344 to 0.345

0.345  2023-01-16T17:12:05
    - Auto generate meta_yml_has_provides experimental Kwalitee. (Mohammad S Anwar)

(mef)

2023-12-18 13:22:40 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Module-CPANTS-Analyse to 1.02

(mef)

2023-12-18 13:22:26 UTC MAIN commitmail json YAML

(devel/p5-Module-CPANTS-Analyse) Updated 1.0.1 to 1.0.2

1.02 2023-09-10
  - Treat use v5.36 as use_warnings
  - Skip some of the manifest test if symlink is not available
  - Improve prereq sorting
  - Improve pod detection
  - Improve script detection
  - Use Parse::Distname to get a little more information from a distribution name
  - Dedupe possible licences
  - Add Object::Pad as use strict equivalent (Wesley Schwengle)
  - Fix has_license_in_source_file for distributions that contain only a
    script under bin or scripts (Sven Kirmess)

(mef)

2023-12-18 13:16:03 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Module-Build-Tiny to 0.047

(mef)

2023-12-18 13:15:53 UTC MAIN commitmail json YAML

(devel/p5-Module-Build-Tiny) Updated 0.046 to 0.047

0.047    2023-09-28 17:53:41+02:00 Europe/Brussels
          - Avoid using empty regex for backwards compatability

(mef)

2023-12-18 13:12:54 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Mixin-Linewise to 0.111

(mef)

2023-12-18 13:12:45 UTC MAIN commitmail json YAML

(devel/p5-Mixin-Linewise) Updated 0.110 to 0.111

0.111    2022-12-31 21:09:24-05:00 America/New_York
        - update author information

(mef)

2023-12-18 13:04:24 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Mixin-ExtraFields-Param to 0.022

(mef)

2023-12-18 13:04:12 UTC MAIN commitmail json YAML

(devel/p5-Mixin-ExtraFields-Param) Updated 0.021 to 0.022

0.022    2022-12-31 13:32:48-05:00 America/New_York
        - update packaging and metadata
        - minimum required Perl is now v5.12

(mef)

2023-12-18 12:59:10 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Mixin-ExtraFields to 0.140.003

(mef)

2023-12-18 12:58:59 UTC MAIN commitmail json YAML

(devel/p5-Mixin-ExtraFields) Updated 0.140.002 to 0.140.003

0.140003  2022-12-31 13:29:27-05:00 America/New_York
        - update packaging and metadata
        - minimum required Perl is now v5.12

(mef)

2023-12-18 12:55:30 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Metrics-Any to 0.10

(mef)

2023-12-18 12:55:21 UTC MAIN commitmail json YAML

(devel/p5-Metrics-Any) Updated 0.07 to 0.10

0.10    2023-07-07
        [CHANGES]
        * Swap all of the unit tests from Test::More to Test2::V0

0.09    2022-11-28
        [CHANGES]
        * Define a new API for optional high-performance batch mode
          collection of counter and gauge metrics

0.08    2022-10-11
        [CHANGES]
        * Optionally allow the test adapter to store full values for
          distributions

(mef)

2023-12-18 11:09:37 UTC MAIN commitmail json YAML

doc: Updated graphics/oculante to 0.8.6

(pin)

2023-12-18 11:09:02 UTC MAIN commitmail json YAML

graphics/oculante: update to 0.8.6

��š Bug Fixes
  - Disable lazy_loop so UI refreshes on windows (workaround) (9324fe2b)

(pin)

2023-12-18 11:08:19 UTC MAIN commitmail json YAML

doc: Updated net/netop to 0.1.4

(pin)

2023-12-18 11:07:58 UTC MAIN commitmail json YAML

net/netop: update to 0.1.4

feat: �沁ク migrate to ratatui.

(pin)

2023-12-18 11:06:41 UTC MAIN commitmail json YAML

doc: Updated wm/lefthk to 0.2.1

(pin)

2023-12-18 11:06:20 UTC MAIN commitmail json YAML

wm/lefthk: update to 0.2.1

Releases 0.2.1, which resolves an error (#38) where the system may freeze when
a subprocess tries to acquire stderr.

(pin)

2023-12-18 10:33:28 UTC MAIN commitmail json YAML

devel/hdf5: adding unsafe-threads option

This is an option certain scientific users request for building their code.
They explicitly need the unsupported configuration, that somehow seems to
work for them.

(thor)

2023-12-18 10:27:12 UTC MAIN commitmail json YAML

pkg-vulnerabilities: deactivate one old hdf5 issue

Those fuzzed POCs from 5 years ago trigger this in hdf5 since some time:

h5dump error: internal error (file h5dump.c:line 1471)

(thor)

2023-12-18 10:23:21 UTC MAIN commitmail json YAML

py-faker: not for Python 2, remove PLIST.py2x

(wiz)

2023-12-18 10:02:08 UTC MAIN commitmail json YAML

Updated devel/libebml, devel/py-faker

(adam)

2023-12-18 10:01:51 UTC MAIN commitmail json YAML

py-faker: updated to 21.0.0

v21.0.0

* Fix: random sign in `pyfloat` when `positive=False`. Thanks @viraj-s15.

v20.1.0

* Add company provider and NUSS for `es_ES` locale. Thanks @fgsalomon.
* Add official support for Python 3.12. Thanks @pfouque.

v20.0.3

* Make `unix_time` always return floats.

v20.0.2

* Fix `pydecimal` crash on float `min_value` or `max_value`. Thanks @s-weigand.

v20.0.1

* Fix type hint for `unix_time`.

v20.0.0

* Support platform-specific second precision. Thanks @cknv.

(adam)

2023-12-18 09:57:48 UTC MAIN commitmail json YAML

libebml: updated to 1.4.5

Version 1.4.5 2023-12-12

Fix invalid memory access (reading beyond allocated memory) due to missing integer overflow check.

(adam)

2023-12-18 09:40:29 UTC MAIN commitmail json YAML

Updated textproc/py-diff-match-patch, textproc/py-pdf

(adam)

2023-12-18 09:40:09 UTC MAIN commitmail json YAML

py-pdf: updated to 3.17.3

Version 3.17.3, 2023-12-17

Robustness (ROB)
-  Out-of-bounds issue in handle_tj (text extraction)

Developer Experience (DEV)
-  Make make_release.py easier to configure

Maintenance (MAINT)
-  Bump actions/download-artifact from 3 to 4

(adam)

2023-12-18 09:38:55 UTC MAIN commitmail json YAML

py-diff-match-patch: updated to 20230430

v20230430

Maintenance release

- Replaced deprecated `imp` usage with `importlib`
- Migrated to PEP 621 metadata, flit
- Reformated with updated black/袖sort/袖fmt
- Tested on Python 3.7 - 3.11
- Dropped support for Python 2.7, 3.5, and 3.6

(adam)

2023-12-18 09:31:45 UTC MAIN commitmail json YAML

2023-12-18 09:28:52 UTC MAIN commitmail json YAML

doc: Updated sysutils/duplicity to 2.1.4

(triaxx)

2023-12-18 09:28:39 UTC MAIN commitmail json YAML

duplicity: Update to 2.1.4

pkgsrc changes:
---------------
  * Update HOMEPAGE.
  * Add dependencies for some backends.
  * Fix SUBST messages.

upstream changes:
-----------------
  * Lot of changes: http://duplicity.us/stable/CHANGELOG.html

(triaxx)

2023-12-18 08:56:42 UTC MAIN commitmail json YAML

doc: new webkit version with some new CVEs

(wiz)

2023-12-18 08:24:23 UTC MAIN commitmail json YAML

Updated graphics/gnuplot, devel/py-hatchling

(adam)

2023-12-18 08:24:06 UTC MAIN commitmail json YAML

py-hatchling: updated to 1.21.0

1.21.0 - 2023-12-18其

Added:

Add parent context modifier for path fields

(adam)

2023-12-18 08:22:51 UTC MAIN commitmail json YAML

gnuplot: updated to 5.4.10

Changes in 5.4.10

FIX postscript: build failed in 5.4.9 if neither gd nor cairo libraries present
FIX data-dependent variable point properties in polar plots
FIX configure script modified to work with macOS+Homebrew
CHANGE use 64-bit integers for iteration (allows iteration over dates)

Changes in 5.4.9

NEW qt: support building with Qt6
CHANGE check plugin version at time of import
FIX prevent segfault if GNUPLOT_DRIVER_DIR is invalid
FIX (regression) only y autoscale yerrorbars to points in xrang
FIX possible memory corruption if clipping causes 0-size polygons
FIX wxt: initialization of key box toggle state
FIX post: handle pixmaps

(adam)

2023-12-18 07:30:44 UTC MAIN commitmail json YAML

doc: Updated devel/py-sure to 2.0.1nb1

(wiz)

2023-12-18 07:30:27 UTC MAIN commitmail json YAML

py-sure: convert to wheel.mk

Bump PKGREVISION.

(wiz)

2023-12-18 07:17:39 UTC MAIN commitmail json YAML

py-gi-docgen: add missing tool

(wiz)

2023-12-18 06:45:01 UTC MAIN commitmail json YAML

doc: Updated shells/nushell to 0.88.1

(pin)

2023-12-18 06:44:40 UTC MAIN commitmail json YAML

shells/nushell: update to 0.88.1

v0.88.1
This is the 0.88.1 patch release of Nushell.

With this hotfix we adress a regression in the redirection to external commands
and fix build failures using cargo install and on some platforms.

v0.88.0
This is the 0.88.0 release of Nushell. You can learn more about this release
here: https://www.nushell.sh/blog/2023-12-12-nushell_0_88_0.html

The ChangeLog is too long to reproduce here.

(pin)

2023-12-18 05:49:11 UTC MAIN commitmail json YAML

Updated textproc/py-markdown2, devel/py-progressbar2

(adam)

2023-12-18 05:48:48 UTC MAIN commitmail json YAML

py-progressbar2: updated to 4.3.0

v4.3.0

Added support for multithreading, multiprocessing, colors (16, 256 and full color) and many interactive terminal features such as continuous printing for a live ETA

(adam)

2023-12-18 05:40:16 UTC MAIN commitmail json YAML

py-markdown2: updated to 2.4.12

python-markdown2 2.4.12

- Update `markdown-in-html` extra to handle markdown on same line as HTML
- Fix tables with trailing whitespace not being recognized
- Fix multiple instances of strong emphasis (`**`) in one line
- Fix incorrect parsing of links after square brackets

(adam)

2023-12-18 05:38:00 UTC MAIN commitmail json YAML

Updated devel/cmake, devel/cmake-gui

(adam)

2023-12-18 05:37:35 UTC MAIN commitmail json YAML

cmake cmake-gui: updated to 3.28.1

CMake 3.28.1
* Help/create_test_sourcelist: reflow prose
* Help/create_test_sourcelist: add formatting markup
* Help/create_test_sourcelist: format arguments in the signature docs
* cmGeneratorTarget: disable C++ module scanning for verify targets
* cmQtAutoGenInitializer: disable C++ module scanning for autogen sources
* cmLocalGenerator: disable C++ module scanning for copied PCH sources
* cmLocalGenerator: disable C++ module scanning for unity sources
* cmGlobalXCodeGenerator: disable C++ module scanning for force-lang files
* FindFreetype: always find the config module quietly
* FindFreetype: also consider RelWithDebInfo-built libraries
* FindTIFF: always find the config module quietly
* FindTIFF: consider `IMPLIB`-using platforms
* FindCUDAToolkit: Fix stub library representation on reconfigure
* Tests: Update for changes to upstream ninja development version
* gitlab-ci: update macOS jobs to use Xcode 15.1
* FindMatlab: Fix regression on Windows Registry lookup failure
* FindFreetype: Fix success message when config module is found
* FindTIFF: Restore support for projects that do not enable CMP0057
* FindMatlab: Fix processing of multiple versions from Windows Registry
* Help: Fix malformed cross-reference in FetchContent docs
* Help: Add missing versionadded directives for IMPORTED_IMPLIB
* Help: XCFrameworks and stubs are supported on all Apple, not just macOS
* Help: Note case where IMPORTED_IMPLIB isn't needed for (xc)frameworks
* Tests: Do not expect EINTR when sleep is interrupted on GNU/Hurd
* CUDAToolkit: Restore ability to find cupti headers

(adam)

2023-12-18 02:14:58 UTC MAIN commitmail json YAML

doc: Updated meta-pkgs/xfce4 to 4.18.1nb6

(gutteridge)

2023-12-18 02:14:37 UTC MAIN commitmail json YAML

xfce4: bump for xfce4-power-manager 4.18.3

(gutteridge)

2023-12-18 02:11:54 UTC MAIN commitmail json YAML

doc: Updated sysutils/xfce4-power-manager to 4.18.3

(gutteridge)

2023-12-18 02:11:00 UTC MAIN commitmail json YAML

xfce4-power-manager: update to 4.18.3

4.18.3 (2023-11-30)
======
- power: Fix inhibition management
- settings: Present window to the user when already opened
- settings: Remove useless g_application_hold/release()
- A review of signal handlers disconnection
- Remove #ifdefs DEBUG
- brightness: Rework min level management
- Refactor XfpmBrightness
- Remove useless logs
- backlight: Adjust some spacing for consistency / readability
- backlight: Return earlier when brightness key event should not be
handled
- backlight: fix "handle display brightness keys" setting
- Simplify brightness level management (Fixes #139)
- Add missing properties for panel plugin settings
- Use same debug function everywhere (V2)
- brightness: Silence more warnings
- Fix previous commit (again)
- Fix previous commit
- Fix g_spawn*_sync() wait status management
- brightness: Fix g_spawn() wait status management
- Silence some more warnings
- Update docs url
- power: Fix memory leak
- settings: Fix hidden widgets when !has_lcd_brightness
- backlight: Fix xfconf warning about cancelled operation
- Lower some warning levels
- Use same debug function everywhere
- Fix upower object management
- plugin: Fix non unreffed objects on finalize
- systray-icon: Fix "floating object" warning on finalize
- systray-icon: Fix "invalid property" warnings
- Suspend system if lock screen fails on lid close (Fixes #209)
- Add energy rate into device details
- power: Fix use of g_hash_table_get_values()
- Fix light locker integration (Fixes #201)
- Add app icon at 64px, 96px, clean up SVG metadata
- Fix description for pending states.
- Translation Updates:
  Albanian, Arabic, Armenian (Armenia), Basque, Belarusian, Bulgarian,
  Catalan, Chinese (China), Chinese (Taiwan), Croatian, Czech, Danish,
  Dutch, Eastern Armenian, English (Australia), English (Canada),
  English (United Kingdom), Estonian, Finnish, French, Galician,
  German, Greek, Hebrew, Hungarian, Icelandic, Indonesian, Interlingue,
  Italian, Japanese, Kannada, Kazakh, Korean, Lithuanian, Malay,
  Norwegian Bokm奪l, Occitan (post 1500), Polish, Portuguese,
  Portuguese (Brazil), Romanian, Russian, Serbian, Slovak, Slovenian,
  Spanish, Swedish, Thai, Turkish, Ukrainian

(gutteridge)

2023-12-18 01:41:49 UTC MAIN commitmail json YAML

biology/libpll: add bl3

(thor)

2023-12-18 01:39:27 UTC MAIN commitmail json YAML

doc: Updated biology/libpll to 0.3.2

(thor)

2023-12-18 01:39:13 UTC MAIN commitmail json YAML

biology/libpll: added package for PLL phylogenetic analysis

The aim of this project is to implement a versatile high-performance
software library for phylogenetic analysis. The library should serve
as a lower-level interface of PLL (Flouri et al. 2015) and should
have the following properties:

    open source code with an appropriate open source license.
    64-bit multi-threaded design that handles very large datasets.
    easy to use and well-documented.
    SIMD implementations of time-consuming parts.
    as fast or faster likelihood computations than RAxML (Stamatakis 2014).
    fast implementation of the site repeats algorithm (Kobert 2017).
    functions for tree visualization.
    bindings for Python.
    generic and clean design.
    Linux, Mac, and Microsoft Windows compatibility.

(thor)

2023-12-17 22:44:55 UTC MAIN commitmail json YAML

doc: Updated print/texlab to 5.12.0

(wiz)

2023-12-17 22:44:41 UTC MAIN commitmail json YAML

texlab: update to 5.12.0.

## [5.12.0] - 2023-12-03

### Added

- Infer `texlab.build.auxDirectory`, `texlab.build.logDirectory` and `texlab.build.pdfDirectory` from `latexmkrc` if available ([#907](https://github.com/latex-lsp/texlab/issues/907))

### Fixed

- Do not report `undefined reference` errors when using `\nocite{*}` ([#964](https://github.com/latex-lsp/texlab/issues/964))
- Fix potential crash when parsing build log files ([#973](https://github.com/latex-lsp/texlab/issues/973))
- Set the final tab stop of the `\begin` snippet inside the environment ([#963](https://github.com/latex-lsp/texlab/issues/963))

(wiz)

2023-12-17 22:40:25 UTC MAIN commitmail json YAML

doc: Updated finance/gnucash-docs to 5.5

(wiz)

2023-12-17 22:40:13 UTC MAIN commitmail json YAML

gnucash-docs: update to 5.5.

5.5  - 17 December 2023
      o EBICS: for business customers (of the bank) rather than business users.
      o docbook: additional entities for business GUI-elements</li>
      o docbook: gnc-gui-*: Rename the scheduled edit/new/delete menus to
        match a change in the program.
5.4  - 24 September 2023
      o Bug 799074 - Incorrect note re cash page in stock-txn-assistant
      o Add a Chinese translation for the Tutorial and Concepts Guide.
      o Update git branches for API docs
      o Refactor the build system feature for adding customized xslt files.
      o Bump minimum cmake version to 3.14 to keep it in sync with the
        gnucash repo
      o Fix race condition in creating symlinks for the kde help system.
      o Update GitHub actions/checkout to v3 in all actions and add
        nightly-build github workflow.
      o Manual (C,de): Replace obsolete 'gnc-fq-*' with
        'gnucash-cli --quotes *'
      o Guide (C,de,ru): Repair broken links from 'help' to 'manual'
      o Guide (C,de), ch_invest: Remove section 'Finance::Quote install'
      o Manual (C, de) Update F::Q screens to 1.57
      o Change version 4 to 5, branch maint to stable, and update
        Finance::Quote docs to reflect changes in GnuCash.
      o New and Updated Translations: German

(wiz)

2023-12-17 22:38:51 UTC MAIN commitmail json YAML

doc: Updated finance/gnucash to 5.5

(wiz)

2023-12-17 22:38:38 UTC MAIN commitmail json YAML

gnucash: update to 5.5.

5.5  - 17 December 2023

The following bugs have been fixed:

    Bug 607000 - SLR visible transactions
                Change the Since Last Run dialog to show only transactions
                with a non-empty Status.
    Bug 792241 - Allow sorting scheduled transactions
    Bug 798025 - SLR Value entry not tied to location
                Disable scrolling and the horizontal scroll bar while an entry
                has focus.
    Bug 798760 - SLR OK button to complete value entry
                With this change the Since Last Run dialog's OK button will
                commit an in-progress edit and advance to the next edit
                requiring input. It will close the dialog only if there are
                no more edits.
    Bug 798760 - SLR change reminder with value entry
                Change transaction state from Reminder to ToCreate when the
                user has provided the needed value and clicked OK.
    Bug 798890 - Printing Problem
    Bug 799087 - Import - Unbalanced (need acct) transactions now show in red
                (previously orange).
    Bug 799090 - Right Clicking scheduled transaction
                Ensure that the selection highlight changes to the item under
                the pointer when right-clicking in the SX Editor.
    Bug 799092 - GnuCash 5.4 leaves background process running on exit
                Clear the schema_hash at app shutdown via
                gnc_prefs_remove_registered and make that function available
                to the Python bindings so that python programs can do so too.
    Bug 799099 - Crash when trying to get quotes
    Bug 799104 - "Asset Chart" broken
    Bug 799108 - "Since Last Run" crashes if there are any errors creating a
                scheduled transaction: Capture errors and display them in a
                dialog box instead.
    Bug 799113 - "Start Import" button reports "Failed"
    Bug 799121 - Parse error on CSV import on MacOS
    Bug 799130 - split-register.c:1847:gnc_split_register_save: assertion
                failed: (xaccTransIsOpen (blank_trans))
    Bug 799134 - Fails to build with GCC 14 (���find_if��� is not a member of ���std���;
                did you mean ���find���)
    Bug 799138 - Port to new Python C config API
    Bug 799143 - FTBFS on 32bit architectures
    Bug 799144 - Date Completion is broken after 5.4 upgrade
    Bug 799148 - Reliable crash when saving a modified saved report
                configuration
    Bug 799150 - Can't paste text (with Ctrl+V) in Notes field in Account Tree
                View
    Bug 799151 - gnc_date_get_last_mday () does not account for leap years
                correctly.
    Bug 799152 - normalize_reldate_tm() does not handle dates with months
                greater than 11 or less than -11 correctly.
    Bug 799156 - normalize_struct_tm() does not normalize seconds,minutes, and
                hours correctly.
Other repairs or enhancements not marked as bugs:

    Cancel the QIF import instead of inserting the default directory if the
        user cancels the file-selection dialog.
    Memory leak fixes
    Rename the scheduled transaction edit/new/delete menus to resolve a
        shortcut conflict.
    Allow saving the sort column in the Since Last Run dialog
    Ensure that Print Checks obtains for the check amount the sum of all splits
        in the current register account and subaccounts.
    Ensure that report page actions are re-enabled after editing options. Some
        actions (Print, PDFExport, and Report Options) had been left disabled.
    Ensure GncDateEntry always reverts to today if the user enters an invalid
        date string.
    Direct cmake to find the base installed Python3 instead of the latest
        version installed. Reference Cmake Issue 24126, Cmake Issue 24878, and
        CMake merge request 8287. Note that this requires CMake 3.20 or later;
        users of older versions will still get the newest installed Python
        version.
    CI: Run distcheck on one workflow to catch quickly instances where someone
        adds a file but forgets to update the distribution.
    Primarily of interest to developers: We've added a new CMAKE_BUILD_TYPE,
        Asan, with two options -DLEAKS and -DODR, both of which default to OFF.
        This creates a non-optimized, with-symbols build with the Address
        Sanitizer hooks compiled in. While the primary motivation is a CI run
        to ensure that there aren't any memory allocation errors revealed in
        the test suite, this is also a useful build to use when debugging a
        segfault crash, many of which are caused by use-after-free errors. When
        building on non-Apple platforms -DLEAKS=ON will add leak detection,
        dumping a stack trace for the allocation of any leaked heap or
        free-store allocations. Similarly and on non-Apple platforms only
        -DODR=ON will log violations of the C++ one definition rule.
    Also of interest to developers: A new cmake option -DCOVERAGE. When on and
        in a non-optimized build this will instrument the program and libraries
        to count usage for every source line. The option also adds three
        targets, lcov-initialize, lcov-collect, and lcov-generate-html. The
        primary motivation is to assess the completeness of tests in CI, see
        https://gnucash.github.io/Coverage-HTML for the latest results.

(wiz)

2023-12-17 22:34:07 UTC MAIN commitmail json YAML

doc: Updated textproc/tree-sitter-elixir to 0.1.1

(wiz)

2023-12-17 22:33:58 UTC MAIN commitmail json YAML

tree-sitter-elixir: update to 0.1.1.

Changed

    Rewritten the custom scanner code in C (#56)

Fixed

    Parsing empty interpolation (#55)
    Fixed the repository URL in the Rust crate (#57)

(wiz)

2023-12-17 22:32:19 UTC MAIN commitmail json YAML

doc: Updated www/restish to 0.20.0

(wiz)

2023-12-17 22:32:09 UTC MAIN commitmail json YAML

restish: update to 0.20.0.

    c4befd0 Merge pull request #223 from danielgtaylor/dependabot/go_modules/golang.org/x/net-0.17.0
    2db8c10 Merge pull request #225 from exoscale/cached-transport
    c0f180c Merge pull request #226 from danielgtaylor/dependabot/go_modules/golang.org/x/image-0.10.0
    b75a307 Merge pull request #227 from cbliard/patch-1
    a92c7db Merge pull request #229 from danielgtaylor/redirect-url
    21a9017 Merge pull request #233 from danielgtaylor/hide-secrets-input
    d16bdd7 Merge pull request #234 from danielgtaylor/clear-auth-cache
    0a1f26c Update docs to use go install instead of go get
    00b34d8 chore(deps): bump golang.org/x/image from 0.5.0 to 0.10.0
    8135dc8 chore(deps): bump golang.org/x/net from 0.7.0 to 0.17.0
    ac559b9 chore: add configurable redirect_url, preserve default value
    97c3636 feat: add command to clear auth token cache
    13fe1aa fix(api): Do not cache server responses when refreshing API defs
    1ecdb09 fix: hide secret input during API config, fixes #232
    9a25266 fix: use better url parsing

(wiz)

2023-12-17 22:31:32 UTC MAIN commitmail json YAML

doc: Updated textproc/enchant2 to 2.6.4

(wiz)

2023-12-17 22:31:22 UTC MAIN commitmail json YAML

enchant2: update to 2.6.4.

2.6.3 (December 11, 2023)
-------------------------

This version makes pkgdatadir versioned by default.

(wiz)

2023-12-17 22:23:59 UTC MAIN commitmail json YAML

doc: Updated security/py-google-auth-httplib2 to 0.2.0

(wiz)

2023-12-17 22:23:50 UTC MAIN commitmail json YAML

py-google-auth-httplib2: update to 0.2.0.

0.2.0 (2023-12-12)

Features

    Add support for Python 3.12 (#126) (9a110a6)

Dependencies

    Remove third-party mock library (#124) (ea0c7c6)

(wiz)

2023-12-17 22:22:20 UTC MAIN commitmail json YAML

doc: Updated security/py-cyclonedx-python-lib to 6.0.0

(wiz)

2023-12-17 22:22:06 UTC MAIN commitmail json YAML

py-cyclonedx-python-lib: update to 6.0.0.

v6.0.0 (2023-12-10)

Breaking

    feat!: v6.0.0 (#492)

Breaking Changes

    Removed symbols that were already marked as deprecated (via #493)
    Removed symbols in parser.* (#489 via #495)
    Removed output.LATEST_SUPPORTED_SCHEMA_VERSION (#491 via #494)
    Serialization of unsupported enum values might downgrade/migrate/omit them (#490 via #496)
    Handling might raise warnings if a data loss occurred due to omitting.
    The result is a guaranteed valid XML/JSON, since no (enum-)invalid values are rendered.
    Serialization of any model.component.Component with unsupported type raises exception.serialization.SerializationOfUnsupportedComponentTypeException (#490 via #496)
    Object model.bom_ref.BomRef's property value defaults to Null, was arbitrary UUID (#504 via #505)
    This change does not affect serialization. All bom-refs are guaranteed to have unique values on rendering.
    Removed helpers from public API (#503 via #506)

Added

    Basic support for CycloneDX 1.5 (#404 via #488) -- Thanks to @Churro
        No data models were enhanced nor added, yet.
        Pull requests to add functionality are welcome.
        Existing enumerable got new cases, to reflect features of CycloneDX 1.5 (#404 via #488)
        Outputters were enabled to render CycloneDX 1.5 (#404 via #488)

Tests

    Created (regression/unit/integration/functional) tests for CycloneDX 1.5 (#404 via #488)
    Created (regression/functional) tests for Enums' handling and completeness (#490 via #496)

Misc

    Bumped dependency py-serializable@^0.16, was @^0.15 (via #496)

API Changes — the details for migration

    Added new sub-package exception.serialization (via #496)
    Removed class models.ComparableTuple (#503 via #506)
    Enum model.ExternalReferenceType got new cases, to reflect features for CycloneDX 1.5 (#404 via #488)
    Removed function models.get_now_utc (#503 via #506)
    Removed function models.sha1sum (#503 via #506)
    Enum model.component.ComponentType got new cases, to reflect features for CycloneDX 1.5 (#404 via #488)
    Removed model.component.Component.__init__()'s deprecated optional kwarg namespace (via #493)
    Use kwarg group instead.
    Removed model.component.Component.__init__()'s deprecated optional kwarg license_str (via #493)
    Use kwarg licenses instead.
    Removed deprecated method model.component.Component.get_namespace() (via #493)
    Removed class models.dependency.DependencyDependencies (#503 via #506)
    Removed model.vulnerability.Vulnerability.__init__()'s deprecated optional kwarg source_name (via #493)
    Use kwarg source instead.
    Removed model.vulnerability.Vulnerability.__init__()'s deprecated optional kwarg source_url (via #493)
    Use kwarg source instead.
    Removed model.vulnerability.Vulnerability.__init__()'s deprecated optional kwarg recommendations (via #493)
    Use kwarg recommendation instead.
    Removed model.vulnerability.VulnerabilityRating.__init__()'s deprecated optional kwarg score_base (via #493)
    Use kwarg score instead.
    Enum model.vulnerability.VulnerabilityScoreSource got new cases, to reflect features for CycloneDX 1.5 (#404 via #488)
    Removed output.LATEST_SUPPORTED_SCHEMA_VERSION (#491 via #494)
    Removed deprecated function output.get_instance() (via #493)
    Use function output.make_outputter() instead.
    Added new class output.json.JsonV1Dot5, to reflect CycloneDX 1.5 (#404 via #488)
    Added new item to dict output.json.BY_SCHEMA_VERSION, to reflect CycloneDX 1.5 (#404 via #488)
    Added new class output.xml.XmlV1Dot5, to reflect CycloneDX 1.5 (#404 via #488)
    Added new item to dict output.xml.BY_SCHEMA_VERSION, to reflect CycloneDX 1.5 (#404 via #488)
    Removed class parser.ParserWarning (#489 via #495)
    Removed class parser.BaseParser (#489 via #495)
    Enum schema.SchemaVersion got new case V1_5, to reflect CycloneDX 1.5 (#404 via #488)

(wiz)

2023-12-17 22:20:13 UTC MAIN commitmail json YAML

doc: Updated textproc/py-black to 23.12.0

(wiz)

2023-12-17 22:20:04 UTC MAIN commitmail json YAML

py-black: update to 23.12.0.

## 23.12.0

### Highlights

It's almost 2024, which means it's time for a new edition of _Black_'s stable style!
Together with this release, we'll put out an alpha release 24.1a1 showcasing the draft
2024 stable style, which we'll finalize in the January release. Please try it out and
[share your feedback](https://github.com/psf/black/issues/4042).

This release (23.12.0) will still produce the 2023 style. Most but not all of the
changes in `--preview` mode will be in the 2024 stable style.

### Stable style

- Fix bug where `# fmt: off` automatically dedents when used with the `--line-ranges`
  option, even when it is not within the specified line range. (#4084)
- Fix feature detection for parenthesized context managers (#4104)

### Preview style

- Prefer more equal signs before a break when splitting chained assignments (#4010)
- Standalone form feed characters at the module level are no longer removed (#4021)
- Additional cases of immediately nested tuples, lists, and dictionaries are now
  indented less (#4012)
- Allow empty lines at the beginning of all blocks, except immediately before a
  docstring (#4060)
- Fix crash in preview mode when using a short `--line-length` (#4086)
- Keep suites consisting of only an ellipsis on their own lines if they are not
  functions or class definitions (#4066) (#4103)

### Configuration

- `--line-ranges` now skips _Black_'s internal stability check in `--safe` mode. This
  avoids a crash on rare inputs that have many unformatted same-content lines. (#4034)

### Packaging

- Upgrade to mypy 1.7.1 (#4049) (#4069)
- Faster compiled wheels are now available for CPython 3.12 (#4070)

### Integrations

- Enable 3.12 CI (#4035)
- Build docker images in parallel (#4054)
- Build docker images with 3.12 (#4055)

(wiz)

2023-12-17 22:18:07 UTC MAIN commitmail json YAML

doc: Updated devel/py-babel to 2.14.0

(wiz)

2023-12-17 22:17:58 UTC MAIN commitmail json YAML

py-babel: update to 2.14.0.

Version 2.14.0
--------------

Upcoming deprecation
~~~~~~~~~~~~~~~~~~~~

* This version, Babel 2.14, is the last version of Babel to support Python 3.7.
  Babel 2.15 will require Python 3.8 or newer.
* We had previously announced Babel 2.13 to have been the last version to support
  Python 3.7, but being able to use CLDR 43 with Python 3.7 was deemed important
  enough to keep supporting the EOL Python version for one more release.

Possibly backwards incompatible changes
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

* ``Locale.number_symbols`` will now have first-level keys for each numbering system.
  Since the implicit default numbering system still is ``"latn"``, what had previously
  been e.g. ``Locale.number_symbols['decimal']`` is now ``Locale.number_symbols['latn']['decimal']``.
* Babel no longer directly depends on either ``distutils`` or ``setuptools``; if you had been
  using the Babel setuptools command extensions, you would need to explicitly depend on ``setuptools`` –
  though given you're running ``setup.py`` you probably already do.

Features
~~~~~~~~

* CLDR/Numbers: Add support of local numbering systems for number symbols by @kajte in :gh:`1036`
* CLDR: Upgrade to CLDR 43 by @rix0rrr in :gh:`1043`
* Frontend: Allow last_translator to be passed as an option to extract_message by @AivGitHub in :gh:`1044`
* Frontend: Decouple `pybabel` CLI frontend from distutils/setuptools by @akx in :gh:`1041`
* Numbers: Improve parsing of malformed decimals by @Olunusib and @akx in :gh:`1042`

Infrastructure
~~~~~~~~~~~~~~

* Enforce trailing commas (enable Ruff COM rule and autofix) by @akx in :gh:`1045`
* CI: use GitHub output formats by @akx in :gh:`1046`

(wiz)

2023-12-17 22:15:44 UTC MAIN commitmail json YAML

doc: Updated devel/libatomic_ops to 7.8.2

(wiz)

2023-12-17 22:15:30 UTC MAIN commitmail json YAML

libatomic_ops: update to 7.8.2.

== [7.8.2] 2023-12-15 ==

* Eliminate 'atomic_thread_fence is unsupported with tsan' gcc-11 warning
* Eliminate 'comparing signed/unsigned values' lcc warning in add_chunk_as
* Fix 'undefined reference to AO_pt_lock' if configure is using clang-16
* Fix 'undefined reference to __atomic_load/store/cas_16' Mingw64-gcc error
* Fix 'undefined reference' linker errors if shared build on OpenBSD (CMake)
* Fix get_chunk for case of mmap area is located before AO_initial_heap
* Fix typo in AO_HAVE_compare_and_swap_double name in atomic_ops_stack.h
* Fix typo in comment of run_one_test of test_stack
* Fix typos in comments of atomic_ops_malloc.c and atomic_ops_stack.c/h
* Update cmake minimum required version to 3.5

(wiz)

2023-12-17 22:15:17 UTC MAIN commitmail json YAML

doc: Updated devel/py-ruff to 0.1.8

(wiz)

2023-12-17 22:15:04 UTC MAIN commitmail json YAML

py-ruff: update to 0.1.8.

v0.1.8

Changes

This release includes opt-in support for formatting Python snippets within docstrings via the docstring-code-format setting. Check out the blog post for more details!

Preview features

    Add "preserve" quote-style to mimic Black's skip-string-normalization (#8822)
    Implement prefer_splitting_right_hand_side_of_assignments preview style (#8943)
    [pycodestyle] Add fix for unexpected-spaces-around-keyword-parameter-equals (#9072)
    [pycodestyle] Add fix for comment-related whitespace rules (#9075)
    [pycodestyle] Allow sys.path modifications between imports (#9047)
    [refurb] Implement hashlib-digest-hex (FURB181) (#9077)

Rule changes

    Allow flake8-type-checking rules to automatically quote runtime-evaluated references (#6001)
    Allow transparent cell magics in Jupyter Notebooks (#8911)
    [flake8-annotations] Avoid ANN2xx fixes for abstract methods with empty bodies (#9034)
    [flake8-self] Ignore underscore references in type annotations (#9036)
    [pep8-naming] Allow class names when apps.get_model is a non-string (#9065)
    [pycodestyle] Allow matplotlib.use calls to intersperse imports (#9094)
    [pyflakes] Support fixing unused assignments in tuples by renaming variables (F841) (#9107)
    [pylint] Add fix for subprocess-run-without-check (PLW1510) (#6708)

Formatter

    Add docstring-code-format knob to enable docstring snippet formatting (#8854)
    Use double quotes for all docstrings, including single-quoted docstrings (#9020)
    Implement "dynamic" line width mode for docstring code formatting (#9098)
    Support reformatting Markdown code blocks (#9030)
    add support for formatting reStructuredText code snippets (#9003)
    Avoid trailing comma for single-argument with positional separator (#9076)
    Fix handling of trailing target comment (#9051)

CLI

    Hide unsafe fix suggestions when explicitly disabled (#9095)
    Add SARIF support to --output-format (#9078)

Bug fixes

    Apply unnecessary index rule prior to enumerate rewrite (#9012)
    [flake8-err-msg] Allow EM fixes even if msg variable is defined (#9059)
    [flake8-pie] Prevent keyword arguments duplication (#8450)
    [flake8-pie] Respect trailing comma in unnecessary-dict-kwargs (PIE804) (#9015)
    [flake8-raise] Avoid removing parentheses on ctypes.WinError (#9027)
    [isort] Avoid invalid combination of force-sort-within-types and lines-between-types (#9041)
    [isort] Ensure that from-style imports are always ordered first in __future__ (#9039)
    [pycodestyle] Allow tab indentation before keyword (#9099)
    [pylint] Ignore @overrides and @overloads for too-many-positional (#9000)
    [pyupgrade] Enable printf-string-formatting fix with comments on right-hand side (#9037)
    [refurb] Make math-constant (FURB152) rule more targeted (#9054)
    [refurb] Support floating-point base in redundant-log-base (FURB163) (#9100)
    [ruff] Detect unused-asyncio-dangling-task (RUF006) on unused assignments (#9060)

(wiz)

2023-12-17 22:13:49 UTC MAIN commitmail json YAML

doc: Updated archivers/unrar to 7.0.5

(wiz)

2023-12-17 22:13:40 UTC MAIN commitmail json YAML

2023-12-17 21:57:58 UTC MAIN commitmail json YAML

doc/TODO: add some

+ cmake-3.28.1, enchant2-2.6.4, erlang-26.2, gnucash-5.5,
  grafana-10.2.2, libatomic_ops-7.8.2, py-babel-2.14.0, py-black-23.12.0,
  py-cyclonedx-python-lib-6.0.0, py-google-auth-httplib2-0.2.0,
  py-ruff-0.1.8, restish-0.20.0, rspamd-3.7.5, texlab-5.12.0,
  tree-sitter-elixir-0.1.1, unrar-7.0.5.

(wiz)

2023-12-17 20:50:00 UTC MAIN commitmail json YAML

Updated devel/py-rpds-py, devel/py-types-ujson

(adam)

2023-12-17 20:49:43 UTC MAIN commitmail json YAML

py-types-ujson: updated to 5.9.0.0

5.9.0.0 (2023-12-12)

[stubsabot] Bump ujson to 5.9.*

(adam)

2023-12-17 20:48:15 UTC MAIN commitmail json YAML

py-rpds-py: updated to 0.15.2

v0.15.2
Unknown changes

(adam)

2023-12-17 20:32:07 UTC MAIN commitmail json YAML

Updated devel/py-extension-helpers, textproc/py-referencing

(adam)

2023-12-17 20:31:36 UTC MAIN commitmail json YAML

py-referencing: updated to 0.32.0

v0.32.0

* Add ``Specification.detect``, which essentially operates like ``Resource.from_contents`` without constructing a resource (i.e. it simply returns the detected specification).

(adam)

2023-12-17 20:30:25 UTC MAIN commitmail json YAML

py-extension-helpers: updated to 1.1.1

v1.1.1

Bug Fixes

get_extensions: use shutil.copyfile to avoid PermissionError
Fix bug that caused extension-helpers to not work correctly if pyproject was the only configuration file present

Other Changes

Replace all instances of distutils in docs with setuptools
Fix typos
MNT: handle deprecation warnings seen in tests
Add note about pinning extension-helpers
DEP: drop dependency on tomli on Python 3.11 and newer
TST: treat warnings as errors
MNT: find and replace log.warn -> log.warning (the warn method is deprecated)
Infrastructure updates
Bump actions/checkout from 2 to 4
Bump stefanzweifel/git-auto-commit-action from 4 to 5
Add back support for absolute source paths but deprecate it

(adam)

2023-12-17 20:25:48 UTC MAIN commitmail json YAML

Updated textproc/py-jsbeautifier, sysutils/py-fsspec

(adam)

2023-12-17 20:25:29 UTC MAIN commitmail json YAML

py-fsspec: updated to 2023.12.2

2023.12.2

Fixes

top-level glob in ZIP
append mode on local ZIP files/truncate
restrict ":" as protocol marker to data:
sftp relative paths
http encoding in HTTP FS put_file

2023.12.1

Fixes

Remove trailing "/" from directory names in zipFS/archive

2023.12.0

Enhancements

allow HTTP size guess in more circumstances
allow kwargs passed to GUI to be dict
transaction support for writing via a cache FS
make cached FSs work better with async backends
allow FSs to set their transaction implementation
add dataFS
allow basic auth in webHDFS

Fixes

in referenceFS, maintain order when some keys are omitted in cat
nested subdirectory listing in referenceFS
allow "=" in webHDF paths
fix file mode to consistent "r+b" format
pass on kwargs in HTTP glob
allow Path in can_be_local and open_local
fix parent for cachedFS
"ends" list in _cat_ranges was incorrect

Other

smarter handling of exceptions when doing auto_mkdir

(adam)

2023-12-17 20:23:22 UTC MAIN commitmail json YAML

py-jsbeautifier: updated to 1.14.11

v1.14.11

Editor not working https://beautifier.io/
Set nodejs minimum to v14
Invalid prettification of object with unicode escape character as object key
invalid json being generated with wrap_line_length

v1.14.9

Bump semver and editorconfig
Update editorconfig package
Allow to configure the "custom elements as inline elements" behavior

v1.14.8

Require nodejs v12 or greater
CSS insideNonNestedAtRule generic variable
Update dependencies
Fix CI build
Fixed 2133 Theme Toggle on without_codemirror Mode
use correct variable name
docs: Fix a few typos
Add support for new record types (cont.)
fix - semicolon followed by block statement doesnt have new line
Fix formatting related to the element
issue prettifying (function(){code();{code}})()

v1.14.7

Doc: Updates web browser implementation examples
HTML formatter breaks layout by introducing newlines

v1.14.6

Globs no longer work on Windows in 1.14.5

v1.14.5

Dependency updates and UI tweaks
Bump terser from 5.12.1 to 5.14.2
new layout breaks everything on long lines
Dark mode

v1.14.4

Extra space before !important added
css format removes space after quoted value
Add grid-template-areas to NON_SEMICOLON_NEWLINE_PROPERTY list
CSS formatter removes useful space
CHANGELOG.md file was wiped out in v1.14.2
Fails to recognize Handlebars block with whitespace control, e.g. {{~#if true ~}}
Support new sass @use syntax
Do not remove whitespace after number
html formatter doesn't support handlebars partial blocks
in keyword in class method causes indentation problem
space_after_named_function not working inside an ES6 class
Restyle website
improper line concatenation between 'return' and a prefix expression

v1.14.3

[LESS] Fixing issues with spacing when an object literal lives inside a mixin
Overindentation when using "class" as a key in an object
CSS Grid template formatting is broken when adding track size after line names
SCSS module system @use problem
JS "space_in_empty_paren" failing for class methods
LESS mixins gets formatted strangely

v1.14.2

Why put npm in dependencies?
[Bug] Logical assignments in JS are incorrectly beautified

v1.14.1

feature request: cmd+enter hotkey for mac users
Wrong indentation when the last line in a case is a right brace

v1.14.0

import.meta appears on newline
Added buttons to website
Logical assignment operators; Fix parsing of optional chaining
Numbers should be allowed to contain underscores
Use native mkdirSync instead of 'mkdirp' package
selector_separator_newline adds erroneous newline on @extend SCSS statements

(adam)

2023-12-17 19:57:26 UTC MAIN commitmail json YAML

regexx: fix build on compilers defaulting to c++17 and above

(nros)

2023-12-17 19:34:03 UTC MAIN commitmail json YAML

Updated devel/py-hatchling, textproc/py-ini2toml

(adam)

2023-12-17 19:33:02 UTC MAIN commitmail json YAML

py-ini2toml: updated to 0.13

Version 0.13
============

* Fix errors when ``isort`` is installed in the same environment as ``ini2toml``, :pr:`83`.
* ``setuptools`` plugin:
  * Add support for ``file:`` directive in ``install_requires`` and ``extras_require``, :pr:`77`.

    .. attention::
        Note that ``setuptools`` (as per v67.6) may require that all ``optional-dependencies``
        to be specified via the ``file:`` directive if at least one of them requires so.

(adam)

2023-12-17 19:22:04 UTC MAIN commitmail json YAML

py-hatchling: updated to 1.20.0

1.20.0

Added:

Add bypass-selection option to the wheel build target to allow for empty (metadata-only) wheels
Fixed:

Fix regression in 1.19.1 that allowed exclude to count toward inclusion selection, thus bypassing the default inclusion selection heuristics
Fix writing optional dependency core metadata in situations where there are multiple environment markers

1.19.1

Fixed:

Add better error message when the wheel build target cannot determine what to ship
Consider forced inclusion patterns and build-time artifacts as file selection since some build hooks generate the entire wheel contents without user configuration

1.19.0

Changed:

An error will now be raised if a force-included path does not exist
An error will now be raised for the wheel build target if no file selection options are defined
Added:

Officially support Python 3.12
Allow using an empty string for the sources option to add a prefix to distribution paths
Fixed:

Properly handle non-zero version epoch for the standard version scheme
Fix the wheel build target for case insensitive file systems when the project metadata name does not match the directory name on disk
The app build target no longer has suppressed output
Prevent duplicate paths when projects require the sources option while build hooks overwrite included paths
Properly escape spaces for URI context formatting

(adam)

2023-12-17 19:21:02 UTC MAIN commitmail json YAML

doc: Updated sysutils/xcp to 0.15.2

(pin)

2023-12-17 19:20:34 UTC MAIN commitmail json YAML

sysutils/xcp: update to 0.15.2

Copying sockets doesn't work on *BSD OSs, so we just warn and move on,
which is the FreeBSD cp behaviour.

(pin)

2023-12-17 19:17:02 UTC MAIN commitmail json YAML

Updated print/py-weasyprint, textproc/py-rapidjson

(adam)

2023-12-17 19:16:44 UTC MAIN commitmail json YAML

py-rapidjson: updated to 1.14

1.14 (2023-12-14)

* Produce binary wheels for macOS/arm64, thanks to timothyjlaurent

(adam)

2023-12-17 19:12:36 UTC MAIN commitmail json YAML

py-weasyprint: updated to 60.2

Version 60.2

Bug fixes:

* Fix SVG markers size, position and drawing
* Draw background behind absolutely positioned replaced boxes
* Don窶冲 crash with bitmap fonts with no "glyf" table
* Improve SVG text-anchor attribute

(adam)

2023-12-17 19:09:31 UTC MAIN commitmail json YAML

Updated textproc/py-pdf, devel/py-pip

(adam)

2023-12-17 19:09:12 UTC MAIN commitmail json YAML

py-pip: updated to 23.3.2

23.3.2 (2023-12-17)
Bug Fixes
Fix a bug in extras handling for link requirements
Fix mercurial revision ���parse error���: use --rev={ref} instead of -r={ref}

(adam)

2023-12-17 19:05:58 UTC MAIN commitmail json YAML

py-pdf: updated to 3.17.2

Version 3.17.2, 2023-12-10

Bug Fixes (BUG)
-  Cope with deflated images with CMYK Black Only
-  Handle indirect objects as parameters for CCITTFaxDecode
-  check words length in _cmap type1_alternative function

Robustness (ROB)
-  Relax flate decoding for too many lookup values
-  Let _build_destination skip in case of missing /D key

(adam)

2023-12-17 19:03:55 UTC MAIN commitmail json YAML

Updated net/grpc, net/py-grpcio, net/py-grpcio-testing, net/py-grpcio-tools

(adam)

2023-12-17 19:03:02 UTC MAIN commitmail json YAML

grpc py-grpcio py-grpcio-testing py-grpcio-tools: updated to 1.60.0

Release v1.60.0

Core

Implemented dualstack IPv4 and IPv6 backend support, as per draft gRFC A61. xDS support currently guarded by GRPC_EXPERIMENTAL_XDS_DUALSTACK_ENDPOINTS env var.
Dropped Bazel 5 support.
[deps] Upgrade protobuf version to v25.0.
[Security - Revocation] Crl Directory Watcher Implementation.
[server] Cap size of pending request queue with RealRequestMatcher.
[chttp2] Fix outgoing data stats.
[EventEngine] Enable Posix EventEngine Listener on all builds.
[EventEngine] Enable Windows EventEngine Listener on all builds.
[chttp2] Alternative protection for too many streams in the system.
[Proxy] Support for setting proxy for addresses.
[client idleness] client channels go idle after 30 minutes by default.
[chttp2] Add an experiment to separate liveness checks from ping timeouts.
[chttp2] Tarpit invalid requests.
[chttp2] Enforce settings acks.
[chttp2] Limit work per read cycle.
[chttp2] Limit request count before receiving settings ack.
[chttp2] Randomly ping on RST_STREAM.

C++

[xds] C++ XdsServerBuilder Remove src/... header dependency from public header.
[reflection] Add v1 reflection.

(adam)

2023-12-17 18:48:02 UTC MAIN commitmail json YAML

libtecla: fix implicit declaration of ioctl on NetBSD

(nros)

2023-12-17 17:56:37 UTC MAIN commitmail json YAML

tiff: disable libdeflate

Having both zlib and libdeflate doesn't make much sense;
change was incomplete since it would have required a recursive bump
for tiff; and with the branch this close, we don't want that.

Bump PKGREVISION.

(wiz)

2023-12-17 17:30:59 UTC MAIN commitmail json YAML

Updated devel/py-path, comms/py-jupyter_server_terminals

(adam)

2023-12-17 17:29:41 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-cucumber-wire to 7.0.0

(taca)

2023-12-17 17:29:24 UTC MAIN commitmail json YAML

devel/ruby-cucumber-wire: update to 7.0.0

7.0.0 (2023-11-10)
Changed
* Minimum ruby version is now 2.6 (#68)
* Compatibility with cucumber versions up to cucumber 9.x now added (#68)
Fixed
* Fixed up some basic style incompatibilities with old rspec tests (#68)

(taca)

2023-12-17 17:28:54 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-cucumber-core to 13.0.0

(taca)

2023-12-17 17:28:33 UTC MAIN commitmail json YAML

devel/ruby-cucumber-core: update to 13.0.0

11.0.0 - 2022-05-18
Changed
* Updated cucumber-gherkin and cucumber-messages

11.1.0 (2022-12-22)
Changed
* Update gherkin and messages dependencies
Fixed
* Restore support for matching a scenario by tag and step line
  numbers. (#237, #238, #239)

12.0.0 (2023-09-06)
Changed
* Update gherkin and messages minimum dependencies
* Added in new rubocop sub-gems for testing, pinning versions where
  appropriate
* Removed all redundant / incorrect rubocop config overrides (Placed in TODO
  file)
* Began to refactor the repo by initially fixing up a bunch of rubocop
  auto-fix offenses (See PRs for details) (#257 #258)
Removed
* Remove support for ruby 2.4 and below. 2.5 or higher is required now

13.0.0 (2023-12-05)
Changed
* Now using a 2-tiered changelog to avoid any bugs when using polyglot-release
* More refactoring of the repo by fixing up a bunch of manual rubocop
  offenses (See PR's for details) (#259 #262 #268 #274)
* In all Summary and Result classes, changed the strict argument into a
  keyword argument See upgrading notes for 13.0.0.md (#261)
* Permit usage of gherkin v27
Fixed
* Restore support for matching a scenario by its Feature, Background, and
  Rule line numbers (#247)
Removed
* Remove legacy unindent gem (Now no longer required since Ruby 2.3 and
  Squiggly heredocs) (#278)

(taca)

2023-12-17 17:27:50 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-cucumber-tag-expressions to 6.0.0

(taca)

2023-12-17 17:27:32 UTC MAIN commitmail json YAML

devel/ruby-cucumber-tag-expressions: update to 6.0.0

5.0.0 (2023-01-02)
Added
* [JavaScript] Support for EcmaScript modules (aka ESM). (#5)
* [Java] Enabled reproducible builds
Changed
* Only allow escape character \ in front of (, ), \ or whitespace. Throw
  error otherwise. (#17)
Fixed
* [Perl] Fixed missing dependency as well as new syntax in the tests
  (cucumber/tag-expressions#15 ehuelsmann)
* Document escaping. (#16, #17)
* [Ruby], [Perl] Empty expression evaluates to true
* [Go] Fix module name (#82)

5.0.1 (2023-01-03)
Fixed
* [Java] Fix scm and project urls

5.0.2 (2023-07-15)
Added
* [Python] Make tests pass against shared test data (except:
  backslash-escaped) (#18 by jenisys)
Fixed
* [All] Not.to_string() conversion has unneeded double-parenthesis if binary
  operator is contained (#94 by jenisys)

5.0.3 (2023-08-10)
Fixed
* [Perl] Fixed CPAN upload in release process (by ehuelsmann)

5.0.4 (2023-08-10)
Fixed
* [Perl] Corrected working directory for CPAN upload action (by ehuelsmann)

5.0.5 (2023-08-11)
Fixed
* [Perl] Fixed inclusion of CHANGELOG.md causing release to fail (by
  ehuelsmann)

5.0.6 (2023-08-13)
Fixed
* [Perl] Fixed test failures when running tests out-of-tree by resticting
  testdata based tests to run in development only (by ehuelsmann)

6.0.0 (2023-10-13)
Added
* [Ruby] Initial rubocop gems and basic compliance added (More work to come)
  (#133)
Changed
* [Ruby] Minimum ruby version is now bumped from 1.9 to 2.3 (#133)
Fixed
* [Perl] Include README.md and LICENSE in the release tarball (by ehuelsmann)

(taca)

2023-12-17 17:26:34 UTC MAIN commitmail json YAML

doc: Updated lang/ruby-cucumber-gherkin to 27.0.0

(taca)

2023-12-17 17:26:07 UTC MAIN commitmail json YAML

lang/ruby-cucumber-gherkin: update to 27.0.0

23.0.0 (2022-03-30)
Changed
* Update messages to v18.0.0
* [Java] Replaced Gherkin with a GherkinParser that uses a builder to
  construct.
* [Java] Made all internal classes package private
* [Java] Removed unused stopAtFirstError property from Parser
* [PHP] Implemented Gherkin
* [JavaScript] @cucumber/message-streams has been removed from the
  dependencies. If you are using @cucumber/gherkin-streams v5.0.0 or later,
  you have to add @cucumber/message-streams in your dependencies in addition
  to @cucumber/gherkin.
Removed
* [Java] the io.cucumber.gherkin.Main class is no longer part of the jar.

23.0.1 (2022-03-31)
Fixed
* [PhP] Fix dependency of messages (#1943)

24.0.0 (2022-05-31)
Added
* [Java], [JavaScript], [PHP], [Perl], [Python], [Go], [C], [DotNet], [Ruby]
  Support new messages keyword types fields an added with #1966 (#1741)
Changed
* [Java] the GherkinDialect constructor is no longer public (it's only used
  internally)
* [Go] the gherkin.GherkinDialectsBuildin id renamed to
  gherkin.DialectsBuiltin
* [Go] the gherkin.GherkinDialect id renamed to gherkin.Dialect
* [Go] the gherkin.GherkinDialectProvider id renamed to
  gherkin.DialectProvider
* The ne (Nepali) and translation changed from अनी to अनि
* The uz (Uzbek) given translation changed from Агар to Belgilangan
* The en-old (Old English) when translation changed from Tha / Þa / Ða to
  Bæþsealf / Bæþsealfa / Bæþsealfe / Ciricæw / Ciricæwe / Ciricæwa
Fixed
* [Java] remove shaded dependency on
  com.eclipsesource.minimal-json:minimal-json (#1957 #1959)

24.1.0 (2022-10-10)
Added
* [Java] Added support for reading directly from input (files, streams,
  paths, ect)
* [C] The C implementation re-enabled and made up to date. (#1989)
Fixed
* [Javascript] Include tags from rules in scenario outlines (#2091)
* [Python] Fix gherkin-python for compiling example values with trailing
  backslash (#2048, #1954)
* [PHP] Disallow installation of Messages 18.x (#2034)

25.0.0 (2022-11-09)
Added
* Additional ja (Japanese) translations for and, but
* Added amh (Amharic) translation
* Add Фича and Шаблон примера as more convenient
  translations (#2078)
Changed
* ja (Japanese) Rule translation changed from Rule to ルール
Fixed
* Translations fixed for ka (Georgian) locale

25.0.1 (2022-11-09)
Fixed
* Fix release process for perl and elixir

25.0.2 (2022-11-09)
Fixed
* Fix half-glyph in Georgian translations (#44)

26.0.0 (2022-12-17)
Added
* [Java] Enabled reproducible builds
Changed
* Upgraded messages to v21
* [.NET] Update target frameworks fo .NET 6, .NET Framework 4.6.2, .NET
  Standard 2.0
Fixed
* Link to the correct repository in various package meta-data.
* [Perl] Specify version range for Cucumber::Messages dependency (#50)

26.0.1 (2022-12-17)
Fixed
* [Go] Fix module names

26.0.2 (2022-12-27)
Fixed
* [Go] Fix module names (again)

26.0.3 (2023-01-03)
Fixed
* [Javascript, PHP, Ruby] Allow messages v19.1.4 to v20.0.1 to be used
* [Java] Improve text trim performance (#84)

26.2.0 (2023-04-07)
Changed
* Upgraded messages to v22

26.1.0 (2023-03-23)
Added
* (i18n) Add Belarusian localization

27.0.0 (2023-09-15)
Added
* (i18n) Added Malayalam localization
* (i18n) Added 'ed' to Italian (#31)
* (i18n) Added Danish translation of "Rule"
* (i18n) Added Dutch translation of "Rule"
* (i18n) Added Esperanto translation of "Rule"
* [Ruby] Added Gherkin::Query#parent_locations for determining a scenario's
  parents' line numbers (#89)
* C++ implementation #117
Changed
* [.NET] Bump sdk to .net 8. Added .net 8 to test platforms
* [Go, Perl, Ruby] Upgraded messages to v22
* [Go] Improve performance - don't compile regex on matcher create
* [Perl] Fix release packaging
* [Perl] Include CHANGELOG.md in tarball
* [Perl] Harmonized error reporting with mainstream implementations - errors
  are now converted to messages and reported in the message stream (#31)
* [Ruby] Update minimum ruby requirement from 2.3 to 2.5

(taca)

2023-12-17 17:25:34 UTC MAIN commitmail json YAML

py-jupyter_server_terminals: updated to 0.5.0

0.5.0

Bugs fixed

- Fix respecting serverapp.terminals_enabled

Maintenance and upkeep improvements

- Update ruff config
- Update typings for Server 2.10.1 and mypy 1.7
- Update types for terminado 0.18
- Update ruff config
- Update typings for server 2.10
- chore: update pre-commit hooks
- Clean up lint handling
- Adopt ruff format
- Update ruff and typing
- chore: update pre-commit hooks
- Fix typings for traitlets 5.10.1
- Bump actions/checkout from 3 to 4
- Adopt sp-repo-review
- Update mistune requirement from \<3.0 to \<4.0
- Use local coverage
- Clean up license
- Add more linting

(adam)

2023-12-17 17:23:16 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-cucumber-messages to 22.0.0

(taca)

2023-12-17 17:22:57 UTC MAIN commitmail json YAML

devel/ruby-cucumber-messages: update to 24.0.0

18.0.0 (2022-03-24)

Added
* Support for EcmaScript modules (aka ESM) (#1756)
* New optional name property on the Hook schema (#1914)

Changed
* JSON Schema: some array fields now have "minItems": 1.
* Generate Java code that uses Optional in getters.
* Setters are removed.
* Classes without required fields have public empty constructors, and
  static of methods for each field. (#1858 aslakhellesoy)
* Java: Make this library more null safe.

19.0.0 (2022-05-31)

Added
* Expand the messages protocol with keyword types (#1966)

Changed
* [Java] the PickleStep constructor has changed - it now needs an
  extra PickleStepType argument.
* [Java] the Step constructor has changed - it now needs an extra
  StepKeywordType argument.

19.1.0 (2022-06-20)

Added
* [Javascript] Adding the json schemas of the messages to the NPM
  package (PR#2010)

19.1.1 (2022-06-22)

Fixed
* [Javascript] Schema are actually missing from 19.1.0 (PR#2016)

19.1.2 (2022-06-22)

Fixed
* [Javascript] Schema was still missing in 19.1.1 due to how npm
  manages the files attribute in package.json (PR#2020)

19.1.3 (2022-09-20)

Fixed
* Add name field to package.cjs.json (#36)

19.1.4 (2022-09-22)

Changed
* Update dependencies

20.0.0 (2022-11-14)

Changed
* Add workerId field to TestCaseStarted message (#34)
* [Java] Enabled reproducible builds

Fixed
* Change Go module name to match repo (#101)

21.0.0 (2022-12-17)

Added
* [Java] Add javadoc to messages (#124)

Changed
* Add exception to TestStepFinished TestRunFinished (#122)

21.0.1 (2022-12-17)

Fixed
* [Java] Suppress warnings for missing javadoc (#128)

22.0.0 (2023-04-06)

Added
* Added source reference to parameter type (#45)

Fixed
* Corrected Java and PHP generators to allow running using Docker on
  Windows (#146)

23.0.0 (2023-11-01)

Added
* Added C++ implementation (#152)

Changed
* [Ruby] Updated minimum Ruby version to 2.5 - (#177 luke-hill)

24.0.0 (2023-11-24)

Added
* Add stackTrace prop to Exception message (#182)

(taca)

2023-12-17 17:22:06 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-cucumber-expressions to 17.0.1

(taca)

2023-12-17 17:21:44 UTC MAIN commitmail json YAML

devel/ruby-cucumber-expressions: update to 17.0.1

15.0.0 (2022-01-04)

Added
* [Ruby,JavaScript,Go] Add bigdecimal, biginteger parameter types (#42)
* [.NET] Implementation of Cucumber Expressions by porting the Java parser
  (#1743)
* [Python] Added Python Cucumber Expressions (#65)

Changed
* [Go] Parameters of type {float} are now parsed as float32 (previously it
  was float64). Use {double} if you need float64. (#42)

15.0.1 (2022-01-04)

Fixed
* Fixed release scripts

15.0.2 (2022-03-15)

Fixed
* Add missing name field in CommonJS package file (#87)

15.1.0 (2022-04-21)

Added
* [JavaScript] Add CucumberExpression.ast and expose the AST types.

15.1.1 (2022-04-21)

Fixed
* [JavaScript] Make CucumberExpression.ast public (it was accidentally
  private in 15.1.0)

15.2.0 (2022-05-24)

Added
* [JavaScript] Add ParameterInfo (#124)

Fixed
* [.NET] Fix casing in "word" parameter type constant

16.0.0 (2022-06-12)

Changed
* [JavaScript] The ParameterType constructor's regexps parameter has a new
  type: type Regexps = StringOrRegExp | readonly StringOrRegExp[]; type
  StringOrRegExp = string | RegExp.

16.0.1 (2022-11-06)

Fixed
* [JavaScript] The ParameterType constructor's transform, useForSnippets and
  preferForRegexpMatch should be optional. (#178)

16.1.0 - 2022-11-28

Added
* [Java] Enabled reproducible builds
* [JavaScript] Added ParameterType.builtin. This is to allow JSON
  serialization of only the non-builtin parameter types.

16.1.1 - 2022-12-08

Fixed
* [Java] Improve expression creation performance (#187, #189)

16.1.2 (2023-01-17)

Fixed
* [Java] Improve cucumber expression creation performance (#202)

17.0.0 (2023-10-06)

Changed
* [JavaScript] Added TypeScript source to the package (#211)
* [Ruby] Minimum supported ruby is now 2.5+ (#232)
* [Ruby] Large suite wide refactor for basic rubocop compliance (#233 #235)
* [Ruby] Expose ParameterType#transformer as a new public reader (#234)
* [Ruby] Remove ParameterType#prefer_for_regexp_match? and
  ParameterType#use_for_snippets? -> Use their standard reader equivalents
  instead (Remove the ?) (#234)

17.0.1 (2023-11-24)

Fixed
* [JavaScript] Fix import paths lacking file suffix (#243)
* [Ruby] Fixed up Layout rubocop autofixes

(taca)

2023-12-17 17:20:15 UTC MAIN commitmail json YAML

py-path: updated to 16.9.0

v16.9.0

Features

Added .iterdir() and deprecated .listdir().

v16.8.0

Features

Use '.' as the default path.

(adam)

2023-12-17 17:01:59 UTC MAIN commitmail json YAML

graphics/tiff: explicitly use libdeflate

Otherwise it is found and used in a host GNU/Linux distro, messing up dependents
which lack it in buildlinks.

(thor)

2023-12-17 16:49:11 UTC MAIN commitmail json YAML

doc: Updated www/ruby-websocket to 1.2.10

(taca)

2023-12-17 16:48:51 UTC MAIN commitmail json YAML

www/ruby-websocket: update to 1.2.10

1.2.1 (2023-09-19)

* ensure correct port is always specified for handshake
* no longer using Base64 for compatibility with Ruby 3.4+

(taca)

2023-12-17 16:47:34 UTC MAIN commitmail json YAML

doc: Updated www/ruby-typhoeus to 1.4.1

(taca)

2023-12-17 16:47:13 UTC MAIN commitmail json YAML

www/ruby-typhoeus: update to 1.4.1

1.4.1 (2023-11-17)

* Add redirect_url attribute

(taca)

2023-12-17 16:46:18 UTC MAIN commitmail json YAML

graphics/libtiff: use pkg-config to properly detect deps, remove --without-x

The --without-x is defunct. The configure script wants to use pkg-config, it
should be able to.

(thor)

2023-12-17 16:44:14 UTC MAIN commitmail json YAML

doc: Updated www/ruby-selenium-webdriver to 4.16.0

(taca)

2023-12-17 16:43:56 UTC MAIN commitmail json YAML

www/ruby-selenium-webdriver: update to 4.16.0

4.13.0 (2023-09-25)

Ruby:
  * Fix bug preventing using performance logging with chromium
  * Allow users to set Selenium Manager path by environment variable (#12752)
  * Allow service to be started before the driver
  * remove deprecated driver extensions for location and network connection

BiDi:
  * Released selenium-devtools 0.117.0 (supports CDP v85, v115, v116, v117)

4.13.1 (2023-09-25)

Ruby:
  * Fix bug preventing logging chromedriver to file

4.14.0 (2023-10-09)

Ruby:
  * allow users to access the full script of the atom directly

BiDi:
  * Released selenium-devtools 0.118.0 (supports CDP v85, v116, v117, v118)

4.15.0 (2023-11-01)

* Do not set browser binary in selenium manager if it is an empty string
  (#12738)
* Add flaky condition to guards to mark unreliable tests
* Rake update needs to build latest grid for running remote tests
* Add CDP v119 and remove v116
* Implement file downloads (#12979)

4.16.0 (2023-12-05)

Ruby:
* Add RBS files to Ruby (#12844)
* Convert binary locations for cygwin (#12618)
* Allow Selenium Manager to work with Unix (#13161)
* Extend RBS support for logger and log entry (#13192)
* Update rules_ruby to the latest version (#13235)

BiDi:
  * Released selenium-devtools 0.120.0 (supports CDP v85, v118, v119, v120)

Chrome:
* Fix http proxy configuration for chrome (#13093)

Firefox:
* Delete 'lock' file in FF profile (#13090)

(taca)

2023-12-17 16:35:16 UTC MAIN commitmail json YAML

doc: Updated www/ruby-rack-contrib to 2.4.0

(taca)

2023-12-17 16:34:46 UTC MAIN commitmail json YAML

www/ruby-rack-contrib: update to 2.4.0

2.4.0 (2023-10-14)

* Refer to github, not Rubyforge [ci skip]
* Support Rack 3 (#187)
* Rack::JSONBodyParser: rescue all parser exceptions (#184)
* Prefer to use version constant for release management.
* Don't bother testing on Ruby 2.2 as it's failing and way EOL.

(taca)

2023-12-17 16:30:56 UTC MAIN commitmail json YAML

doc: Updated www/ruby-rack-cache to 1.15.0

(taca)

2023-12-17 16:30:38 UTC MAIN commitmail json YAML

www/ruby-rack-cache: update to 1.15.0

1.15.0 (2023-12-09)

What's Changed

* Update reference to MiniTest -> Minitest by @Matt-Yorkley in #17
* Add test (and fix support for) for Rack v2.1.x. by @ioquatix in #19

New Contributors

* @Matt-Yorkley made their first contribution in #17

(taca)

2023-12-17 16:29:27 UTC MAIN commitmail json YAML

doc: Updated www/ruby-pygments.rb to 2.4.1

(taca)

2023-12-17 16:29:12 UTC MAIN commitmail json YAML

www/ruby-pygments.rb: update to 2.4.1

2.4.1 (2023-11-13)

Summary

* Minor bugfix release that fixes handling of Python virtual environments on
  Windows (credits to @george-palmsens)

(taca)

2023-12-17 16:27:40 UTC MAIN commitmail json YAML

doc: Updated www/ruby-puma to 6.4.0

(taca)

2023-12-17 16:27:36 UTC MAIN commitmail json YAML

update master site and homepage

(zafer)

2023-12-17 16:27:24 UTC MAIN commitmail json YAML

www/ruby-puma: update to 6.4.0

6.4.0 (2023-09-21)

Features

* on_thread_exit hook ([#2920])
* on_thread_start_hook ([#3195])
* Shutdown on idle ([#3209], [#2580])
* New error message when control server port taken ([#3204])

Refactor

* Remove Forwardable dependency ([#3191], #3190)
* Update URLMap Regexp usage for Ruby v3.3 ([#3165])

Bugfixes

* Bring the cert_pem: parameter into parity with the cert: parameter to
  ssl_bind. ([#3174])
* Fix using control server with IPv6 host ([#3181])
* control_cli.rb - add require_relative 'log_writer' ([#3187])
* Fix cases where fallback Rack response wasn't sent to the client ([#3094])

(taca)

2023-12-17 16:25:28 UTC MAIN commitmail json YAML

doc: Updated www/ruby-loofah to 2.22.0

(taca)

2023-12-17 16:25:10 UTC MAIN commitmail json YAML

www/ruby-loofah: update to 2.22.0

2.21.4 (2023-10-10)

Fixed

* Loofah::HTML5::Scrub.scrub_css is more consistent in preserving whitespace
  (and lack of whitespace) in CSS property values.  In particular,
  .scrub_css no longer inserts whitespace between tokens that did not
  already have whitespace between them.  [#273, fixes #271]

2.22.0 (2023-11-13)

Added

* A :targetblank HTML scrubber which ensures all hyperlinks have
  target="_blank".  [#275] @stefannibrasil and @thdaraujo
* A :noreferrer HTML scrubber which ensures all hyperlinks have
  rel=noreferrer, similar to the :nofollow and :noopener scrubbers.  [#277]
  @wynksaiddestroy

(taca)

2023-12-17 16:21:41 UTC MAIN commitmail json YAML

doc: Updated www/ruby-faraday to 2.7.12

(taca)

2023-12-17 16:21:26 UTC MAIN commitmail json YAML

www/ruby-faraday: update to 2.7.12

2.7.12 (2023-11-21)

What's Changed

* Update parallel-requests.md by @k0i in #1528
* TooManyRequests error by @dpep in #1530

New Contributors

* @k0i made their first contribution in #1528

(taca)

2023-12-17 16:20:11 UTC MAIN commitmail json YAML

doc: Updated www/ruby-excon to 0.108.0

(taca)

2023-12-17 16:19:56 UTC MAIN commitmail json YAML

www/ruby-excon: update to 0.108.0

0.104.0 (2023-09-29)

* fix dates in changelog
* add resolv_resolver option and deprecate dns_timeout

0.105.0 (2023-11-28)

* add support for non-blocking request timeouts

0.106.0 (2023-12-13)

* add rackup to Gemfile
* bump actions/stale version
* update bundled default certs

0.107.0 (2023-12-15)

* performance improvements for nonblocking sockets

0.108.0 (2023-12-15)

* fix array syntax error for old ruby versions

(taca)

2023-12-17 16:18:36 UTC MAIN commitmail json YAML

update master sites

(zafer)

2023-12-17 16:17:34 UTC MAIN commitmail json YAML

doc: Updated www/ruby-aws-sdk-s3 to 1.141.0

(taca)

2023-12-17 16:17:18 UTC MAIN commitmail json YAML

www/ruby-aws-sdk-s3: update to 1.141.0

1.141.0 (2023-11-28)

* Feature - Adds support for S3 Express One Zone.

* Feature - Support S3 Express authentication and endpoints. Express session
  auth can be disabled with the disable_s3_express_session_auth Client
  option, the AWS_S3_DISABLE_EXPRESS_SESSION_AUTH environment variable, and
  the s3_disable_express_session_auth shared config option.  A custom
  express_credentials_provider can be configured onto the Client.

1.140.0 (2023-11-27)

* Feature - Adding new params - Key and Prefix, to S3 API operations for
  supporting S3 Access Grants.  Note - These updates will not change any of
  the existing S3 API functionality.

* Issue - Fix thread interruptions in multipart download_file, file_uploader
  and stream_uploader (#2944).

1.139.0 (2023-11-22)

* Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's
  CHANGELOG.md for details.

1.138.0 (2023-11-21)

* Feature - Add support for automatic date based partitioning in S3 Server
  Access Logs.

1.137.0 (2023-11-17)

* Feature - Removes all default 0 values for numbers and false values for
  booleans

(taca)

2023-12-17 16:15:51 UTC MAIN commitmail json YAML

doc: Updated www/ruby-aws-sdk-kms to 1.75.0

(taca)

2023-12-17 16:15:36 UTC MAIN commitmail json YAML

www/ruby-aws-sdk-kms: update to 1.75.0

1.75.0 (2023-12-15)

* Feature - Documentation updates for AWS Key Management Service

1.74.0 (2023-11-28)

* Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's
  CHANGELOG.md for details.

1.73.0 (2023-11-22)

* Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's
  CHANGELOG.md for details.

1.72.0 (2023-09-27)

* Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's
  CHANGELOG.md for details.

(taca)

2023-12-17 16:15:05 UTC MAIN commitmail json YAML

Updated devel/py-colorlog, security/py-gnupg

(adam)

2023-12-17 16:14:30 UTC MAIN commitmail json YAML

doc: Updated www/ruby-aws-sdk-secretsmanager to 1.87.0

(taca)

2023-12-17 16:14:13 UTC MAIN commitmail json YAML

www/ruby-aws-sdk-secretsmanager: update to 1.87.0

1.87.0 (2023-11-28)

* Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's
  CHANGELOG.md for details.

1.86.0 (2023-11-27)

* Feature - AWS Secrets Manager has released the BatchGetSecretValue API,
  which allows customers to fetch up to 20 Secrets with a single request
  using a list of secret names or filters.

1.85.0 (2023-11-22)

* Feature - Code Generated Changes, see ./build_tools or aws-sdk-core's
  CHANGELOG.md for details.

(taca)

2023-12-17 16:13:59 UTC MAIN commitmail json YAML

py-gnupg: updated to 0.5.2

0.5.2

* Fix 228: Clarify documentation for encryption/decryption.
* Make I/O buffer size configurable via ``buffer_size`` attribute on a ``GPG`` instance.

(adam)

2023-12-17 16:13:20 UTC MAIN commitmail json YAML

doc: Updated www/ruby-aws-sdk-core to 3.190.0

(taca)

2023-12-17 16:13:05 UTC MAIN commitmail json YAML

www/ruby-aws-sdk-core: update to 3.190.0

3.190.0 (2023-11-29)

* Feature - Updated Aws::STS::Client with the latest API changes.

3.189.0 (2023-11-28)

* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.
* Feature - Updated Aws::SSO::Client with the latest API changes.
* Feature - Support S3 Express authentication.

3.188.0 (2023-11-22)

* Feature - AWS SDK for Ruby no longer supports Ruby runtime versions 2.3
  and 2.4.

* Feature - Support AWS_CONTAINER_AUTHORIZATION_TOKEN_FILE in ECSCredentials
  and also allow for ECS and EKS link-local http addresses.

3.187.1 (2023-11-20)

* Issue - For awsQueryCompatible services, default an empty list or map for
  shapes that were previously flattened in the query protocol.

3.187.0 (2023-11-17)

* Feature - Updated Aws::STS::Client with the latest API changes.
* Feature - Updated Aws::SSOOIDC::Client with the latest API changes.

(taca)

2023-12-17 16:11:47 UTC MAIN commitmail json YAML

doc: Updated www/ruby-aws-sigv4 to 1.8.0

(taca)

2023-12-17 16:11:33 UTC MAIN commitmail json YAML

www/ruby-aws-sigv4: update to 1.8.0

1.8.0 (2023-11-28)

* Feature - Support sigv4-s3express signing algorithm.

1.7.0 (2023-11-22)

* Feature - AWS SDK for Ruby no longer supports Ruby runtime versions 2.3
  and 2.4.

(taca)

2023-12-17 16:10:58 UTC MAIN commitmail json YAML

py-colorlog: updated to 6.8.0

6.8.0

Remove universal wheel, python 2 is unsupported
Fix running tests in environment with NO_COLOR=1

(adam)

2023-12-17 16:09:31 UTC MAIN commitmail json YAML

doc: Updated www/ruby-aws-partitions to 1.868.0

(taca)

2023-12-17 16:09:15 UTC MAIN commitmail json YAML

www/ruby-aws-partitions: update to 1.868.0

1.868.0 (2023-12-15)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.867.0 (2023-12-14)

* Feature - Added support for enumerating regions for Aws::NeptuneGraph.

1.866.0 (2023-12-13)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.865.0 (2023-12-12)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.864.0 (2023-12-07)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.863.0 (2023-12-04)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.862.0 (2023-11-30)

* Feature - Added support for enumerating regions for
  Aws::MarketplaceDeployment.
* Feature - Added support for enumerating regions for
  Aws::MarketplaceAgreement.

1.861.0 (2023-11-29)

* Feature - Added support for enumerating regions for Aws::CleanRoomsML.

1.860.0 (2023-11-28)

* Feature - Added support for enumerating regions for Aws::QConnect.
* Feature - Added support for enumerating regions for Aws::QBusiness.
* Feature - Added support for enumerating regions for
  Aws::BedrockAgentRuntime.
* Feature - Added support for enumerating regions for Aws::BedrockAgent.

1.859.0 (2023-11-28)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.858.0 (2023-11-27)

* Feature - Added support for enumerating regions for Aws::B2bi.

1.857.0 (2023-11-27)

* Feature - Added support for enumerating regions for Aws::WorkSpacesThinClient.
* Feature - Added support for enumerating regions for Aws::Repostspace.
* Feature - Added support for enumerating regions for Aws::FreeTier.
* Feature - Added support for enumerating regions for Aws::EKSAuth.
* Feature - Added support for enumerating regions for
  Aws::CostOptimizationHub.
* Feature - Added support for enumerating regions for Aws::BCMDataExports.

1.856.0 (2023-11-22)

* Feature - AWS SDK for Ruby no longer supports Ruby runtime versions 2.3
  and 2.4.

1.855.0 (2023-11-21)

* Feature - Added support for enumerating regions for Aws::InspectorScan.
* Feature - Added support for enumerating regions for
  Aws::CloudFrontKeyValueStore.

1.854.0 (2023-11-20)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.853.0 (2023-11-17)

* Feature - Added support for enumerating regions for Aws::TrustedAdvisor.

1.852.0 (2023-11-16)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.851.0 (2023-11-15)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.850.0 (2023-11-14)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

1.849.0 (2023-11-13)

* Feature - Updated the partitions source data the determines the AWS
  service regions and endpoints.

(taca)

2023-12-17 16:08:19 UTC MAIN commitmail json YAML

Updated math/py-numexpr, net/py-python-socks

(adam)

2023-12-17 16:07:38 UTC MAIN commitmail json YAML

2023-12-17 16:06:36 UTC MAIN commitmail json YAML

2023-12-17 16:06:16 UTC MAIN commitmail json YAML

doc: Updated www/ruby-aws-eventstream to 1.3.0

(taca)

2023-12-17 16:05:59 UTC MAIN commitmail json YAML

www/ruby-aws-eventstream: update to 1.3.0

1.3.0 (2023-11-22)

* Feature - AWS SDK for Ruby no longer supports Ruby runtime versions 2.3
  and 2.4.

(taca)

2023-12-17 16:05:31 UTC MAIN commitmail json YAML

py-numexpr: updated to 2.8.8

Changes from 2.8.7 to 2.8.8
---------------------------

* Fix re_evaluate not taking global_dict as argument. Thanks to Teng Liu
  (@27rabbitlt).

* Fix parsing of simple complex numbers.  Now, `ne.evaluate('1.5j')` works.
  Thanks to Teng Liu (@27rabbitlt).

* Fixes for upcoming NumPy 2.0:

  * Replace npy_cdouble with C++ complex. Thanks to Teng Liu (@27rabbitlt).
  * Add NE_MAXARGS for future numpy change NPY_MAXARGS. Now it is set to 64
    to match NumPy 2.0 value. Thanks to Teng Liu (@27rabbitlt).

(adam)

2023-12-17 16:04:51 UTC MAIN commitmail json YAML

2023-12-17 16:03:43 UTC MAIN commitmail json YAML

Updated graphics/py-tifffile, sysutils/py-psutil

(adam)

2023-12-17 16:02:41 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-unicode-scripts to 1.9.0

(taca)

2023-12-17 16:02:35 UTC MAIN commitmail json YAML

py-psutil: updated to 5.9.7

5.9.7
=====

2023-12-17

**Enhancements**

- 2324_: enforce Ruff rule `raw-string-in-exception`, which helps providing
  clearer tracebacks when exceptions are raised by psutil.

**Bug fixes**

- 2325_, [PyPy]: psutil did not compile on PyPy due to missing
  `PyErr_SetExcFromWindowsErrWithFilenameObject` cPython API.

(adam)

2023-12-17 16:02:18 UTC MAIN commitmail json YAML

textproc/ruby-unicode-scripts: update to 1.9.0

1.9.0 (2023-10-01)

* Unicode 15.1

(taca)

2023-12-17 16:01:20 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-unicode-name to 1.12.0

(taca)

2023-12-17 16:00:59 UTC MAIN commitmail json YAML

textproc/ruby-unicode-name: 1.12.0

1.12.0 (2023-10-01)

* Unicode 15.1

(taca)

2023-12-17 16:00:08 UTC MAIN commitmail json YAML

py-tifffile: updated to 2023.12.9

2023.12.9

- Pass 5071 tests.
- Read 32-bit Indica Labs TIFF as float32.
- Fix UnboundLocalError reading big LSM files without time axis.
- Use os.sched_getaffinity, if available, to get the number of CPUs.
- Limit the number of default worker threads to 32.

(adam)

2023-12-17 16:00:02 UTC MAIN commitmail json YAML

doc: Updated textproc/ruby-unicode-display_width to 2.5.0

(taca)

2023-12-17 15:59:35 UTC MAIN commitmail json YAML

textproc/ruby-unicode-display_width: update to 2.5.0

2.5.0 (2023-10-01)

* Unicode 15.1

(taca)