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


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




switch to index mode

recent branches: MAIN (0m)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (153d) 

2024-05-12 16:42:05 UTC Now

2021-02-28 16:14:57 UTC MAIN commitmail json YAML

devel/ruby-redmine-gitmike-theme: switch to use redmine.mk

Switch to use devel/ruby-redmine/redmine.mk.

No PKGREVISION bump since PKGNAME has changed.

(taca)

2021-02-28 16:14:30 UTC MAIN commitmail json YAML

devel/ruby-redmine-minimalflat-theme: switch to use redmine.mk

Switch to use devel/ruby-redmine/redmine.mk.

Reset PKGREVISION since PKGNAME has changed.

(taca)

2021-02-28 16:13:44 UTC MAIN commitmail json YAML

devel/ruby-redmine-gitmike-theme: switch to use redmine.mk

Switch to use devel/ruby-redmine/redmine.mk.

No PKGREVISION bump since PKGNAME has changed.

(taca)

2021-02-28 16:12:52 UTC MAIN commitmail json YAML

devel/ruby-redmine-flatly-light-theme: use redmine.mk

Switch to use devel/ruby-redmine/redmine.mk.

No PKGREVISION bump since PKGNAME has changed.

(taca)

2021-02-28 16:11:12 UTC MAIN commitmail json YAML

meta-pkgs/ruby-redmine-themes: Use redmine.mk

Switch to use devel/ruby-redmine/redmine.mk.

(taca)

2021-02-28 16:10:40 UTC MAIN commitmail json YAML

meta-pkgs/ruby-redmine-plugins: Use redmine.mk

Switch to use devel/ruby-redmine/redmine.mk.

(taca)

2021-02-28 16:08:32 UTC MAIN commitmail json YAML

doc: Renamed devel/ruby-redmine to devel/ruby-redmine40

(taca)

2021-02-28 16:01:06 UTC MAIN commitmail json YAML

devel/ruby-redmine: overhaul package

Overhaul ruby-redmine packge.  It is still 4.0.7, latest 4.0 series.

* Introduce "redmine.mk" to support Redmine 4.1.

  - RM_VERSION_DEFAULT select default Redmine release (40 or 41).
  - RM_VER is set to current Redmine release (40 or 41).

* Now PKGNAME contains ${RM_VER}, such as ruby26-redmine40-4.0.7.

* Update proper gems in this package.

* Remove Gemfile.lock for safety update path.

(taca)

2021-02-28 15:44:21 UTC MAIN commitmail json YAML

doc: Note Ruby on Rails 6.1 packages to 6.1.3

devel/ruby-activesupport61
devel/ruby-activemodel61
devel/ruby-activejob61
www/ruby-actionview61
www/ruby-actionpack61
databases/ruby-activerecord61
devel/ruby-activestorage61
mail/ruby-actionmailer61
mail/ruby-actionmailbox61
www/ruby-actioncable61
devel/ruby-railties61
textproc/ruby-actiontext61
www/ruby-rails61

(taca)

2021-02-28 15:42:41 UTC MAIN commitmail json YAML

www/ruby-rails61: update to 6.1.3

Rails 6.1.3 (February 17, 2021)

[ActionPack]

* Re-define routes when not set correctly via inheritance.

    *John Hawthorn*

[ActiveRecord]

* Fix the MySQL adapter to always set the right collation and charset
  to the connection session.

    *Rafael Mendon巽a Fran巽a*

* Fix MySQL adapter handling of time objects when prepared statements
  are enabled.

    *Rafael Mendon巽a Fran巽a*

* Fix scoping in enum fields using conditions that would generate
  an IN clause.

    *Ryuta Kamizono*

* Skip optimised #exist? query when #include? is called on a relation
  with a having clause

  Relations that have aliased select values AND a having clause that
  references an aliased select value would generate an error when
  #include? was called, due to an optimisation that would generate
  call #exists? on the relation instead, which effectively alters
  the select values of the query (and thus removes the aliased select
  values), but leaves the having clause intact. Because the having
  clause is then referencing an aliased column that is no longer
  present in the simplified query, an ActiveRecord::InvalidStatement
  error was raised.

  An sample query affected by this problem:

    Author.select('COUNT(*) as total_posts', 'authors.*')
          .joins(:posts)
          .group(:id)
          .having('total_posts > 2')
          .include?(Author.first)

  This change adds an addition check to the condition that skips the
  simplified #exists? query, which simply checks for the presence of
  a having clause.

  Fixes #41417

    *Michael Smart*

* Increment postgres prepared statement counter before making a
  prepared statement, so if the statement is aborted without Rails
  knowledge (e.g., if app gets kill -9d during long-running query or
  due to Rack::Timeout), app won't end up in perpetual crash state for
  being inconsistent with Postgres.

    *wbharding*, *Martin Tepper*

(taca)

2021-02-28 15:38:45 UTC MAIN commitmail json YAML

doc: Updated math/ruby-spreadsheet to 1.2.8

(taca)

2021-02-28 15:38:14 UTC MAIN commitmail json YAML

math/ruby-spreadsheet: update to 1.2.8

No release information, but seems to fixed below.

* fix: Worksheet#<< fails when adding the first row

(taca)

2021-02-28 15:22:01 UTC MAIN commitmail json YAML

doc: Updated mail/ruby-mime-types-data to 3.2021.0225

(taca)

2021-02-28 15:21:39 UTC MAIN commitmail json YAML

mail/ruby-mime-types-data: update to 3.2021.0225

3.2021.0225 / 2021-02-25

* Updated the Apache and IANA media registry entries as of release date.
* Added file extension for AVIF video format. #40.

(taca)

2021-02-28 15:14:39 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-regexp_parser to 2.1.1

(taca)

2021-02-28 15:14:18 UTC MAIN commitmail json YAML

devel/ruby-regexp_parser: update to 2.1.1

2.1.1 (2021-02-23)

Fixed

* fixed NameError when requiring only 'regexp_parser/scanner' in v2.1.0
  o thanks to Jared White and Sam Ruby for the report

2.1.0 (2021-02-22)

Added

* common ancestor for all scanning/parsing/lexing errors
  o Regexp::Parser::Error can now be rescued as a catch-all
  o the following errors (and their many descendants) now inherit from it:
- Regexp::Expression::Conditional::TooManyBranches
- Regexp::Parser::ParserError
- Regexp::Scanner::ScannerError
- Regexp::Scanner::ValidationError
- Regexp::Syntax::SyntaxError
  o it replaces ArgumentError in some rare cases
    (Regexp::Parser.parse('?'))
  o thanks to sandstrom for the cue

Fixed

* fixed scanning of whole-pattern recursion calls \g<0> and \g'0'
  o a regression in v2.0.1 had caused them to be scanned as literals
* fixed scanning of some backreference and subexpression call edge cases
  o e.g. \k<+1>, \g<x-1>
