Commit graph

369510 commits

Author SHA1 Message Date
mef
932d0ffe47 (cad/py-gdstk) Updated 0.9.34 to 0.9.35
# Changelog
## 0.9.35 - 2022-12-16
### Fixed
- Segfaults caused by class inheritance in Python
- Segfaults caused by cleanup of incomplete initialization of Python instances
2022-12-30 08:11:12 +00:00
mef
b102a6f640 doc: Updated cad/klayout to 0.28.2 2022-12-30 05:04:17 +00:00
mef
52ec15acd2 (cad/kayout) Updated 0.28 to 0.28.2
0.28.2           (2022-12-22):
* Bugfix: %GITHUB%/issues/1230 LVS browser crashes

0.28.1           (2022-12-21):
* Bugfix: %GITHUB%/issues/1225 XML error prevents generation of help index
* Bugfix: Python module now has py.typed
* Bugfix: Some segfaults fixed on MacOS, other Linux systems
* Bugfix: dropped Python modules from RPM and DEB packages as this creates conflicts with pip-installed modules
* Bugfix: OASIS reader error with CBLOCK byte counts larger than 4G
2022-12-30 05:04:06 +00:00
sjmulder
9cdd54b466 doc: Updated net/tut to 1.0.31 2022-12-30 03:27:25 +00:00
sjmulder
3945d4646e net/tut: Update to 1.0.30
Changes in 1.0.31:
 - Tut now comes with man pages.
 - Add file extension to media files. Hopefully it will make more
   programs for media files work
 - XDG_CONFIG_HOME isn't limited to Linux anymore. If you want to use it
   you'll have to move your tut folder to XDG_CONFIG_HOME/tut for it to
   work.

Changes in 1.0.30:
 - Fix: Allow only setting the name in switch and not showBoosts and
   showReplies

Changes in 1.0.29:
 - New timeline for mentions. You reach it with :timeline mentions or
   setting timelines=mentions under [general] in your config.
 - New command :move-window and leaders with move-window-* where the
   asterisk is the direction.
 - New command and leader :close-window
 - New leader switch that let's you go to a timeline if it already
   exists, if it doesn't it will open the timeline in a new window. The
   syntax is almost the same as in timelines under [general].
 - Fix: Don't crash tut if a timeline is empty
 - Fix: showBoosts and showReplies didn't work correctly if name was
   empty
 - Fix: You should still be able to use SpoilerText in toot.tmpl

Changes in 1.0.28:
 - New command :refetch and leader refetch that fetches a toot again.
   Will fetch new poll result and edits.
 - New timeline special in timelines and special-all, special-boosts and
   special-replies in commands and as leader. They are the home timeline
   with only boosts and/or replies. -all contains both, -boosts only
   boosts and -replies only replies.
 - Filters are done server-side as of later Mastodon versions. Should
   make it more consistent with the web client. New config
   status-show-filtered under [input] as you can now show filtered toots
   if you want.
 - The mixed use of spoiler and cw are now removed. Now it should only
   be cw and the config have been changed accordingly, but if you still
   have spoiler in your config it will still work as tut look for both
   versions.

(1.0.27 was not released)

Changes in 1.0.26:
 - Filter notifications with notifications-to-hide under general.
 - Command :stick-to-top and leader stick-to-top that toggles the
   stick-to-top setting. Useful if you're scrolling manually.
 - Notifications now includes the username of the user who interacted
   with you.
 - Improved deleting of media files.

Changes in 1.0.25:
 - Filter boosts and replies from timelines.

   The new syntax for timelines under [general] is now
   timelines=feed,[name],[keys...],[showBoosts],[showReplies].

   So timelines=home,Home,' ',false,true will now hide boosts in the
   home timeline but show replies.

 - stick-to-top under [general] will set tut to always jump to the
   newest post. It may ruin your reading experience.
 - command-text under [style] and in themes. It will set the text color
   in your command bar.
