Commit graph

330849 commits

Author SHA1 Message Date
maya
a72b8a8909 Add nancy version 1.0.5
nancy is a tool to check for vulnerabilities in your Golang
dependencies, powered by Sonatype OSS Index, and as well, works
with Nexus IQ Server, allowing you a smooth experience as a Golang
developer, using the best tools in the market!

(No go prefix as I don't think it matters which Go version nancy was
built with. it parses the output from Go itself.)
2021-01-08 17:13:18 +00:00
tsutsui
799d75e86f doc: Updated textproc/ruby-nokogiri to 1.11.1 2021-01-08 17:09:56 +00:00
tsutsui
86350f4717 ruby-nokogiri: update to 1.11.1.
Upstream changelog (from CHANGELOG.md):

v1.11.1 / 2021-01-06

 Fixed

  * [CRuby] If libxml-ruby is loaded before nokogiri, the SAX and Push parsers
    no longer call libxml-ruby's handlers. Instead, they defensively override
    the libxml2 global handler before parsing. [#2168]

v1.11.0 / 2021-01-03

 Notes

 Faster, more reliable installation: Native Gems for Linux and OSX/Darwin

"Native gems" contain pre-compiled libraries for a specific machine
architecture. On supported platforms, this removes the need for compiling the C
extension and the packaged libraries. This results in much faster installation
and more reliable installation, which as you probably know are the biggest
headaches for Nokogiri users.

We've been shipping native Windows gems since 2009, but starting in v1.11.0 we
are also shipping native gems for these platforms:

  * Linux: x86-linux and x86_64-linux -- including musl platforms like alpine
  * OSX/Darwin: x86_64-darwin and arm64-darwin

We'd appreciate your thoughts and feedback on this work at #2075.

 Dependencies

 Ruby

This release introduces support for Ruby 2.7 and 3.0 in the precompiled native
gems.

This release ends support for:

  * Ruby 2.3, for which official support ended on 2019-03-31 [#1886] (Thanks
    @ashmaroli!)
  * Ruby 2.4, for which official support ended on 2020-04-05
  * JRuby 9.1, which is the Ruby 2.3-compatible release.

 Gems

  * Explicitly add racc as a runtime dependency. [#1988] (Thanks, @voxik!)
  * [MRI] Upgrade mini_portile2 dependency from ~> 2.4.0 to ~> 2.5.0 [#2005]
    (Thanks, @alejandroperea!)

 Security

See note below about CVE-2020-26247 in the "Changed" subsection entitled
"XML::Schema parsing treats input as untrusted by default".

 Added

  * Add Node methods for manipulating "keyword attributes" (for example, class
    and rel): #kwattr_values, #kwattr_add, #kwattr_append, and #kwattr_remove.
    [#2000]
  * Add support for CSS queries a:has(> b), a:has(~ b), and a:has(+ b). [#688]
    (Thanks, @jonathanhefner!)
  * Add Node#value? to better match expected semantics of a Hash-like object.
    [#1838, #1840] (Thanks, @MatzFan!)
  * [CRuby] Add Nokogiri::XML::Node#line= for use by downstream libs like
    nokogumbo. [#1918] (Thanks, @stevecheckoway!)
  * nokogiri.gemspec is back after a 10-year hiatus. We still prefer you use
    the official releases, but master is pretty stable these days, and YOLO.

 Performance

  * [CRuby] The CSS ~= operator and class selector . are about 2x faster.
    [#2137, #2135]
  * [CRuby] Patch libxml2 to call strlen from xmlStrlen rather than the naive
    implementation, because strlen is generally optimized for the architecture.
    [#2144] (Thanks, @ilyazub!)
  * Improve performance of some namespace operations. [#1916] (Thanks,
    @ashmaroli!)
  * Remove unnecessary array allocations from Node serialization methods
    [#1911] (Thanks, @ashmaroli!)
  * Avoid creation of unnecessary zero-length String objects. [#1970] (Thanks,
    @ashmaroli!)
  * Always compile libxml2 and libxslt with '-O2' [#2022, #2100] (Thanks,
    @ilyazub!)
  * [JRuby] Lots of code cleanup and performance improvements. [#1934] (Thanks,
    @kares!)
  * [CRuby] RelaxNG.from_document no longer leaks memory. [#2114]

 Improved

  * [CRuby] Handle incorrectly-closed HTML comments as WHATWG recommends for
    browsers. [#2058] (Thanks to HackerOne user mayflower for reporting this!)
  * {HTML,XML}::Document#parse now accept Pathname objects. Previously this
    worked only if the referenced file was less than 4096 bytes long; longer
    files resulted in undefined behavior because the read method would be
    repeatedly invoked. [#1821, #2110] (Thanks, @doriantaylor and @phokz!)
  * [CRuby] Nokogumbo builds faster because it can now use header files
    provided by Nokogiri. [#1788] (Thanks, @stevecheckoway!)
  * Add frozen_string_literal: true magic comment to all lib files. [#1745]
    (Thanks, @oniofchaos!)
  * [JRuby] Clean up deprecated calls into JRuby. [#2027] (Thanks, @headius!)

 Fixed

  * HTML Parsing in "strict" mode (i.e., the RECOVER parse option not set) now
    correctly raises a XML::SyntaxError exception. Previously the value of the
    RECOVER bit was being ignored by CRuby and was misinterpreted by JRuby.
    [#2130]
  * The CSS ~= operator now correctly handles non-space whitespace in the class
    attribute. commit e45dedd
  * The switch to turn off the CSS-to-XPath cache is now thread-local, rather
    than being shared mutable state. [#1935]
  * The Node methods add_previous_sibling, previous=, before, add_next_sibling,
    next=, after, replace, and swap now correctly use their parent as the
    context node for parsing markup. These methods now also raise a
    RuntimeError if they are called on a node with no parent. [nokogumbo#160]
  * [JRuby] XML::Schema XSD validation errors are captured in XML::Schema#
    errors. These errors were previously ignored.
  * [JRuby] Standardize reading from IO like objects, including StringIO.
    [#1888, #1897]
  * [JRuby] Fix how custom XPath function namespaces are inferred to be less
    naive. [#1890, #2148]
  * [JRuby] Clarify exception message when custom XPath functions can't be
    resolved.
  * [JRuby] Comparison of Node to Document with Node#<=> now matches
    CRuby/libxml2 behavior.
  * [CRuby] Syntax errors are now correctly captured in Document#errors for
    short HTML documents. Previously the SAX parser used for encoding detection
    was clobbering libxml2's global error handler.
  * [CRuby] Fixed installation on AIX with respect to vasprintf. [#1908]
  * [CRuby] On some platforms, avoid symbol name collision with glibc's
    canonicalize. [#2105]
  * [Windows Visual C++] Fixed compiler warnings and errors. [#2061, #2068]
  * [CRuby] Fixed Nokogumbo integration which broke in the v1.11.0 release
    candidates. [#1788] (Thanks, @stevecheckoway!)
  * [JRuby] Fixed document encoding regression in v1.11.0 release candidates.
    [#2080, #2083] (Thanks, @thbar!)

 Removed

  * The internal method Nokogiri::CSS::Parser.cache_on= has been removed. Use
    .set_cache if you need to muck with the cache internals.
  * The class method Nokogiri::CSS::Parser.parse has been removed. This was
    originally deprecated in 2009 in 13db61b. Use Nokogiri::CSS.parse instead.

 Changed

 XML::Schema input is now "untrusted" by default

Address CVE-2020-26247.

In Nokogiri versions <= 1.11.0.rc3, XML Schemas parsed by Nokogiri::XML::Schema
were trusted by default, allowing external resources to be accessed over the
network, potentially enabling XXE or SSRF attacks.

This behavior is counter to the security policy intended by Nokogiri
maintainers, which is to treat all input as untrusted by default whenever
possible.

Please note that this security fix was pushed into a new minor version, 1.11.x,
rather than a patch release to the 1.10.x branch, because it is a breaking
change for some schemas and the risk was assessed to be "Low Severity".

More information and instructions for enabling "trusted input" behavior in
v1.11.0.rc4 and later is available at the public advisory.

 HTML parser now obeys the strict or norecover parsing option

(Also noted above in the "Fixed" section) HTML Parsing in "strict" mode (i.e.,
the RECOVER parse option not set) now correctly raises a XML::SyntaxError
exception. Previously the value of the RECOVER bit was being ignored by CRuby
and was misinterpreted by JRuby.

If you're using the default parser options, you will be unaffected by this fix.
If you're passing strict or norecover to your HTML parser call, you may be
surprised to see that the parser now fails to recover and raises a
XML::SyntaxError exception. Given the number of HTML documents on the internet
that libxml2 would consider to be ill-formed, this is probably not what you
want, and you can omit setting that parse option to restore the behavior that
you have been relying upon.

Apologies to anyone inconvenienced by this breaking bugfix being present in a
minor release, but I felt it was appropriate to introduce this fix because it's
straightforward to fix any code that has been relying on this buggy behavior.

 VersionInfo, the output of nokogiri -v, and related constants

This release changes the metadata provided in Nokogiri::VersionInfo which also
affects the output of nokogiri -v. Some related constants have also been
changed. If you're using VersionInfo programmatically, or relying on constants
related to underlying library versions, please read the detailed changes for
Nokogiri::VersionInfo at #2139 and accept our apologies for the inconvenience.
2021-01-08 17:09:41 +00:00
schmonz
b95c48097d Apply upstream patch to fix compilation error on macOS and Solaris 9. 2021-01-08 16:14:55 +00:00
nia
94cd91c4f8 doc: Added net/avahi-ui version 0.8 2021-01-08 14:08:57 +00:00
nia
60fe9fbc14 avahi: Split off package into *-ui variant for the GTK UIs.
thou shalt not add a confusing amount of PKG_OPTIONS to a library.
2021-01-08 14:08:35 +00:00
mef
b609e95d70 (sysutils/hal) .include "../../devel/libblkid/buildlink3.mk" added 2021-01-08 12:37:09 +00:00
jperkin
fe2bce194f ocaml: Fix previous correctly. 2021-01-08 12:28:16 +00:00
mef
2ab01a1442 (sysutils/hal) move ahead blk3 of textproc/gtk-doc, sorry 2021-01-08 11:51:45 +00:00
mef
dff1b24717 (sysutils/hal) Add blk3 of textproc/gtk-doc for gtkdocize 2021-01-08 11:50:20 +00:00
adam
c4042b2025 Updated www/py-pylint-django, net/py-botocore, net/py-boto3, net/py-awscli 2021-01-08 11:22:40 +00:00
adam
e1ad5058d0 py-awscli: updated to 1.18.211
1.18.211
api-change:devops-guru: Update devops-guru command to latest version
api-change:codepipeline: Update codepipeline command to latest version
api-change:mediaconvert: Update mediaconvert command to latest version

1.18.210
api-change:transfer: Update transfer command to latest version
api-change:autoscaling: Update autoscaling command to latest version
api-change:autoscaling-plans: Update autoscaling-plans command to latest version

1.18.209
api-change:ce: Update ce command to latest version
api-change:application-autoscaling: Update application-autoscaling command to latest version

1.18.208
api-change:healthlake: Update healthlake command to latest version
api-change:cloudsearch: Update cloudsearch command to latest version

1.18.207
api-change:servicecatalog: Update servicecatalog command to latest version

1.18.206
api-change:macie2: Update macie2 command to latest version
api-change:elasticache: Update elasticache command to latest version

1.18.205
api-change:acm-pca: Update acm-pca command to latest version
api-change:apigatewayv2: Update apigatewayv2 command to latest version

1.18.204
api-change:cloudfront: Update cloudfront command to latest version

1.18.203
api-change:resource-groups: Update resource-groups command to latest version
api-change:compute-optimizer: Update compute-optimizer command to latest version
api-change:dms: Update dms command to latest version

1.18.202
api-change:connect: Update connect command to latest version
api-change:rds: Update rds command to latest version
api-change:ssm: Update ssm command to latest version
api-change:iotwireless: Update iotwireless command to latest version
api-change:elasticache: Update elasticache command to latest version
api-change:ce: Update ce command to latest version
api-change:glue: Update glue command to latest version

1.18.201
api-change:managedblockchain: Update managedblockchain command to latest version
api-change:ec2: Update ec2 command to latest version
api-change:service-quotas: Update service-quotas command to latest version
api-change:dms: Update dms command to latest version
api-change:apigateway: Update apigateway command to latest version
api-change:outposts: Update outposts command to latest version
api-change:glue: Update glue command to latest version
api-change:batch: Update batch command to latest version
api-change:config: Update config command to latest version
api-change:s3: Update s3 command to latest version
api-change:qldb-session: Update qldb-session command to latest version
api-change:securityhub: Update securityhub command to latest version
api-change:servicecatalog-appregistry: Update servicecatalog-appregistry command to latest version
api-change:connectparticipant: Update connectparticipant command to latest version

1.18.200
api-change:ec2: Update ec2 command to latest version
api-change:rds: Update rds command to latest version
api-change:personalize-runtime: Update personalize-runtime command to latest version

1.18.199
api-change:route53resolver: Update route53resolver command to latest version
api-change:kms: Update kms command to latest version
api-change:sqs: Update sqs command to latest version
api-change:config: Update config command to latest version
api-change:imagebuilder: Update imagebuilder command to latest version
api-change:route53: Update route53 command to latest version
api-change:dlm: Update dlm command to latest version
api-change:servicecatalog: Update servicecatalog command to latest version
api-change:ec2: Update ec2 command to latest version

1.18.198
api-change:amp: Update amp command to latest version
api-change:location: Update location command to latest version
api-change:ce: Update ce command to latest version
api-change:quicksight: Update quicksight command to latest version
api-change:wellarchitected: Update wellarchitected command to latest version

1.18.197
api-change:iot: Update iot command to latest version
api-change:amp: Update amp command to latest version
api-change:iotfleethub: Update iotfleethub command to latest version
api-change:iotwireless: Update iotwireless command to latest version
api-change:iotdeviceadvisor: Update iotdeviceadvisor command to latest version
api-change:greengrassv2: Update greengrassv2 command to latest version
api-change:lambda: Update lambda command to latest version
api-change:ssm: Update ssm command to latest version
api-change:iotanalytics: Update iotanalytics command to latest version

1.18.196
api-change:devops-guru: Update devops-guru command to latest version
api-change:ec2: Update ec2 command to latest version
api-change:globalaccelerator: Update globalaccelerator command to latest version

1.18.195
api-change:cloudtrail: Update cloudtrail command to latest version
api-change:cloudwatch: Update cloudwatch command to latest version
api-change:pi: Update pi command to latest version
api-change:guardduty: Update guardduty command to latest version
api-change:autoscaling: Update autoscaling command to latest version
api-change:iotsitewise: Update iotsitewise command to latest version

1.18.194
api-change:networkmanager: Update networkmanager command to latest version
api-change:kendra: Update kendra command to latest version
api-change:ec2: Update ec2 command to latest version

1.18.193
api-change:redshift: Update redshift command to latest version
api-change:ec2: Update ec2 command to latest version
api-change:globalaccelerator: Update globalaccelerator command to latest version

1.18.192
api-change:sagemaker-edge: Update sagemaker-edge command to latest version
api-change:auditmanager: Update auditmanager command to latest version
api-change:sagemaker: Update sagemaker command to latest version
api-change:forecast: Update forecast command to latest version
api-change:kendra: Update kendra command to latest version
api-change:quicksight: Update quicksight command to latest version
api-change:ecr: Update ecr command to latest version
api-change:sagemaker-runtime: Update sagemaker-runtime command to latest version
api-change:healthlake: Update healthlake command to latest version
api-change:emr-containers: Update emr-containers command to latest version

1.18.191
api-change:dms: Update dms command to latest version
api-change:servicecatalog-appregistry: Update servicecatalog-appregistry command to latest version

1.18.190
api-change:license-manager: Update license-manager command to latest version
api-change:rds: Update rds command to latest version
api-change:ds: Update ds command to latest version
api-change:ssm: Update ssm command to latest version
api-change:lambda: Update lambda command to latest version
api-change:medialive: Update medialive command to latest version
api-change:workspaces: Update workspaces command to latest version
api-change:ec2: Update ec2 command to latest version
api-change:kafka: Update kafka command to latest version

1.18.189
api-change:compute-optimizer: Update compute-optimizer command to latest version
api-change:batch: Update batch command to latest version
api-change:amplifybackend: Update amplifybackend command to latest version
api-change:license-manager: Update license-manager command to latest version

1.18.188
api-change:customer-profiles: Update customer-profiles command to latest version

1.18.187
api-change:amplifybackend: Update amplifybackend command to latest version
api-change:ecr-public: Update ecr-public command to latest version
api-change:eks: Update eks command to latest version
api-change:ec2: Update ec2 command to latest version
api-change:sagemaker: Update sagemaker command to latest version
api-change:honeycode: Update honeycode command to latest version
api-change:connect-contact-lens: Update connect-contact-lens command to latest version
api-change:devops-guru: Update devops-guru command to latest version
api-change:lambda: Update lambda command to latest version
api-change:lookoutvision: Update lookoutvision command to latest version
api-change:connect: Update connect command to latest version
api-change:s3: Update s3 command to latest version
api-change:sagemaker-featurestore-runtime: Update sagemaker-featurestore-runtime command to latest version
api-change:ds: Update ds command to latest version
api-change:appintegrations: Update appintegrations command to latest version
api-change:profile: Update profile command to latest version

1.18.186
api-change:ec2: Update ec2 command to latest version

1.18.185
api-change:cognito-idp: Update cognito-idp command to latest version
api-change:cloudformation: Update cloudformation command to latest version
api-change:timestream-write: Update timestream-write command to latest version
api-change:lex-models: Update lex-models command to latest version
api-change:fsx: Update fsx command to latest version
api-change:cloudtrail: Update cloudtrail command to latest version
api-change:batch: Update batch command to latest version
api-change:comprehend: Update comprehend command to latest version
api-change:iotsitewise: Update iotsitewise command to latest version
api-change:elasticbeanstalk: Update elasticbeanstalk command to latest version
api-change:appflow: Update appflow command to latest version
api-change:mediaconvert: Update mediaconvert command to latest version
api-change:codebuild: Update codebuild command to latest version
api-change:stepfunctions: Update stepfunctions command to latest version
api-change:gamelift: Update gamelift command to latest version
api-change:mwaa: Update mwaa command to latest version
api-change:quicksight: Update quicksight command to latest version

1.18.184
api-change:securityhub: Update securityhub command to latest version
api-change:forecast: Update forecast command to latest version
api-change:kafka: Update kafka command to latest version
api-change:application-insights: Update application-insights command to latest version
api-change:ecs: Update ecs command to latest version
api-change:emr: Update emr command to latest version
api-change:elasticache: Update elasticache command to latest version
api-change:autoscaling: Update autoscaling command to latest version
api-change:codestar-connections: Update codestar-connections command to latest version
api-change:iot: Update iot command to latest version
api-change:sso-admin: Update sso-admin command to latest version
api-change:timestream-query: Update timestream-query command to latest version
api-change:lambda: Update lambda command to latest version
api-change:ec2: Update ec2 command to latest version
api-change:outposts: Update outposts command to latest version
api-change:license-manager: Update license-manager command to latest version
api-change:codeartifact: Update codeartifact command to latest version
api-change:signer: Update signer command to latest version
api-change:glue: Update glue command to latest version
api-change:translate: Update translate command to latest version
api-change:dynamodb: Update dynamodb command to latest version

1.18.183
api-change:cognito-identity: Update cognito-identity command to latest version
api-change:chime: Update chime command to latest version
api-change:codeguru-reviewer: Update codeguru-reviewer command to latest version
api-change:macie2: Update macie2 command to latest version
api-change:cloudhsmv2: Update cloudhsmv2 command to latest version
api-change:s3: Update s3 command to latest version
api-change:appmesh: Update appmesh command to latest version
api-change:servicecatalog-appregistry: Update servicecatalog-appregistry command to latest version
api-change:connect: Update connect command to latest version
api-change:kafka: Update kafka command to latest version

1.18.182
api-change:lex-models: Update lex-models command to latest version
api-change:lambda: Update lambda command to latest version
api-change:events: Update events command to latest version
api-change:lex-runtime: Update lex-runtime command to latest version
api-change:glue: Update glue command to latest version
api-change:ds: Update ds command to latest version
api-change:autoscaling: Update autoscaling command to latest version
api-change:ce: Update ce command to latest version
api-change:kinesisanalyticsv2: Update kinesisanalyticsv2 command to latest version
api-change:medialive: Update medialive command to latest version
api-change:redshift: Update redshift command to latest version

1.18.181
api-change:outposts: Update outposts command to latest version
api-change:elasticache: Update elasticache command to latest version
api-change:codebuild: Update codebuild command to latest version
api-change:cloudformation: Update cloudformation command to latest version
api-change:backup: Update backup command to latest version
api-change:s3control: Update s3control command to latest version
api-change:ec2: Update ec2 command to latest version

1.18.180
api-change:connect: Update connect command to latest version
api-change:rds: Update rds command to latest version
api-change:network-firewall: Update network-firewall command to latest version
api-change:chime: Update chime command to latest version
api-change:fms: Update fms command to latest version
api-change:macie2: Update macie2 command to latest version

1.18.179
api-change:codepipeline: Update codepipeline command to latest version
api-change:iotsitewise: Update iotsitewise command to latest version
api-change:dms: Update dms command to latest version
api-change:iotsecuretunneling: Update iotsecuretunneling command to latest version
api-change:servicecatalog: Update servicecatalog command to latest version
api-change:sns: Update sns command to latest version
api-change:quicksight: Update quicksight command to latest version
api-change:synthetics: Update synthetics command to latest version
api-change:sagemaker: Update sagemaker command to latest version

1.18.178
api-change:textract: Update textract command to latest version
api-change🛡️ Update shield command to latest version
api-change:elbv2: Update elbv2 command to latest version

1.18.177
api-change:servicecatalog-appregistry: Update servicecatalog-appregistry command to latest version
api-change:iot: Update iot command to latest version
api-change:polly: Update polly command to latest version
api-change:lex-models: Update lex-models command to latest version
api-change:robomaker: Update robomaker command to latest version
api-change:lightsail: Update lightsail command to latest version
api-change:personalize-runtime: Update personalize-runtime command to latest version
2021-01-08 11:22:18 +00:00
adam
a0103b6e1e py-boto3: updated to 1.16.51
1.16.51
api-change:devops-guru: [botocore] Update devops-guru client to latest version
api-change:codepipeline: [botocore] Update codepipeline client to latest version
api-change:mediaconvert: [botocore] Update mediaconvert client to latest version

1.16.50
api-change:autoscaling: [botocore] Update autoscaling client to latest version
api-change:transfer: [botocore] Update transfer client to latest version
api-change:autoscaling-plans: [botocore] Update autoscaling-plans client to latest version

1.16.49
api-change:ce: [botocore] Update ce client to latest version
api-change:application-autoscaling: [botocore] Update application-autoscaling client to latest version

1.16.48
api-change:healthlake: [botocore] Update healthlake client to latest version
api-change:cloudsearch: [botocore] Update cloudsearch client to latest version

1.16.47
api-change:servicecatalog: [botocore] Update servicecatalog client to latest version

1.16.46
api-change:macie2: [botocore] Update macie2 client to latest version
api-change:elasticache: [botocore] Update elasticache client to latest version

1.16.45
api-change:acm-pca: [botocore] Update acm-pca client to latest version
api-change:apigatewayv2: [botocore] Update apigatewayv2 client to latest version

1.16.44
api-change:cloudfront: [botocore] Update cloudfront client to latest version

1.16.43
api-change:compute-optimizer: [botocore] Update compute-optimizer client to latest version
api-change:resource-groups: [botocore] Update resource-groups client to latest version
api-change:dms: [botocore] Update dms client to latest version

1.16.42
api-change:ssm: [botocore] Update ssm client to latest version
api-change:iotwireless: [botocore] Update iotwireless client to latest version
api-change:rds: [botocore] Update rds client to latest version
api-change:glue: [botocore] Update glue client to latest version
api-change:ce: [botocore] Update ce client to latest version
api-change:connect: [botocore] Update connect client to latest version
api-change:elasticache: [botocore] Update elasticache client to latest version

1.16.41
api-change:config: [botocore] Update config client to latest version
api-change:ec2: [botocore] Update ec2 client to latest version
api-change:glue: [botocore] Update glue client to latest version
api-change:batch: [botocore] Update batch client to latest version
api-change:managedblockchain: [botocore] Update managedblockchain client to latest version
api-change:service-quotas: [botocore] Update service-quotas client to latest version
api-change:s3: [botocore] Update s3 client to latest version
api-change:connectparticipant: [botocore] Update connectparticipant client to latest version
api-change:securityhub: [botocore] Update securityhub client to latest version
api-change:qldb-session: [botocore] Update qldb-session client to latest version
api-change:outposts: [botocore] Update outposts client to latest version
api-change:servicecatalog-appregistry: [botocore] Update servicecatalog-appregistry client to latest version
api-change:dms: [botocore] Update dms client to latest version
api-change:apigateway: [botocore] Update apigateway client to latest version

1.16.40
api-change:rds: [botocore] Update rds client to latest version
bugfix:SSO: [botocore] Fixed timestamp format for SSO credential expirations
api-change:personalize-runtime: [botocore] Update personalize-runtime client to latest version
api-change:ec2: [botocore] Update ec2 client to latest version

1.16.39
api-change:ec2: [botocore] Update ec2 client to latest version
api-change:servicecatalog: [botocore] Update servicecatalog client to latest version
api-change:dlm: [botocore] Update dlm client to latest version
api-change:kms: [botocore] Update kms client to latest version
api-change:route53resolver: [botocore] Update route53resolver client to latest version
api-change:sqs: [botocore] Update sqs client to latest version
api-change:config: [botocore] Update config client to latest version
api-change:imagebuilder: [botocore] Update imagebuilder client to latest version
api-change:route53: [botocore] Update route53 client to latest version

1.16.38
api-change:ce: [botocore] Update ce client to latest version
api-change:amp: [botocore] Update amp client to latest version
api-change:location: [botocore] Update location client to latest version
api-change:wellarchitected: [botocore] Update wellarchitected client to latest version
api-change:quicksight: [botocore] Update quicksight client to latest version

1.16.37
api-change:iotwireless: [botocore] Update iotwireless client to latest version
api-change:lambda: [botocore] Update lambda client to latest version
api-change:greengrassv2: [botocore] Update greengrassv2 client to latest version
api-change:ssm: [botocore] Update ssm client to latest version
api-change:iotdeviceadvisor: [botocore] Update iotdeviceadvisor client to latest version
api-change:iot: [botocore] Update iot client to latest version
api-change:iotanalytics: [botocore] Update iotanalytics client to latest version
api-change:amp: [botocore] Update amp client to latest version
api-change:iotfleethub: [botocore] Update iotfleethub client to latest version

1.16.36
api-change:ec2: [botocore] Update ec2 client to latest version
api-change:globalaccelerator: [botocore] Update globalaccelerator client to latest version
api-change:devops-guru: [botocore] Update devops-guru client to latest version

1.16.35
api-change:guardduty: [botocore] Update guardduty client to latest version
api-change:iotsitewise: [botocore] Update iotsitewise client to latest version
api-change:autoscaling: [botocore] Update autoscaling client to latest version
api-change:cloudwatch: [botocore] Update cloudwatch client to latest version
api-change:pi: [botocore] Update pi client to latest version
api-change:cloudtrail: [botocore] Update cloudtrail client to latest version

1.16.34
api-change:networkmanager: [botocore] Update networkmanager client to latest version
api-change:kendra: [botocore] Update kendra client to latest version
api-change:ec2: [botocore] Update ec2 client to latest version

1.16.33
api-change:globalaccelerator: [botocore] Update globalaccelerator client to latest version
api-change:ec2: [botocore] Update ec2 client to latest version
api-change:redshift: [botocore] Update redshift client to latest version

1.16.32
api-change:ecr: [botocore] Update ecr client to latest version
api-change:sagemaker: [botocore] Update sagemaker client to latest version
api-change:kendra: [botocore] Update kendra client to latest version
api-change:quicksight: [botocore] Update quicksight client to latest version
api-change:auditmanager: [botocore] Update auditmanager client to latest version
api-change:sagemaker-runtime: [botocore] Update sagemaker-runtime client to latest version
api-change:sagemaker-edge: [botocore] Update sagemaker-edge client to latest version
api-change:forecast: [botocore] Update forecast client to latest version
api-change:healthlake: [botocore] Update healthlake client to latest version
api-change:emr-containers: [botocore] Update emr-containers client to latest version

1.16.31
api-change:dms: [botocore] Update dms client to latest version
api-change:servicecatalog-appregistry: [botocore] Update servicecatalog-appregistry client to latest version

1.16.30
api-change:ssm: [botocore] Update ssm client to latest version
api-change:ec2: [botocore] Update ec2 client to latest version
api-change:workspaces: [botocore] Update workspaces client to latest version
api-change:license-manager: [botocore] Update license-manager client to latest version
api-change:lambda: [botocore] Update lambda client to latest version
api-change:ds: [botocore] Update ds client to latest version
api-change:kafka: [botocore] Update kafka client to latest version
api-change:medialive: [botocore] Update medialive client to latest version
api-change:rds: [botocore] Update rds client to latest version

1.16.29
api-change:license-manager: [botocore] Update license-manager client to latest version
api-change:compute-optimizer: [botocore] Update compute-optimizer client to latest version
api-change:amplifybackend: [botocore] Update amplifybackend client to latest version
api-change:batch: [botocore] Update batch client to latest version

1.16.28
api-change:customer-profiles: [botocore] Update customer-profiles client to latest version

1.16.27
api-change:sagemaker-featurestore-runtime: [botocore] Update sagemaker-featurestore-runtime client to latest version
api-change:ecr-public: [botocore] Update ecr-public client to latest version
api-change:honeycode: [botocore] Update honeycode client to latest version
api-change:eks: [botocore] Update eks client to latest version
api-change:amplifybackend: [botocore] Update amplifybackend client to latest version
api-change:lambda: [botocore] Update lambda client to latest version
api-change:sagemaker: [botocore] Update sagemaker client to latest version
api-change:lookoutvision: [botocore] Update lookoutvision client to latest version
api-change:ec2: [botocore] Update ec2 client to latest version
api-change:connect: [botocore] Update connect client to latest version
api-change:connect-contact-lens: [botocore] Update connect-contact-lens client to latest version
api-change:profile: [botocore] Update profile client to latest version
api-change:s3: [botocore] Update s3 client to latest version
api-change:appintegrations: [botocore] Update appintegrations client to latest version
api-change:ds: [botocore] Update ds client to latest version
api-change:devops-guru: [botocore] Update devops-guru client to latest version

1.16.26
api-change:ec2: [botocore] Update ec2 client to latest version

1.16.25
api-change:mediaconvert: [botocore] Update mediaconvert client to latest version
api-change:cloudformation: [botocore] Update cloudformation client to latest version
api-change:appflow: [botocore] Update appflow client to latest version
api-change:fsx: [botocore] Update fsx client to latest version
api-change:stepfunctions: [botocore] Update stepfunctions client to latest version
api-change:timestream-write: [botocore] Update timestream-write client to latest version
api-change:elasticbeanstalk: [botocore] Update elasticbeanstalk client to latest version
api-change:batch: [botocore] Update batch client to latest version
api-change:cloudtrail: [botocore] Update cloudtrail client to latest version
api-change:cognito-idp: [botocore] Update cognito-idp client to latest version
api-change:iotsitewise: [botocore] Update iotsitewise client to latest version
api-change:codebuild: [botocore] Update codebuild client to latest version
api-change:comprehend: [botocore] Update comprehend client to latest version
api-change:quicksight: [botocore] Update quicksight client to latest version
api-change:mwaa: [botocore] Update mwaa client to latest version
api-change:lex-models: [botocore] Update lex-models client to latest version
api-change:gamelift: [botocore] Update gamelift client to latest version

1.16.24
api-change:ec2: [botocore] Update ec2 client to latest version
api-change:translate: [botocore] Update translate client to latest version
api-change:kafka: [botocore] Update kafka client to latest version
api-change:application-insights: [botocore] Update application-insights client to latest version
api-change:glue: [botocore] Update glue client to latest version
api-change:signer: [botocore] Update signer client to latest version
api-change:codestar-connections: [botocore] Update codestar-connections client to latest version
api-change:codeartifact: [botocore] Update codeartifact client to latest version
api-change:elasticache: [botocore] Update elasticache client to latest version
api-change:emr: [botocore] Update emr client to latest version
api-change:forecast: [botocore] Update forecast client to latest version
api-change:iot: [botocore] Update iot client to latest version
api-change:autoscaling: [botocore] Update autoscaling client to latest version
api-change:ecs: [botocore] Update ecs client to latest version
api-change:timestream-query: [botocore] Update timestream-query client to latest version
api-change:sso-admin: [botocore] Update sso-admin client to latest version
api-change:securityhub: [botocore] Update securityhub client to latest version
api-change:lambda: [botocore] Update lambda client to latest version
api-change:outposts: [botocore] Update outposts client to latest version
api-change:license-manager: [botocore] Update license-manager client to latest version
api-change:dynamodb: [botocore] Update dynamodb client to latest version

1.16.23
api-change:servicecatalog-appregistry: [botocore] Update servicecatalog-appregistry client to latest version
api-change:appmesh: [botocore] Update appmesh client to latest version
api-change:kafka: [botocore] Update kafka client to latest version
api-change:macie2: [botocore] Update macie2 client to latest version
api-change:chime: [botocore] Update chime client to latest version
api-change:cloudhsmv2: [botocore] Update cloudhsmv2 client to latest version
api-change:codeguru-reviewer: [botocore] Update codeguru-reviewer client to latest version
api-change:s3: [botocore] Update s3 client to latest version
api-change:cognito-identity: [botocore] Update cognito-identity client to latest version
api-change:connect: [botocore] Update connect client to latest version

1.16.22
api-change:ce: [botocore] Update ce client to latest version
api-change:lex-runtime: [botocore] Update lex-runtime client to latest version
api-change:glue: [botocore] Update glue client to latest version
api-change:lex-models: [botocore] Update lex-models client to latest version
api-change:events: [botocore] Update events client to latest version
api-change:autoscaling: [botocore] Update autoscaling client to latest version
api-change:ds: [botocore] Update ds client to latest version
api-change:kinesisanalyticsv2: [botocore] Update kinesisanalyticsv2 client to latest version
api-change:redshift: [botocore] Update redshift client to latest version
api-change:medialive: [botocore] Update medialive client to latest version
api-change:lambda: [botocore] Update lambda client to latest version

1.16.21
api-change:elasticache: [botocore] Update elasticache client to latest version
api-change:cloudformation: [botocore] Update cloudformation client to latest version
api-change:codebuild: [botocore] Update codebuild client to latest version
bugfix:Retry: [botocore] Fix bug where retries were attempted on any response with an "Error" key.
api-change:ec2: [botocore] Update ec2 client to latest version
api-change:s3control: [botocore] Update s3control client to latest version
api-change:backup: [botocore] Update backup client to latest version
api-change:outposts: [botocore] Update outposts client to latest version

1.16.20
api-change:connect: [botocore] Update connect client to latest version
api-change:chime: [botocore] Update chime client to latest version
api-change:fms: [botocore] Update fms client to latest version
api-change:network-firewall: [botocore] Update network-firewall client to latest version
api-change:rds: [botocore] Update rds client to latest version
api-change:macie2: [botocore] Update macie2 client to latest version

1.16.19
api-change:sagemaker: [botocore] Update sagemaker client to latest version
api-change:iotsitewise: [botocore] Update iotsitewise client to latest version
api-change:dms: [botocore] Update dms client to latest version
api-change:iotsecuretunneling: [botocore] Update iotsecuretunneling client to latest version
api-change:sns: [botocore] Update sns client to latest version
api-change:synthetics: [botocore] Update synthetics client to latest version
api-change:servicecatalog: [botocore] Update servicecatalog client to latest version
api-change:codepipeline: [botocore] Update codepipeline client to latest version
api-change:quicksight: [botocore] Update quicksight client to latest version

1.16.18
api-change:textract: [botocore] Update textract client to latest version
api-change🛡️ [botocore] Update shield client to latest version
api-change:elbv2: [botocore] Update elbv2 client to latest version

1.16.17
api-change:personalize-runtime: [botocore] Update personalize-runtime client to latest version
api-change:servicecatalog-appregistry: [botocore] Update servicecatalog-appregistry client to latest version
api-change:lex-models: [botocore] Update lex-models client to latest version
api-change:polly: [botocore] Update polly client to latest version
api-change:iot: [botocore] Update iot client to latest version
api-change:robomaker: [botocore] Update robomaker client to latest version
api-change:lightsail: [botocore] Update lightsail client to latest version
2021-01-08 11:14:13 +00:00
adam
35aa88384a py-botocore: updated to 1.19.51
1.19.51
api-change:devops-guru: Update devops-guru client to latest version
api-change:codepipeline: Update codepipeline client to latest version
api-change:mediaconvert: Update mediaconvert client to latest version

1.19.50
api-change:autoscaling: Update autoscaling client to latest version
api-change:transfer: Update transfer client to latest version
api-change:autoscaling-plans: Update autoscaling-plans client to latest version

1.19.49
api-change:ce: Update ce client to latest version
api-change:application-autoscaling: Update application-autoscaling client to latest version

1.19.48
api-change:healthlake: Update healthlake client to latest version
api-change:cloudsearch: Update cloudsearch client to latest version

1.19.47
api-change:servicecatalog: Update servicecatalog client to latest version

1.19.46
api-change:macie2: Update macie2 client to latest version
api-change:elasticache: Update elasticache client to latest version

1.19.45
api-change:acm-pca: Update acm-pca client to latest version
api-change:apigatewayv2: Update apigatewayv2 client to latest version

1.19.44
api-change:cloudfront: Update cloudfront client to latest version

1.19.43
api-change:compute-optimizer: Update compute-optimizer client to latest version
api-change:resource-groups: Update resource-groups client to latest version
api-change:dms: Update dms client to latest version

1.19.42
api-change:ssm: Update ssm client to latest version
api-change:iotwireless: Update iotwireless client to latest version
api-change:rds: Update rds client to latest version
api-change:glue: Update glue client to latest version
api-change:ce: Update ce client to latest version
api-change:connect: Update connect client to latest version
api-change:elasticache: Update elasticache client to latest version

1.19.41
api-change:config: Update config client to latest version
api-change:ec2: Update ec2 client to latest version
api-change:glue: Update glue client to latest version
api-change:batch: Update batch client to latest version
api-change:managedblockchain: Update managedblockchain client to latest version
api-change:service-quotas: Update service-quotas client to latest version
api-change:s3: Update s3 client to latest version
api-change:connectparticipant: Update connectparticipant client to latest version
api-change:securityhub: Update securityhub client to latest version
api-change:qldb-session: Update qldb-session client to latest version
api-change:outposts: Update outposts client to latest version
api-change:servicecatalog-appregistry: Update servicecatalog-appregistry client to latest version
api-change:dms: Update dms client to latest version
api-change:apigateway: Update apigateway client to latest version

1.19.40
api-change:rds: Update rds client to latest version
bugfix:SSO: Fixed timestamp format for SSO credential expirations
api-change:personalize-runtime: Update personalize-runtime client to latest version
api-change:ec2: Update ec2 client to latest version

1.19.39
api-change:ec2: Update ec2 client to latest version
api-change:servicecatalog: Update servicecatalog client to latest version
api-change:dlm: Update dlm client to latest version
api-change:kms: Update kms client to latest version
api-change:route53resolver: Update route53resolver client to latest version
api-change:sqs: Update sqs client to latest version
api-change:config: Update config client to latest version
api-change:imagebuilder: Update imagebuilder client to latest version
api-change:route53: Update route53 client to latest version

1.19.38
api-change:ce: Update ce client to latest version
api-change:amp: Update amp client to latest version
api-change:location: Update location client to latest version
api-change:wellarchitected: Update wellarchitected client to latest version
api-change:quicksight: Update quicksight client to latest version

1.19.37
api-change:iotwireless: Update iotwireless client to latest version
api-change:lambda: Update lambda client to latest version
api-change:greengrassv2: Update greengrassv2 client to latest version
api-change:ssm: Update ssm client to latest version
api-change:iotdeviceadvisor: Update iotdeviceadvisor client to latest version
api-change:iot: Update iot client to latest version
api-change:iotanalytics: Update iotanalytics client to latest version
api-change:amp: Update amp client to latest version
api-change:iotfleethub: Update iotfleethub client to latest version

1.19.36
api-change:ec2: Update ec2 client to latest version
api-change:globalaccelerator: Update globalaccelerator client to latest version
api-change:devops-guru: Update devops-guru client to latest version

1.19.35
api-change:guardduty: Update guardduty client to latest version
api-change:iotsitewise: Update iotsitewise client to latest version
api-change:autoscaling: Update autoscaling client to latest version
api-change:cloudwatch: Update cloudwatch client to latest version
api-change:pi: Update pi client to latest version
api-change:cloudtrail: Update cloudtrail client to latest version

1.19.34
api-change:networkmanager: Update networkmanager client to latest version
api-change:kendra: Update kendra client to latest version
api-change:ec2: Update ec2 client to latest version

1.19.33
api-change:globalaccelerator: Update globalaccelerator client to latest version
api-change:ec2: Update ec2 client to latest version
api-change:redshift: Update redshift client to latest version

1.19.32
api-change:ecr: Update ecr client to latest version
api-change:sagemaker: Update sagemaker client to latest version
api-change:kendra: Update kendra client to latest version
api-change:quicksight: Update quicksight client to latest version
api-change:auditmanager: Update auditmanager client to latest version
api-change:sagemaker-runtime: Update sagemaker-runtime client to latest version
api-change:sagemaker-edge: Update sagemaker-edge client to latest version
api-change:forecast: Update forecast client to latest version
api-change:healthlake: Update healthlake client to latest version
api-change:emr-containers: Update emr-containers client to latest version

1.19.31
api-change:dms: Update dms client to latest version
api-change:servicecatalog-appregistry: Update servicecatalog-appregistry client to latest version

1.19.30
api-change:ssm: Update ssm client to latest version
api-change:ec2: Update ec2 client to latest version
api-change:workspaces: Update workspaces client to latest version
api-change:license-manager: Update license-manager client to latest version
api-change:lambda: Update lambda client to latest version
api-change:ds: Update ds client to latest version
api-change:kafka: Update kafka client to latest version
api-change:medialive: Update medialive client to latest version
api-change:rds: Update rds client to latest version

1.19.29
api-change:license-manager: Update license-manager client to latest version
api-change:compute-optimizer: Update compute-optimizer client to latest version
api-change:amplifybackend: Update amplifybackend client to latest version
api-change:batch: Update batch client to latest version

1.19.28
api-change:customer-profiles: Update customer-profiles client to latest version

1.19.27
api-change:sagemaker-featurestore-runtime: Update sagemaker-featurestore-runtime client to latest version
api-change:ecr-public: Update ecr-public client to latest version
api-change:honeycode: Update honeycode client to latest version
api-change:eks: Update eks client to latest version
api-change:amplifybackend: Update amplifybackend client to latest version
api-change:lambda: Update lambda client to latest version
api-change:sagemaker: Update sagemaker client to latest version
api-change:lookoutvision: Update lookoutvision client to latest version
api-change:ec2: Update ec2 client to latest version
api-change:connect: Update connect client to latest version
api-change:connect-contact-lens: Update connect-contact-lens client to latest version
api-change:profile: Update profile client to latest version
api-change:s3: Update s3 client to latest version
api-change:appintegrations: Update appintegrations client to latest version
api-change:ds: Update ds client to latest version
api-change:devops-guru: Update devops-guru client to latest version

1.19.26
api-change:ec2: Update ec2 client to latest version

1.19.25
api-change:mediaconvert: Update mediaconvert client to latest version
api-change:cloudformation: Update cloudformation client to latest version
api-change:appflow: Update appflow client to latest version
api-change:fsx: Update fsx client to latest version
api-change:stepfunctions: Update stepfunctions client to latest version
api-change:timestream-write: Update timestream-write client to latest version
api-change:elasticbeanstalk: Update elasticbeanstalk client to latest version
api-change:batch: Update batch client to latest version
api-change:cloudtrail: Update cloudtrail client to latest version
api-change:cognito-idp: Update cognito-idp client to latest version
api-change:iotsitewise: Update iotsitewise client to latest version
api-change:codebuild: Update codebuild client to latest version
api-change:comprehend: Update comprehend client to latest version
api-change:quicksight: Update quicksight client to latest version
api-change:mwaa: Update mwaa client to latest version
api-change:lex-models: Update lex-models client to latest version
api-change:gamelift: Update gamelift client to latest version

1.19.24
api-change:ec2: Update ec2 client to latest version
api-change:translate: Update translate client to latest version
api-change:kafka: Update kafka client to latest version
api-change:application-insights: Update application-insights client to latest version
api-change:glue: Update glue client to latest version
api-change:signer: Update signer client to latest version
api-change:codestar-connections: Update codestar-connections client to latest version
api-change:codeartifact: Update codeartifact client to latest version
api-change:elasticache: Update elasticache client to latest version
api-change:emr: Update emr client to latest version
api-change:forecast: Update forecast client to latest version
api-change:iot: Update iot client to latest version
api-change:autoscaling: Update autoscaling client to latest version
api-change:ecs: Update ecs client to latest version
api-change:timestream-query: Update timestream-query client to latest version
api-change:sso-admin: Update sso-admin client to latest version
api-change:securityhub: Update securityhub client to latest version
api-change:lambda: Update lambda client to latest version
api-change:outposts: Update outposts client to latest version
api-change:license-manager: Update license-manager client to latest version
api-change:dynamodb: Update dynamodb client to latest version

1.19.23
api-change:servicecatalog-appregistry: Update servicecatalog-appregistry client to latest version
api-change:appmesh: Update appmesh client to latest version
api-change:kafka: Update kafka client to latest version
api-change:macie2: Update macie2 client to latest version
api-change:chime: Update chime client to latest version
api-change:cloudhsmv2: Update cloudhsmv2 client to latest version
api-change:codeguru-reviewer: Update codeguru-reviewer client to latest version
api-change:s3: Update s3 client to latest version
api-change:cognito-identity: Update cognito-identity client to latest version
api-change:connect: Update connect client to latest version

1.19.22
api-change:ce: Update ce client to latest version
api-change:lex-runtime: Update lex-runtime client to latest version
api-change:glue: Update glue client to latest version
api-change:lex-models: Update lex-models client to latest version
api-change:events: Update events client to latest version
api-change:autoscaling: Update autoscaling client to latest version
api-change:ds: Update ds client to latest version
api-change:kinesisanalyticsv2: Update kinesisanalyticsv2 client to latest version
api-change:redshift: Update redshift client to latest version
api-change:medialive: Update medialive client to latest version
api-change:lambda: Update lambda client to latest version

1.19.21
api-change:elasticache: Update elasticache client to latest version
api-change:cloudformation: Update cloudformation client to latest version
api-change:codebuild: Update codebuild client to latest version
bugfix:Retry: Fix bug where retries were attempted on any response with an "Error" key.
api-change:ec2: Update ec2 client to latest version
api-change:s3control: Update s3control client to latest version
api-change:backup: Update backup client to latest version
api-change:outposts: Update outposts client to latest version

1.19.20
api-change:connect: Update connect client to latest version
api-change:chime: Update chime client to latest version
api-change:fms: Update fms client to latest version
api-change:network-firewall: Update network-firewall client to latest version
api-change:rds: Update rds client to latest version
api-change:macie2: Update macie2 client to latest version

1.19.19
api-change:sagemaker: Update sagemaker client to latest version
api-change:iotsitewise: Update iotsitewise client to latest version
api-change:dms: Update dms client to latest version
api-change:iotsecuretunneling: Update iotsecuretunneling client to latest version
api-change:sns: Update sns client to latest version
api-change:synthetics: Update synthetics client to latest version
api-change:servicecatalog: Update servicecatalog client to latest version
api-change:codepipeline: Update codepipeline client to latest version
api-change:quicksight: Update quicksight client to latest version

1.19.18
api-change:textract: Update textract client to latest version
api-change🛡️ Update shield client to latest version
api-change:elbv2: Update elbv2 client to latest version

1.19.17
api-change:personalize-runtime: Update personalize-runtime client to latest version
api-change:servicecatalog-appregistry: Update servicecatalog-appregistry client to latest version
api-change:lex-models: Update lex-models client to latest version
api-change:polly: Update polly client to latest version
api-change:iot: Update iot client to latest version
api-change:robomaker: Update robomaker client to latest version
api-change:lightsail: Update lightsail client to latest version
2021-01-08 11:10:26 +00:00
adam
d50693c5b2 py-pylint-django: updated to 2.4.1
Version 2.4.1
- Relaxed Faker package versioning requirement for ``Faker``
2021-01-08 11:03:58 +00:00
ryoon
3dbb46e8bf doc: Updated www/firefox-l10n to 84.0.2 2021-01-08 09:58:51 +00:00
ryoon
648e3763a3 firefox-l10n: Update to 84.0.2
* Sync with www/firefox-84.0.2.
2021-01-08 09:58:30 +00:00
ryoon
c2d276063b doc: Updated www/firefox to 84.0.2 2021-01-08 09:57:25 +00:00
ryoon
2c59e5c8f3 firefox: Update to 84.0.2
Changelog:
Security fix:
#CVE-2020-16044: Use-after-free write when handling a malicious COOKIE-ECHO SCTP chunk
2021-01-08 09:56:55 +00:00
nia
d1d660a695 musicpd: Bump PKGREVISION for previous 2021-01-08 09:54:31 +00:00
nia
aca837bb30 musicpd: Lower GCC requirement.
This is a build fix for NetBSD/earm...
2021-01-08 09:31:32 +00:00
he
07b7d4f3d1 Update logrotate to version 3.18.0.
Pkgsrc changes:
 * Remove patch integrated upstream.
 * Update checksums.

Upstream changes:

[3.18.0] - 2021-01-08
=====================
  - allow UIDs and GIDs to be specified numerically (#217)
  - add support for Zstandard compressed files (#355)
  - make `delaycompress` not to fail with `rotate 0` (#341)
2021-01-08 08:58:30 +00:00
otis
18526c3cdd socat: Fix build on SmartOS 2021-01-08 08:47:28 +00:00
he
8fcc34582a Note update of sysutils/beats to 6.8.13. 2021-01-08 08:32:54 +00:00
he
40ddb6c761 Update beats to version 6.8.13.
Pkgsrc changes:
 * Update checksums.

Upstream changes:

=== Beats version 6.8.13
===== Added
*Filebeat*
- Add container image in Kubernetes metadata. 13356 12688

=== Beats version 6.8.12
==== Bugfixes
*Filebeat*
- Fix Filebeat OOMs on very long lines {issue}19500[19500], {pull}19552[19552]

=== Beats version 6.8.11
==== Bugfixes
*Metricbeat*
- Fix bug incorrect parsing of float numbers as integers in Couchbase
  module {issue}18949[18949] {pull}19055[19055]

=== Beats version 6.8.10
==== Bugfixes
*Affecting all Beats*
- Fix `add_cloud_metadata` to better support modifying sub-fields
  with other processors. {pull}13808[13808]

=== Beats version 6.8.9
==== Bugfixes
*Heartbeat*
- Fix crashes when multiple TCP ports are specified. {pull}17262[17262]
2021-01-08 08:32:18 +00:00
pin
488d45402b doc: Updated sysutils/broot to 1.1.11 2021-01-08 07:56:45 +00:00
pin
27a2b00972 sysutils/broot: update to 1.1.11
-fix handling of rules starting with '/' in the global gitignore - Fix #321
-alt-c now mapped to the new :copy_line verb which, when in tree, puts the
selected path in the clipboard and, when in text preview, puts the selected text
line in the clipboard - Fix #322
-it's possible to define verb execution patterns as arrays instead of simple
strings, to avoid having to escape quotes - Fix #319
2021-01-08 07:56:23 +00:00
wiz
02b559d243 doc: Updated security/gsasl to 1.10.0 2021-01-07 22:10:01 +00:00
wiz
4de8b0eb15 gsasl: update to 1.10.0.
* Version 1.10.0 (released 2021-01-01) [stable]

** This is a new major stable release.  Brief changes compared to 1.8.x:

*** SCRAM-SHA-256 and SCRAM-SHA-256-PLUS support per RFC 7677.

*** SCRAM supports password-less usage (StoredKey/ServerKey).

*** New 'gsasl --mkpasswd' command to prepare SCRAM salted/hashed passwords.

*** Final warning that obsolete APIs will be removed.

*** Various cleanups, portability and other bug fixes.
See the entries in NEWS and lib/NEWS covering the 1.9.x branch for details.

* Version 1.9.3 (released 2021-01-01) [beta]

** Fix build/portability problems.  GnuTLS >= 3.4 is required.
Thanks to Bruno Haible for reports.

* Version 1.9.2 (released 2020-12-24) [beta]

** gsasl: Don't abort command on some exepected TLS events (for TLS 1.3).
Patch from Enrico Scholz <enrico.scholz@sigma-chemnitz.de> in:
https://lists.gnu.org/archive/html/help-gsasl/2020-08/msg00000.html

** gsasl: Use GnuTLS system trust settings by default for X.509 server
** certificate validation.
Before it was documented behaviour that unless --x509-ca-file was
used, no verification of the server-side certificate was performed.
Now instead it will use the system trust settings, which on properly
configured systems results in verification of the server certificate.
As a result, you may now start to get server certificate verification
errors in situations where you didn't expect them.  Use --x509-ca-file
with the empty string ("") as a file name to use the old behaviour to
not abort on server certificate verification failures.

** SCRAM, GS2 and GSSAPI retrieve properties later in
** the authentication process.
Before the property GSASL_CB_TLS_UNIQUE was retrieved during SCRAM
gsasl_client_start() and gsasl_server_start(), and the properties
GSSAPI_SERVICE and GSSAPI_HOSTNAME was retrived during GS2/GSSAPI
gsasl_server_start().  Now they are retrieved during the first call to
gsasl_step().

The only user-visible impact of this should be that 'gsasl
--client-mechanisms' and 'gsasl --server-mechanisms' will now not
query for parameters before giving a list of supported mechanisms,
which arguable gives a better user experience.  The downside of this
is that SCRAM-*-PLUS, GS2 and GSSAPI may be advertised even though
completing the server mechanism may not complete.

The problem with calling callbacks in the start() function is that the
callback will have no per-session context at that point, only a global
context, so the only way to give per-session unique callback responses
is to use a separate global handle per session.  This was discovered
in the Exim implementation of gsasl with SCRAM that used to request
the GSASL_CB_TLS_UNIQUE property in the start() function.  After
noticing this design issue, and writing this self test, it was
discovered that it also happened for the GSSAPI/GS2 server (not
client) mechanism for the GSASL_SERVICE and GSASL_HOSTNAME properties.

Thanks to Jeremy Harris for noticing the problem and discussion, see
https://lists.gnu.org/archive/html/help-gsasl/2020-01/msg00035.html

** gsasl: The --mkpasswd output format follows Dovecot 'doveadm pw'.

** Filenames of images in the manual are now prefixed with 'gsasl-'.
This makes /usr/share/info more understandable, and it is suggested by
at least Debian to do this in upstream.

** Build changes.
Some more compiler warnings used and code fixed.  Improved ./configure
diagnostics.

* Version 1.9.1 (released 2020-01-14) [beta]

** gsasl: New --mkpasswd argument to prepare salted/hashed passwords.
Currently mechanisms SCRAM-SHA-1 and SCRAM-SHA-256 are supported.  New
parameter --iteration-count to indicate number of PBKDF2 rounds,
default being 65536.  New parameter --salt to specify PBKDF2 salt.

* Version 1.9.0 (released 2020-01-03) [beta]

** Client and server support for SCRAM-SHA-256 and SCRAM-SHA-256-PLUS.

** gsasl: If PORT argument is "587" or "submission", SMTP mode is used.
Further, unrecognized PORT arguments will now on raise an error to
specify --smtp or --imap.
2021-01-07 22:09:52 +00:00
adam
c499f546dc Updated misc/rhash, www/py-pylint-django 2021-01-07 22:03:31 +00:00
adam
70f67a9299 py-pylint-django: updated to 2.4.0
Version 2.4.0
- Allowed configuration of the Django settings module to be used via a
  commandline argument
- If Django settings are not specified via a commandline argument or environment
  variable, an error is issued but defaults are loaded from Django, removing the
  fatal error behaviour.
- Fixed tests to work with pylint>2.6
- Fixed ``AttributeError: 'Subscript' object has no attribute 'name'`` error.
- Pin Faker version to Prevent Asteroid Crash
- Remove Python 3.5 Support (EOL since Sept 2020 and Faker requires 3.6 anyway)
- Fixed reverse manager ``update_or_create`` calls
2021-01-07 22:03:13 +00:00
adam
a421a0f1a3 rhash: updated to 1.4.1
RHash v1.4.1
look for config file at $HOME/.config/rhash/rhashrc
supported --blake2s, --blake2b options for the BLAKE2 hash functions
support --no-detect-by-ext option
speed up verification by detecting hash type from file extension
Bugfix: fix computing of EDON-R 512 by big data chunks
Bugfix: correctly print long paths on Windows
Bugfix: print correct '%{mtime}' when --file-list is specified
Bugfix: only follow symbolic links when --follow is specified
Bugfix: fix buffer overflow in GOST12
2021-01-07 22:00:29 +00:00
wiz
b510a39a1a pysolfc: set EGG_NAME to simplify PLIST 2021-01-07 21:58:08 +00:00
wiz
cacebd738e erfa: fix HOMEPAGE. 2021-01-07 21:42:50 +00:00
leot
c0991f80c7 doc: Updated net/amazon-ecs-cli to 1.21.0 2021-01-07 17:14:14 +00:00
leot
0934610b35 amazon-ecs-cli: Update to version 1.21.0
Changes:
1.21.0
------
 - Add support for container dependencies in ecs-params.yml (#1105)
 - Add support for Arm-based AWS Graviton2 instances on ecs-cli up (#1116)
2021-01-07 17:14:02 +00:00
prlw1
00ee336635 doc: Updated databases/libpqxx to 7.3.0 2021-01-07 16:29:57 +00:00
prlw1
fe70426807 Update libpqxx to 7.3.0
7.3.0
 - `stream_to` now quotes and escapes its table name.
 - Removed `transaction_base::classname()`.  Did anyone ever use it?
 - Internal reorg of the `transaction` and `transactionfocus` hierarchies.
 - Removed the only case of virtual inheritance, related to `namedclass`.
 - Internal `concat()` for faster, simpler string concatentation.
 - Fix compile omission in string conversions for `nullptr_t`.
 - `pqxx::size_buffer()` can now size multiple values at once.
 - `multi_to_string()` to convert multiple values into one `std::string`.
 - Implicit `zview` constructor from `char const *`. (#389)
 - Many `std::string&` parameters are now `zview` or `std::string_view`.
 - Now checking statement parameter lengths for overflow.
 - `#include <array>` in connection.cxx.  (#394)
7.2.1
 - Fix infinite loop in converting `char *` to string. (#377)
 - Deprecated `namedclass`.
 - Convert an entire row using `row::as<type...>()`.
 - Internal rework of `field::to()` and `field::as()` functions.
 - Some more warning options in maintainer mode.
 - Removed the old, DocBook-based tutorial.
 - Fixed wrong `query` and SQLSTATE params to some exceptions. (#378)
2021-01-07 16:29:30 +00:00
taca
b226659e09 doc: Updated lang/php74 to 7.4.14 2021-01-07 13:39:37 +00:00
taca
f84ab5c602 lang/php74: udpate to 7.4.14
Update php74 pacakge to 7.4.14 (PHP 7.4.14).


07 Jan 2021, PHP 7.4.14

- Core:
  . Fixed bug #74558 (Can't rebind closure returned by Closure::fromCallable()).
    (cmb)
  . Fixed bug #80345 (PHPIZE configuration has outdated PHP_RELEASE_VERSION).
    (cmb)
  . Fixed bug #72964 (White space not unfolded for CC/Bcc headers). (cmb)
  . Fixed bug #80362 (Running dtrace scripts can cause php to crash).
    (al at coralnet dot name)
  . Fixed bug #80393 (Build of PHP extension fails due to configuration gap
    with libtool). (kir dot morozov at gmail dot com)
  . Fixed bug #80402 (configure filtering out -lpthread). (Nikita)
  . Fixed bug #77069 (stream filter loses final block of data). (cmb)

- Fileinfo:
  . Fixed bug #77961 (finfo_open crafted magic parsing SIGABRT). (cmb)

- FPM:
  . Fixed bug #69625 (FPM returns 200 status on request without
    SCRIPT_FILENAME env). (Jakub Zelenka)

- Intl:
  . Fixed bug #80425 (MessageFormatAdapter::getArgTypeList redefined). (Nikita)

- OpenSSL:
  . Fixed bug #80368 (OpenSSL extension fails to build against LibreSSL due to
    lack of OCB support). (Nikita)

- Phar:
  . Fixed bug #73809 (Phar Zip parse crash - mmap fail). (cmb)
  . Fixed bug #75102 (`PharData` says invalid checksum for valid tar). (cmb)
  . Fixed bug #77322 (PharData::addEmptyDir('/') Possible integer overflow).
    (cmb)

- PDO MySQL:
  . Fixed bug #80458 (PDOStatement::fetchAll() throws for upsert queries).
    (Kamil Tekiela)
  . Fixed bug #63185 (nextRowset() ignores MySQL errors with native prepared
    statements). (Nikita)
  . Fixed bug #78152 (PDO::exec() - Bad error handling with multiple commands).
    (Nikita)
  . Fixed bug #70066 (Unexpected "Cannot execute queries while other unbuffered
    queries"). (Nikita)
  . Fixed bug #71145 (Multiple statements in init command triggers unbuffered
    query error). (Nikita)
  . Fixed bug #76815 (PDOStatement cannot be GCed/closeCursor-ed when a
    PROCEDURE resultset SIGNAL). (Nikita)

- Standard:
  . Fixed bug #77423 (FILTER_VALIDATE_URL accepts URLs with invalid userinfo).
    (CVE-2020-7071) (cmb)
  . Fixed bug #80366 (Return Value of zend_fstat() not Checked). (sagpant, cmb)
  . Fixed bug #80411 (References to null-serialized object break serialize()).
    (Nikita)

- Tidy:
  . Fixed bug #77594 (ob_tidyhandler is never reset). (cmb)

- Zlib:
  . Fixed #48725 (Support for flushing in zlib stream). (cmb)
2021-01-07 13:39:09 +00:00
taca
2543cf4cc2 doc: Updated lang/php73 to 7.3.26 2021-01-07 13:36:44 +00:00
taca
066bcfe62e lang/php73: update to 7.3.26
Update php73 package to 7.3.26 (PHP 7.3.26).


07 Jan 2021, PHP 7.3.26

- Standard:
  . Fixed bug #77423 (FILTER_VALIDATE_URL accepts URLs with invalid userinfo).
    (CVE-2020-7071) (cmb)
  . Fixed bug #80457 (stream_get_contents() fails with maxlength=-1 or default).
    (bruno dot premont at restena dot lu)
2021-01-07 13:35:02 +00:00
maya
106e6950de doc: Updated games/dMagnetic to 0.29 2021-01-07 11:28:36 +00:00
maya
ecf2b3a418 dMagnetic: update to 0.29.
Provided by maintainer Thomas Dettbarn in PR pkg/55893.

dmagnetic (0.29-1) unstable; urgency=medium

  * AtariXL and Atari800 ATR files are used for playing
  * The new graphic mode UTF has been added
  * More users can enjoy the beautiful pictures now

 -- Thomas Dettbarn <dettus@dettus.net>  Thu, 24 Dec 2020 08:59:34 +0100
2021-01-07 11:28:16 +00:00
prlw1
b26e37dbf2 gstreamer1: GstCheck-1.0.* depend on both the gstcheck and introspection options
Fixes PR pkg/55912
2021-01-07 10:09:06 +00:00
adam
c711237a39 Updated devel/meson, x11/gtk3 2021-01-07 10:02:27 +00:00
adam
cedc3ec153 gtk3: updated to 3.24.24
Overview of Changes in GTK+ 3.24.24
===================================

* GtkColorChooser:
 - Update the default color palette

* GtkFontChooser:
 - Fix family-only mode to return regular style

* GtkTreeView:
 - Don't set focus-on-click for header buttons

* Accessibility:
 - Implement scrollSubstringTo
 - Add a11y support to GtkPlug/GtkSocket

* Printing:
 - Allow the lpr backend to print pdf and ps files

* Theme:
 - Update gesture graphics
 - Update HighContrast css

* Wayland:
 - Support the primary-selection-unstable-v1 protocol

* X11:
 - Fix a crash with parent-relative backgrounds

* Broadway:
 - Set modifier state of scroll events

* Build:
 - Fix pc file generation on NixOS

* OS X:
 - Restore command-key bindings

* Windows:
 - Fix meson build with epoxy subproject

* Translation updates:
 Basque
 Brazilian Portuguese
 British English
 Catalan
 Croatian
 Czech
 French
 Galician
 German
 Greek
 Hebrew
 Hungarian
 Indonesian
 Italian
 Kazakh
 Latvian
 Lithuanian
 Persian
 Polish
 Portuguese
 Slovak
 Slovenian
 Spanish
 Swedish
 Turkish
 Ukrainian
2021-01-07 10:02:01 +00:00
adam
70b86691c5 meson: updated to 0.56.1
0.56.1
Bug fixes
2021-01-07 10:00:52 +00:00
fcambus
618f6436e6 binutils: add upstream fixes for CVE-2020-35448.
From upstream commit log:

PR26574, heap buffer overflow in _bfd_elf_slurp_secondary_reloc_section

A horribly fuzzed object with section headers inside the ELF header.
Disallow that, and crazy reloc sizes.

	PR 26574
	* elfcode.h (elf_object_p): Sanity check section header offset.
	* elf.c (_bfd_elf_slurp_secondary_reloc_section): Sanity check
	sh_entsize.
2021-01-07 09:47:47 +00:00
fcambus
7c23c72a84 Switch to HTTP for cpan.pair.com, the FTP service has been discontinued. 2021-01-07 09:18:31 +00:00