* fixed tokenization of some escapes in character sets
  o ., |, {, }, (, ), ^, $, ?, +, *
  o all of these correctly emitted #type :literal and #token :literal if
    not escaped
  o if escaped, they emitted e.g. #type :escape and #token :group_open for
    [\(]
  o the escaped versions now correctly emit #type :escape and #token
    :literal
* fixed handling of control/metacontrol escapes in character sets
  o e.g. [\cX], [\M-\C-X]
  o they were misread as bunch of individual literals, escapes, and ranges
* fixed some cases where calling #dup/#clone on expressions led to shared
  state

(taca)

2021-02-28 15:08:28 UTC MAIN commitmail json YAML

doc: Updated devel/ruby-minitest to 5.14.4

(taca)

2021-02-28 15:08:08 UTC MAIN commitmail json YAML

devel/ruby-minitest: update to 5.14.4

5.14.4 / 2021-02-23

1 bug fix:

* Fixed deprecation warning using stub with methods using keyword
  arguments. (Nakilon)

(taca)

2021-02-28 14:31:05 UTC MAIN commitmail json YAML

(textproc/hs-hscolour) insist on ghc-8.*, fix build

(mef)

2021-02-28 14:27:03 UTC MAIN commitmail json YAML

(net/hs-resolv) insist on ghc-8.*, fix build

(mef)

2021-02-28 14:19:37 UTC MAIN commitmail json YAML

(devel/hs-wizards) insist on ghc-8.*, fix build

(mef)

2021-02-28 14:08:54 UTC MAIN commitmail json YAML

(finance/hs-Decimal) insist on ghc-8.*, fix build

(mef)

2021-02-28 13:59:45 UTC MAIN commitmail json YAML

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

doc/TODO: add some

+ ImageMagick-7.0.11.1, dunst-1.6.1, filezilla-3.52.2, gopls-0.6.6,
  libfilezilla-0.26.0, mono6-6.12.0.122, nss-3.62, ocaml-4.11.2,
  protobuf-3.15.3, py-hypothesis-6.3.4, redis-6.2.0, ugrep-3.1.9.

(wiz)

2021-02-28 13:25:47 UTC MAIN commitmail json YAML

unicorn: set GITHUB_PROJECT so downloads work for all users of this file

(wiz)

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

doc: Updated databases/ruby-awesome_nested_set to 3.4.0

(taca)

2021-02-28 13:21:24 UTC MAIN commitmail json YAML

databases/ruby-awesome_nested_set: update to 3.4.0

3.4.0 (2021-2-22)

* Keep current scope when calling `roots` [Petrik de Heus](https://github.com/p8)

* STI record now can update counter cache correctly [Issei Murasawa](http://github.com/issei-m)

* [Compare to 3.3.1](https://github.com/collectiveidea/awesome_nested_set/compare/v3.3.1...v3.4.0)

(taca)

2021-02-28 13:18:40 UTC MAIN commitmail json YAML

doc: Updated archivers/ruby-mixlib-archive to 1.1.7

(taca)

2021-02-28 13:18:16 UTC MAIN commitmail json YAML

archivers/ruby-mixlib-archive: update to 1.1.7

1.1.7 (2021-02-18)

Merged Pull Requests

* Convert destination to a String #61 (lamont-granquist)

1.1.6 (2021-02-17)

Merged Pull Requests
* Cache gems and test on Ruby 3 #59 (tas50)
* Fix creating archives on windows with a CRLF #60 (lamont-granquist)

(taca)

2021-02-28 11:02:01 UTC MAIN commitmail json YAML

(devel/hs-tagged) Fix build, with ghc88,810,90 binary exist

(mef)

2021-02-28 08:08:38 UTC MAIN commitmail json YAML

surgescript: add buildlink3.mk

(nia)

2021-02-28 08:07:25 UTC MAIN commitmail json YAML

doc: Added lang/surgescript version 0.5.5

(nia)

2021-02-28 08:06:52 UTC MAIN commitmail json YAML

2021-02-28 07:36:51 UTC MAIN commitmail json YAML

doc: Added games/abbayedesmorts version 2.0.1

(nia)

2021-02-28 07:36:15 UTC MAIN commitmail json YAML

games: add abbayedesmorts.

Cross-platform port of the indie game l'Abbaye des Morts.

In the 13th century, the Cathars, clerics who preached about the poverty of
Christ and defended life without material aspirations, were treated as
heretics by the Catholic Church and expelled out of the Languedoc region in
France. One of them, called Jean Raymond, found an old church in which to
hide from crusaders, not knowing that beneath its ruins lay buried an ancient
evil.

l'Abbaye des Morts has been inspired by the tragic history of the Cathars
and platform games for ZX Spectrum computers like Manic Miner, Jet Set Willy
or Dynamite Dan.

Faith will be your only weapon in this platformer styled like a ZX Spectrum
game. Black backgrounds, 1 color sprites and 1 bit sounds are a proper fit
for a raw story. The lack of details turn on the player's imagination,
creating a unique experience for each player.

(nia)

2021-02-28 01:47:48 UTC MAIN commitmail json YAML

doc: Updated devel/hs-tagged to 0.8.6.1

(mef)

2021-02-28 01:47:36 UTC MAIN commitmail json YAML

(devel/hs-tagged) Updated to 0.8.6.1, Changelog unknown, sorry

Drop patch-tagged.cabel. Fix build with ghc88, ghc810, ghc90 may exist
on the tree.

(mef)

2021-02-28 00:24:34 UTC MAIN commitmail json YAML

Note update of vim

(morr)

2021-02-28 00:23:37 UTC MAIN commitmail json YAML

update to version 8.2.2557.

Changes:
8.2.2128  there is no way to do something on CTRL-Z
8.2.2129  MS-Windows: Checking if a file name is absolute is slow
8.2.2130  Insert mode completion messages end up in message history
8.2.2131  Vim9: crash when lambda uses same var as assignment
8.2.2132  padding not drawn properly for popup window with title
8.2.2133  Vim9: checking for a non-empty string is too strict
8.2.2134  Vim9: get E1099 when autocmd triggered in builtin function
8.2.2135  Vim9: #{ still seen as start of dict in some places
8.2.2136  Vim9: Using uninitialized variable
8.2.2137  Vim9: :echo and :execute give error for empty argument
8.2.2138  Vim9: "exit_cb" causes Vim to exit
8.2.2139  Vim9: unreachable code in assignment
8.2.2140  build failure with tiny features
8.2.2141  user command with try/catch may not catch an expression error
8.2.2142  memory leak when heredoc is not terminated
8.2.2143  Vim9: dead code in compiling :unlet
8.2.2144  Vim9: some corner cases not tested
8.2.2145  Vim9: concatenating lists does not adjust type of result
8.2.2146  Vim9: automatic conversion of number to string for dict key
8.2.2147  quickfix window title not updated in all tab pages
8.2.2148  Vim9: crash when user command doesn't match
8.2.2149  popupwin test for latin1 sometimes fails
8.2.2150  Github actions CI isn't used for all available platforms
8.2.2151  $dir not expanded when configure checks for moonjit
8.2.2152  screenpos() does not include the WinBar offset
8.2.2153  popupwin test for latin1 still fails sometimes
8.2.2154  popupwin test for terminal buffer fails sometimes
8.2.2155  warning from Github actions for code analysis
8.2.2156  Github actions run on pusing a tag
8.2.2157  Vim9: can delete a Vim9 script variable from a function
8.2.2158  CI on cirrus times out, coveralls doesn't always run
8.2.2159  Vim9: when declaring a list it is not allocated yet
8.2.2160  various typos
8.2.2161  arguments -T and -x not tested yet
8.2.2162  Vim9: Cannot load or store autoload variables
8.2.2163  crash when discarded exception is the current exception
8.2.2164  Vim9: autoload function doesn't work in uppercased script
8.2.2165  Vim9: assignment to dict member does not work
8.2.2166  auto format doesn't work when deleting text
8.2.2167  Vim9: assign test fails
8.2.2168  Vim9: error for assigning to dict of dict
8.2.2169  Vim9: test leaves file behind
8.2.2170  Vim9: a global function defined in a :def function fails
8.2.2171  valgrind warning for using uninitialized value
8.2.2172  Vim9: number of arguments is not always checked
8.2.2173  Vim9: get internal error when assigning to undefined variable
8.2.2174  Mac version doesn't specify the CPU architecture
8.2.2175  github actions: clang-11 handling suboptimal
8.2.2176  crash with a sequence of fold commands
8.2.2177  pattern "^" does not match if first character is combining
8.2.2178  Python 3: non-utf8 character cannot be handled
8.2.2179  Vim9: crash when indexing a dict with a number
8.2.2180  Vim9: test for error after error is flaky
8.2.2181  valgrind warnings for using uninitialized value
8.2.2182  Vim9: value of 'magic' is still relevant
8.2.2183  Vim9: value of 'edcompatible' and 'gdefault' are used
8.2.2184  Vim9: no error when using "2" for a line number
8.2.2185  BufUnload is not triggered for the quickfix dummy buffer
8.2.2186  Vim9: error when using 'opfunc'
8.2.2187  Python 3 test fails sometimes
8.2.2188  Vim9: crash when calling global function from :def function
8.2.2189  cannot repeat a command that uses the small delete register
8.2.2190  Vim9: crash when compiled with EXITFREE
8.2.2191  Vim9: using wrong name with lambda in nested function
8.2.2192  Codecov on github actions fails
8.2.2193  Vim9: can change constant in :def function
8.2.2194  Vim9: cannot use :const or :final at the script level
8.2.2195  failing tests for :const
8.2.2196  :version output has extra spaces in compile and link command
8.2.2197  assert arguments order reversed
8.2.2198  ml_get error when resizing window and using text property
8.2.2199  first write after setting 'eol' does not have NL added
8.2.2200  Vim9: lambda without white space around -&gt; is confusing
8.2.2201  write file test fails on MS-Windows
8.2.2202  write file test still fails on MS-Windows
8.2.2203  Moodle gift files are not recognized
8.2.2204  Vim9: using -&gt; both for method and lambda is confusing
8.2.2205  Vim9: memory leak when parsing lambda fails
8.2.2206  :exe command line completion only works for first argument
8.2.2207  illegal memory access if popup menu items are changed
8.2.2208  Vim9: after reloading a script variable index may be invalid
8.2.2209  Vim9: return type of =&gt; lambda not parsed
8.2.2210  Vim9: allocating a type to set TTFLAG_BOOL_OK
8.2.2211  MS-Windows: can't load Python dll if not in the path
8.2.2212  Vim9: lambda with =&gt; does not work at the script level
8.2.2213  checking white space around -&gt; is not backwards compatible
8.2.2214  ":e#" does not give a warning for missing white space
8.2.2215  Vim9: `=expr` not recognized in global command
8.2.2216  Vim9: range with missing colon can be hard to spot
8.2.2217  Vim9: command modifiers not restored in catch block
8.2.2218  Vim9: failure if passing more args to lambda than expected
8.2.2219  Vim9: method call with expression not supported
8.2.2220  Vim9: memory leak when parsing nested parenthesis
8.2.2221  if &lt;Down&gt; is mapped on the command line 'wildchar' is inserted
8.2.2222  Vim9: cannot keep script variables when reloading
8.2.2223  Vim9: Reloading marks a :def function as deleted
8.2.2224  Vim9: crash if script reloaded with different variable type
8.2.2225  Vim9: error when using :import in legacy script twice
8.2.2226  Vim9: script test fails
8.2.2227  Vim9: recognizing lambda is too complicated
8.2.2228  Vim9: cannot use ":e #" because # starts a comment
8.2.2229  build failure without the +eval feature
8.2.2230  Vim9: insert completion runs into error
8.2.2231  when "--remote file" is used "file" is not reloaded
8.2.2232  compiler error for falling through into next case
8.2.2233  cannot convert a byte index into a character index
8.2.2234  command line wildmenu test often fails with Unix GUI
8.2.2235  build failure with some Ruby versions
8.2.2236  'scroll' option can change when setting the statusline
8.2.2237  CI on Mac fails in sed command
8.2.2238  Vim9: cannot load a Vim9 script without the +eval feature
8.2.2239  Vim9: concatenating lines with backslash is inconvenient
8.2.2240  clientserver test fails if full path is used
8.2.2241  Build with Ruby and clang may fail
8.2.2242  Vim9: bar line continuation does not work at script level
8.2.2243  crash when popup mask contains zeroes
8.2.2244  crash when making the window width negative
8.2.2245  Vim9: return value of winrestcmd() cannot be executed
8.2.2246  cursor keys not recognized at the hit-Enter prompt
8.2.2247  VMS: various smaller problems
8.2.2248  ASAN error on exit with GUI
8.2.2249  termcodes test is flaky when used over ssh
8.2.2250  Vim9: sublist is ambiguous
8.2.2251  test failures in legacy script
8.2.2252  Vim9: crash when using lambda without return type in dict
8.2.2253  Vim9: expr test fails
8.2.2254  Vim9: bool option type is number
8.2.2255  Tcl test fails
8.2.2256  Vim9: cannot use function( after line break in :def function
8.2.2257  Vim9: using -&gt; for lambda is ambiguous
8.2.2258  not all OCaml related files are detected
8.2.2259  Test_Executable() fails when using chroot
8.2.2260  window resize test fails in very wide terminal
8.2.2261  Vim9: boolean option gets string type
8.2.2262  Vim9: converting bool to string prefixes v:
8.2.2263  Vim9: compilation error with try-catch in skipped block
8.2.2264  Vim9: no error for mismatched :endfunc or :enddef
8.2.2265  error message for missing endfunc/enddef is last line
8.2.2266  Vim9: it can be hard to see where white space is missing
8.2.2267  Vim9: cannot use unlet for a dict member
8.2.2268  Vim9: list unpack seen as declaration
8.2.2269  not all :hardcopy code covered by tests
8.2.2270  warning for size_t to int conversion
8.2.2271  ml_get error when changing hidden buffer in Python
8.2.2272  Vim9: extend() can violate the type of a variable
8.2.2273  build failure
8.2.2274  badge for Travis is outdated
8.2.2275  CTRL-C not recognized in Mintty
8.2.2276  list of distributed files is outdated
8.2.2277  missing backslash
8.2.2278  falling back to old regexp engine can some patterns
8.2.2279  Vim9: memory leak with catch in skipped block
8.2.2280  fuzzy matching doesn't give access to the scores
8.2.2281  Vim9: compiled "wincmd" cannot be followed by bar
8.2.2282  length check mismatch with argument of strncmp()
8.2.2283  Vim9: crash when lambda has fewer arguments than expected
8.2.2284  Vim9: cannot set an option to a boolean value
8.2.2285  Vim9: cannot set an option to a false
8.2.2286  sort test fails when locale is Canadian English
8.2.2287  sort test fails when locale is French Canadian
8.2.2288  Vim9: line break and comment not always skipped
8.2.2289  Vim9: 'cpo' can become empty
8.2.2290  Vim9: unlet of global variable cannot be compiled
8.2.2291  Vim9: cannot use "null" for v:null
8.2.2292  Vim: expr test fails
8.2.2293  build failure with Motif
8.2.2294  VMS: a few remaining problems
8.2.2295  incsearch does not detect empty pattern properly
8.2.2296  cannot use CTRL-N and CTRL-P in a popup menu
8.2.2297  Vim9: cannot set 'number' to a boolean value
8.2.2298  Vim9: comment right after "(" of function not recognized
8.2.2299  Vim9: invalid memory access making error message flaky
8.2.2300  Vim9: wrong order on type stack when using dict
8.2.2301  Vim9: cannot unlet a dict or list item
8.2.2302  Vim9: using an option value may use uninitialized memory
8.2.2303  Vim9: backtick expansion doesn't work for :foldopen
8.2.2304  Vim9: no test for unletting an imported variable
8.2.2305  Vim9: "++var" and "--var" are silently accepted
8.2.2306  Vim9: when using function reference type is not checked
8.2.2307  a shell command in the vimrc causes terminal output
8.2.2308  Vim9: no error when assigning lambda to funcref
8.2.2309  0o777 not recognized as octal
8.2.2310  Vim9: winsaveview() return type is too generic
8.2.2311  Vim9: cannot assign to variable that shadows command modifier
8.2.2312  build failure with Ruby 3.0 and 32 bits
8.2.2313  Vim9: using uninitialized field when parsing range
8.2.2314  Vim9: returning zero takes two instructions
8.2.2315  Vim9: "enddef" as dict key misintepreted as function end
8.2.2316  Vim9: cannot list a lambda function
8.2.2317  Vim9: command modifier before list unpack doesn't work
8.2.2318  Vim9: string and list index work differently
8.2.2319  "exptype_T" can be read as "expected type"
8.2.2320  Vim9: no error for comparing bool with string
8.2.2321  Vim9: cannot nest closures
8.2.2322  Vim9: closure nested limiting to one level
8.2.2323  Vim9: error when inferring type from empty dict/list
8.2.2324  not easy to get mark en cursor position by character count
8.2.2325  Vim9: crash if map() changes the item type
8.2.2326  build error with +eval feature but without +spell
8.2.2327  debugging code included
8.2.2328  some test files may not be deleted
8.2.2329  not all ways Vim can be started are tested
8.2.2330  Vim9: crash when using :trow in a not executed block
8.2.2331  Vim9: wrong error when modifying dict declared with :final
8.2.2332  Vim9: missing :endif not reported when using :windo
8.2.2333  Vim9: warning for uninitialized variable
8.2.2334  Pascal-like filetypes not always detected
8.2.2335  Vim9: "silent return" does not restore command modifiers
8.2.2336  Vim9: not possible to extend dictionary with different type
8.2.2337  configure test for GTK only says "no"
8.2.2338  Vim9: no error if using job_info() result wrongly
8.2.2339  cannot get the type of a value as a string
8.2.2340  win_execute() unexpectedly returns number zero when failing
8.2.2341  expression command line completion incomplete after "g:"
8.2.2342  "char" functions may return wrong column in Insert mode
8.2.2343  Vim9: return type of readfile() is any
8.2.2344  using inclusive index for slice is not always desired
8.2.2345  no focus events in a terminal
8.2.2346  Codecov reports every little coverage drop
8.2.2347  build failure without GUI
8.2.2348  no check for modified files after focus gained
8.2.2349  Vim9: cannot handle line break after parenthesis at line end
8.2.2350  using "void" for no reason
8.2.2351  Vim9: error msg for "throw" in function called with "silent!"
8.2.2352  if focus lost/gained is received twice code is not ignored
8.2.2353  spartql files are not detected
8.2.2354  crash with a weird combination of autocommands
8.2.2355  stray test failure on Appveyor
8.2.2356  Vim9: ":put =expr" does not handle a list properly
8.2.2357  Vim9: crash when parsing function return type fails
8.2.2358  wrong #ifdef for use_xterm_like_mouse()
8.2.2359  strange test failure with MS-Windows
8.2.2360  test leaves file behind
8.2.2361  Vim9: no highlight for "s///gc" when using 'opfunc'
8.2.2362  Vim9: check of builtin function argument type is incomplete
8.2.2363  curpos() does not accept a string argument as before
8.2.2364  Vim9: line break in lambda accesses freed memory
8.2.2365  Vim9: no check for map() changing item type at script level
8.2.2366  when using ":sleep" the cursor is always displayed
8.2.2367  test failures on some less often used systems
8.2.2368  insufficient tests for setting options
8.2.2369  Vim9: functions return true/false but can't be used as bool
8.2.2370  Vim9: command fails in catch block
8.2.2371  Vim9: crash when using types in :for with unpack
8.2.2372  confusing error message for wrong :let command
8.2.2373  Vim9: list assignment only accepts a number index
8.2.2374  accessing uninitialized memory in test_undo
8.2.2375  test for RGB color skipped in the terminal
8.2.2376  Vim9: crash when dividing by zero in compiled code
8.2.2377  Vim9: crash when using a range after another expression
8.2.2378  Vim9: no error message for dividing by zero
8.2.2379  do spell suggestions twice if 'spellsuggest' contains number
8.2.2380  Vim9: occasional crash when using try/catch and a timer
8.2.2381  Vim9: divide by zero does not abort expression execution
8.2.2382  build failure
8.2.2383  focus escape sequences are not named
8.2.2384  turtle filetype not recognized
8.2.2385  "gj" and "gk" do not work correctly when inside a fold
8.2.2386  Vim9: crash when using ":silent! put"
8.2.2387  runtime type check does not mention argument index
8.2.2388  no easy way to get the maximum or mininum number value
8.2.2389  test failure on a few systems
8.2.2390  Vim9: using positive offset is unexpected
8.2.2391  memory leak when creating a global function with closure
8.2.2392  fennel filetype not recognized
8.2.2393  Vim9: error message when script line starts with "[{"
8.2.2394  Vim9: min() and max() return type is "any"
8.2.2395  Vim9: error for wrong type may report wrong line number
8.2.2396  Vim9: no white space allowed before "-&gt;"
8.2.2397  Vim9: "%%" not seen as alternate file name for ":bdel"
8.2.2398  method test fails
8.2.2399  fold test fails in wide terminal
8.2.2400  Vim9: compiled functions are not profiled
8.2.2401  build fails without +profiling feature
8.2.2402  some filetypes not detected
8.2.2403  Vim9: profiling if/elseif/endif not correct
8.2.2404  Vim9: profiling try/catch not correct
8.2.2405  Vim9: no need to allow white space before "(" for :def
8.2.2406  Vim9: profiled :def function leaks memory
8.2.2407  old jumplist code is never used
8.2.2408  MinGW: "--preprocessor" flag no longer supported
8.2.2409  Vim9: profiling only works for one function
8.2.2410  build failure without the +profiling feature
8.2.2411  profile test fails on MS-Windows
8.2.2412  not all fields in "cstack" are initialized
8.2.2413  crash when using :all while using a cmdline window
8.2.2414  using freed memory when closing the cmdline window
8.2.2415  no way to check for the cmdwin feature
8.2.2416  may get stuck in command line window state
8.2.2417  condition stack values may be used when not set
8.2.2418  color not changed if ModeMsg highlight is set in InsertEnter
8.2.2419  autocmd test was failing on MS-Windows with GUI
8.2.2420  too many problems with using all autocommand events
8.2.2421  double free when using autocommand with "argdel"
8.2.2422  crash when deleting with line number out of range
8.2.2423  missing error message
8.2.2424  some tests are known to cause an error with ASAN
8.2.2425  cursor on invalid line with range and :substitute
8.2.2426  allowing 'completefunc' to switch windows causes trouble
8.2.2427  can still switch windows for 'completefunc'
8.2.2428  FocusGained does not work when 'ttymouse' is empty
8.2.2429  :goto does not work correctly with text properties
8.2.2430  :vimgrep expands wildcards twice
8.2.2431  warning for -fno-strength-reduce with Clang 11
8.2.2432  libvterm tests are executed even when libtool doesn't work
8.2.2433  opening cmdline window gives error in BufLeave autocommand
8.2.2434  Vim9: no error when compiling str2nr() with a number
8.2.2435  setline() gives an error for some types
8.2.2436  Vim9 script test is a bit flaky
8.2.2437  deprecation warnings with default configuration
8.2.2438  out of bounds compiler warning
8.2.2439  not easy to figure out what packages to get
8.2.2440  documentation based on patches is outdated
8.2.2441  Vim9: extend() does not give an error for a type mismatch
8.2.2442  automatic GUI selection does not check for GTK 3
8.2.2443  Vim9: no compile time error for wrong str2float argument
8.2.2444  Vim9: compile error with combination of operator and list
8.2.2445  Vim9: no proper error for lambda missing return type
8.2.2446  setting 'term' empty has different error if compiled with GUI
8.2.2447  'foldlevel' not applied to folds restored from session
8.2.2448  compilation error with Ruby 3.0
8.2.2449  Vim9: flatten() always changes the list type
8.2.2450  MS-Windows: ADS was not preserved if 'backupcopy' is "yes"
8.2.2451  MS-Windows: Extended Attributes not preserved
8.2.2452  no completion for the 'filetype' option
8.2.2453  Vim9: a variable name with "-&gt;" in the next line doesn't work
8.2.2454  leading space can not be made visible
8.2.2455  Vim9: key type for literal dict and indexing is inconsistent
8.2.2456  Coverity warning for strcpy() into fixed size array
8.2.2457  Coverity warns for memory leak
8.2.2458  Coverity warns for :retab using freed memory
8.2.2459  Coverity reports dead code
8.2.2460  Coverity warns for unused value
8.2.2461  Coverity warns for unchecked return value
8.2.2462  Coverity warns for not checking for fseek() error
8.2.2463  using :arglocal in an autocommand may use freed memory
8.2.2464  using freed memory if window closed in autocommand
8.2.2465  using freed memory in :psearch
8.2.2466  max() and min() can give many error messages
8.2.2467  script generated by :mkview changes alternate file
8.2.2468  not easy to get the full command name from a shortened one
8.2.2469  confusing error if :winsize has a wrong argument
8.2.2470  popup_getoptions() does not get textprop from other tab
8.2.2471  popup_setoptions() does not set textprop in other tab
8.2.2472  crash when using command line window in an autocommand
8.2.2473  crash when leaving command line window triggers autocommand
8.2.2474  using freed memory when window is closed by autocommand
8.2.2475  autocommand tests hangs on MS-Windows
8.2.2476  using freed memory when splitting window while closing buffer
8.2.2477  autocommand tests hang on MS-Windows
8.2.2478  MS-Windows: backup files for plugins are loaded
8.2.2479  set/getbufline test fails without the job feature
8.2.2480  Vim9: some errors for white space do not show context
8.2.2481  Vim9: confusing error when variable arguments have default
8.2.2482  build error
8.2.2483  Vim9: type error for misformed expression
8.2.2484  Vim9: Cannot use a comment starting with #{
8.2.2485  when sourcing a script again the script version isn't reset
8.2.2486  Vim9: some errors for white space do not show context
8.2.2487  terminal shows garbage after double-wide character
8.2.2488  json_encode() gives generic argument error
8.2.2489  current buffer is wrong after deletebufline() fails
8.2.2490  'wrap' option is always reset when starting diff mode
8.2.2491  popup window for text property may show in first screen line
8.2.2492  command line buffer name cannot be translated
8.2.2493  text property for text left of window shows up
8.2.2494  ":rviminfo!" clears most of oldfiles
8.2.2495  text jumps up and down when moving the cursor
8.2.2496  insufficien testing for text jumping fix
8.2.2497  no error when using more than one character for a register
8.2.2498  no test for what 8.2.2494 fixes
8.2.2499  "vim -g --version" does not redirect output
8.2.2500  build fails without the GUI feature
8.2.2501  not always clear where an error is reported
8.2.2502  a few github actions are failing
8.2.2503  Vim9: a caught error may leave something on the stack
8.2.2504  Vim9: crash when using an argument from a closure
8.2.2505  Vim9: crash after defining function with invalid return type
8.2.2506  Vim9: :continue does not work correctly in a :try block
8.2.2507  github build may fail if Ubuntu 20.04 is used
8.2.2508  cannot change the character displayed in non existing lines
8.2.2509  tests fail on s390 build
8.2.2510  internal error when popup with mask is zero height or width
8.2.2511  Vim9: cannot use Vim9 script syntax in some places
8.2.2512  Vim9: compiling error test sometimes fails
8.2.2513  Vim9: missing part of :vim9cmd change
8.2.2514  Vim9: build error in tiny version
8.2.2515  memory access error when truncating an empty message
8.2.2516  test failure on s390
8.2.2517  Vim9: fix for s390 not tested on other systems
8.2.2518  'listchars' should be window-local
8.2.2519  Vim9: no reason to keep strange Vi behavior
8.2.2520  missing tests for 'listchars'
8.2.2521  some compilers can't handle pointer initialization
8.2.2522  Beancount filetype not recognized
8.2.2523  Svelte filetype not recognized
8.2.2524  cannot change the characters displayed in the foldcolumn
8.2.2525  Vim9: only local variables checked for a name
8.2.2526  build failure
8.2.2527  Vim9: lambda return type is not determined at script level
8.2.2528  Vim9: crash when compiling lambda fails
8.2.2529  Vim9: Not possible to use legacy and Vim9 script in one file
8.2.2530  Vim9: not enough testing for profiling
8.2.2531  Vim9: the :k command is obscure
8.2.2532  Vim9: confusing error if :k is used with a range
8.2.2533  Vim9: cannot use a range with :unlet
8.2.2534  missing test coverage
8.2.2535  MS-Windows: cannot run all vim9 tests
8.2.2536  Coverity complains about unchecked return value
8.2.2537  Vim9: crash when map() fails
8.2.2538  crash when using Python list iterator
8.2.2539  Vim9: return from finally block causes a hang
8.2.2540  Vim9: no error for using script var name for argument
8.2.2541  popup_create() does not allow boolean for "cursorline"
8.2.2542  highlight of char beyond line end is not correct
8.2.2543  Vim9: a return inside try/catch does not restore properly
8.2.2544  Vim9: error for argument when checking for lambda
8.2.2545  errors and crash when terminal window is zero height
8.2.2546  typo in mouse key name
8.2.2547  "%" command not accurate for big files
8.2.2548  may get stuck in the cmdline window using :normal
8.2.2549  crash after using "g:" in a for loop
8.2.2550  signal stack size is wrong with latest glibc 2.34
8.2.2551  MS-Windows: colors test file is not installed
8.2.2552  Vim9: no reason to consider "{{{{{{{{" a command
8.2.2553  Vim9: Cannot put "|" after "{"
8.2.2554  Vim9: exporting a final is not tested
8.2.2555  Vim9: missing test for 8.2.2553
8.2.2556  Vim9: :import with "as" not fully supported
8.2.2557  compiler warning for shadowd variable

(morr)

2021-02-28 00:06:44 UTC MAIN commitmail json YAML

Note update of www/wordpress

(morr)

2021-02-28 00:04:11 UTC MAIN commitmail json YAML

Update to version 5.6.2.

Changes:

5.6.2:
This maintenance release features 5 bug fixes. These bugs affect WordPress version 5.6.1.

WordPress Core changes on Trac:
- #52440: Prevent the "Leave site" browser alert in Classic Editor when post title, excerpt, or post content fields are missing.
- #52018: Avoid a fatal error in PHP 8.0 when the "zip" PHP extension is disabled.

Block editor changes from GitHub and Trac:

- #52396: Image options are not visible in pop up when the clicking replace button from Image block.
- #52449: Can't change font size the 5.6.1 paragraph block.
- GH-26583: Restore block preview within the block inserter.

5.6.1:
This maintenance release features 20 bug fixes as well as 7 issues fixed on the block editor. These bugs affect WordPress version 5.6

WordPress Core changes on Trac:

- #51056: Fetch_feed parsing of permalinks triggers simplepie preg_match warnings
- #52327: Requested updates to the PHP Update Alert
- #51940: The schema for the taxonomy property of a term in the REST API should not include all taxonomies
- #51980: App Passwords: 窶連dd New Application Password窶� submit button is hidden on mobile devices in 窶篭ser Profile窶� page
- #51995: WordPress 5.6: Classic editor menu is not sticky
- #52003: Undefined index: PHP_AUTH_PW /wp-includes/user.php on line 469
- #52013: Duplicate wp_authorize_application_password_form actions
- #52030: Media metaboxes return fatal error if no author metadata present
- #52038: Issue in WooCommerce with wp_editor() after update to WP 5.6
- #52046: The Distraction Free Writing setting on the old Edit Post screen may be reset after page reload
- #52065: Media gallery: 窶連lign窶� and 窶廊ink To窶� fields missing from 窶露nsert from URL窶�
- #52066: Application Passwords are unusable in combination with password protected /wp-admin
- #52075: Word Count on Classic Editor doesn窶冲 update in real time on Firefox unless saved
- #52097: Site Health Loopback Test doesn窶冲 send admin cookies
- #52135: False positive on `WP_Site_Health_Auto_Updates`
- #52196: wp_get_attachment_metadata() is broken if no first argument is passed in.
- #52205: REST API: Plugins Controller single plugin route fatal errors on multisite
- #52299: Exported user data can be listed with directory listing
- #52351: missing echo function for translate method
- #52391: Gutenberg Updates for 5.6.1

Block editor changes from GitHub:

- #27970: Fix editor crash when registering a block pattern without categories
- #27733: Embed block: Add html and reusable support back
- #27727: Add aria labels to box control component inputs/button
- #27627: HTML Block: Fix editor styles
- #27526: Core Data: Normalize _fields value for use in stableKey
- #26705: Fix: Font size picker does not correctly handles big font sizes.
- #26432: Edit Site: prevent inserter overscroll

(morr)

2021-02-27 23:47:59 UTC MAIN commitmail json YAML

py-tifffile: not for python2.7

(markd)

2021-02-27 23:43:40 UTC MAIN commitmail json YAML

tex-latex-bin-doc: commit distinfo for previous update.

(markd)

2021-02-27 21:09:56 UTC MAIN commitmail json YAML

doc: Added misc/catpoint version 0.2

(leot)

2021-02-27 21:09:40 UTC MAIN commitmail json YAML

misc/catpoint: import catpoint-0.2

Catpoint is a simple viewer of text files written in curses.

(leot)

2021-02-27 21:05:25 UTC MAIN commitmail json YAML

doc: Updated net/youtube-dl to 20210222

(leot)

2021-02-27 21:05:16 UTC MAIN commitmail json YAML

youtube-dl: Update to 20210222

Changes:
20210222
--------
Core
+ [postprocessor/embedthumbnail] Recognize atomicparsley binary in lowercase
  (#28112)

Extractors
* [apa] Fix and improve extraction (#27750)
+ [youporn] Extract duration (#28019)
+ [peertube] Add support for canard.tube (#28190)
* [youtube] Fixup m4a_dash formats (#28165)
+ [samplefocus] Add support for samplefocus.com (#27763)
+ [vimeo] Add support for unlisted video source format extraction
* [viki] Improve extraction (#26522, #28203)
    * Extract uploader URL and episode number
    * Report login required error
    + Extract 480p formats
    * Fix API v4 calls
* [ninegag] Unescape title (#28201)
* [youtube] Improve URL regular expression (#28193)
+ [youtube] Add support for redirect.invidious.io (#28193)
+ [dplay] Add support for de.hgtv.com (#28182)
+ [dplay] Add support for discoveryplus.com (#24698)
+ [simplecast] Add support for simplecast.com (#24107)
* [youtube] Fix uploader extraction in flat playlist mode (#28045)
* [yandexmusic:playlist] Request missing tracks in chunks (#27355, #28184)
+ [storyfire] Add support for storyfire.com (#25628, #26349)
+ [zhihu] Add support for zhihu.com (#28177)
* [youtube] Fix controversial videos when authenticated with cookies (#28174)
* [ccma] Fix timestamp parsing in python 2
+ [videopress] Add support for video.wordpress.com
* [kakao] Improve info extraction and detect geo restriction (#26577)
* [xboxclips] Fix extraction (#27151)
* [ard] Improve formats extraction (#28155)
+ [canvas] Add support for dagelijksekost.een.be (#28119)

(leot)

2021-02-27 20:58:27 UTC MAIN commitmail json YAML

unit: Adjust package naming, no functional changes.

- Adjust package names
- Check for embedded PHP support in unit-php build.

(otis)

2021-02-27 20:14:22 UTC MAIN commitmail json YAML

doc: Updated inputmethod/libime to 1.0.4

(ryoon)

2021-02-27 20:14:02 UTC MAIN commitmail json YAML

libime: Update to 1.0.4

Changelog:
* Improve BSD support.
* Improve auto select.
* Fix validations.

(ryoon)

2021-02-27 20:10:55 UTC MAIN commitmail json YAML

doc: Updated inputmethod/fcitx5-skk to 5.0.4

(ryoon)

2021-02-27 20:10:32 UTC MAIN commitmail json YAML

fcitx5-skk: Update to 5.0.4

Changelog:
* Add input mode floating window.
* Update translations.

(ryoon)

2021-02-27 20:08:22 UTC MAIN commitmail json YAML

doc: Updated inputmethod/fcitx5-chinese-addons to 5.0.4

(ryoon)

2021-02-27 20:08:01 UTC MAIN commitmail json YAML

fcitx5-chinese-addons: Update to 5.0.4

Changelog:
* Update translations.
* Fix big endian support.
* Imporove user dictionary support.

(ryoon)

2021-02-27 20:05:43 UTC MAIN commitmail json YAML

doc: Updated inputmethod/fcitx5-chewing to 5.0.4

(ryoon)

2021-02-27 20:05:21 UTC MAIN commitmail json YAML

fcitx5-chewing: Update to 5.0.4

Changelog:
* Update translations.

(ryoon)

2021-02-27 20:04:01 UTC MAIN commitmail json YAML

doc: Updated inputmethod/fcitx5-anthy to 5.0.3

(ryoon)

2021-02-27 20:03:40 UTC MAIN commitmail json YAML

fcitx5-anthy: Update to 5.0.3

Changelog:
* Bugsixes.
* Update translations.

(ryoon)

2021-02-27 19:43:42 UTC MAIN commitmail json YAML

doc: Updated inputmethod/fcitx5-configtool to 5.0.3

(ryoon)

2021-02-27 19:43:17 UTC MAIN commitmail json YAML

fcitx5-configtool: Update to 5.0.3

Changelog:
* Fix some bugs.
* Cleanup codes.
* Update translations.
* Improve wayland support.

(ryoon)

2021-02-27 19:40:37 UTC MAIN commitmail json YAML

doc: Updated inputmethod/fcitx5-lua to 5.0.3

(ryoon)

2021-02-27 19:40:17 UTC MAIN commitmail json YAML

fcitx5-lua: Update to 5.0.3

Changelog:
* Use new APIs.
* Update tests.
* Update docs.

(ryoon)

2021-02-27 19:38:05 UTC MAIN commitmail json YAML

doc: Updated inputmethod/fcitx5-qt to 5.0.3

(ryoon)

2021-02-27 19:37:31 UTC MAIN commitmail json YAML

fcitx5-qt: Update to 5.0.3

Changelog:
* Improve qt5 compatibility.
* Update translations.
* Improve UI rendering.

(ryoon)

2021-02-27 19:34:35 UTC MAIN commitmail json YAML

doc: Updated inputmethod/fcitx5-gtk to 5.0.4

(ryoon)

2021-02-27 19:34:11 UTC MAIN commitmail json YAML

fcitx5-gtk: Update to 5.0.4

Changelog:
* Fix boader width.
* Fix wayland issue.
* Use new client-side-ui API.

(ryoon)

2021-02-27 19:31:59 UTC MAIN commitmail json YAML

doc: Updated inputmethod/fcitx5 to 5.0.5

(ryoon)

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

fcitx5: Update to 5.0.5

Changelog:
Not available.

(ryoon)

2021-02-27 19:26:28 UTC MAIN commitmail json YAML

updated editors/nano to 5.6

Changes between nano 5.5 and 5.6 (cf. ChangeLog):

      build: avoid a warning about duplicate symbol when building from tarball
      build: detect a build from git also when building out of tree
      build: include a workaround only for versions of ncurses that need it
      bump version numbers and add a news item for the 5.6 release
      color: do not look for another 'end' match after already finding one
      color: give highlighted text its own color, to not look like marked text
      color: recompile the file-probing regexes a little faster with REG_NOSUB
      color: use bright yellow to highlight a search match
      color: use inverse video for highlighting when there are no colors
      debug: add timing instruments to cache precalculation and screen refresh
      display: for a large paste or insertion, recalculate the multiline cache
      docs: correct the description of --quickblank for the changed base value
      docs: correct the formatting of a comment in the sample nanorc
      docs: correct the word order for Alt+D in the cheat sheet -- it changed
      docs: mention the new 'set highlightcolor' option
      docs: remove all mentions of --markmatch and 'set markmatch'
      docs: say that --minibar is modified by --constantshow and --stateflags
      feedback: make Full Justify show a message also when using --minibar
      gnulib: update to its current upstream state
      minibar: show a message a little longer when --quickblank isn't used
      minibar: show cursor position + character code only with --constantshow
      minibar: show the state flags only when --stateflags is used
      minibar: suppress the toggling feedback for M-C, but show it for M-Y/M-P
      options: remove --markmatch and 'set markmatch', as the behavior is gone
      painting: always do backtracking for the first row of the screen
      painting: trigger a refresh when a second start match appears on a line
      painting: trigger fewer unneeded full-screen refreshes
      painting: when finding an end match, set its multidata right away
      scrolling: keep centering after large paste, also when line numbers widen
      search: just highlight the found occurrence, instead of marking it
      search: make highlighting the standard, non-changeable behavior
      tweaks: avoid the vague possibility of advancing beyond end-of-line
      tweaks: be slightly more efficient in marking lines as WOULDBE
      tweaks: call wattron()/wattroff() only when actually painting something
      tweaks: correct a comment, improve another, and trim some verbosity
      tweaks: don't bother comparing virgin multidata with current situation
      tweaks: don't bother initializing freshly allocated multidata
      tweaks: don't bother wiping the multidata before recomputing it
      tweaks: elide a function that is now just one line
      tweaks: frob a condition, to be more concise, and reshuffle another
      tweaks: frob some comments, and adjust indentation after previous change
      tweaks: frob some comments, and reshuffle two fragments of code
      tweaks: frob two fragments of code, to be more readable
      tweaks: make a skipping condition more precise
      tweaks: remove an old fix that was made superfluous by a recent fix
      tweaks: remove a strangely placed warning
      tweaks: rename six symbols, to be more straightforward
      tweaks: reshuffle some code, and reduce the scope of a variable
      tweaks: reshuffle three conditions into a better order
      tweaks: rewrap and reindent a few lines
      tweaks: rewrap two lines, for esthetics
      tweaks: stop evaluating a rule when the match is offscreen to the right

(schwarz)

2021-02-27 19:18:13 UTC MAIN commitmail json YAML

libkkc-data: Use GitHub framework to fetch distfile

(ryoon)

2021-02-27 19:17:56 UTC MAIN commitmail json YAML

libkkc: Convert to use GitHub framework

(ryoon)

2021-02-27 19:13:27 UTC MAIN commitmail json YAML

2021-02-27 19:05:45 UTC MAIN commitmail json YAML

doc: Updated www/php-nextcloud to 21.0.0

(ryoon)

2021-02-27 19:04:55 UTC MAIN commitmail json YAML

php-nextcloud: Update to 21.0.0

Changelog:
Version 21.0.0 February 22 2021

Changes

The biggest improvements we introduce with Nextcloud 21 are:

  * High Performance Back-end for Nextcloud Files: reduces server load from
    desktop clients and web interface polling by 90% while delivering instant
    notifications to users.
  * And a wide range of performance improvements all over on top, decreasing
    loading times of pages and reducing load on the server
  * Collaborative features: new Whiteboard, author colours in Text and
    Document Templates to increase team productivity
  * Nextcloud Talk: debuts message status indicators, a raise hand feature, a
    group conversation description and more!
  * A range of Groupware improvements like drag'n'drop and nicer threading in
    Mail and syncing social media avatars in Contacts.

(ryoon)

2021-02-27 18:56:09 UTC MAIN commitmail json YAML

doc: Updated net/knot to 3.0.4

(ryoon)

2021-02-27 18:55:32 UTC MAIN commitmail json YAML

knot: Update to 3.0.4

Changelog:
Improvements:

        Sockets to CPUs binding is no longer enabled by default but can be enabled via new configuration option 'server.socket-affinity'
        Some documentation improvements

Bugfixes:

        DNS queries without EDNS to the root zone apex are dropped in the XDP mode
        Deterministic ECDSA signing leaks memory
        Zone not stored to journal if zonefile-load isn't ZONEFILE_LOAD_WHOLE
        Server crashes if the catalog zone isn't configured for registered member zones
        Server crashes when loading conflicting catalog member zones
        CNAME and DNAME records below delegation are not ignored #713
        Not all udp/tcp workers are used if the number of NIC queues is lower than the number of udp/tcp workers
        Failed to load statistics and geoip modules if built as shared

(ryoon)

2021-02-27 18:55:08 UTC MAIN commitmail json YAML

doc: Updated net/nsd to 4.3.5

(ryoon)

2021-02-27 18:54:27 UTC MAIN commitmail json YAML

nsd: Update to 4.3.5

Changelog:
19 January 2021: Wouter
- Set branch ready for 4.3.5 release.

15 January 2021: Wouter
- Fix #152: '*' in Rdata causes the return code to be NOERROR instead
  of NX.
- Add config.guess and config.sub to .gitignore for autoconf 2.70.
- Fix #150: TXT record validation difference with BIND.
- Fixup TXT record validation fix for escaped quotes.
- Fixup TXT record validation fix for escaped backslashes.
- Fixup escape character parse for quoted strings.

11 January 2021: Wouter
- Fix #151: DNAME not applied more than once to resolve the query.
- Fix dname test for #148.
- For #151: fix to not produce loops in output.

5 January 2021: Wouter
- Fix configure.ac for autoconf 2.70.

4 January 2021: Wouter
- Fix #148: CNAME need not be followed after a synthesized CNAME
  for a CNAME query.

11 December 2020: Wouter
- Fix that nsd-control has timeout when connection is down.
- remove windows socket ifdefs from nsd-control.

3 December 2020: Wouter
- For #145: Fix that service of remaining TCP and TLS connections
  does not allow new queries to be made, the connection is closed.
  Only existing queries and zone transfers are answered, new ones
  are rejected by a close of the channel.

30 November 2020: Wouter
- Fix #144: fix better.

27 November 2020: Wouter
- Fix #144: Typo fix in nsd.conf.5.in.

26 November 2020: Wouter
- Fix #143: xfrd no hysteresis with NOT IMPLEMENTED rcode.

(ryoon)

2021-02-27 18:33:33 UTC MAIN commitmail json YAML

doc: Updated devel/mob to 1.3.0

(schmonz)

2021-02-27 18:33:24 UTC MAIN commitmail json YAML

Update to 1.3.0. From the changelog:

- The default `MOB_COMMIT_MESSAGE` now includes `[ci skip]` and `[skip
  ci]` so that all the typical CI systems (including Azure DevOps) will
  skip this commit.
- Add `--squash` option to `mob done` that corresponds to `--no-squash`.
- Fixes the default text to speech command on linux and osx.
- Removed `MOB_DEBUG` environment variable (has been deprecated for
  some time).

(schmonz)

2021-02-27 16:52:22 UTC MAIN commitmail json YAML

security/pleaser: fix checksum

Upstream has commited directly to the master branch without bumping
the version, which resulted in a broken checksum.

Fixed now.

(pin)

2021-02-27 16:51:04 UTC MAIN commitmail json YAML

doc: Updated inputmethod/ibus-libpinyin to 1.12.0

(ryoon)

2021-02-27 16:50:28 UTC MAIN commitmail json YAML

ibus-pinyin: Update to 1.12.0

* Fix build with the latest libpinyin.

Changelog:
* Bugfixes.
* Support cloud input.
* Change license to GPL3+.
* Support network dictionary.
* Support compact display style.
* Use gettext
* More lua extensions.
* Support predict candidates.
* SUppor emoji input.

(ryoon)

2021-02-27 16:40:59 UTC MAIN commitmail json YAML

2021-02-27 16:22:50 UTC MAIN commitmail json YAML

sysutils/broot: add update warning

I'll update the package when we default to rust-1.50

(pin)

2021-02-27 16:20:24 UTC MAIN commitmail json YAML

doc: Updated sysutils/sfm to 0.4.2

(pin)

2021-02-27 16:20:03 UTC MAIN commitmail json YAML

sysutils/sfm: update to 0.4.2

-Add autoreload on dir content change (#11)

(pin)

2021-02-27 10:04:01 UTC MAIN commitmail json YAML

Updated multimedia/mkvtoolnix, sysutils/py-supervisor, net/grpc, net/py-grpcio, net/py-grpcio-testing, net/py-grpcio-tools

(adam)

2021-02-27 10:03:11 UTC MAIN commitmail json YAML

grpc: updated to 1.36.0

Release v1.36.0

Core
Remove unnecessary internal pollset set in c-ares DNS resolver.
Fix implicit declaration error in zlib + macOS.
Support Default Root Certs in Tls Credentials.

C++
Move third party identity C++ api out of experimental namespace.
refactor!: change error_details functions to templates.
Support ServerContext for callback API.

Python
Implement Python Client and Server xDS Creds.

(adam)

2021-02-27 09:59:54 UTC MAIN commitmail json YAML

py-supervisor: updated to 4.2.2

4.2.2 (2021-02-26)
------------------

- Fixed a bug where ``supervisord`` could crash if a subprocess exited
  immediately before trying to kill it.

- Fixed a bug where the ``stdout_syslog`` and ``stderr_syslog`` options
  of a ``[program:x]`` section could not be used unless file logging for
  the same program had also been configured.  The file and syslog options
  can now be used independently.  Patch by Scott Stroupe.

- Fixed a bug where the ``logfile`` option in the ``[supervisord]``
  section would not log to syslog when the special filename of
  ``syslog`` was supplied, as is supported by all other log filename
  options.  Patch by Franck Cuny.

- Fixed a bug where environment variables defined in ``environment=``
  in the ``[supervisord]`` section or a ``[program:x]`` section could
  not be used in ``%(ENV_x)s`` expansions.  Patch by MythRen.

- The  ``supervisorctl signal`` command now allows a signal to be sent
  when a process is in the ``STOPPING`` state.  Patch by Mike Gould.

- ``supervisorctl`` and ``supervisord`` now print help when given ``-?``
  in addition to the existing ``-h``/``--help``.

(adam)

2021-02-27 09:57:57 UTC MAIN commitmail json YAML

mkvtoolnix: updated to 54.0.0

Version 54.0.0 "F Maj Pixie"

New features and enhancements

* mkvmerge: added support for using ISO 639-3 language codes in IETF BF47
  language tags.
* mkvmerge: AC-3 parser: added support for byte-swapped AC-3 data.
* mkvmerge: Matroska reader: for audio tracks that have the bit depth track
  header set mkvmerge will now keep that header even for codecs that don't
  require it for decoding.
* mkvmerge: MPEG transport stream reader, PCM audio tracks: mkvmerge will now
  re-order the channels for 5.1, 7.0 and 7.1 channel tracks from the Blu-ray
  layout to the WAVEFORMATEXTENSIBLE layout expected in Matroska.
* mkvmerge, mkvinfo, mkvpropedit, MKVToolNix GUI: added support for the
  following new track header elements: "hearing impaired" flag, "visual
  impaired" flag, "text descriptions" flag, "original" flag, "commentary"
  flag.
* MKVToolNix GUI: added support for using ISO 639-3 language codes in IETF
  BF47 language tags. As there are several thousand of them, they're
  deactivated by default and must be activated in the preferences ("GUI" →
  "Often used selections" → "Languages").
* MKVToolNix GUI: multiplexer: when adding Blu-rays the user can select
  multiple playlists to add simultaneously in the "select playlist to add"
  dialog.
* MKVToolNix GUI: multiplexer: the file name extensions "eb3" and "ec3" were
  added for Dolby Digital Plus & "mpl" for Dolby TrueHD in the file
  dialogs.
* MKVToolNix GUI: multiplexer: when adding multiple files the dialog asking
  the user what to do with them has gained a new checkbox. If enabled, all
  files containing at least one video track will always be placed in newly
  created multiplex setting.
* MKVToolNix GUI: multiplexer: added a menu entry in the "Multiplexer" for
  adding all files that are currently in the clipboard.

Bug fixes

* all: Windows: fixed compatibility with gettext 0.21 and newer on mingw.
* all: Windows: fixed several of the programs having problems with certain
  Unicode characters (primarily emojis) in file names (e.g. mkvextract
  wrongfully complaining about an "invalid mode" or the GUI not being able to
  find parts of Blu-ray file structures).
* mkvextract: AAC: fixed wrong channel mask field in the ADTS headers for 7.1
  channel layouts.
* mkvextract: h.265/HEVC extraction: if the first frame starts with the
  parameter sets (SPS, PPS & VPS), the ones from CodecPrivate aren't written
  and the ones from the first frame are kept.
* mkvmerge: fixed the calculation of chapter timestamps read from NTSC
  DVDs.
* MKVToolNix GUI: IETF BCP 47 language widget: the language combo box will now
  always contain the language code the user enters in the free-form field,
  even if it isn't in the list of often-used languages the user configured in
  the preferences.
* MKVToolNix GUI: multiplexer: when browsing for the destination file name the
  default directory is now chosen according to the preferences regarding how
  the destination file name should be formed. For example, if the policy is
  set to "fixed output directory" then that output directory will be the one
  initially set when the directory selection dialog is opened.
* MKVToolNix GUI: multiplexer: fixed the removal of appended source files if
  the "delete source files" end-of-job action is enabled.
* MKVToolNix GUI: chapter editor: when importing chapters from DVDs the IETF
  BCP 47 language elements will be set, too, not just the legacy language
  elements.

Build system changes

* libEBML v1.4.2 and libMatroska v1.6.3 are now required. The optional,
  bundled copies of both libraries have been updated to those versions. This
  bump in requirements fixes several heap overflow bugs in libEBML.
* MKVToolNix is now using the C++17 library feature "file system library"
  instead of Boost's "file system" and "system" libraries. For the GNU
  Compiler Collection (gcc) libstdc++ this means v8 or newer is required; for
  clang's libc++ it means v7 or newer. For macOS this means that provided disk
  image will only run on 10.15 "Catalina" or newer.

(adam)

2021-02-27 04:24:31 UTC MAIN commitmail json YAML

doc: Bump PKGREVISION for mozc packages

(ryoon)

2021-02-27 04:23:35 UTC MAIN commitmail json YAML

fcitx5-mozc: Bump PKGREVISION. Use devel/protobuf as external library

(ryoon)

2021-02-27 04:19:46 UTC MAIN commitmail json YAML

mozc: Fix build under NetBSD/i386 and use external protobuf library

* Include mk/atomic64.mk to add -march=i586 to CFLAGS and pass
  CFLAGS to gyp. Fix PR pkg/56025 in another way.
* Use external devel/protobuf to avoid internal protobuf build.
  So bump PKGREVISION.
* dictionary/pos_matcher.h does not generated before its use sometimes.
  Generate it explicitly with
  dictionary/dictionary_base.gyp:text_dictionary_loader target
  for mozc-server.

(ryoon)

2021-02-26 21:48:09 UTC MAIN commitmail json YAML

digikam: explicitly don't look for KF5AkonadiContact

(markd)

2021-02-26 21:15:07 UTC MAIN commitmail json YAML

tex-l3packages: restore tex-amsmath dependency

tex-amsmath now doesn't depend on tex-latex-bin

(markd)

2021-02-26 21:12:48 UTC MAIN commitmail json YAML

tex-oberdiek: restore tex-amsmath dependency

(markd)

2021-02-26 21:11:01 UTC MAIN commitmail json YAML

tex-amsmath: drop dependency on tex-latex-bin

(markd)

2021-02-26 21:09:25 UTC MAIN commitmail json YAML

tex-colortbl: bump PKGREVISION for dependency change

(markd)

2021-02-26 21:06:43 UTC MAIN commitmail json YAML

tex-booktabs: bump PKGREVISION for dependency change.

(markd)

2021-02-26 18:04:34 UTC MAIN commitmail json YAML

audiocd-kio: restore libkcompactdisc dependency

(markd)

2021-02-26 18:03:23 UTC MAIN commitmail json YAML

libkcompactdisc: actually commit the updated Makefile for 20.04.1

(markd)

2021-02-26 18:03:08 UTC MAIN commitmail json YAML

doc: Updated textproc/link-grammar to 5.8.1nb1

(ryoon)

2021-02-26 18:02:24 UTC MAIN commitmail json YAML

link-grammar: Fix runtime error on NetBSD 9.99.80 after 2021-02-26

* Pass REG_GNU to regcomp(3) for GNU extensions,
  suggested by christos@. Thank you.
* Fix PR 56024.
* Bump PKGREVISION for binary change.

(ryoon)

2021-02-26 15:39:56 UTC MAIN commitmail json YAML

doc: Updated www/goaccess to 1.4.5

(schmonz)

2021-02-26 15:39:46 UTC MAIN commitmail json YAML

Update to 1.4.5. From the changelog:

- Fixed build issue due to initial declarations only allowed in C99 mode
  (e.g., CentOS7).
- Added 'Caddy' to the list of pre-defined log formats.
- Added command line option '--no-strict-status' to disable status validation.
- Added native support to parse JSON logs.
- Added the ability to process timestamps in milliseconds using '%*'.
- Ensure TUI/CSV/HTML reports are able to output 'uint64_t' data.
- Ensure we allow UI render if the rate at which data is being read is
  greater than '8192' req/s.
- Ensure we don't re-render Term/HTML output if no data was read/piped.
- Fixed build configure to work on NetBSD.
- Fixed issue where it would send data via socket each second when managed
  by systemd.
- Fixed issue where parser was unable to parse syslog date with padding.
- Fixed issue where some items under browsers.list were not tab separated.
- Fixed issue where the format parser was unable to properly parse logs
  delimited by a pipe.
- Fixed issue where T.X. Amount metrics were not shown when data was piped.
- Fixed issue where XFF parser could swallow an additional field.
- Fixed memory leak when using '%x' as date/time specifier.
- Replaced select(2) with poll(2) as it is more efficient and a lot faster
  than select(2).
- Updated Swedish i18n.
- Added the ability to set how often goaccess will parse data and output to
  the HTML report via '--html-refresh=<secs>'.
- Changed how TLS is parsed so the Cypher uses a separate specifier.
  It now uses '%K' for the TLS version and '%k' for the Cypher.
- Fixed issue where real-time output would double count a rotated log. This
  was due to the change of inode upon rotating the log.
- Updated man page to reflect proper way of 'tail -f' a remote access log.
- Added the ability to show 'Encryption Settings' such as 'TLSv1.2' and
  Cipher Suites on its own panel.
- Added the ability to show 'MIME Types' such as 'application/javascript' on
  its own panel.
- Ensure the HTML report defaults to widescreen if viewport is larger than
  '2560px'.
- Fixed inability to properly process multiple logs in real-time.
- Fixed issue where named PIPEs were not properly seed upon generating
  filename.
- Fixed issue where served time metrics were not shown when data was piped.
- Removed unnecessary padding from SVG charts. Improves readability on mobile.
- Added addtional browsers and bots to the main list.
- Added 'Android 11' to the list of OSs.
- Added 'macOS 11.0 Big Sur' to the list of OSs.
- Added 'average' to each panel overall metrics.
- Added '.dmg', '.xz', and '.zst' to the static list.
- Added extra check to ensure restoring from disk verifies the content of the
  log against previous runs.
- Added Russian translation (i18n).
- Added Ukrainian translation (i18n).
- Added support for HTTP status code '308'.
- Added the ability for 'get_home ()' to return NULL on error, instead of
  terminating the process. Great if using through systemd.
- Added the ability to read lowercase predefined log formats. For instance,
  '--log-format=COMBINED' or '--log-format=combined'.
- Changed how FIFOs are created and avoid using predictable filenames under
  '/tmp'.
- Changed '--ignore-referer' to use whole referrer instead of referring site.
- Ensure Cache Status can be parsed without sensitivity to case.
- Ensure restored data enforces '--keep-last' if used by truncating
  accordingly.
- Fixed a few memory leaks when restoring from disk.
- Fixed blank time distribution panel when using timestamps.
- Fixed build issue due to lack of 'mmap' on 'Win'/'Cygwin'/'MinGW'.
- Fixed crash in mouse enabled mode.
- Fixed double free on data restore.
- Fixed inability to keep processing a log when using '--keep-last'.
- Fixed inability to properly parse truncated logs.
- Fixed inability to properly count certain requests when restoring from
  disk.
- Fixed issue where it would not parse subsequent requests coming from stdin (tail).
- Fixed issue where log truncation could prevent accurate number counting.
- Fixed issue where parsed date range was not rendered with '--date-spec'.
- Fixed issue where parser would stop regardless of a valid '--num-test' value.
- Fixed issue where restoring from disk would increment 'MAX.TS'.
- Fixed possible incremental issue when log rotation occurs.
- Fixed possible XSS when getting real-time data into the HTML report.
- Fixed potential memory leak when failing to get root node.
- Fixed real-time hits count issue for certain scenarios.
- Fixed segfault in 'Docker' due to a bad allocation when generating FIFOs.
- Fixed 'Unknown' Operating Systems with 'W3C' format.
- Removed unnecessary include from parser.c so it builds in macOS.
- Updated each panel overall UI to be more streamlined.
- Updated French translation.
- Updated German translation.
- Updated Spanish translation.
- Updated sigsegv handler.

(schmonz)

2021-02-26 15:36:48 UTC MAIN commitmail json YAML

doc: Updated mail/thunderbird-l10n to 78.8.0

(ryoon)

2021-02-26 15:36:26 UTC MAIN commitmail json YAML

thunderbird-l10n: Update to 78.8.0

* Sync with mail/thunderbird-78.8.0.

(ryoon)

2021-02-26 15:35:51 UTC MAIN commitmail json YAML

doc: Updated mail/thunderbird to 78.8.0

(ryoon)

2021-02-26 15:35:12 UTC MAIN commitmail json YAML

thunderbird: Update to 78.8.0

Changelog:
Fixes
Importing an address book from a CSV file always reported an error

Security information for S/MIME messages was not displayed correctly prior to a
draft being saved

Calendar: FileLink UI fixes for Caldav calendars

Recurring tasks were always marked incomplete; unable to use filters

Various UI widgets not working

Dark theme improvements

Extension manager was missing link to addon support web page

Various security fixes

Security fixes:
#CVE-2021-23969: Content Security Policy violation report could have contained
the destination of a redirect
#CVE-2021-23968: Content Security Policy violation report could have contained
the destination of a redirect
#CVE-2021-23973: MediaError message property could have leaked information
about cross-origin resources
#CVE-2021-23978: Memory safety bugs fixed in Thunderbird 78.8

(ryoon)

2021-02-26 13:19:11 UTC MAIN commitmail json YAML

TODO: Updated mail/roundcube-plugin-carddav to 4.0.4

(triaxx)

2021-02-26 13:17:50 UTC MAIN commitmail json YAML

doc: Updated mail/roundcube-plugin-carddav to 4.0.4

(triaxx)

2021-02-26 13:17:36 UTC MAIN commitmail json YAML

roundcube-plugin-carddav: Update to 4.0.4

pkgsrc changes:
---------------
  * The main maintainer seems to have changed. The GitHub repository has been
    updated accordingly.
  * Since the vendor dependencies has been removed from the Github release, we
    use php-composer to resolve them.

upstream changes:
-----------------
Version 4.0.4 (to 4.0.3)
  o Fix #321: Boolean settings in presets caused errors when trying to store
    the preset's addressbooks to the database
  o Fix #322: The refresh time string from admin presets was not converted to
    seconds, causing errors or wrong values when storing the preset's
    addressbooks to the database
  o Fix #324: Changes not immediately visible with postgresql (delete contact,
    add/remove contact to/from group)
  o Fix: spurious error returned when creating VCard on Google

Version 4.0.3 (to 4.0.2)
  o Allow release 1.0 of carddavclient in composer dependencies
  o No changes to the plugin itself

Version 4.0.2 (to 4.0.1)
  o Fix #316: Incompatibility with Sabre/VObject version 4 preventing saving
    contacts using custom labels
  o Fix: Default refresh time set to 1 sec in settings

Version 4.0.1 (to 4.0.0)
  o Fix: Plugin version was not shown in about window for tarball installations
  o Fix: Collation behavior was case-insensitive for MySQL (only). Now unified
    across the different supported DBMS.
  o Fix #306: With MySQL, sync failure could occur when several custom labels
    where used that only differed in case (effect of previous issue).
  o Fix #308: With SQLite, the initial sync after adding a new addressbook was
    not automatically triggered.

Version 4.0.0 (to 3.0.3)
This release contains changes to DB schema. The database will be migrated
automatically upon login to roundcube.
  o All changes from 4.0.0-alpha1
  o Fix: Deletion of empty CATEGORIES-type groups
  o Fix: Delete CATEGORIES-type groups from DB that become empty during a sync
  o Fix: Renaming of empty CATEGORIES-type groups
  o Fix: During deletion, do not rely on the DB's ON CASCADE DELETE because
    this is disabled by default for SQLite
  o Fix: It was not possible to discover multiple addressbooks for an admin
    preset because of a wrong UNIQUE constraint in MySQL
  o Fix: Catch exceptions thrown inside the plugin (avoid "white page" on error)
  o Increase the maximum lengths of password, email and url fields
  o Use transactions to synchronize concurrent operations on the same
    addressbook (data consistency issues may still occur with MySQL because of
    roundcube DB layer bug). For details, see DBSYNC.md.
  o Unified database indexes across the different database backends: Create
    indexes for foreign key columns (PostgreSQL, SQLite)
  o Fixed issues in the migration scripts and added SQL scripts showing the
    current DB schema
  o Update hungarian translation (thanks to @tsabi)

Version 4.0.0-alpha1 (to 3.0.3)
Note: The Changelog for this version is not complete
This is an alpha release because I did not perform any tests on it.
Nevertheless, it has many bugs fixed and I encourage you to upgrade and report
issues as you find them. The last release 3.0.3 has many issues that have been
fixed with in v4. I push this release early mainly because of the security
issue reported. I'll continue working on remaining issues I want to fix (note:
all of them are also present in 3.0.3) for v4 and I intend release a more
tested version and a more detailed changelog within the next weeks.
  o Security issue: It was possible to read data from other user's
    addressbooks. Depending on the configuration, it might also have been
    possible to change data in their addressbooks. Thanks to @cnmicha for
    reporting this issue. This issue affects all previously released versions
    of RCMCardDAV using a database cache.
  o Many bugs you reported and several more I discovered during refactoring
    have been fixed.
  o The password scheme now defaults to encrypted (if you have not configured a
    password scheme, this will take effect automatically for newly stored
    password. If you don't want this, configure a password scheme in
    settings.php).
  o The URL is not changeable after creation of an addressbook anymore. It used
    to work in specific, but not all cases. As the behavior is potentially
    broken and not easy to fix, it is removed for now.
  o The two kinds of contact groups (VCard-based vs. CATEGORIES-based) are not
    transparently supported to the possible extent. The configuration switch is
    only meaningful concerning the type of group used when a new group is
    created from RCMCardDAV. See details here.
  o The CardDAV interaction is moved to a library. It is essentially a complete
    rewrite of the code communicating with the CardDAV servers and includes
    interoperability tests with many common servers, see here.

(triaxx)

2021-02-26 12:48:29 UTC MAIN commitmail json YAML

2021-02-26 11:24:33 UTC MAIN commitmail json YAML

x11/xst: expand DESC as requested by @wiz via e-mail

(pin)

2021-02-26 10:18:19 UTC MAIN commitmail json YAML

Updated net/rabbitmq, www/py-uvicorn

(adam)

2021-02-26 10:17:18 UTC MAIN commitmail json YAML

py-uvicorn: updated to 0.13.4

0.13.4 - 2021-02-20

Fixed
Fixed wsgi middleware PATH_INFO encoding
Fixed uvloop dependency
Relax watchgod up bound
Return 'connection: close' header in response

Added
Docs: Nginx + websockets
Document the default value of 1 for workers
Enabled permessage-deflate extension in websockets

(adam)

2021-02-26 10:14:30 UTC MAIN commitmail json YAML

rabbitmq: updated to 3.8.12

RabbitMQ 3.8.12 is a maintenance release that contains bug fixes.

(adam)

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

doc: Updated www/grafana to 7.4.3

(triaxx)

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

erlang: remove max_fds patch - not needed any more, fixes build on Darwin

(adam)

2021-02-26 10:12:41 UTC MAIN commitmail json YAML

grafana: Update to 7.4.3

upstream changes:
-----------------
Release notes for Grafana 7.4.3
Bug fixes
  o AdHocVariables: Fixes crash when values are stored as numbers. #31382,
    @hugohaggmark
  o DashboardLinks: Fix an issue where the dashboard links were causing a full
    page reload. #31334, @torkelo
  o Elasticsearch: Fix query initialization logic & query transformation from
    Prometheus/Loki. #31322, @Elfo404
  o QueryEditor: Fix disabling queries in dashboards. #31336, @gabor
  o Streaming: Fix an issue with the time series panel and streaming data
    source when scrolling back from being out of view. #31431, @torkelo
  o Table: Fix an issue regarding the fixed min and auto max values in bar
    gauge cell. #31316, @torkelo

Release notes for Grafana 7.4.2
Features and enhancements
  o Explore: Do not show non queryable data sources in data source picker.
    #31144, @torkelo
  o Snapshots: Do not allow an anonymous user to create snapshots. #31263,
    @marefr
Bug fixes
  o CloudWatch: Ensure empty query row errors are not passed to the panel.
    #31172, @sunker
  o DashboardLinks: Fix the links that always cause a full page to reload.
    #31178, @torkelo
  o DashboardListPanel: Fix issue with folder picker always showing All and
    using old form styles. #31160, @torkelo
  o IPv6: Support host address configured with enclosing square brackets.
    #31226, @aknuds1
  o Permissions: Fix team and role permissions on folders/dashboards not
    displayed for non Grafana Admin users. #31132, @AgnesToulet
  o Postgres: Fix timeGroup macro converts long intervals to invalid numbers
    when TimescaleDB is enabled. #31179, @kurokochin
  o Prometheus: Fix enabling of disabled queries when editing in dashboard.
    #31055, @ivanahuckova
  o QueryEditors: Fix an issue that happens after moving queries then editing
    would update other queries. #31193, @torkelo
  o SqlDataSources: Fix the Show Generated SQL button in query editors. #31236,
    @torkelo
  o StatPanels: Fix an issue where the palette color scheme is not cleared when
    loading panel. #31126, @torkelo
  o Variables: Add the default option back for the data source variable.
    #31208, @hugohaggmark
  o Variables: Fix missing empty elements from regex filters. #31156,
    @hugohaggmark

Release notes for Grafana 7.4.1
Features and enhancements
  o Influx: Make max series limit configurable and show the limiting message if
    applied. #31025, @aocenas
  o Make value mappings correctly interpret numeric-like strings. #30893,
    @dprokop
  o Variables: Adds queryparam formatting option. #30858, @hugohaggmark
Bug fixes
  o Alerting: Fixes so notification channels are properly deleted. #31040,
    @hugohaggmark
  o BarGauge: Improvements to value sizing and table inner width calculations.
    #30990, @torkelo
  o DashboardLinks: Fixes crash when link has no title. #31008, @hugohaggmark
  o Elasticsearch: Fix alias field value not being shown in query editor.
    #30992, @Elfo404
  o Elasticsearch: Fix log row context errors. #31088, @Elfo404
  o Elasticsearch: Show Size setting for raw_data metric. #30980, @Elfo404
  o Graph: Fixes so graph is shown for non numeric time values. #30972,
    @hugohaggmark
  o Logging: Ignore ���file already closed��� error when closing file. #31119,
    @aknuds1
  o Plugins: Fix plugin signature validation for manifest v2 on Windows.
    #31045, @wbrowne
  o TextPanel: Fixes so panel title is updated when variables change. #30884,
    @hugohaggmark
  o Transforms: Fixes Outer join issue with duplicate field names not getting
    the same unique field names as before. #31121, @torkelo

(triaxx)

2021-02-26 09:17:57 UTC MAIN commitmail json YAML

x11/xst: adopt maintainership

(pin)

2021-02-26 08:47:03 UTC MAIN commitmail json YAML

mitmproxy: Add missing dependency to py-sqlite3

Reported by Austin Wise via <https://github.com/NetBSD/pkgsrc/pull/84>, thanks!

PKGREVISION++

(leot)

2021-02-26 08:35:26 UTC MAIN commitmail json YAML

audiocd-kio: comment libkcompactdisc until its makefile is fixed

unbreak build builds.

(nia)

2021-02-26 08:18:40 UTC MAIN commitmail json YAML

doc: Updated net/mosquitto to 2.0.8

(triaxx)

2021-02-26 08:18:25 UTC MAIN commitmail json YAML

mosquitto: Update to 2.0.8

upstream changes:
-----------------
2.0.8 - 2021-02-25
==================

Broker:
- Fix incorrect datatypes in `struct mosquitto_evt_tick`. This changes the
  size and offset of two of the members of this struct, and changes the size
  of the struct. This is an ABI break, but is considered to be acceptable
  because plugins should never be allocating their own instance of this
  struct, and currently none of the struct members are used for anything, so a
  plugin should not be accessing them. It would also be safe to read/write
  from the existing struct parameters.
- Give compile time warning if libwebsockets compiled without external poll
  support. Closes #2060.
- Fix memory tracking not being available on FreeBSD or macOS. Closes #2096.

Client library:
- Fix mosquitto_{pub|sub}_topic_check() functions not returning MOSQ_ERR_INVAL
  on topic == NULL.

Clients:
- Fix possible loss of data in `mosquitto_pub -l` when sending multiple long
  lines. Closes #2078.

Build:
- Provide a mechanism for Docker users to run a broker that doesn't use
  authentication, without having to provide their own configuration file.
  Closes #2040.

(triaxx)

2021-02-26 06:22:09 UTC MAIN commitmail json YAML

Updated devel/cmake, www/py-aiohttp

(adam)

2021-02-26 06:21:52 UTC MAIN commitmail json YAML

py-aiohttp: updated to 3.7.4

3.7.4 (2021-02-25)

Bugfixes

(SECURITY BUG) Started preventing open redirects in the aiohttp.web.normalize_path_middleware middleware. For more details, see https://github.com/aio-libs/aiohttp/security/advisories/GHSA-v6wp-4m6f-gcjg.

Thanks to Beast Glatisant for finding the first instance of this issue and Jelmer Vernoo蝶 for reporting and tracking it down in aiohttp.

Fix interpretation difference of the pure-Python and the Cython-based HTTP parsers construct a yarl.URL object for HTTP request-target.

Before this fix, the Python parser would turn the URI's absolute-path for //some-path into / while the Cython code preserved it as //some-path. Now, both do the latter.

(adam)

2021-02-26 06:21:05 UTC MAIN commitmail json YAML

(print/tex-*) Interim fix for recent Cyclic dependency problem: tks markd@

Cyclic dependency for package:
tex-l3kernel-2020.57669nb1
tex-colortbl-1.0e
tex-latex-bin-2020
tex-l3packages-2020.57600nb1
tex-l3kernel-2020.57669nb1

(mef)

2021-02-26 06:20:43 UTC MAIN commitmail json YAML

cmake: updated to 3.19.6

CMake 3.19.6
* Intel: Make explicit Fortran preprocessing under Ninja more robust
* Tests: Update for upstream ninja change to write status on stderr
* CMakePresets.json: Remove undocumented support for comments
* FindPython: fix erroneous variable handling

(adam)

2021-02-26 00:46:34 UTC MAIN commitmail json YAML

doc: Updated devel/php-composer to 2.0.11

(tpaul)

2021-02-26 00:46:27 UTC MAIN commitmail json YAML

php-composer: Update to 2.0.11

Upstream Release Notes:

2.0.11
- Reverted "Fixed runtime autoloader registration (for plugins and script
  handlers) to prefer the project dependencies over the bundled Composer
  ones" as it caused more problems than expected

2.0.10
- Added COMPOSER_MAX_PARALLEL_HTTP env var to let people set a lower amount
  of parallel requests if needed
- Fixed autoloader registration when plugins are loaded, which may impact
  plugins relying on this bug (if you use symfony/flex make sure you upgrade
  it to 1.12.2+ to fix dump-env issues)
- Fixed exec command suppressing output in some circumstances
- Fixed Windows/cmd.exe support for script handlers defined as path/to/foo,
  which are now rewritten internally to path\to\foo when needed
- Fixed bin handling on Windows for PHP scripts, to more closely match
  symlinks and allow @php vendor/bin/foo to work cross-platform
- Fixed Git for Windows/Git Bash not being detected correctly as an
  interactive shell (regression since 2.0.7)
- Fixed regression handling some private Bitbucket repository clones
- Fixed Ctrl-C/SIGINT handling during downloads to correctly abort as soon as
  possible
- Fixed runtime autoloader registration (for plugins and script handlers) to
  prefer the project dependencies over the bundled Composer ones
- Fixed numeric default branches being aliased as 9999999-dev internally.
  This alias now only applies to default branches being non-numeric
  (e.g. dev-main)
- Fixed support for older lib-sodium versions
- Fixed various minor issues

(tpaul)

2021-02-25 19:51:29 UTC MAIN commitmail json YAML

unicorn: Remove commented out Python requirements

(leot)

2021-02-25 19:48:44 UTC MAIN commitmail json YAML

doc: Updated emulators/py-unicorn to 1.0.2

(leot)

2021-02-25 19:48:29 UTC MAIN commitmail json YAML

doc: Updated emulators/unicorn to 1.0.2

(leot)

2021-02-25 19:47:51 UTC MAIN commitmail json YAML

{,py-}unicorn: Update to 1.0.2

Changes:
1.0.2
-----
- Fix Java binding compilation
- Enable building for ARM little-endian only (ignore big-endian)
- Add uc_context_free() API
- Fix context saving/retoring API (core & Python binding)
- Add cmake option to build Unicorn as a static library
- Fix error handling of mmap()
- uc_emu_start() can be reentrant
- Fix naming conflicts when built with systemd
- Fix setjmp/longjmp on native Windows
- Fix enabled hooks even after deleting them
- X86:
    - Fix 64bit fstenv
    - Fix IP value of 16bit mode
- ARM:
    - Fix APSR handling
- Python: Remove UC_ERR_TIMEOUT
- No longer require Python to build
- Fix recursive UC_HOOK_MEM callbacks for cross pages access
- Remove UC_ERR_TIMEOUT, so timeout on uc_emu_start() is not considered error
- Added UC_QUERY_TIMEOUT to query exit reason
- Fix UAF when deleting hook while in hook callback
- Ensure that hooks are unaffected by a request to stop emulation.
- Fix block hooks being called twice after an early exit from execution.
- Fix binding install on python2 (MacOS)
- X86:
    - Support read/write STn registers
    - Support read/write X64 base regs
- ARM64:
    - Support some new registers

(leot)

2021-02-25 18:50:50 UTC MAIN commitmail json YAML

gtk4: Fix a typo in comment

(ryoon)

2021-02-25 16:36:53 UTC MAIN commitmail json YAML

2021-02-25 16:35:58 UTC MAIN commitmail json YAML

doc: Added print/py-octoprint version 1.5.3

(khorben)

2021-02-25 16:35:45 UTC MAIN commitmail json YAML

Add py-octoprint

(khorben)

2021-02-25 16:35:23 UTC MAIN commitmail json YAML

2021-02-25 16:18:15 UTC MAIN commitmail json YAML

pluralize GUI

(nia)

2021-02-25 15:35:22 UTC MAIN commitmail json YAML

doc: Updated lang/erlang-doc to 23.2nb2

(triaxx)

2021-02-25 15:35:14 UTC MAIN commitmail json YAML

Add py-sentry-sdk

(khorben)

2021-02-25 15:35:09 UTC MAIN commitmail json YAML

erlang-doc: Fix PLIST

pkgsrc changes:
---------------
  * Update some PLIST entries since the version of packages documented does
    not always match the last patchlevel version of OTP.
  * Bump revision

(triaxx)

2021-02-25 15:34:38 UTC MAIN commitmail json YAML

py-sentry-sdk: import version 0.20.3

This is the next line of the Python SDK for Sentry, intended to replace
the raven package on PyPI.

(khorben)

2021-02-25 15:32:37 UTC MAIN commitmail json YAML

doc: Updated lang/erlang to 23.2.6

(triaxx)

2021-02-25 15:32:16 UTC MAIN commitmail json YAML

erlang: Update to 23.2.6

upstream changes:
-----------------
Patch Package:          OTP 23.2.6
Git Tag:                OTP-23.2.6
Date:                    2021-02-25
Trouble Report Id:      OTP-17173, OTP-17205, OTP-17220
Seq num:                ERIERL-581, ERIERL-608
System:                  OTP
Release:                23
Application:            inets-7.3.2, ssh-4.10.8
Predecessor:            OTP 23.2.5

Check out the git tag OTP-23.2.6, and build a full OTP system
including documentation. Apply one or more applications from this
build as patches to your installation using the 'otp_patch_apply'
tool. For information on install requirements, see descriptions for
each application version below.

---------------------------------------------------------------------
--- inets-7.3.2 -----------------------------------------------------
---------------------------------------------------------------------

The inets-7.3.2 application can be applied independently of other
applications on a full OTP 23 installation.

--- Fixed Bugs and Malfunctions ---

  OTP-17205    Application(s): inets
              Related Id(s): ERIERL-608

              Solves CVE-2021-27563, that is make sure no form of
              relative path can be used to go outside webservers
              directory.

  OTP-17220    Application(s): inets

              Make sure HEAD requests rejects directory links

Full runtime dependencies of inets-7.3.2: erts-6.0, kernel-3.0,
mnesia-4.12, runtime_tools-1.8.14, ssl-5.3.4, stdlib-3.5

---------------------------------------------------------------------
--- ssh-4.10.8 ------------------------------------------------------
---------------------------------------------------------------------

The ssh-4.10.8 application can be applied independently of other
applications on a full OTP 23 installation.

--- Fixed Bugs and Malfunctions ---

  OTP-17173    Application(s): ssh
              Related Id(s): ERIERL-581

              Don't timeout slow connection setups and tear-downs. A
              rare crash risk for the controller is also removed.

Full runtime dependencies of ssh-4.10.8: crypto-4.6.4, erts-9.0,
kernel-5.3, public_key-1.6.1, stdlib-3.4.1

---------------------------------------------------------------------
---------------------------------------------------------------------
---------------------------------------------------------------------
Patch Package:          OTP 23.2.5
Git Tag:                OTP-23.2.5
Date:                    2021-02-16
Trouble Report Id:      OTP-17185, OTP-17190, OTP-17191
Seq num:                ERIERL-606, ERL-1476, GH-4192
System:                  OTP
Release:                23
Application:            erts-11.1.8, ssl-10.2.3, tools-3.4.3
Predecessor:            OTP 23.2.4

Check out the git tag OTP-23.2.5, and build a full OTP system
including documentation. Apply one or more applications from this
build as patches to your installation using the 'otp_patch_apply'
tool. For information on install requirements, see descriptions for
each application version below.

---------------------------------------------------------------------
--- erts-11.1.8 -----------------------------------------------------
---------------------------------------------------------------------

The erts-11.1.8 application can be applied independently of other
applications on a full OTP 23 installation.

--- Fixed Bugs and Malfunctions ---

  OTP-17185    Application(s): erts

              Fixed a bug that could cause some work scheduled for
              execution on scheduler threads to be delayed until
              other similar work appeared. Beside delaying various
              cleanup of internal data structures also the following
              could be delayed:

              -- Termination of a distribution controller process

              -- Disabling of the distribution on a node

              -- Gathering of memory allocator information using the
              instrument module

              -- Enabling, disabling, and gathering of msacc
              information

              -- Delivery of 'CHANGE' messages when time offset is
              monitored

              -- A call to erlang:cancel_timer()

              -- A call to erlang:read_timer()

              -- A call to erlang:statistics(io | garbage_collection
              | scheduler_wall_time)

              -- A call to ets:all()

              -- A call to erlang:memory()

              -- A call to erlang:system_info({allocator |
              allocator_sizes, _})

              -- A call to erlang:trace_delivered()

              The bug existed on runtime systems running on all types
              of hardware except for x86/x86_64.

Full runtime dependencies of erts-11.1.8: kernel-7.0, sasl-3.3,
stdlib-3.13

---------------------------------------------------------------------
--- ssl-10.2.3 ------------------------------------------------------
---------------------------------------------------------------------

The ssl-10.2.3 application can be applied independently of other
applications on a full OTP 23 installation.

--- Fixed Bugs and Malfunctions ---

  OTP-17190    Application(s): ssl
              Related Id(s): ERIERL-606

              Avoid race when the first two upgrade server handshakes
              (that is servers that use a gen_tcp socket as input to
              ssl:handshake/2,3) start close to each other. Could
              lead to that one of the handshakes would fail.

Full runtime dependencies of ssl-10.2.3: crypto-4.2, erts-10.0,
inets-5.10.7, kernel-6.0, public_key-1.8, stdlib-3.12

---------------------------------------------------------------------
--- tools-3.4.3 -----------------------------------------------------
---------------------------------------------------------------------

The tools-3.4.3 application can be applied independently of other
applications on a full OTP 23 installation.

--- Fixed Bugs and Malfunctions ---

  OTP-17191    Application(s): tools
              Related Id(s): ERL-1476, GH-4192, OTP-16922

              Correct the Xref analysis undefined_functions to not
              report internally generated behaviour_info/1.

Full runtime dependencies of tools-3.4.3: compiler-5.0, erts-11.0,
erts-9.1, kernel-5.4, runtime_tools-1.8.14, stdlib-3.4

---------------------------------------------------------------------
---------------------------------------------------------------------
---------------------------------------------------------------------

(triaxx)

2021-02-25 15:28:09 UTC MAIN commitmail json YAML

doc: Added x11/xst version 0.8.4.1

(pin)

2021-02-25 15:27:40 UTC MAIN commitmail json YAML

2021-02-25 15:27:19 UTC MAIN commitmail json YAML

x11/xst: import package

xst is a st fork with some patches applied and other goodies.

(pin)

2021-02-25 15:23:57 UTC MAIN commitmail json YAML

doc: Added devel/py-sarge version 0.1.6

(khorben)

2021-02-25 15:23:45 UTC MAIN commitmail json YAML

2021-02-25 15:23:21 UTC MAIN commitmail json YAML

py-sarge: import version 0.1.6

py-sarge is a wrapper for subprocess which provides command pipeline
functionality.

The sarge package provides a wrapper for subprocess which provides command
pipeline functionality.

This package leverages subprocess to provide easy-to-use cross-platform
command pipelines with a Posix flavour: you can have chains of commands using
;, &, pipes using | and |&, and redirection.

(khorben)

2021-02-25 15:20:28 UTC MAIN commitmail json YAML

x11/st-term: prepare to import xst

(pin)

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

doc: Added devel/py-pylru version 1.2.0

(khorben)

2021-02-25 15:10:45 UTC MAIN commitmail json YAML

2021-02-25 15:10:08 UTC MAIN commitmail json YAML

py-pylry: import version 1.2.0

Pylru implements a true LRU cache along with several support classes. The cache
is efficient and written in pure Python. It works with Python 2.6+ including
the 3.x series. Basic operations (lookup, insert, delete) all run in a constant
amount of time. Pylru provides a cache class with a simple dict interface. It
also provides classes to wrap any object that has a dict interface with a
cache. Both write-through and write-back semantics are supported. Pylru also
provides classes to wrap functions in a similar way, including a function
decorator.

(khorben)

2021-02-25 14:59:59 UTC MAIN commitmail json YAML

doc: Added devel/py-cachelib version 0.1

(khorben)

2021-02-25 14:59:41 UTC MAIN commitmail json YAML

2021-02-25 14:59:15 UTC MAIN commitmail json YAML

py-cachelib: import version 0.1

py-cachelib is a collection of cache libraries in the same API interface.
Extracted from werkzeug.

(khorben)

2021-02-25 13:15:18 UTC MAIN commitmail json YAML

TODO: emulators/z26 has been removed

(triaxx)

2021-02-25 12:36:52 UTC MAIN commitmail json YAML

Updated sysutils/ansible, www/py-WebOb

(adam)

2021-02-25 12:36:33 UTC MAIN commitmail json YAML

py-WebOb: updated to 1.8.7

1.8.7

Bugfix
- Decoding deflate-encoded responses now supports data which is packed in
  a zlib container as it is supposed to be. The old, non-standard behaviour
  is still supported.

(adam)

2021-02-25 12:35:58 UTC MAIN commitmail json YAML

ansible: updated to 2.9.18

v2.9.18
=======

Release Summary
---------------

| Release Date: 2021-02-18
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

Minor Changes
-------------

- ansible-test - The ``pylint`` sanity test is now supported on Python 3.8.
- inventory cache - do not show a warning when the cache file does not (yet) exist.

Security Fixes
--------------

- **security issue** - Mask default and fallback values for ``no_log`` module options (CVE-2021-20228)
- _sf_account_manager - `initiator_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- _sf_account_manager - `target_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- aws_netapp_cvs_active_directory - `api_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- aws_netapp_cvs_active_directory - `secret_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- aws_netapp_cvs_filesystems - `api_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- aws_netapp_cvs_filesystems - `secret_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- aws_netapp_cvs_pool - `api_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- aws_netapp_cvs_pool - `secret_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- aws_netapp_cvs_snapshots - `api_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- aws_netapp_cvs_snapshots - `secret_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- bitbucket_pipeline_variable - hide user sensitive information which are marked as ``secured`` from logging into the console (https://github.com/ansible-collections/community.general/pull/1635) (CVE-2021-20180).
- ce_vrrp - `auth_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- cp_mgmt_vpn_community_meshed - `shared_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- cp_mgmt_vpn_community_star - `shared_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- docker_swarm - `signing_ca_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_backend_service - `oauth2_client_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_disk - `disk_encryption_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_disk - `source_image_encryption_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_disk - `source_snapshot_encryption_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_image - `image_encryption_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_image - `source_disk_encryption_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_instance_template - `disk_encryption_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_instance_template - `source_image_encryption_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_region_disk - `disk_encryption_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_region_disk - `source_snapshot_encryption_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_snapshot - `snapshot_encryption_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_snapshot - `source_disk_encryption_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_ssl_certificate - `private_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_compute_vpn_tunnel - `shared_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gcp_sql_instance - `client_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- gitlab_runner - `registration_token` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- iap_start_workflow - `token_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- ibm_sa_host - `iscsi_chap_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- keycloak_client - `auth_client_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- keycloak_client - `registration_access_token` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- keycloak_clienttemplate - `auth_client_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- keycloak_group - `auth_client_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- librato_annotation - `api_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- na_elementsw_account - `initiator_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- na_elementsw_account - `target_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- netscaler_lb_monitor - `radkey` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- nios_nsgroup - `tsig_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- nxos_aaa_server - `global_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- nxos_pim_interface - `hello_auth_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- oneandone_firewall_policy - `auth_token` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- oneandone_load_balancer - `auth_token` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- oneandone_monitoring_policy - `auth_token` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- oneandone_private_network - `auth_token` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- oneandone_public_ip - `auth_token` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- ovirt - `instance_rootpw` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- pagerduty_alert - `api_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- pagerduty_alert - `integration_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- pagerduty_alert - `service_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- pulp_repo - `feed_client_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- rax_clb_ssl - `private_key` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- snmp_facts - hide user sensitive information such as ``privkey`` and ``authkey`` from logging into the console (https://github.com/ansible-collections/community.general/pull/1621) (CVE-2021-20178).
- spotinst_aws_elastigroup - `multai_token` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- spotinst_aws_elastigroup - `token` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).
- utm_proxy_auth_profile - `frontend_cookie_secret` is now masked with no_log and no longer emitted in logging/output (CVE-2021-20191).

Bugfixes
--------

- Fix incorrect variable scoping when using ``import with context`` in Jinja2 templates. (https://github.com/ansible/ansible/issues/72615)
- ansible-test - Temporarily limit ``cryptography`` to versions before 3.4 to enable tests to function.
- ansible-test - The ``--remote`` option has been updated for Python 2.7 to work around breaking changes in the newly released ``get-pip.py`` bootstrapper.
- ansible-test - The ``--remote`` option has been updated to use a versioned ``get-pip.py`` bootstrapper to avoid issues with future releases.
- display correct error information when an error exists in the last line of the file (https://github.com/ansible/ansible/issues/16456)
- facts - properly report virtualization facts for Linux guests running on bhyve (https://github.com/ansible/ansible/issues/73167)
- mysql_user - add ``INVOKE LAMBDA`` privilege support (https://github.com/ansible-collections/community.general/issues/283).
- mysql_user - add ``SHOW_ROUTINE`` privilege support (https://github.com/ansible-collections/community.mysql/issues/86).
- mysql_user - add missed privileges to support (https://github.com/ansible-collections/community.general/issues/617).
- pause - do not warn when running in the background if a timeout is provided (https://github.com/ansible/ansible/issues/73042)
- postgresql_info - fix crash caused by wrong PgSQL version parsing (https://github.com/ansible-collections/community.postgresql/issues/40).
- postgresql_ping - fix crash caused by wrong PgSQL version parsing (https://github.com/ansible-collections/community.postgresql/issues/40).
- postgresql_query - fix datetime.timedelta type handling (https://github.com/ansible-collections/community.postgresql/issues/47).
- postgresql_query - fix decimal handling (https://github.com/ansible-collections/community.postgresql/issues/45).
- postgresql_set - return a message instead of traceback when a passed parameter has not been found (https://github.com/ansible-collections/community.postgresql/issues/41).
- psrp connection plugin - ``to_text(stdout)`` before json.loads in psrp.Connection.put_file in case stdout is bytes.
- win_find - Get-FileStat used [int] instead of [int64] for file size calculations

v2.9.17
=======

Release Summary
---------------

| Release Date: 2021-01-18
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

Minor Changes
-------------

- ansible-test - Added a ``--export`` option to the ``ansible-test coverage combine`` command to facilitate multi-stage aggregation of coverage in CI pipelines.
- ansible-test - added a ``--venv-system-site-packages`` option for use with the ``--venv`` option
- ansible-test - virtualenv helper scripts now prefer ``venv`` on Python 3 over ``virtualenv`` if the ``ANSIBLE_TEST_PREFER_VENV`` environment variable is set
- bigiq_device_info module - add information on BIG-IQ 7.x support

Bugfixes
--------

- Fix bytestring vs string comparison in module_utils.basic.is_special_selinux_path() so that special-cased filesystems which don't support SELinux context attributes still allow files to be manipulated on them. (https://github.com/ansible/ansible/issues/70244)
- Freeform actions did not work with ``ansible.builtin.`` or ``ansible.legacy.`` FQCN (https://github.com/ansible/ansible/pull/72958).
- async - Fix Python 3 interpreter parsing from module by comparing with bytes (https://github.com/ansible/ansible/issues/70690)
- bigiq_device_info module - fix iteration bug in a _transform_name_attribute method
- docker_image - if ``push=true`` is used with ``repository``, and the image does not need to be tagged, still push. This can happen if ``repository`` and ``name`` are equal (https://github.com/ansible-collections/community.docker/issues/52, https://github.com/ansible-collections/community.docker/pull/53).
- docker_image - report error when loading a broken archive that contains no image (https://github.com/ansible-collections/community.docker/issues/46, https://github.com/ansible-collections/community.docker/pull/55).
- docker_image - report error when the loaded archive does not contain the specified image (https://github.com/ansible-collections/community.docker/issues/41, https://github.com/ansible-collections/community.docker/pull/55).
- inventory - pass the vars dictionary to combine_vars instead of an individual key's value (https://github.com/ansible/ansible/issues/72975).
- k8s - add support for python-kubernetes v12 and later - backport of support in community.kubernetes
- paramiko connection plugin - Ensure we only reset the connection when one has been previously established (https://github.com/ansible/ansible/issues/65812)
- systemd - preserve the full unit name when using a templated service and ``systemd`` failed to parse dbus due to a known bug in ``systemd`` (https://github.com/ansible/ansible/pull/72985)

- unsafe_proxy - Ensure that data within a tuple is marked as unsafe (https://github.com/ansible/ansible/issues/65722)
- user - do the right thing when ``password_lock=True`` and ``password`` are used together (https://github.com/ansible/ansible/issues/72992)

v2.9.16
=======

Release Summary
---------------

| Release Date: 2020-12-14
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

Minor Changes
-------------

- ansible-doc - provide ``has_action`` field in JSON output for modules. That information is currently only available in the text view (https://github.com/ansible/ansible/pull/72359).
- ansible-galaxy - find any collection dependencies in the globally configured Galaxy servers and not just the server the parent collection is from.

- ansible-test - Added the ``-remote rhel/7.9`` option to run tests on RHEL 7.9
- ansible-test - Fix container hostname/IP discovery for the ``acme`` test plugin.
- ansible-test - centos6 end of life - container image updated to point to vault base repository (https://github.com/ansible/distro-test-containers/pull/54)
- iptables - reorder comment postition to be at the end (https://github.com/ansible/ansible/issues/71444).
- lvol - fix idempotency issue when using lvol with ``%VG`` or ``%PVS`` size options and VG is fully allocated (https://github.com/ansible-collections/community.general/pull/229).

Bugfixes
--------

- Adjust various hard-coded action names to also include their ``ansible.builtin.`` and ``ansible.legacy.`` prefixed version (https://github.com/ansible/ansible/issues/71817, https://github.com/ansible/ansible/issues/71818, https://github.com/ansible/ansible/pull/71824).
- Collection callbacks were ignoring options and rules for stdout and adhoc cases.
- Fix virt module to support list_vms with a status of paused (https://github.com/ansible/ansible/issues/72059)
- Fixed issue when `netstat` is either missing or doesn't have execution permissions leading to incorrect command being executed.
- Try to load action plugin from the same collection as the module (https://github.com/ansible/ansible/pull/66701)
- account for bug in Python 2.6 that occurs during interpreter shutdown to avoid stack trace
- ansible-test - Correctly detect changes in a GitHub pull request when running on Azure Pipelines.
- ansible-test - Skip installing requirements if they are already installed.
- ansible-test - add constraint for ``cffi`` to prevent failure on systems with older versions of ``gcc`` (https://foss.heptapod.net/pypy/cffi/-/issues/480)

- ansible-test - convert target paths to unicode on Python 2 to avoid ``UnicodeDecodeError`` (https://github.com/ansible/ansible/issues/68398, https://github.com/ansible/ansible/pull/72623).
- ansible-test - improve classification of changes to ``.gitignore``, ``COPYING``, ``LICENSE``, ``Makefile``, and all files ending with one of ``.in`, ``.md`, ``.rst``, ``.toml``, ``.txt`` in the collection root directory (https://github.com/ansible/ansible/pull/72353).
- ansible-test now uses GNU tar format instead of the Python default when creating payloads for remote systems
- azure_rm inventory plugin - update to fetch availability zone information of VM in hostvars. (https://github.com/ansible-collections/azure/issues/161)
- dnf - fix filtering to avoid dependncy conflicts (https://github.com/ansible/ansible/issues/72316)
- ec2_group - Fixes error handling during tagging failures (https://github.com/ansible-collections/amazon.aws/issues/210).
- ensure 'local' connection always has the correct default user for actions to consume.
- network_cli - Update paramiko play_context when network_cli's play context is updated so that ssh parameters can be updated as well.
- network_cli connection plugin - Perform privilege escalation before setting terminal.
- pause - Fix indefinite hang when using a pause task on a background process (https://github.com/ansible/ansible/issues/32142)

- remove redundant remote_user setting in play_context for local as plugin already does it, also removes fork/thread issue from use of pwd library.
- set_mode_if_different - handle symlink if it is inside a directory with sticky bit set (https://github.com/ansible/ansible/pull/45198)

- systemd - account for templated unit files using ``@`` when searching for the unit file (https://github.com/ansible/ansible/pull/72347#issuecomment-730626228)

- systemd - follow up fix to https://github.com/ansible/ansible/issues/72338 to use ``list-unit-files`` rather than ``list-units`` in order to show all units files on the system.

- systemd - work around bug with ``systemd`` 245 and 5.8 kernel that does not correctly report service state (https://github.com/ansible/ansible/issues/71528)

- wait_for - catch and ignore errors when getting active connections with psutil (https://github.com/ansible/ansible/issues/72322)

v2.9.15
=======

Release Summary
---------------

| Release Date: 2020-11-02
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

Minor Changes
-------------

- ansible-test - Add a ``--docker-network`` option to choose the network for running containers when using the ``--docker`` option.
- ansible-test - Collections can now specify pip constraints for unit and integration test requirements using ``tests/unit/constraints.txt`` and ``tests/integration/constraints.txt`` respectively.
- dnf - now shows specific package changes (installations/removals) under ``results`` in check_mode. (https://github.com/ansible/ansible/issues/66132)
- module_defaults - add new module s3_metrics_configuration from community.aws to aws module_defaults group (https://github.com/ansible/ansible/pull/72145).
- vmware_guest_custom_attributes - Fixed issue when trying to set a VM custom attribute when there are custom attributes with the same name for other object types (https://github.com/ansible-collections/community.vmware/issues/412).

Breaking Changes / Porting Guide
--------------------------------

- ansible-galaxy login command has been removed (see https://github.com/ansible/ansible/issues/71560)

Bugfixes
--------

- Restore the ability for changed_when/failed_when to function with group_by.
- ansible-test - Always connect additional Docker containers to the network used by the current container (if any).
- ansible-test - Always map ``/var/run/docker.sock`` into test containers created by the ``--docker`` option if the docker host is not ``localhost``.
- ansible-test - Attempt to detect the Docker hostname instead of assuming ``localhost``.
- ansible-test - Correctly detect running in a Docker container on Azure Pipelines.
- ansible-test - Prefer container IP at ``.NetworkSettings.Networks.{NetworkName}.IPAddress`` over ``.NetworkSettings.IPAddress``.
- ansible-test - The ``cs`` and ``openshift`` test plugins now search for containers on the current network instead of assuming the ``bridge`` network.
- ansible-test - Using the ``--remote`` option on Azure Pipelines now works from a job running in a container.
- ansible-test - disable ansible-doc sanity test for vars plugins in collections, which are not supported by Ansible 2.9 (https://github.com/ansible/ansible/pull/72336).
- async_wrapper - Fix race condition when ``~/.ansible_async`` folder tries to be created by multiple async tasks at the same time - https://github.com/ansible/ansible/issues/59306
- dnf - it is now possible to specify both ``security: true`` and ``bugfix: true`` to install updates of both types. Previously, only security would get installed if both were true. (https://github.com/ansible/ansible/issues/70854)
- facts - fix distribution fact for SLES4SAP (https://github.com/ansible/ansible/pull/71559).
- kubectl - follow up fix in _build_exec_cmd API (https://github.com/ansible/ansible/issues/72171).
- nmcli - typecast parameters to string as required (https://github.com/ansible/ansible/issues/59095).
- ovirt_disk - don't move disk when already in storage_domain (https://github.com/oVirt/ovirt-ansible-collection/pull/135).
- postgresql_pg_hba - fix a crash when a new rule with an 'options' field replaces a rule without or vice versa (https://github.com/ansible-collections/community.general/issues/1108).
- postgresql_privs - fix the module mistakes a procedure for a function (https://github.com/ansible-collections/community.general/issues/994)
- powershell - remove getting the PowerShell version from the env var ``POWERSHELL_VERSION``. This feature never worked properly and can cause conflicts with other libraries that use this var
- user - AnsibleModule.run_command returns a tuple of return code, stdout and stderr. The module main function of the user module expects user.create_user to return a tuple of return code, stdout and stderr. Fix the locations where stdout and stderr got reversed.

- user - Local users with an expiry date cannot be created as the ``luseradd`` / ``lusermod`` commands do not support the ``-e`` option. Set the expiry time in this case via ``lchage`` after the user was created / modified. (https://github.com/ansible/ansible/issues/71942)

- zfs - fixed ``invalid character '@' in pool name"`` error when working with snapshots on a root zvol (https://github.com/ansible-collections/community.general/issues/932).

v2.9.14
=======

Release Summary
---------------

| Release Date: 2020-10-05
| `Porting Guide <https://docs.ansible.com/ansible/devel/porting_guides.html>`__

Minor Changes
-------------

- ansible-test - Added CI provider support for Azure Pipelines.
- ansible-test - Added support for Ansible Core CI request signing for Shippable.
- ansible-test - Allow custom ``--remote-stage`` options for development and testing.
- ansible-test - Fix ``ansible-test coverage`` reporting sub-commands (``report``, ``html``, ``xml``) on Python 2.6.
- ansible-test - Refactored CI related logic into a basic provider abstraction.
- ansible-test - Remove the discontinued ``us-east-2`` choice from the ``--remote-aws-region`` option.
- ansible-test - Request remote resources by provider name for all provider types.
- ansible-test - Show a warning when the obsolete ``--remote-aws-region`` option is used.
- ansible-test - Support custom remote endpoints with the ``--remote-endpoint`` option.
- ansible-test - Update built-in service endpoints for the ``--remote`` option.
- ansible-test - Use new endpoint for Parallels based instances with the ``--remote`` option.
- vmware_guest - Support HW version 15 / vSphere 6.7U2 (https://github.com/ansible-collections/vmware/pull/99).

Security Fixes
--------------

- kubectl - connection plugin now redact kubectl_token and kubectl_password in console log (https://github.com/ansible-collections/community.kubernetes/issues/65) (CVE-2020-1753).

Bugfixes
--------

- Handle write_files option in cgroup_perf_recap callback plugin (https://github.com/ansible/ansible/issues/64936).
- Prevent templating unused variables for {% include %} (https://github.com/ansible/ansible/issues/68699)
- Provide more information in AnsibleUndefinedVariable (https://github.com/ansible/ansible/issues/55152)
- ansible-doc - do not crash if plugin name cannot be found (https://github.com/ansible/ansible/pull/71965).
- ansible-doc - properly show plugin name when ``name:`` is used instead of ``<plugin_type>:`` (https://github.com/ansible/ansible/pull/71965).
- ansible-test - Change classification using ``--changed`` now consistently handles common configuration files for supported CI providers.
- ansible-test - The ``resource_prefix`` variable provided to tests running on Azure Pipelines is now converted to lowercase to match other CI providers.
- ansible-test - for local change detection, allow to specify branch to compare to with ``--base-branch`` for all types of tests (https://github.com/ansible/ansible/pull/69508).
- docker_login - now correctly reports changed status on logout for Docker versions released after June 2020.
- docker_login - now obeys check_mode for logout
- interfaces_file - escape regular expression characters in old value (https://github.com/ansible-collections/community.general/issues/777).
- ovirt_disk - fix upload when direct upload fails (https://github.com/oVirt/ovirt-ansible-collection/pull/120).
- postgres_user - remove false positive ``no_log`` warning for ``no_password_changes`` option (https://github.com/ansible/ansible/issues/68106).
- psrp - Fix hang when copying an empty file to the remote target
- runas - create a new token when running as ``SYSTEM`` to ensure it has the full privileges assigned to that account

(adam)

2021-02-25 12:30:58 UTC MAIN commitmail json YAML

modular-xorg-xquartz, libAppleWM: Use predefined OSX_SDK_PATH

The latest macOS Big Sur 11.2.1 and Xcode 12.4 as of 2021-02-24 do not
provide 11.2 SDK. They provide 11.1 SDK instead. mk/platform/Darwin.mk has
workaround for this situation. So use the workaround directly.

OSX_SDK_PATH may be internal, however it is accessible over 5 years.
It may not be a big problem hopefully.

(ryoon)

2021-02-25 12:20:09 UTC MAIN commitmail json YAML

pango: pangocoretext.h is no longer installed in macOS/Quartz case

(ryoon)

2021-02-25 10:52:21 UTC MAIN commitmail json YAML

doc: Updated net/yaydl to 0.3.2

(pin)

2021-02-25 10:51:58 UTC MAIN commitmail json YAML

net/yaydl: update to 0.3.2

-Won't panic with VOE.sx embed only streams anymore.

(pin)

2021-02-25 10:51:06 UTC MAIN commitmail json YAML

doc: Updated sysutils/sfm to 0.4.1

(pin)

2021-02-25 10:50:44 UTC MAIN commitmail json YAML

sysutils/sfm: update to 0.4.1

* Add fix move error as workaround
* fix cargo lock

(pin)

2021-02-25 10:36:53 UTC MAIN commitmail json YAML

2021-02-25 10:35:48 UTC MAIN commitmail json YAML

ghc90: Fix buildlink3 file

(nia)

2021-02-25 10:28:22 UTC MAIN commitmail json YAML

Update to sleepto-1.1 - fixes some printf formatting bugs.

(simonb)

2021-02-25 10:23:40 UTC MAIN commitmail json YAML

doc: Updated games/flightgear to 2020.3.6

(nia)

2021-02-25 10:23:16 UTC MAIN commitmail json YAML

doc: Updated games/simgear to 2020.3.6

(nia)

2021-02-25 10:22:15 UTC MAIN commitmail json YAML

2021-02-25 10:19:29 UTC MAIN commitmail json YAML

tex-l3packages: drop tex-amsmath dependency, break another cycle

Noted by ryoon@

(markd)

2021-02-25 10:11:30 UTC MAIN commitmail json YAML

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

doc: Updated inputmethod/fcitx5-gtk to 5.0.3nb1

(ryoon)

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

fcitx5-gtk: Enable gtk4 IM module

* Enable multilingual character input for GTK4 apps.

(ryoon)

2021-02-25 09:57:00 UTC MAIN commitmail json YAML

x11: Enable gtk4

(ryoon)

2021-02-25 09:56:31 UTC MAIN commitmail json YAML

doc: Added x11/gtk4 version 4.0.3

(ryoon)

2021-02-25 09:55:56 UTC MAIN commitmail json YAML

x11/gtk4: import gtk4-4.0.3

GTK is a multi-platform toolkit for creating graphical user
interfaces. Offering a complete set of widgets, GTK is suitable for
projects ranging from small one-off tools to complete application
suites.

GTK has been designed from the ground up to support a range of
languages, not only C/C++.

This package contains GTK 4.

(ryoon)

2021-02-25 09:51:51 UTC MAIN commitmail json YAML

adoptopenjdk11-bin: Fix PLIST for Linux/x86_64

Pointed out by markd@. Thank you.

(ryoon)

2021-02-25 09:19:54 UTC MAIN commitmail json YAML

Updated net/py-botocore, net/py-boto3, net/py-awscli, security/py-google-auth

(adam)

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

py-google-auth: updated to 1.27.0

1.27.0

Features
workload identity federation support

Bug Fixes
add pyopenssl as extra dependency

(adam)

2021-02-25 09:15:58 UTC MAIN commitmail json YAML

py-awscli: updated to 1.19.15

1.19.15
api-change:appflow: Update appflow command to latest version
api-change:ecr-public: Update ecr-public command to latest version
api-change:mediapackage-vod: Update mediapackage-vod command to latest version
api-change:compute-optimizer: Update compute-optimizer command to latest version
api-change:es: Update es command to latest version

1.19.14
api-change:glue: Update glue command to latest version
api-change:iotevents: Update iotevents command to latest version
api-change:autoscaling: Update autoscaling command to latest version
api-change:quicksight: Update quicksight command to latest version
api-change:redshift-data: Update redshift-data command to latest version
api-change:connect: Update connect command to latest version
api-change:pinpoint: Update pinpoint command to latest version
api-change:s3control: Update s3control command to latest version

1.19.13
api-change:sagemaker-runtime: Update sagemaker-runtime command to latest version
api-change:sagemaker: Update sagemaker command to latest version

1.19.12
api-change:rds: Update rds command to latest version

1.19.11
api-change:cloudformation: Update cloudformation command to latest version
api-change:codebuild: Update codebuild command to latest version
api-change:sagemaker: Update sagemaker command to latest version
api-change:health: Update health command to latest version

1.19.10
api-change:lookoutvision: Update lookoutvision command to latest version
api-change:ec2: Update ec2 command to latest version
api-change:config: Update config command to latest version

1.19.9
api-change:devops-guru: Update devops-guru command to latest version
api-change:codebuild: Update codebuild command to latest version

1.19.8
api-change:medialive: Update medialive command to latest version
api-change:workmailmessageflow: Update workmailmessageflow command to latest version
api-change:mediatailor: Update mediatailor command to latest version
api-change:redshift-data: Update redshift-data command to latest version
api-change:pinpoint: Update pinpoint command to latest version
api-change:config: Update config command to latest version
api-change:lightsail: Update lightsail command to latest version
api-change:kinesis-video-archived-media: Update kinesis-video-archived-media command to latest version

1.19.7
api-change:detective: Update detective command to latest version
api-change:personalize-events: Update personalize-events command to latest version
api-change:rds: Update rds command to latest version
api-change:appsync: Update appsync command to latest version
api-change:macie2: Update macie2 command to latest version
api-change:elbv2: Update elbv2 command to latest version
api-change:eks: Update eks command to latest version
api-change:codepipeline: Update codepipeline command to latest version
api-change:wafv2: Update wafv2 command to latest version
api-change:iam: Update iam command to latest version

1.19.6
api-change:databrew: Update databrew command to latest version
api-change:rds: Update rds command to latest version

1.19.5
api-change:gamelift: Update gamelift command to latest version
api-change:mediaconvert: Update mediaconvert command to latest version
api-change:sagemaker: Update sagemaker command to latest version
api-change:qldb-session: Update qldb-session command to latest version
api-change:quicksight: Update quicksight command to latest version

1.19.4
api-change:iotsitewise: Update iotsitewise command to latest version
api-change:macie2: Update macie2 command to latest version
api-change:globalaccelerator: Update globalaccelerator command to latest version
api-change:ivs: Update ivs command to latest version
api-change:cloudtrail: Update cloudtrail command to latest version
api-change:elbv2: Update elbv2 command to latest version
api-change:dataexchange: Update dataexchange command to latest version
api-change:elasticache: Update elasticache command to latest version

1.19.3
api-change:elbv2: Update elbv2 command to latest version
api-change:macie: Update macie command to latest version
api-change:organizations: Update organizations command to latest version

1.19.2
api-change:emr-containers: Update emr-containers command to latest version
api-change:dlm: Update dlm command to latest version
api-change:quicksight: Update quicksight command to latest version
api-change:athena: Update athena command to latest version
api-change:ec2: Update ec2 command to latest version
api-change:appflow: Update appflow command to latest version

1.19.1
api-change:lambda: Update lambda command to latest version
api-change:compute-optimizer: Update compute-optimizer command to latest version
api-change:securityhub: Update securityhub command to latest version
api-change:ec2: Update ec2 command to latest version
api-change:workmail: Update workmail command to latest version
api-change:codebuild: Update codebuild command to latest version
api-change:iotsitewise: Update iotsitewise command to latest version
api-change:ce: Update ce command to latest version
api-change:auditmanager: Update auditmanager command to latest version
api-change:databrew: Update databrew command to latest version

1.19.0
api-change:appmesh: Update appmesh command to latest version
api-change:organizations: Update organizations command to latest version
api-change:location: Update location command to latest version
api-change:route53: Update route53 command to latest version
feature:Python: Dropped support for Python 3.4 and 3.5
api-change:rds-data: Update rds-data command to latest version
api-change:s3control: Update s3control command to latest version
api-change:lookoutvision: Update lookoutvision command to latest version
api-change:application-autoscaling: Update application-autoscaling command to latest version
api-change:iotwireless: Update iotwireless command to latest version
api-change:medialive: Update medialive command to latest version

1.18.223
api-change:medialive: Update medialive command to latest version
api-change:connect: Update connect command to latest version
api-change:macie2: Update macie2 command to latest version

1.18.222
api-change:wellarchitected: Update wellarchitected command to latest version
api-change:databrew: Update databrew command to latest version
api-change:robomaker: Update robomaker command to latest version
api-change:iot: Update iot command to latest version
api-change:cloudwatch: Update cloudwatch command to latest version
api-change:managedblockchain: Update managedblockchain command to latest version

1.18.221
api-change:lightsail: Update lightsail command to latest version
api-change:accessanalyzer: Update accessanalyzer command to latest version
api-change:sesv2: Update sesv2 command to latest version
api-change:customer-profiles: Update customer-profiles command to latest version
api-change:es: Update es command to latest version
api-change:elasticache: Update elasticache command to latest version

1.18.220
api-change:backup: Update backup command to latest version

1.18.219
api-change:ec2: Update ec2 command to latest version
api-change:lexv2-runtime: Update lexv2-runtime command to latest version
api-change:ssm: Update ssm command to latest version
api-change:lexv2-models: Update lexv2-models command to latest version
api-change:redshift: Update redshift command to latest version
api-change:rds: Update rds command to latest version
api-change:greengrassv2: Update greengrassv2 command to latest version

1.18.218
api-change:kafka: Update kafka command to latest version
api-change:resourcegroupstaggingapi: Update resourcegroupstaggingapi command to latest version
enhancement:codeartifact: Added login support for NuGet client v4.9.4
api-change:securityhub: Update securityhub command to latest version

1.18.217
api-change:chime: Update chime command to latest version
api-change:acm-pca: Update acm-pca command to latest version
api-change:ecs: Update ecs command to latest version

1.18.216
api-change:sns: Update sns command to latest version

1.18.215
api-change:cognito-identity: Update cognito-identity command to latest version
api-change:pinpoint: Update pinpoint command to latest version
api-change:sagemaker: Update sagemaker command to latest version
api-change:s3control: Update s3control command to latest version

(adam)

2021-02-25 09:12:03 UTC MAIN commitmail json YAML

py-boto3: updated to 1.17.15

1.17.15
api-change:es: [botocore] Update es client to latest version
api-change:mediapackage-vod: [botocore] Update mediapackage-vod client to latest version
api-change:appflow: [botocore] Update appflow client to latest version
api-change:ecr-public: [botocore] Update ecr-public client to latest version
api-change:compute-optimizer: [botocore] Update compute-optimizer client to latest version

1.17.14
api-change:glue: [botocore] Update glue client to latest version
api-change:redshift-data: [botocore] Update redshift-data client to latest version
api-change:s3control: [botocore] Update s3control client to latest version
api-change:autoscaling: [botocore] Update autoscaling client to latest version
api-change:pinpoint: [botocore] Update pinpoint client to latest version
api-change:quicksight: [botocore] Update quicksight client to latest version
api-change:iotevents: [botocore] Update iotevents client to latest version
api-change:connect: [botocore] Update connect client to latest version

1.17.13
api-change:sagemaker-runtime: [botocore] Update sagemaker-runtime client to latest version
api-change:sagemaker: [botocore] Update sagemaker client to latest version

1.17.12
api-change:rds: [botocore] Update rds client to latest version

1.17.11
api-change:health: [botocore] Update health client to latest version
api-change:sagemaker: [botocore] Update sagemaker client to latest version
api-change:cloudformation: [botocore] Update cloudformation client to latest version
api-change:codebuild: [botocore] Update codebuild client to latest version

1.17.10
api-change:ec2: [botocore] Update ec2 client to latest version
api-change:config: [botocore] Update config client to latest version
api-change:lookoutvision: [botocore] Update lookoutvision client to latest version

1.17.9
api-change:devops-guru: [botocore] Update devops-guru client to latest version
api-change:codebuild: [botocore] Update codebuild client to latest version

1.17.8
api-change:lightsail: [botocore] Update lightsail client to latest version
api-change:medialive: [botocore] Update medialive client to latest version
api-change:kinesis-video-archived-media: [botocore] Update kinesis-video-archived-media client to latest version
api-change:config: [botocore] Update config client to latest version
api-change:pinpoint: [botocore] Update pinpoint client to latest version
api-change:redshift-data: [botocore] Update redshift-data client to latest version
api-change:workmailmessageflow: [botocore] Update workmailmessageflow client to latest version
api-change:mediatailor: [botocore] Update mediatailor client to latest version

1.17.7
api-change:personalize-events: [botocore] Update personalize-events client to latest version
api-change:eks: [botocore] Update eks client to latest version
api-change:iam: [botocore] Update iam client to latest version
api-change:codepipeline: [botocore] Update codepipeline client to latest version
api-change:detective: [botocore] Update detective client to latest version
api-change:macie2: [botocore] Update macie2 client to latest version
api-change:wafv2: [botocore] Update wafv2 client to latest version
api-change:elbv2: [botocore] Update elbv2 client to latest version
api-change:appsync: [botocore] Update appsync client to latest version
api-change:rds: [botocore] Update rds client to latest version

1.17.6
api-change:databrew: [botocore] Update databrew client to latest version
api-change:rds: [botocore] Update rds client to latest version

1.17.5
api-change:quicksight: [botocore] Update quicksight client to latest version
api-change:mediaconvert: [botocore] Update mediaconvert client to latest version
api-change:qldb-session: [botocore] Update qldb-session client to latest version
api-change:sagemaker: [botocore] Update sagemaker client to latest version
api-change:gamelift: [botocore] Update gamelift client to latest version

1.17.4
api-change:dataexchange: [botocore] Update dataexchange client to latest version
api-change:cloudtrail: [botocore] Update cloudtrail client to latest version
api-change:elbv2: [botocore] Update elbv2 client to latest version
api-change:ivs: [botocore] Update ivs client to latest version
api-change:macie2: [botocore] Update macie2 client to latest version
api-change:globalaccelerator: [botocore] Update globalaccelerator client to latest version
api-change:iotsitewise: [botocore] Update iotsitewise client to latest version
api-change:elasticache: [botocore] Update elasticache client to latest version

1.17.3
api-change:macie: [botocore] Update macie client to latest version
api-change:elbv2: [botocore] Update elbv2 client to latest version
api-change:organizations: [botocore] Update organizations client to latest version

1.17.2
api-change:quicksight: [botocore] Update quicksight client to latest version
api-change:appflow: [botocore] Update appflow client to latest version
api-change:emr-containers: [botocore] Update emr-containers client to latest version
api-change:dlm: [botocore] Update dlm client to latest version
api-change:athena: [botocore] Update athena client to latest version
api-change:ec2: [botocore] Update ec2 client to latest version

1.17.1
api-change:lambda: [botocore] Update lambda client to latest version
api-change:codebuild: [botocore] Update codebuild client to latest version
api-change:ec2: [botocore] Update ec2 client to latest version
api-change:ce: [botocore] Update ce client to latest version
api-change:databrew: [botocore] Update databrew client to latest version
api-change:securityhub: [botocore] Update securityhub client to latest version
api-change:workmail: [botocore] Update workmail client to latest version
api-change:auditmanager: [botocore] Update auditmanager client to latest version
api-change:compute-optimizer: [botocore] Update compute-optimizer client to latest version
api-change:iotsitewise: [botocore] Update iotsitewise client to latest version

1.17.0
api-change:appmesh: [botocore] Update appmesh client to latest version
feature:Python: Dropped support for Python 3.4 and 3.5
api-change:application-autoscaling: [botocore] Update application-autoscaling client to latest version
api-change:lookoutvision: [botocore] Update lookoutvision client to latest version
api-change:organizations: [botocore] Update organizations client to latest version
feature:Python: [botocore] Dropped support for Python 3.4 and 3.5
api-change:s3control: [botocore] Update s3control client to latest version
api-change:rds-data: [botocore] Update rds-data client to latest version
api-change:medialive: [botocore] Update medialive client to latest version
api-change:route53: [botocore] Update route53 client to latest version
api-change:location: [botocore] Update location client to latest version
enhancement:s3: [botocore] Amazon S3 now supports AWS PrivateLink, providing direct access to S3 via a private endpoint within your virtual private network.
api-change:iotwireless: [botocore] Update iotwireless client to latest version

1.16.63
api-change:macie2: [botocore] Update macie2 client to latest version
api-change:connect: [botocore] Update connect client to latest version
api-change:medialive: [botocore] Update medialive client to latest version

1.16.62
api-change:wellarchitected: [botocore] Update wellarchitected client to latest version
api-change:managedblockchain: [botocore] Update managedblockchain client to latest version
api-change:cloudwatch: [botocore] Update cloudwatch client to latest version
api-change:databrew: [botocore] Update databrew client to latest version
bugfix:Validator: [botocore] Fix showing incorrect max-value in error message for range and length value validation
api-change:iot: [botocore] Update iot client to latest version
api-change:robomaker: [botocore] Update robomaker client to latest version

1.16.61
api-change:elasticache: [botocore] Update elasticache client to latest version
api-change:customer-profiles: [botocore] Update customer-profiles client to latest version
api-change:sesv2: [botocore] Update sesv2 client to latest version
api-change:accessanalyzer: [botocore] Update accessanalyzer client to latest version
api-change:lightsail: [botocore] Update lightsail client to latest version
api-change:es: [botocore] Update es client to latest version

1.16.60
api-change:backup: [botocore] Update backup client to latest version

1.16.59
api-change:greengrassv2: [botocore] Update greengrassv2 client to latest version
api-change:redshift: [botocore] Update redshift client to latest version
api-change:lexv2-runtime: [botocore] Update lexv2-runtime client to latest version
api-change:rds: [botocore] Update rds client to latest version
api-change:lexv2-models: [botocore] Update lexv2-models client to latest version
api-change:ssm: [botocore] Update ssm client to latest version
api-change:ec2: [botocore] Update ec2 client to latest version

1.16.58
api-change:securityhub: [botocore] Update securityhub client to latest version
api-change:kafka: [botocore] Update kafka client to latest version
api-change:resourcegroupstaggingapi: [botocore] Update resourcegroupstaggingapi client to latest version

1.16.57
api-change:acm-pca: [botocore] Update acm-pca client to latest version
api-change:chime: [botocore] Update chime client to latest version
api-change:ecs: [botocore] Update ecs client to latest version

1.16.56
api-change:sns: [botocore] Update sns client to latest version

1.16.55
api-change:pinpoint: [botocore] Update pinpoint client to latest version
api-change:cognito-identity: [botocore] Update cognito-identity client to latest version
api-change:s3control: [botocore] Update s3control client to latest version
api-change:sagemaker: [botocore] Update sagemaker client to latest version

(adam)

2021-02-25 09:08:54 UTC MAIN commitmail json YAML

py-botocore: updated to 1.20.15

1.20.15
api-change:es: Update es client to latest version
api-change:mediapackage-vod: Update mediapackage-vod client to latest version
api-change:appflow: Update appflow client to latest version
api-change:ecr-public: Update ecr-public client to latest version
api-change:compute-optimizer: Update compute-optimizer client to latest version

1.20.14
api-change:glue: Update glue client to latest version
api-change:redshift-data: Update redshift-data client to latest version
api-change:s3control: Update s3control client to latest version
api-change:autoscaling: Update autoscaling client to latest version
api-change:pinpoint: Update pinpoint client to latest version
api-change:quicksight: Update quicksight client to latest version
api-change:iotevents: Update iotevents client to latest version
api-change:connect: Update connect client to latest version

1.20.13
api-change:sagemaker-runtime: Update sagemaker-runtime client to latest version
api-change:sagemaker: Update sagemaker client to latest version

1.20.12
api-change:rds: Update rds client to latest version

1.20.11
api-change:health: Update health client to latest version
api-change:sagemaker: Update sagemaker client to latest version
api-change:cloudformation: Update cloudformation client to latest version
api-change:codebuild: Update codebuild client to latest version

1.20.10
api-change:ec2: Update ec2 client to latest version
api-change:config: Update config client to latest version
api-change:lookoutvision: Update lookoutvision client to latest version

1.20.9
api-change:devops-guru: Update devops-guru client to latest version
api-change:codebuild: Update codebuild client to latest version

1.20.8
api-change:lightsail: Update lightsail client to latest version
api-change:medialive: Update medialive client to latest version
api-change:kinesis-video-archived-media: Update kinesis-video-archived-media client to latest version
api-change:config: Update config client to latest version
api-change:pinpoint: Update pinpoint client to latest version
api-change:redshift-data: Update redshift-data client to latest version
api-change:workmailmessageflow: Update workmailmessageflow client to latest version
api-change:mediatailor: Update mediatailor client to latest version

1.20.7
api-change:personalize-events: Update personalize-events client to latest version
api-change:eks: Update eks client to latest version
api-change:iam: Update iam client to latest version
api-change:codepipeline: Update codepipeline client to latest version
api-change:detective: Update detective client to latest version
api-change:macie2: Update macie2 client to latest version
api-change:wafv2: Update wafv2 client to latest version
api-change:elbv2: Update elbv2 client to latest version
api-change:appsync: Update appsync client to latest version
api-change:rds: Update rds client to latest version

1.20.6
api-change:databrew: Update databrew client to latest version
api-change:rds: Update rds client to latest version

1.20.5
api-change:quicksight: Update quicksight client to latest version
api-change:mediaconvert: Update mediaconvert client to latest version
api-change:qldb-session: Update qldb-session client to latest version
api-change:sagemaker: Update sagemaker client to latest version
api-change:gamelift: Update gamelift client to latest version

1.20.4
api-change:dataexchange: Update dataexchange client to latest version
api-change:cloudtrail: Update cloudtrail client to latest version
api-change:elbv2: Update elbv2 client to latest version
api-change:ivs: Update ivs client to latest version
api-change:macie2: Update macie2 client to latest version
api-change:globalaccelerator: Update globalaccelerator client to latest version
api-change:iotsitewise: Update iotsitewise client to latest version
api-change:elasticache: Update elasticache client to latest version

1.20.3
api-change:macie: Update macie client to latest version
api-change:elbv2: Update elbv2 client to latest version
api-change:organizations: Update organizations client to latest version

1.20.2
api-change:quicksight: Update quicksight client to latest version
api-change:appflow: Update appflow client to latest version
api-change:emr-containers: Update emr-containers client to latest version
api-change:dlm: Update dlm client to latest version
api-change:athena: Update athena client to latest version
api-change:ec2: Update ec2 client to latest version

1.20.1
api-change:lambda: Update lambda client to latest version
api-change:codebuild: Update codebuild client to latest version
api-change:ec2: Update ec2 client to latest version
api-change:ce: Update ce client to latest version
api-change:databrew: Update databrew client to latest version
api-change:securityhub: Update securityhub client to latest version
api-change:workmail: Update workmail client to latest version
api-change:auditmanager: Update auditmanager client to latest version
api-change:compute-optimizer: Update compute-optimizer client to latest version
api-change:iotsitewise: Update iotsitewise client to latest version

1.20.0
api-change:appmesh: Update appmesh client to latest version
api-change:application-autoscaling: Update application-autoscaling client to latest version
api-change:lookoutvision: Update lookoutvision client to latest version
api-change:organizations: Update organizations client to latest version
feature:Python: Dropped support for Python 3.4 and 3.5
api-change:s3control: Update s3control client to latest version
api-change:rds-data: Update rds-data client to latest version
api-change:medialive: Update medialive client to latest version
api-change:route53: Update route53 client to latest version
api-change:location: Update location client to latest version
enhancement:s3: Amazon S3 now supports AWS PrivateLink, providing direct access to S3 via a private endpoint within your virtual private network.
api-change:iotwireless: Update iotwireless client to latest version

1.19.63
api-change:macie2: Update macie2 client to latest version
api-change:connect: Update connect client to latest version
api-change:medialive: Update medialive client to latest version

1.19.62
api-change:wellarchitected: Update wellarchitected client to latest version
api-change:managedblockchain: Update managedblockchain client to latest version
api-change:cloudwatch: Update cloudwatch client to latest version
api-change:databrew: Update databrew client to latest version
bugfix:Validator: Fix showing incorrect max-value in error message for range and length value validation
api-change:iot: Update iot client to latest version
api-change:robomaker: Update robomaker client to latest version

1.19.61
api-change:elasticache: Update elasticache client to latest version
api-change:customer-profiles: Update customer-profiles client to latest version
api-change:sesv2: Update sesv2 client to latest version
api-change:accessanalyzer: Update accessanalyzer client to latest version
api-change:lightsail: Update lightsail client to latest version
api-change:es: Update es client to latest version

1.19.60
api-change:backup: Update backup client to latest version

1.19.59
api-change:greengrassv2: Update greengrassv2 client to latest version
api-change:redshift: Update redshift client to latest version
api-change:lexv2-runtime: Update lexv2-runtime client to latest version
api-change:rds: Update rds client to latest version
api-change:lexv2-models: Update lexv2-models client to latest version
api-change:ssm: Update ssm client to latest version
api-change:ec2: Update ec2 client to latest version

1.19.58
api-change:securityhub: Update securityhub client to latest version
api-change:kafka: Update kafka client to latest version
api-change:resourcegroupstaggingapi: Update resourcegroupstaggingapi client to latest version

1.19.57
api-change:acm-pca: Update acm-pca client to latest version
api-change:chime: Update chime client to latest version
api-change:ecs: Update ecs client to latest version

1.19.56
api-change:sns: Update sns client to latest version

1.19.55
api-change:pinpoint: Update pinpoint client to latest version
api-change:cognito-identity: Update cognito-identity client to latest version
api-change:s3control: Update s3control client to latest version
api-change:sagemaker: Update sagemaker client to latest version

(adam)

2021-02-25 08:54:05 UTC MAIN commitmail json YAML

rust: fix typo in comment

(wiz)

2021-02-25 08:47:16 UTC MAIN commitmail json YAML

rust: Make sure curl is buildlinked on NetBSD

This should be a temporary measure until all the bootstraps are fixed

(nia)

2021-02-25 08:25:47 UTC MAIN commitmail json YAML

tex-l3kernel: drop dependency tex-csquotes, break cycle.

(markd)

2021-02-25 08:22:00 UTC MAIN commitmail json YAML

plib: Use <sys/joystick.h> rather than <machine/joystick.h> on NetBSD

NetBSD/aarch64 and others do not have <machine/joystick.h> but do have
<sys/joystick.h>.

(nia)

2021-02-25 08:13:56 UTC MAIN commitmail json YAML

py-cryptodome: Re-unbreak packaging on non-x86

(nia)

2021-02-25 08:13:39 UTC MAIN commitmail json YAML

2021-02-25 07:38:34 UTC MAIN commitmail json YAML

doc: Updated www/firefox78-l10n to 78.8.0

(nia)

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

2021-02-25 07:20:47 UTC MAIN commitmail json YAML

sysutils/Makefile: sort

(wiz)

2021-02-25 07:06:22 UTC MAIN commitmail json YAML

doc: Updated x11/xorgproto to 2021.3

(wiz)