aboutsummaryrefslogtreecommitdiff
path: root/lang
Commit message (Collapse)AuthorAge
* golang: Update to 1.21.0, remove patchJeffery To2023-08-15
| | | | | | | | | | | | | | Upstream has updated the Go compiler to not use gold when building for arm, and is waiting for a fix to binutils (released in 2.41) before doing the same for aarch64.[1] Based on the above, it does not appear that https://github.com/golang/go/pull/49748 will be merged. This removes the patch from that pull request. [1]: https://github.com/golang/go/issues/22040 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* ruby: fix riscv64 buildTianling Shen2023-08-14
| | | | | | | | | Fix build by adding missing macros. The patch is taken from: https://lists.openembedded.org/g/openembedded-core/message/161168 Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* python-iniconfig: Update to 2.0.0Jeffery To2023-08-13
| | | | | | The package changed to the hatchling build backend. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-jsonpath-ng: Update to 1.5.3Jeffery To2023-08-13
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-jmespath: Update to 1.0.1Jeffery To2023-08-13
| | | | | | This also updates the Python dependency from python3 to python3-light. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-intelhex: Update to 2.3.0Jeffery To2023-08-13
| | | | | | This version includes the fix from the removed patch. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* Merge pull request #21748 from jefferyto/python-influxdb-5.3.1Josef Schlehofer2023-08-13
|\ | | | | python-influxdb: Update to 5.3.1
| * python-influxdb: Update to 5.3.1Jeffery To2023-08-07
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | Merge pull request #21795 from jefferyto/python-netdisco-3.0.0Josef Schlehofer2023-08-12
|\ \ | | | | | | python-netdisco: Update to 3.0.0, update list of dependencies
| * | python-netdisco: Update to 3.0.0, update list of dependenciesJeffery To2023-08-12
| | | | | | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | python-multidict: Update to 6.0.4, update list of dependenciesJeffery To2023-08-12
|/ / | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | node: August 2023 Security ReleasesHirokazu MORIKAWA2023-08-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update to v18.17.1 This is a security release. Notable Changes The following CVEs are fixed in this release: * CVE-2023-32002: Policies can be bypassed via Module._load (High) * CVE-2023-32006: Policies can be bypassed by module.constructor.createRequire (Medium) * CVE-2023-32559: Policies can be bypassed via process.binding (Medium) * OpenSSL Security Releases (Depends on shared library provided by OpenWrt) * OpenSSL security advisory 14th July. * OpenSSL security advisory 19th July. * OpenSSL security advisory 31st July Signed-off-by: Hirokazu MORIKAWA <morikw2@gmail.com>
* | Merge pull request #21747 from jefferyto/python-ifaddr-0.2.0Josef Schlehofer2023-08-10
|\ \ | | | | | | python-ifaddr: Update to 0.2.0
| * | python-ifaddr: Update to 0.2.0Jeffery To2023-08-07
| |/ | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | python-click: Update to 8.1.6Jeffery To2023-08-10
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | python-wheel: Update to 0.41.1Jeffery To2023-08-10
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | python-flask-seasurf: Update to 1.1.1Jeffery To2023-08-10
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | python-flask-login: Update to 0.6.2, update list of dependenciesJeffery To2023-08-10
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | python-flask-httpauth: Update to 4.8.0Jeffery To2023-08-10
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | python-flask-babel: Update to 3.1.0Jeffery To2023-08-10
| | | | | | | | | | | | The package changed to the poetry-core build backend. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | python-flask-socketio: Update to 5.3.5Jeffery To2023-08-10
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | python-socketio: Update to 5.8.0Jeffery To2023-08-10
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | python-engineio: Update to 4.5.1Jeffery To2023-08-10
| | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | Merge pull request #21734 from fractalclone/masterJeffery To2023-08-08
|\ \ | |/ |/| micropython: fix stackctrl compilation for GCC 13
| * micropython: fix stackctrl compilation for GCC 13Jean-Paul Etienne2023-08-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | On host PC using GCC 13, stackctrl.c fails to compile with the following error: ../py/stackctrl.c: In function 'mp_stack_ctrl_init': ../py/stackctrl.c:32:32: error: storing the address of local variable 'stack_dummy' in 'mp_state_ctx.thread.stack_top' [-Werror=dangling-pointer=] 32 | MP_STATE_THREAD(stack_top) = (char *)&stack_dummy; ../py/stackctrl.c:31:18: note: 'stack_dummy' declared here 31 | volatile int stack_dummy; | ^~~~~~~~~~~ In file included from ../py/runtime.h:29, from ../py/stackctrl.c:27: ../py/mpstate.h:296:23: note: 'mp_state_ctx' declared here 296 | extern mp_state_ctx_t mp_state_ctx; | ^~~~~~~~~~~~ cc1: all warnings being treated as errors Fixed accordingly by ignoring -dangling-pointer warning inside mp_stack_ctrl_init function. Signed-off-by: Jean-Paul Etienne <fractalclone@gmail.com>
* | Merge pull request #21739 from jefferyto/golang-1.20.7Tianling Shen2023-08-07
|\ \ | | | | | | golang: Update to 1.20.7
| * | golang: Update to 1.20.7Jeffery To2023-08-07
| |/ | | | | | | | | | | | | Includes fix for CVE-2023-29409 (crypto/tls: verifying certificate chains containing large RSA keys is slow). Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* / rust: Update to 1.71.1Tianling Shen2023-08-07
|/ | | | | | | | | | | | | | Version 1.71.1 (2023-08-03) =========================== - Fix CVE-2023-38497: Cargo did not respect the umask when extracting dependencies - Fix bash completion for users of Rustup - Do not show `suspicious_double_ref_op` lint when calling `borrow()` - Fix ICE: substitute types before checking inlining compatibility - Fix ICE: don't use `can_eq` in `derive(..)` suggestion for missing method - Fix building Rust 1.71.0 from the source tarball Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* python-dns: Update to 2.4.1Jeffery To2023-08-04
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-contextlib2: Update to 21.6.0Jeffery To2023-08-04
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-ciso8601: Update to 2.3.0Jeffery To2023-08-04
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-certifi: Update to 2023.7.22Jeffery To2023-08-04
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-cachetools: Update to 5.3.1Jeffery To2023-08-04
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-cachelib: Update to 0.10.2Jeffery To2023-08-04
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-colorama: Update to 0.4.6Jeffery To2023-08-04
| | | | | | The package changed to the hatchling build backend. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-docutils: Update to 0.20.1Jeffery To2023-08-04
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-editables: Update to 0.5Jeffery To2023-08-04
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-pathspec: Update to 0.11.2Jeffery To2023-08-04
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-certifi: add github runtime testEneas U de Queiroz2023-07-28
| | | | | | | This loads the module, which should return the path of the CA bundle and verifies that the file exists. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* python-gnupg: Update to 0.5.1Jeffery To2023-07-24
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-wheel: Update to 0.41.0Jeffery To2023-07-24
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-awscli: Update to 1.29.7, update dependenciesJeffery To2023-07-24
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-boto3: Update to 1.28.7, update dependenciesJeffery To2023-07-24
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-s3transfer: Update to 0.6.1, update dependenciesJeffery To2023-07-24
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-botocore: Update to 1.31.7, update dependenciesJeffery To2023-07-24
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-awesomeversion: Update to 23.5.0, update dependenciesJeffery To2023-07-24
| | | | | | The package changed to the poetry-core build backend. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-atomicwrites: Update to 1.4.1Jeffery To2023-07-24
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python3-sqlparse: Update to 0.4.4, rename source packageJeffery To2023-07-24
| | | | | | | | | | This renames the source package to python-sqlparse to match other Python packages. This also updates the build dependencies; package now uses the flit-core build backend. Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-aiohttp: Update 3.8.5, update dependenciesJeffery To2023-07-24
| | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* python-aiosignal: Add new packageJeffery To2023-07-24
| | | | | | | | From the README: A project to manage callbacks in asyncio projects. Signed-off-by: Jeffery To <jeffery.to@gmail.com>