- Jul 29, 2021
-
-
zhengruoqin authored
Signed-off-by:
Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
zhengruoqin authored
Signed-off-by:
Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Gianfranco authored
Drop patch to fix build failure with kernel 5.13, now part of upstream codebase Signed-off-by:
Gianfranco Costamagna <costamagnagianfranco@yahoo.it> Signed-off-by:
Gianfranco Costamagna <locutusofborg@debian.org> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Anastasios Kavoukis authored
A commit in the repo of pm-qa: "adf9df9 Fix path to library files and change shebang line" Changed the text that sed was using to replace relative to absolute paths. As a result sed was not effectively finding the text "source ../include" to replace it, as the sed should be now searching for ". ../include". Similarly for "../Switches" Signed-off-by:
Anastasios Kavoukis <anastasios.kavoukis@arm.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
wangmy authored
Signed-off-by:
Wang Mingyu <wangmy@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
wangmy authored
Signed-off-by:
Wang Mingyu <wangmy@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
wangmy authored
Signed-off-by:
Wang Mingyu <wangmy@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
wangmy authored
Added: Docker image architectures amd64, 386, arm64, arm/v7, arm/v6, ppc64le, s390x https://github.com/bats-core/bats-core/pull/438 Fixed: automatic push to Dockerhub https://github.com/bats-core/bats-core/pull/438 Signed-off-by:
Wang Mingyu <wangmy@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Devendra Tewari authored
Stray newline character causes errors in functionfs setup scripts used by android-tools-adbd.service, when using musl libc and/or toybox. Signed-off-by:
Devendra Tewari <devendra.tewari@gmail.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Tony Battersby authored
Adding -f*-prefix-map to LDFLAGS caused the following issue: QA Issue: netsnmp-agent.pc failed sanity test (tmpdir) Fix by filtering out -f*-prefix-map from *.pc files. [YOCTO #14481] Signed-off-by:
Tony Battersby <tonyb@cybernetics.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
zhengruoqin authored
1.3.0 Add support for Sanic versions 20 and 21 #1146 Signed-off-by:
Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com> Signed-off-by:
Trevor Gamblin <trevor.gamblin@windriver.com>
-
zhengruoqin authored
.. changelog:: :version: 1.4.22 :released: July 21, 2021 .. change:: :tags: bug, sql
6786 Fixed issue where use of the :paramref:`_sql.case.whens` parameter passing a dictionary positionally and not as a keyword argument would emit a 2.0 deprecation warning, referring to the deprecation of passing a list positionally. The dictionary format of "whens", passed positionally, is still supported and was accidentally marked as deprecated. .. change:: :tags: bug, orm 6775 Fixed issue in new :meth:`_schema.Table.table_valued` method where the resulting :class:`_sql.TableValuedColumn` construct would not respond correctly to alias adaptation as is used throughout the ORM, such as for eager loading, polymorphic loading, etc. .. change:: :tags: bug, orm 6769 Fixed issue where usage of the :meth:`_result.Result.unique` method with an ORM result that included column expressions with unhashable types, such as ``JSON`` or ``ARRAY`` using non-tuples would silently fall back to using the ``id()`` function, rather than raising an error. This now raises an error when the :meth:`_result.Result.unique` method is used in a 2.0 style ORM query. Additionally, hashability is assumed to be True for result values of unknown type, such as often happens when using SQL functions of unknown return type; if values are truly not hashable then the ``hash()`` itself will raise. For legacy ORM queries, since the legacy :class:`_orm.Query` object uniquifies in all cases, the old rules remain in place, which is to use ``id()`` for result values of unknown type as this legacy uniquing is mostly for the purpose of uniquing ORM entities and not column values. .. change:: :tags: orm, bug 6771 Fixed an issue where clearing of mappers during things like test suite teardowns could cause a "dictionary changed size" warning during garbage collection, due to iteration of a weak-referencing dictionary. A ``list()`` has been applied to prevent concurrent GC from affecting this operation. .. change:: :tags: bug, sql 6770 Fixed issue where type-specific bound parameter handlers would not be called upon in the case of using the :meth:`_sql.Insert.values` method with the Python ``None`` value; in particular, this would be noticed when using the :class:`_types.JSON` datatype as well as related PostgreSQL specific types such as :class:`_postgresql.JSONB` which would fail to encode the Python ``None`` value into JSON null, however the issue was generalized to any bound parameter handler in conjunction with this specific method of :class:`_sql.Insert`. .. change:: :tags: bug, engine 6740 Added some guards against ``KeyError`` in the event system to accommodate the case that the interpreter is shutting down at the same time :meth:`_engine.Engine.dispose` is being called, which would cause stack trace warnings. .. change:: :tags: bug, orm, regression 6793 Fixed critical caching issue where the ORM's persistence feature using INSERT..RETURNING would cache an incorrect query when mixing the "bulk save" and standard "flush" forms of INSERT. Signed-off-by:Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com> Signed-off-by:
Trevor Gamblin <trevor.gamblin@windriver.com>
-
zhengruoqin authored
We are pleased to announce the 3.12.0 release of PyMongo - MongoDB’s Python Driver. This release adds support for MongoDB 5.0. Signed-off-by:
Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com> Signed-off-by:
Trevor Gamblin <trevor.gamblin@windriver.com>
-
zhengruoqin authored
v2.7.0 (Jul 16, 2021) --------------------- New features: * Enable ``py::implicitly_convertible<py::none, ...>`` for ``py::class_``-wrapped types. `#3059 <https://github.com/pybind/pybind11/pull/3059>`_ * Allow function pointer extraction from overloaded functions. `#2944 <https://github.com/pybind/pybind11/pull/2944>`_ * NumPy: added ``.char_()`` to type which gives the NumPy public ``char`` result, which also distinguishes types by bit length (unlike ``.kind()``). `#2864 <https://github.com/pybind/pybind11/pull/2864>`_ * Add ``pybind11::bytearray`` to manipulate ``bytearray`` similar to ``bytes``. `#2799 <https://github.com/pybind/pybind11/pull/2799>`_ * ``pybind11/stl/filesystem.h`` registers a type caster that, on C++17/Python 3.6+, converts ``std::filesystem::path`` to ``pathlib.Path`` and any ``os.PathLike`` to ``std::filesystem::path``. `#2730 <https://github.com/pybind/pybind11/pull/2730>`_ * A ``PYBIND11_VERSION_HEX`` define was added, similar to ``PY_VERSION_HEX``. `#3120 <https://github.com/pybind/pybind11/pull/3120 >`_ Signed-off-by:
Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com> Signed-off-by:
Trevor Gamblin <trevor.gamblin@windriver.com>
-
- Jul 27, 2021
-
-
Joe Slater authored
Lots of bug fixes. CVE: CVE-2021-21704 CVE-2021-21705 Signed-off-by:
Joe Slater <joe.slater@windriver.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Paulo Neves authored
Without it there are no terminal configurations on the target and htop refuses to run.
-
zhengruoqin authored
0.031 2021-07-13 22:13:48Z - remove unneeded develop prereqs that caused metacpan to unduly raise the river position of some dependent modules Signed-off-by:
Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
zhengruoqin authored
Signed-off-by:
Zheng Ruoqin <zhengrq.fnst@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Yi Zhao authored
Signed-off-by:
Yi Zhao <yi.zhao@windriver.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Armin Kuster authored
Stable branch bug fix update. Includes: CVE-2021-22235 Signed-off-by:
Armin Kuster <akuster808@gmail.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Armin Kuster authored
files moved under a new dir structure. Signed-off-by:
Armin Kuster <akuster808@gmail.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
wangmy authored
v1.44.0 changelog: lib: Port new ngtcp2 map implementation doc: Replace master with main build: Add precious variables for libev and jemalloc and use JEMALLOC_CFLAGS build: Add more --with-* configure flags build: Add LIBTOOL_LDFLAGS configure variable third-party: Bump llhttp to 6.0.2 src: Replace black-list with block-list nghttpx: Fix max distance in weight group/address cycle comparison nghttpx: Set connect_blocker and live_check after shuffling addresses nghttpx: Replace master with main nghttpx: Remove trailing white space after $method log variable (https://github.com/nghttp2/nghttp2/pull/1553) h2load: Add --rps option (https://github.com/nghttp2/nghttp2/pull/1559) h2load: Allow unit in -D option asio: fix some typos (Patch from Jan Kundrát) (https://github.com/nghttp2/nghttp2/pull/1550 ) Signed-off-by:
Wang Mingyu <wangmy@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
wangmy authored
License-Update: add note: ** NOTE! The following LGPL license applies to the talloc ** library. This does NOT imply that all of Samba is released ** under the LGPL "GNU General Public License" changed to "GNU Lesser General Public License" Signed-off-by:
Wang Mingyu <wangmy@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Khem Raj authored
Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Nicolas Dechesne authored
The last release/tag is 1.4 but it's from 2014. So use current head for now. Signed-off-by:
Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
wangmy authored
**** 1.32 Jul 16, 2021 Text: Offer both Unicode and escaped-ASCII strings. Add LICENSE file to comply with Fedora/RedHat announcement. Fix rt.cpan.org #136666 Net::DNS::RR::ZoneFile parser erroneously strips line terminators in quoted string forming part of multiline RR. Signed-off-by:
Wang Mingyu <wangmy@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
wangmy authored
docs(web): add RpmMacros as a new parser Signed-off-by:
Wang Mingyu <wangmy@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
wangmy authored
Changelog: Properly indent block-level contents of list items in man (#258). https://github.com/commonmark/cmark/issues/258 This handles nested lists as well as items with multiple paragraphs. The change requires addition of a new field block_number_in_list_item to cmark_renderer, but this does not change the public API. Fix quadratic behavior when parsing emphasis (#389, Nick Wellnhofer). Delimiters can be deleted, so store delimiter positions instead of pointers in openers_bottom. Besides causing undefined behavior when reading a dangling pointer, this could also result in quadratic behavior when parsing emphasis. https://github.com/commonmark/cmark/issues/389 Fix quadratic behavior when parsing smart quotes (#388, Nick Wellnhofer). Remove matching smart quote delimiters. Otherwise, the same opener could be found over and over, preventing the openers_bottom optimization from kicking in and leading to quadratic behavior when processing lots of quotes. https://github.com/commonmark/cmark/issues/388 Modify CMake configuration so that the project can be built with older versions of CMake (#384, Saleem Abdulrasool). (In 0.30.0, some features were used that require CMake >= 3.3.) The cost of this backwards compatibility is that developers must now explicitly invoke cmark_add_compile_options when a new compilation target is added. https://github.com/commonmark/cmark/issues/384 Remove a comma at the end of an enumerator list, which was flagged by clang as a C++11 extension. make_man_page.py: use absolute path with CDLL. This avoids the error "file system relative paths not allowed in hardened programs." Include cmark version in cmark(3) man page (instead of LOCAL). Signed-off-by:
Wang Mingyu <wangmy@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
wangmy authored
Signed-off-by:
Wang Mingyu <wangmy@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
wangmy authored
Signed-off-by:
Wang Mingyu <wangmy@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
wangmy authored
============== Evince 40.4 ============== shell: * fix compilation error when DBus is disabled (Tom Schoonjans) Signed-off-by:
Wang Mingyu <wangmy@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Khem Raj authored
Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Sakib Sajal authored
lmdb provides a high-performance embedded transactional database in the form of a key-value store. Signed-off-by:
Sakib Sajal <sakib.sajal@windriver.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Li Wang authored
~ lldpad -d ~ 8021q: 802.1Q VLAN Support v1.8 ~ 8021q: adding VLAN 0 to HW filter on device eth0 ~ lldpad[xxx]: segfault at 0 ip xxx sp xxx error 4 in lldpad[xxx+xxx] ~ Code: xxx the issue is introduced by: 0002-lldp_head-rename-and-make-extern.patch Upstream patches: https://github.com/intel/openlldp/commit/ed6a8e5a75f56b7034a46294a0bf2a9a7fd14fbc Signed-off-by:
Li Wang <li.wang@windriver.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Khem Raj authored
Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Khem Raj authored
License-Update: Upstream has switched to MIT [1] [1] https://github.com/HewlettPackard/netperf/commit/2d88bcc75d97f462eafe8605f8da0c1f875b7dad Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Andreas Müller authored
Changes: * The MIDI router now handles out-of-range parameters in a smarter manner (#891, thanks to @jjceresa) * Keep pedaling effective when the same note is played more than once (#905, thanks to @jjceresa) * Select soundfont samples by frequency instead of midi note numbers (#926, thanks to @Naturseptime) * Fix the sequencer's event ordering for NoteOn vel=0 events (#907) * libfluidsynth's import library was broken for MinGW builds (#874) * fluidsynth.exe short option -Q not working (#915, thanks to @pedrolcl) * Precompiled Android binaries didn't work (#894, #897) * Fix openMP detection for XCode 12.5 (#917) * Make audio.jack.autoconnect connect all available ports (#920) * Prevent MIDI Player from continuously suppressing notes (#935, thanks to @albedozero) * fluidsynth.pc now includes private libraries for static linking (#904) * Fix typos in code and documentation (#939, thanks to @luzpaz) Signed-off-by:
Andreas Müller <schnitzeltony@gmail.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Andreas Müller authored
Changes: * Add jack_position_t::tick_double, and flags around it * Add zalsa "-w" argument to wait for soundcard to be available * Bump internal protocol version to 9 (due to struct alignment) * Fix alignment of fields for atomic accesses * Fix build for platforms needing __STDC_FORMAT_MACROS * Fix compilation of documentation Signed-off-by:
Andreas Müller <schnitzeltony@gmail.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
Andreas Müller authored
Signed-off-by:
Andreas Müller <schnitzeltony@gmail.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com>
-
zangrc authored
Add docs/ to sdist Addresses part of #14 Signed-off-by:
Zang Ruochen <zangrc.fnst@fujitsu.com> Signed-off-by:
Khem Raj <raj.khem@gmail.com> Signed-off-by:
Trevor Gamblin <trevor.gamblin@windriver.com>
-