2022-12-30 03:26:29 +00:00
wiz
4cdfdaec72 doc/TODO: + opencv-4.7. 2022-12-29 23:55:52 +00:00
gutteridge
175c0d886a doc: Updated net/tcpreplay to 4.4.2 2022-12-29 23:29:12 +00:00
gutteridge
afb6ba94f5 tcpreplay: update to 4.4.2
08/28/2022 Version 4.4.2
    - remove autogen.sh from distribution tarballs (#745)
    - CVE-2022-37048 heap-overflow in get_l2len_protocol (#735)
    - replaying on a loopback interface is broken (#732)
    - replay edit with both --loop and --preload_pcap options (#729)
    - test suite bus error on armhf (#725)
    - CVE-2022-28487 format string vulnerability in fix_ipv6_checksums (#723)
    - CVE-2022-27942 heap-overflow in parse_mpls (#719)
    - CVE-2022-27940 CVE-2022-37047 CVE-2022-37049 heap-overflow in get_ipv6_next (#718)
    - CVE-2022-27939 reachable assertion in get_layer4_v6 (#717)
    - CVE-2022-25484 CVE-2022-27941 heap buffer overflow in get_l2len_protocol (#716)
    - remove bash-only test in configure script (#714)
2022-12-29 23:29:04 +00:00
gutteridge
cd1e47edec py-neovim: mark incompatible with Python 2.7 to fix bulk builds 2022-12-29 23:08:34 +00:00
prlw1
4ff8aef97a doc: Updated databases/libpqxx to 7.7.4 2022-12-29 22:25:11 +00:00
prlw1
7f99dc7fbc Update libpqx to 7.7.4
You now have three basic ways to query data, all through methods on your transaction object:

 - "query" methods execute the query, load the full result set,
    and then let you iterate the rows. They convert each row to a
   tuple of values of your chosen types.

 - "stream" methods do the same thing, except they run the query
   in a different way that's slower to start up, but starts giving
   you rows right away without waiting for the full result to come
   in. The rows also come in faster.

 - "exec" methods execute the query, load the full result set,
   and return a pqxx::result object. It contains both the result
   data and metadata such as how many rows there are in the result.

Highlights:
 - Build docs in `doc/html/`, no longer in `doc/html/Reference/`.
 - New `result::for_stream()`: simple iteration and conversion of rows.
 - New `transaction_base::for_query()` is similar, but non-streaming. (#580)
 - Query data and iterate directly as client-side types: `query()`. (#580)
 - New ways to query a single row!  `query01()` and `query1()`. (#580)
 - We now have 3 kinds of execution: "exec", "query", and "stream" functions.
 - Use C++23 `std::unreachable()` where available.
 - New class, `connecting` for nonblocking connection to the database.  (#487)
 - New class, `range` for SQL range types.  (#490)
 - Support `result::at(row_num, col_num)`.
 - Support `result[row_num, col_num]` if the compiler allows it.
 - `result::iter()` return value now keeps its `result` alive.
 - Add C++20 concepts: `binary`, `char_string`, `char_strings`.
 - New helper: `pqxx::value_type<CONTAINER>`.
 - New helper: `pqxx::binary_cast`. (#450)
 - Helper for generating parameter placeholders `$1`, `$2`, etc.  (#443)
 - Now requires `std::variant` support!  No longer works with gcc7.
 - New `blob::read()` using `std::span`.  (#429)
 - New, simpler API for large objects: `blob` ("binary large object").

For full changelog, see https://github.com/jtv/libpqxx/blob/7.7.4/NEWS
2022-12-29 22:24:48 +00:00
brook
0dc5853f16 gdal-lib: fix CONFIGURE_ARGS reference to non-existent directory
The configure script for gdal-lib specifies locations for various
required libraries via command line arguments.  For example, the
configure script defines compiler flags for the location of libz based
upon the --with-libz argument as follows:

EXTRA_INCLUDES="-I$with_libz -I$with_libz/include $EXTRA_INCLUDES"

Since the origin of the package, the location of libz has been
specified in Makefile.common as follows:

CONFIGURE_ARGS+=	--with-libz=${BUILDLINK_PREFIX.zlib}/include

In a typical pkgsrc installation, the configure script is run with the
argument --with-libz=/usr/pkg/include, which leads to the following
compiler flags:

	  -I/usr/pkg/include -I/usr/pkg/include/include

The latter directory of course generally never exists.  Although this
has apparently worked in the past, gcc12 exits with an error.

This patch removes the extra /include suffix from the libz location
specified in CONFIGURE_ARGS.  As a result, libz now matches the way
other libraries are specified, none of which include the /include
suffix and all of which are handled in the configure script in similar
ways.
2022-12-29 19:45:48 +00:00
taca
ae90f3ec8b Bump PKGREVISION to reflect fix of ruby-manpages package. 2022-12-29 16:23:51 +00:00
taca
52b8b56408 doc: Updated misc/ruby-manpages to 0.6.1nb1 2022-12-29 16:22:02 +00:00
taca
506a5ac05c misc/ruby-manpages: support our install-root propery
* Fix symblic link(s) of manual pages.
* No need to set RUBYGEM_MANPAGES here.

Should be fix error message when pkg_alternatives is installed.
(Reported by wiz@ via private e-mail.)

Bump PKGREVISION.

## require pull-up
2022-12-29 16:21:35 +00:00
adam
2b7c359e8f Updated www/py-httpcore, textproc/py-prettytable 2022-12-29 12:49:23 +00:00
adam
9b7e711b23 py-prettytable: updated to 3.5.0
Release 3.5.0

Added

Add py.typed and update setup.cfg
Add type hints from typeshed

Changed

Convert from setuptools to hatchling
2022-12-29 12:49:08 +00:00
adam
3bf49d2bb3 py-httpcore: updated to 0.16.3
0.16.3
- Allow `ws` and `wss` schemes. Allows us to properly support websocket upgrade connections.
- Forwarding HTTP proxies use a connection-per-remote-host. Required by some proxy implementations.
- Don't raise `RuntimeError` when closing a connection pool with active connections. Removes some error cases when cancellations are used.
- Lazy import `anyio`, so that it's no longer a hard dependancy, and isn't imported if unused.
2022-12-29 12:40:51 +00:00
adam
7743c65901 Updated sysutils/py-supervisor, devel/py-importlib-resources 2022-12-29 12:38:08 +00:00
adam
7781b1f6a6 py-importlib-resources: updated to 5.10.2
v5.10.2
* Prefer ``write_bytes`` to context manager as
  proposed in gh-100586.
2022-12-29 12:37:50 +00:00
adam
1e0307d97f py-supervisor: updated to 4.2.5
4.2.5 (2022-12-23)
------------------

- Fixed a bug where the XML-RPC method ``supervisor.startProcess()`` would
  return 500 Internal Server Error instead of an XML-RPC fault response
  if the command could not be parsed.  Patch by Julien Le Cléach.

- Fixed a bug on Python 2.7 where a ``UnicodeDecodeError`` may have occurred
  when using the web interface.  Patch by Vinay Sajip.

- Removed use of ``urllib.parse`` functions ``splithost``, ``splitport``, and
  ``splittype`` deprecated in Python 3.8.

- Removed use of ``asynchat`` and ``asyncore`` deprecated in Python 3.10.

- The return value of the XML-RPC method ``supervisor.getAllConfigInfo()``
  now includes the ``directory``, ``uid``, and ``serverurl`` of the
  program.  Patch by Yellmean.

- If a subprocess exits with a unexpected exit code (one not listed in
  ``exitcodes=`` in a ``[program:x]`` section) then the exit will now be logged
  at the ``WARN`` level instead of ``INFO``.  Patch by Precy Lee.

- ``supervisorctl shutdown`` now shows an error message if an argument is
  given.

- File descriptors are now closed using the faster ``os.closerange()`` instead
  of calling ``os.close()`` in a loop.  Patch by tyong920.
2022-12-29 12:35:41 +00:00
adam
34a0ecac26 Updated net/py-botocore, net/py-boto3, net/py-awscli, devel/py-pyrsistent 2022-12-29 11:01:33 +00:00
adam
2d7da416e5 py-pyrsistent: updated to 0.19.3
0.19.3
* Fix 264, add wheels and official support for Python 3.11.
2022-12-29 11:01:10 +00:00
adam
ee4b50a90b py-awscli: updated to 1.27.39
1.27.39
=======

* api-change:``elasticache``: This release allows you to modify the encryption in transit setting, for existing Redis clusters. You can now change the TLS configuration of your Redis clusters without the need to re-build or re-provision the clusters or impact application availability.
* api-change:``network-firewall``: AWS Network Firewall now provides status messages for firewalls to help you troubleshoot when your endpoint fails.
* api-change:``rds``: This release adds support for Custom Engine Version (CEV) on RDS Custom SQL Server.
* api-change:``route53-recovery-control-config``: Added support for Python paginators in the route53-recovery-control-config List* APIs.


1.27.38
=======

* api-change:``memorydb``: This release adds support for MemoryDB Reserved nodes which provides a significant discount compared to on-demand node pricing. Reserved nodes are not physical nodes, but rather a billing discount applied to the use of on-demand nodes in your account.
* api-change:``transfer``: Add additional operations to throw ThrottlingExceptions


1.27.37
=======

* api-change:``connect``: Support for Routing Profile filter, SortCriteria, and grouping by Routing Profiles for GetCurrentMetricData API. Support for RoutingProfiles, UserHierarchyGroups, and Agents as filters, NextStatus and AgentStatusName for GetCurrentUserData. Adds ApproximateTotalCount to both APIs.
* api-change:``connectparticipant``: Amazon Connect Chat introduces the Message Receipts feature. This feature allows agents and customers to receive message delivered and read receipts after they send a chat message.
* api-change:``detective``: This release adds a missed AccessDeniedException type to several endpoints.
* api-change:``fsx``: Fix a bug where a recent release might break certain existing SDKs.
* api-change:``inspector2``: Amazon Inspector adds support for scanning NodeJS 18.x and Go 1.x AWS Lambda function runtimes.


1.27.36
=======

* api-change:``compute-optimizer``: This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for ecs services running on Fargate.
* api-change:``connect``: Amazon Connect Chat introduces the Idle Participant/Autodisconnect feature, which allows users to set timeouts relating to the activity of chat participants, using the new UpdateParticipantRoleConfig API.
* api-change:``iotdeviceadvisor``: This release adds the following new features: 1) Documentation updates for IoT Device Advisor APIs. 2) Updated required request parameters for IoT Device Advisor APIs. 3) Added new service feature: ability to provide the test endpoint when customer executing the StartSuiteRun API.
* api-change:``kinesis-video-webrtc-storage``: Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud.
* api-change:``rds``: Add support for managing master user password in AWS Secrets Manager for the DBInstance and DBCluster.
* api-change:``secretsmanager``: Documentation updates for Secrets Manager


1.27.35
=======

* api-change:``connect``: Amazon Connect Chat now allows for JSON (application/json) message types to be sent as part of the initial message in the StartChatContact API.
* api-change:``connectparticipant``: Amazon Connect Chat now allows for JSON (application/json) message types to be sent in the SendMessage API.
* api-change:``license-manager-linux-subscriptions``: AWS License Manager now offers cross-region, cross-account tracking of commercial Linux subscriptions on AWS. This includes subscriptions purchased as part of EC2 subscription-included AMIs, on the AWS Marketplace, or brought to AWS via Red Hat Cloud Access Program.
* api-change:``macie2``: This release adds support for analyzing Amazon S3 objects that use the S3 Glacier Instant Retrieval (Glacier_IR) storage class.
* api-change:``sagemaker``: This release enables adding RStudio Workbench support to an existing Amazon SageMaker Studio domain. It allows setting your RStudio on SageMaker environment configuration parameters and also updating the RStudioConnectUrl and RStudioPackageManagerUrl parameters for existing domains
* api-change:``scheduler``: Updated the ListSchedules and ListScheduleGroups APIs to allow the NamePrefix field to start with a number. Updated the validation for executionRole field to support any role name.
* api-change:``ssm``: Doc-only updates for December 2022.
* api-change:``support``: Documentation updates for the AWS Support API
* api-change:``transfer``: This release adds support for Decrypt as a workflow step type.


1.27.34
=======

* api-change:``batch``: Adds isCancelled and isTerminated to DescribeJobs response.
* api-change:``ec2``: Adds support for pagination in the EC2 DescribeImages API.
* api-change:``lookoutequipment``: This release adds support for listing inference schedulers by status.
* api-change:``medialive``: This release adds support for two new features to AWS Elemental MediaLive. First, you can now burn-in timecodes to your MediaLive outputs. Second, we now now support the ability to decode Dolby E audio when it comes in on an input.
* api-change:``nimble``: Amazon Nimble Studio now supports configuring session storage volumes and persistence, as well as backup and restore sessions through launch profiles.
* api-change:``resource-explorer-2``: Documentation updates for AWS Resource Explorer.
* api-change:``route53domains``: Use Route 53 domain APIs to change owner, create/delete DS record, modify IPS tag, resend authorization. New: AssociateDelegationSignerToDomain, DisassociateDelegationSignerFromDomain, PushDomain, ResendOperationAuthorization. Updated: UpdateDomainContact, ListOperations, CheckDomainTransferability.
* api-change:``sagemaker``: Amazon SageMaker Autopilot adds support for new objective metrics in CreateAutoMLJob API.
* api-change:``transcribe``: Enable our batch transcription jobs for Swedish and Vietnamese.


1.27.33
=======

* api-change:``athena``: Add missed InvalidRequestException in GetCalculationExecutionCode,StopCalculationExecution APIs. Correct required parameters (Payload and Type) in UpdateNotebook API. Change Notebook size from 15 Mb to 10 Mb.
* api-change:``ecs``: This release adds support for alarm-based rollbacks in ECS, a new feature that allows customers to add automated safeguards for Amazon ECS service rolling updates.
* api-change:``kinesisvideo``: Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud.
* api-change:``kinesis-video-webrtc-storage``: Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud.
* api-change:``rds``: Add support for --enable-customer-owned-ip to RDS create-db-instance-read-replica API for RDS on Outposts.
* api-change:``sagemaker``: AWS Sagemaker - Sagemaker Images now supports Aliases as secondary identifiers for ImageVersions. SageMaker Images now supports additional metadata for ImageVersions for better images management.


1.27.32
=======

* api-change:``appflow``: This release updates the ListConnectorEntities API action so that it returns paginated responses that customers can retrieve with next tokens.
* api-change:``cloudfront``: Updated documentation for CloudFront
* api-change:``datasync``: AWS DataSync now supports the use of tags with task executions. With this new feature, you can apply tags each time you execute a task, giving you greater control and management over your task executions.
* api-change:``efs``: Update efs command to latest version
* api-change:``guardduty``: This release provides the valid characters for the Description and Name field.
* api-change:``iotfleetwise``: Updated error handling for empty resource names in "UpdateSignalCatalog" and "GetModelManifest" operations.
* api-change:``sagemaker``: AWS sagemaker - Features: This release adds support for random seed, it's an integer value used to initialize a pseudo-random number generator. Setting a random seed will allow the hyperparameter tuning search strategies to produce more consistent configurations for the same tuning job.


1.27.31
=======

* api-change:``backup-gateway``: This release adds support for VMware vSphere tags, enabling customer to protect VMware virtual machines using tag-based policies for AWS tags mapped from vSphere tags. This release also adds support for customer-accessible gateway-hypervisor interaction log and upload bandwidth rate limit schedule.
* api-change:``connect``: Added support for "English - New Zealand" and "English - South African" to be used with Amazon Connect Custom Vocabulary APIs.
* api-change:``ecs``: This release adds support for container port ranges in ECS, a new capability that allows customers to provide container port ranges to simplify use cases where multiple ports are in use in a container. This release updates TaskDefinition mutation APIs and the Task description APIs.
* api-change:``eks``: Add support for Windows managed nodes groups.
* api-change:``glue``: This release adds support for AWS Glue Crawler with native DeltaLake tables, allowing Crawlers to classify Delta Lake format tables and catalog them for query engines to query against.
* api-change:``kinesis``: Added StreamARN parameter for Kinesis Data Streams APIs. Added a new opaque pagination token for ListStreams. SDKs will auto-generate Account Endpoint when accessing Kinesis Data Streams.
* api-change:``location``: This release adds support for a new style, "VectorOpenDataStandardLight" which can be used with the new data source, "Open Data Maps (Preview)".
* api-change:``m2``: Adds an optional create-only `KmsKeyId` property to Environment and Application resources.
* api-change:``sagemaker``: SageMaker Inference Recommender now allows customers to load tests their models on various instance types using private VPC.
* api-change:``securityhub``: Added new resource details objects to ASFF, including resources for AwsEc2LaunchTemplate, AwsSageMakerNotebookInstance, AwsWafv2WebAcl and AwsWafv2RuleGroup.
* api-change:``translate``: Raised the input byte size limit of the Text field in the TranslateText API to 10000 bytes.


1.27.30
=======

* api-change:``ce``: This release supports percentage-based thresholds on Cost Anomaly Detection alert subscriptions.
* api-change:``cloudwatch``: Update cloudwatch command to latest version
* api-change:``networkmanager``: Appliance Mode support for AWS Cloud WAN.
* api-change:``redshift-data``: This release adds a new --client-token field to ExecuteStatement and BatchExecuteStatement operations. Customers can now run queries with the additional client token parameter to ensures idempotency.
* api-change:``sagemaker-metrics``: Update SageMaker Metrics documentation.
2022-12-29 10:59:51 +00:00
adam
d4cf376ccd py-boto3: bump py-botocore requirement 2022-12-29 10:57:18 +00:00
adam
45dbfb0d22 py-boto3: updated to 1.26.39
1.26.39

api-change:elasticache: [botocore] This release allows you to modify the encryption in transit setting, for existing Redis clusters. You can now change the TLS configuration of your Redis clusters without the need to re-build or re-provision the clusters or impact application availability.
api-change:network-firewall: [botocore] AWS Network Firewall now provides status messages for firewalls to help you troubleshoot when your endpoint fails.
api-change:rds: [botocore] This release adds support for Custom Engine Version (CEV) on RDS Custom SQL Server.
api-change:route53-recovery-control-config: [botocore] Added support for Python paginators in the route53-recovery-control-config List* APIs.
1.26.38

api-change:memorydb: [botocore] This release adds support for MemoryDB Reserved nodes which provides a significant discount compared to on-demand node pricing. Reserved nodes are not physical nodes, but rather a billing discount applied to the use of on-demand nodes in your account.
api-change:transfer: [botocore] Add additional operations to throw ThrottlingExceptions
1.26.37

api-change:connect: [botocore] Support for Routing Profile filter, SortCriteria, and grouping by Routing Profiles for GetCurrentMetricData API. Support for RoutingProfiles, UserHierarchyGroups, and Agents as filters, NextStatus and AgentStatusName for GetCurrentUserData. Adds ApproximateTotalCount to both APIs.
api-change:connectparticipant: [botocore] Amazon Connect Chat introduces the Message Receipts feature. This feature allows agents and customers to receive message delivered and read receipts after they send a chat message.
api-change🕵️ [botocore] This release adds a missed AccessDeniedException type to several endpoints.
api-change:fsx: [botocore] Fix a bug where a recent release might break certain existing SDKs.
api-change:inspector2: [botocore] Amazon Inspector adds support for scanning NodeJS 18.x and Go 1.x AWS Lambda function runtimes.
1.26.36

api-change:compute-optimizer: [botocore] This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for ecs services running on Fargate.
api-change:connect: [botocore] Amazon Connect Chat introduces the Idle Participant/Autodisconnect feature, which allows users to set timeouts relating to the activity of chat participants, using the new UpdateParticipantRoleConfig API.
api-change:iotdeviceadvisor: [botocore] This release adds the following new features: 1) Documentation updates for IoT Device Advisor APIs. 2) Updated required request parameters for IoT Device Advisor APIs. 3) Added new service feature: ability to provide the test endpoint when customer executing the StartSuiteRun API.
api-change:kinesis-video-webrtc-storage: [botocore] Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud.
api-change:rds: [botocore] Add support for managing master user password in AWS Secrets Manager for the DBInstance and DBCluster.
api-change:secretsmanager: [botocore] Documentation updates for Secrets Manager
1.26.35

api-change:connect: [botocore] Amazon Connect Chat now allows for JSON (application/json) message types to be sent as part of the initial message in the StartChatContact API.
api-change:connectparticipant: [botocore] Amazon Connect Chat now allows for JSON (application/json) message types to be sent in the SendMessage API.
api-change:license-manager-linux-subscriptions: [botocore] AWS License Manager now offers cross-region, cross-account tracking of commercial Linux subscriptions on AWS. This includes subscriptions purchased as part of EC2 subscription-included AMIs, on the AWS Marketplace, or brought to AWS via Red Hat Cloud Access Program.
api-change:macie2: [botocore] This release adds support for analyzing Amazon S3 objects that use the S3 Glacier Instant Retrieval (Glacier_IR) storage class.
api-change:sagemaker: [botocore] This release enables adding RStudio Workbench support to an existing Amazon SageMaker Studio domain. It allows setting your RStudio on SageMaker environment configuration parameters and also updating the RStudioConnectUrl and RStudioPackageManagerUrl parameters for existing domains
api-change:scheduler: [botocore] Updated the ListSchedules and ListScheduleGroups APIs to allow the NamePrefix field to start with a number. Updated the validation for executionRole field to support any role name.
api-change:ssm: [botocore] Doc-only updates for December 2022.
api-change:support: [botocore] Documentation updates for the AWS Support API
api-change:transfer: [botocore] This release adds support for Decrypt as a workflow step type.
1.26.34

api-change:batch: [botocore] Adds isCancelled and isTerminated to DescribeJobs response.
api-change:ec2: [botocore] Adds support for pagination in the EC2 DescribeImages API.
api-change:lookoutequipment: [botocore] This release adds support for listing inference schedulers by status.
api-change:medialive: [botocore] This release adds support for two new features to AWS Elemental MediaLive. First, you can now burn-in timecodes to your MediaLive outputs. Second, we now now support the ability to decode Dolby E audio when it comes in on an input.
api-change:nimble: [botocore] Amazon Nimble Studio now supports configuring session storage volumes and persistence, as well as backup and restore sessions through launch profiles.
api-change:resource-explorer-2: [botocore] Documentation updates for AWS Resource Explorer.
api-change:route53domains: [botocore] Use Route 53 domain APIs to change owner, create/delete DS record, modify IPS tag, resend authorization. New: AssociateDelegationSignerToDomain, DisassociateDelegationSignerFromDomain, PushDomain, ResendOperationAuthorization. Updated: UpdateDomainContact, ListOperations, CheckDomainTransferability.
api-change:sagemaker: [botocore] Amazon SageMaker Autopilot adds support for new objective metrics in CreateAutoMLJob API.
api-change:transcribe: [botocore] Enable our batch transcription jobs for Swedish and Vietnamese.
1.26.33

api-change:athena: [botocore] Add missed InvalidRequestException in GetCalculationExecutionCode,StopCalculationExecution APIs. Correct required parameters (Payload and Type) in UpdateNotebook API. Change Notebook size from 15 Mb to 10 Mb.
api-change:ecs: [botocore] This release adds support for alarm-based rollbacks in ECS, a new feature that allows customers to add automated safeguards for Amazon ECS service rolling updates.
api-change:kinesis-video-webrtc-storage: [botocore] Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud.
api-change:kinesisvideo: [botocore] Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud.
api-change:rds: [botocore] Add support for --enable-customer-owned-ip to RDS create-db-instance-read-replica API for RDS on Outposts.
api-change:sagemaker: [botocore] AWS Sagemaker - Sagemaker Images now supports Aliases as secondary identifiers for ImageVersions. SageMaker Images now supports additional metadata for ImageVersions for better images management.
1.26.32

enhancement:s3: s3.transfer methods accept path-like objects as input
api-change:appflow: [botocore] This release updates the ListConnectorEntities API action so that it returns paginated responses that customers can retrieve with next tokens.
api-change:cloudfront: [botocore] Updated documentation for CloudFront
api-change:datasync: [botocore] AWS DataSync now supports the use of tags with task executions. With this new feature, you can apply tags each time you execute a task, giving you greater control and management over your task executions.
api-change:efs: [botocore] Update efs client to latest version
api-change:guardduty: [botocore] This release provides the valid characters for the Description and Name field.
api-change:iotfleetwise: [botocore] Updated error handling for empty resource names in "UpdateSignalCatalog" and "GetModelManifest" operations.
api-change:sagemaker: [botocore] AWS sagemaker - Features: This release adds support for random seed, it's an integer value used to initialize a pseudo-random number generator. Setting a random seed will allow the hyperparameter tuning search strategies to produce more consistent configurations for the same tuning job.
1.26.31

api-change:backup-gateway: [botocore] This release adds support for VMware vSphere tags, enabling customer to protect VMware virtual machines using tag-based policies for AWS tags mapped from vSphere tags. This release also adds support for customer-accessible gateway-hypervisor interaction log and upload bandwidth rate limit schedule.
api-change:connect: [botocore] Added support for "English - New Zealand" and "English - South African" to be used with Amazon Connect Custom Vocabulary APIs.
api-change:ecs: [botocore] This release adds support for container port ranges in ECS, a new capability that allows customers to provide container port ranges to simplify use cases where multiple ports are in use in a container. This release updates TaskDefinition mutation APIs and the Task description APIs.
api-change:eks: [botocore] Add support for Windows managed nodes groups.
api-change:glue: [botocore] This release adds support for AWS Glue Crawler with native DeltaLake tables, allowing Crawlers to classify Delta Lake format tables and catalog them for query engines to query against.
api-change:kinesis: [botocore] Added StreamARN parameter for Kinesis Data Streams APIs. Added a new opaque pagination token for ListStreams. SDKs will auto-generate Account Endpoint when accessing Kinesis Data Streams.
api-change:location: [botocore] This release adds support for a new style, "VectorOpenDataStandardLight" which can be used with the new data source, "Open Data Maps (Preview)".
api-change:m2: [botocore] Adds an optional create-only KmsKeyId property to Environment and Application resources.
api-change:sagemaker: [botocore] SageMaker Inference Recommender now allows customers to load tests their models on various instance types using private VPC.
api-change:securityhub: [botocore] Added new resource details objects to ASFF, including resources for AwsEc2LaunchTemplate, AwsSageMakerNotebookInstance, AwsWafv2WebAcl and AwsWafv2RuleGroup.
api-change:translate: [botocore] Raised the input byte size limit of the Text field in the TranslateText API to 10000 bytes.
1.26.30

api-change:ce: [botocore] This release supports percentage-based thresholds on Cost Anomaly Detection alert subscriptions.
api-change:cloudwatch: [botocore] Update cloudwatch client to latest version
api-change:networkmanager: [botocore] Appliance Mode support for AWS Cloud WAN.
api-change:redshift-data: [botocore] This release adds a new --client-token field to ExecuteStatement and BatchExecuteStatement operations. Customers can now run queries with the additional client token parameter to ensures idempotency.
api-change:sagemaker-metrics: [botocore] Update SageMaker Metrics documentation.
2022-12-29 10:56:16 +00:00
adam
d34fb9e914 py-botocore: updated to 1.29.39
1.29.39

api-change:elasticache: This release allows you to modify the encryption in transit setting, for existing Redis clusters. You can now change the TLS configuration of your Redis clusters without the need to re-build or re-provision the clusters or impact application availability.
api-change:network-firewall: AWS Network Firewall now provides status messages for firewalls to help you troubleshoot when your endpoint fails.
api-change:rds: This release adds support for Custom Engine Version (CEV) on RDS Custom SQL Server.
api-change:route53-recovery-control-config: Added support for Python paginators in the route53-recovery-control-config List* APIs.
1.29.38

api-change:memorydb: This release adds support for MemoryDB Reserved nodes which provides a significant discount compared to on-demand node pricing. Reserved nodes are not physical nodes, but rather a billing discount applied to the use of on-demand nodes in your account.
api-change:transfer: Add additional operations to throw ThrottlingExceptions
1.29.37

api-change:connect: Support for Routing Profile filter, SortCriteria, and grouping by Routing Profiles for GetCurrentMetricData API. Support for RoutingProfiles, UserHierarchyGroups, and Agents as filters, NextStatus and AgentStatusName for GetCurrentUserData. Adds ApproximateTotalCount to both APIs.
api-change:connectparticipant: Amazon Connect Chat introduces the Message Receipts feature. This feature allows agents and customers to receive message delivered and read receipts after they send a chat message.
api-change🕵️ This release adds a missed AccessDeniedException type to several endpoints.
api-change:fsx: Fix a bug where a recent release might break certain existing SDKs.
api-change:inspector2: Amazon Inspector adds support for scanning NodeJS 18.x and Go 1.x AWS Lambda function runtimes.
1.29.36

api-change:compute-optimizer: This release enables AWS Compute Optimizer to analyze and generate optimization recommendations for ecs services running on Fargate.
api-change:connect: Amazon Connect Chat introduces the Idle Participant/Autodisconnect feature, which allows users to set timeouts relating to the activity of chat participants, using the new UpdateParticipantRoleConfig API.
api-change:iotdeviceadvisor: This release adds the following new features: 1) Documentation updates for IoT Device Advisor APIs. 2) Updated required request parameters for IoT Device Advisor APIs. 3) Added new service feature: ability to provide the test endpoint when customer executing the StartSuiteRun API.
api-change:kinesis-video-webrtc-storage: Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud.
api-change:rds: Add support for managing master user password in AWS Secrets Manager for the DBInstance and DBCluster.
api-change:secretsmanager: Documentation updates for Secrets Manager
1.29.35

api-change:connect: Amazon Connect Chat now allows for JSON (application/json) message types to be sent as part of the initial message in the StartChatContact API.
api-change:connectparticipant: Amazon Connect Chat now allows for JSON (application/json) message types to be sent in the SendMessage API.
api-change:license-manager-linux-subscriptions: AWS License Manager now offers cross-region, cross-account tracking of commercial Linux subscriptions on AWS. This includes subscriptions purchased as part of EC2 subscription-included AMIs, on the AWS Marketplace, or brought to AWS via Red Hat Cloud Access Program.
api-change:macie2: This release adds support for analyzing Amazon S3 objects that use the S3 Glacier Instant Retrieval (Glacier_IR) storage class.
api-change:sagemaker: This release enables adding RStudio Workbench support to an existing Amazon SageMaker Studio domain. It allows setting your RStudio on SageMaker environment configuration parameters and also updating the RStudioConnectUrl and RStudioPackageManagerUrl parameters for existing domains
api-change:scheduler: Updated the ListSchedules and ListScheduleGroups APIs to allow the NamePrefix field to start with a number. Updated the validation for executionRole field to support any role name.
api-change:ssm: Doc-only updates for December 2022.
api-change:support: Documentation updates for the AWS Support API
api-change:transfer: This release adds support for Decrypt as a workflow step type.
1.29.34

api-change:batch: Adds isCancelled and isTerminated to DescribeJobs response.
api-change:ec2: Adds support for pagination in the EC2 DescribeImages API.
api-change:lookoutequipment: This release adds support for listing inference schedulers by status.
api-change:medialive: This release adds support for two new features to AWS Elemental MediaLive. First, you can now burn-in timecodes to your MediaLive outputs. Second, we now now support the ability to decode Dolby E audio when it comes in on an input.
api-change:nimble: Amazon Nimble Studio now supports configuring session storage volumes and persistence, as well as backup and restore sessions through launch profiles.
api-change:resource-explorer-2: Documentation updates for AWS Resource Explorer.
api-change:route53domains: Use Route 53 domain APIs to change owner, create/delete DS record, modify IPS tag, resend authorization. New: AssociateDelegationSignerToDomain, DisassociateDelegationSignerFromDomain, PushDomain, ResendOperationAuthorization. Updated: UpdateDomainContact, ListOperations, CheckDomainTransferability.
api-change:sagemaker: Amazon SageMaker Autopilot adds support for new objective metrics in CreateAutoMLJob API.
api-change:transcribe: Enable our batch transcription jobs for Swedish and Vietnamese.
1.29.33

api-change:athena: Add missed InvalidRequestException in GetCalculationExecutionCode,StopCalculationExecution APIs. Correct required parameters (Payload and Type) in UpdateNotebook API. Change Notebook size from 15 Mb to 10 Mb.
api-change:ecs: This release adds support for alarm-based rollbacks in ECS, a new feature that allows customers to add automated safeguards for Amazon ECS service rolling updates.
api-change:kinesis-video-webrtc-storage: Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud.
api-change:kinesisvideo: Amazon Kinesis Video Streams offers capabilities to stream video and audio in real-time via WebRTC to the cloud for storage, playback, and analytical processing. Customers can use our enhanced WebRTC SDK and cloud APIs to enable real-time streaming, as well as media ingestion to the cloud.
api-change:rds: Add support for --enable-customer-owned-ip to RDS create-db-instance-read-replica API for RDS on Outposts.
api-change:sagemaker: AWS Sagemaker - Sagemaker Images now supports Aliases as secondary identifiers for ImageVersions. SageMaker Images now supports additional metadata for ImageVersions for better images management.
1.29.32

api-change:appflow: This release updates the ListConnectorEntities API action so that it returns paginated responses that customers can retrieve with next tokens.
api-change:cloudfront: Updated documentation for CloudFront
api-change:datasync: AWS DataSync now supports the use of tags with task executions. With this new feature, you can apply tags each time you execute a task, giving you greater control and management over your task executions.
api-change:efs: Update efs client to latest version
api-change:guardduty: This release provides the valid characters for the Description and Name field.
api-change:iotfleetwise: Updated error handling for empty resource names in "UpdateSignalCatalog" and "GetModelManifest" operations.
api-change:sagemaker: AWS sagemaker - Features: This release adds support for random seed, it's an integer value used to initialize a pseudo-random number generator. Setting a random seed will allow the hyperparameter tuning search strategies to produce more consistent configurations for the same tuning job.
1.29.31

api-change:backup-gateway: This release adds support for VMware vSphere tags, enabling customer to protect VMware virtual machines using tag-based policies for AWS tags mapped from vSphere tags. This release also adds support for customer-accessible gateway-hypervisor interaction log and upload bandwidth rate limit schedule.
api-change:connect: Added support for "English - New Zealand" and "English - South African" to be used with Amazon Connect Custom Vocabulary APIs.
api-change:ecs: This release adds support for container port ranges in ECS, a new capability that allows customers to provide container port ranges to simplify use cases where multiple ports are in use in a container. This release updates TaskDefinition mutation APIs and the Task description APIs.
api-change:eks: Add support for Windows managed nodes groups.
api-change:glue: This release adds support for AWS Glue Crawler with native DeltaLake tables, allowing Crawlers to classify Delta Lake format tables and catalog them for query engines to query against.
api-change:kinesis: Added StreamARN parameter for Kinesis Data Streams APIs. Added a new opaque pagination token for ListStreams. SDKs will auto-generate Account Endpoint when accessing Kinesis Data Streams.
api-change:location: This release adds support for a new style, "VectorOpenDataStandardLight" which can be used with the new data source, "Open Data Maps (Preview)".
api-change:m2: Adds an optional create-only KmsKeyId property to Environment and Application resources.
api-change:sagemaker: SageMaker Inference Recommender now allows customers to load tests their models on various instance types using private VPC.
api-change:securityhub: Added new resource details objects to ASFF, including resources for AwsEc2LaunchTemplate, AwsSageMakerNotebookInstance, AwsWafv2WebAcl and AwsWafv2RuleGroup.
api-change:translate: Raised the input byte size limit of the Text field in the TranslateText API to 10000 bytes.
1.29.30

api-change:ce: This release supports percentage-based thresholds on Cost Anomaly Detection alert subscriptions.
api-change:cloudwatch: Update cloudwatch client to latest version
api-change:networkmanager: Appliance Mode support for AWS Cloud WAN.
api-change:redshift-data: This release adds a new --client-token field to ExecuteStatement and BatchExecuteStatement operations. Customers can now run queries with the additional client token parameter to ensures idempotency.
api-change:sagemaker-metrics: Update SageMaker Metrics documentation.
2022-12-29 10:55:37 +00:00
pin
373fa2273c doc: Added devel/superdiff version 2.0.3 2022-12-29 08:09:03 +00:00
pin
ceef686808 Add superdiff 2022-12-29 08:08:35 +00:00
pin
f28532bb78 devel/superdiff: import package
Are you working to eliminate similar/duplicate code from your files?

Do you have a suspicion that chunks of code are copy-pasted, but are slightly
different s.t. normal diff methods don't work?

Are you tired of visually going through and inspecting your code for repeating
chunks?

If so, this might be the tool for you!

Features
- Finds duplicate code slices
- Finds similar-enough code slices
- JSON reporting for jq integeration
- Fast enough (00:03:39 for a 17k LOC with block size 10 and Levenshtein
  threshold 10)
- Can check for duplicate code across multiple files
- Vim integration!

Limitations
- Not instantaneous for large files
- Single-threaded
2022-12-29 08:07:22 +00:00
pin
f55b3173c9 doc: Updated editors/tp-note to 1.19.13 2022-12-29 08:05:08 +00:00
pin
dab0b154cd editors/tp-note: update to 1.19.13
Add env. var. 'TPNOTE_BROWSER', 'TPNOTE_EDITOR'

Braking changes:

* Env. var. renamed from 'TPNOTELANG' to 'TPNOTE_LANG'
* Env. var. renamed from 'TPNOTEUSER' to 'TPNOTE_USER'
2022-12-29 08:04:40 +00:00
pin
5e3f4828bf doc: Updated audio/ncspot to 0.12.0 2022-12-29 08:03:43 +00:00
pin
9f3eec4258 audio/ncspot: update to 0.12.0
Maintenance
 - Fix: Handle explicit field from Spotify API (#844, ramsayleung/rspotify#332)
 - Fix: Print "Connecting to Spotify" before setting up Cursive backend by
   @pghvlaans (#969)
 - Link to Flatpak image by @thorpelawrence (#997)
 - Make entry point synchronous and switch to global runtime instead by
   @ThomasFrans (#996)
 - Document queue module by @ThomasFrans (#1009)

Features
 - Add "save/unsave album" to context menu (#964)
 - Automatically save backtraces to cache folder by @ThomasFrans (#988)
 - Create IPC socket on UNIX platforms for remote control and external track
   display (#1018)
2022-12-29 08:03:23 +00:00
pin
5fce8bc8f3 doc: Updated devel/difftastic to 0.40.0 2022-12-29 08:02:35 +00:00
pin
2fc61e1460 devel/difftastic: update to 0.40.0
0.40 (released 28th December 2022)

Diffing
 - Diffing is now more efficient: the generated graphs have ~20% fewer vertices.
   This improves performance (less memory, shorter runtime), and also enables
   difftastic to handle larger files (you're less likely to reach
   DFT_GRAPH_LIMIT). This improvement was contributed by @QuarticCat, thanks!

Parsing
 - rebar files (e.g. rebar.lock) are no longer associated with Erlang, only
   *.erl files, as the Erlang parser does not currently support them.

Command Line Interface
 --list-languages now shows filenames associated with languages (e.g.
 Cargo.lock is TOML) in addition to extensions.

Display
 - Symlinks are now expanded before calculating relative paths, resulting in
   relative paths being shown in more cases.
2022-12-29 08:02:12 +00:00
khorben
604e9aa755 doc: Updated chat/prosody to 0.12.2 2022-12-29 04:16:29 +00:00
khorben
0a0f9978ab prosody: update to 0.12.2
This is a regularly delayed release containing a number of fixes for issues
that we have come across since the last release of the 0.12 series.

Summary of all changes in this release:

Fixes and improvements:

* util.stanza: Allow U+7F when constructing stazas
* net.unbound: Preserve built-in defaults and Prosodys settings for luaunbound
  (fixes #1763: luaunbound not reading resolv.conf) (thanks rgd)
* mod_smacks: Disable not implemented resumption behavior on s2s
* mod_http: Allow disabling CORS in the http_cors_override option and by
  default

Minor changes:

* util.json: Accept empty arrays with whitespace (fixes #1782: util.json fails
  to parse empty array with whitespace)
* util.stanza: Adjust number of return values to handle change in dependency of
  test suite (fix test with luassert >=1.9)
* util.startup: Ensure import() is available in prosodyctl (thanks keyzer)
* mod_storage_sql: Fix initialization when called from prosodyctl
* mod_storage_sql: Fix the summary API with Postgres (#1766)
* mod_admin_shell: Fixes for showing data related to disconnected sessions
  (fixes #1777)
* core.s2smanager: Don’t remove unrelated session on close of bidi session
* mod_smacks: Don’t send redundant requests for acknowledgement (#1761)
* mod_admin_shell: Rename commands user:roles() to user:setroles() and
  user:showroles() to user:roles()
* mod_smacks: Bounce unhandled stanzas from local origin (fix #1759)
* mod_bookmarks: Reduce log level of message about not having any bookmarks
* mod_s2s: Fix firing buffer drain events
* mod_http_files: Log warning about legacy modules using mod_http_files
* util.startup: Wait for last shutdown steps
* util.datamapper: Improve handling of schemas with non-obvious “type”
* util.jsonschema: Fix validation to not assume presence of “type” field
* util.jsonschema: Use same integer/float logic on Lua 5.2 and 5.3
2022-12-29 04:16:18 +00:00
gutteridge
02d7fb2f97 py-neovim: fix grammar in DESCR 2022-12-29 00:56:11 +00:00
sekiya
0f3cef6b26 Bump package revision for net/rsync. 2022-12-29 00:49:06 +00:00
sekiya
3287cdefe2 Make zstd an option (enabled by default).
Bump package revision.
2022-12-29 00:47:40 +00:00
gdt
be1e4fe504 xentools415: allow on NetBSD 10 2022-12-28 23:45:02 +00:00
wiz
16cda7f043 doc: Updated net/gtk-gnutella to 1.2.2nb1 2022-12-28 22:58:04 +00:00
wiz
45bd97dc5d gtk-gnutella: do not use included malloc()
Makes it work better by not segfaulting early in startup.

Bump PKGREVISION.
2022-12-28 22:57:51 +00:00
nikita
79380a0274 py-neovim: needs py-greenlet at runtime. 2022-12-28 22:51:26 +00:00
adam
baec5e20da Updated databases/sqlite3*, devel/lemon 2022-12-28 22:26:45 +00:00
adam
53faa0ca20 sqlite3: updated to 3.40.1
3.40.1 (2022-12-28):

Fix the --safe command-line option to the CLI such that it correctly disallows the use of SQL functions like writefile() that can cause harmful side-effects.
Fix a potential infinite loop in the memsys5 alternative memory allocator. This bug was introduced by a performance optimization in version 3.39.0.
Various other obscure fixes.
2022-12-28 22:26:06 +00:00
schmonz
3651e98fb4 doc: Updated pkgtools/rc.d-boot to 20221225 2022-12-28 20:25:01 +00:00
schmonz
2b3a45cf0f rc.d-boot: fix references to rc.subr in previous (it will have gotten
installed to ${SYSCONFBASE}, not necessarily the same as
${PKG_SYSCONFDIR}). UNPRIVILEGED still works, says triaxx@. Bump
version.
2022-12-28 20:24:50 +00:00
nikita
ca082975c3 changes-2022: remove duplicate line again. 2022-12-28 20:20:56 +00:00