Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update releases #301

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

chore: update releases #301

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 22, 2023

Update Request | Renovate Bot

This PR contains the following updates:

Package Update Change
PCRE2Project/pcre2 minor 10.43 -> 10.44
curl/curl minor 8_7_1 -> 8_8_0
git://git.kernel.org/pub/scm/git/git.git patch 2.45.1 -> 2.45.2
git://git.kernel.org/pub/scm/libs/libcap/libcap.git minor 2.69 -> 2.70
git://git.savannah.gnu.org/automake.git patch 1.16.5 -> 1.16.90
git://git.savannah.gnu.org/findutils.git minor 4.9.0 -> 4.10.0
git://git.savannah.gnu.org/libtool.git minor 2.4.7 -> 2.5.0
libbpf/libbpf patch v1.4.2 -> v1.4.3
mesonbuild/meson patch 1.4.0 -> 1.4.1
python/cpython patch 3.12.3 -> 3.12.4
siderolabs/bldr patch v0.3.0 -> v0.3.1

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

PCRE2Project/pcre2 (PCRE2Project/pcre2)

v10.44

Compare Source

  1. If a pattern contained a variable-length lookbehind in which the first
    branch was not the one with the shortest minimum length, and the lookbehind
    contained a capturing group, and elsewhere in the pattern there was another
    lookbehind that referenced that group, the pattern was incorrectly compiled,
    leading to unpredictable results, including crashes in JIT compiling. An
    example pattern is: /(((?<=123?456456|ABC)))(?<=\2)/

  2. Further updates to the oss-fuzz support:

    (a) Limit quantifiers for groups and classes to be no more than 10. This
    avoids very long JIT compile times that happen in some cases when groups
    are replicated for quantification, and very long match times when
    classes contain a lot of non-ascii characters.

    (b) Added PCRE2_EXTENDED_MORE to the list of allowed options.

    (c) Arranged for text error messages to be shown in 16-bit and 32-bit modes.

    (d) Made the output in standalone mode more readable.

    (e) General code tidies.

    (f) Limit the size of compiled patterns to 10MB (see 6 below).

    (g) Do not run JIT on patterns whose compiled length is greater than 200K
    bytes because this takes a long time, causing oss-fuzz to time out.

    (h) Avoid compiling or matching twice with the same options (this could
    happen if the input didn't set any options).

  3. Increase the maximum length of a name for a group from 32 to 128 because
    there is a user for whom 32 is too small.

  4. Cause pcre2test to output a message when pcre2_jit_compile() gives an error
    return if either jitverify or info is specified.

  5. Some auxiliary files for building under OpenVMS that were contributed by
    Alexey Chupahin have been installed.

  6. Added pcre2_set_max_pattern_compiled_length() to limit the size of compiled
    patterns.

  7. There was a bug in the implementation of \X caused by my (PH) misreading or
    misunderstanding one of the grapheme sequence breaking rules in Unicode Annex
    #​29. A break should occur between two characters with the Extended Pictographic
    break property unless a zero-width joiner intervenes. PCRE2 was not insisting
    on the ZWJ, causing \X to match more than it should. See GitHub issue #​410.

  8. Avoid compilation issues with proprietary compilers in UNIX since 10.43.

curl/curl (curl/curl)

v8_8_0: 8.8.0

Compare Source

changelog
release blog
release video

curl-8 8 0

libbpf/libbpf (libbpf/libbpf)

v1.4.3: libbpf v1.4.3

Compare Source

libbpf v1.4.3

Another bug fix release. Fix libbpf unintentionally dropping FD_CLOEXEC flag when (internally) duping FDs.
Fixed in libbpf/libbpf@805b689.

Full Changelog: libbpf/libbpf@v1.4.2...v1.4.3

mesonbuild/meson (mesonbuild/meson)

v1.4.1

Compare Source

python/cpython (python/cpython)

v3.12.4

Compare Source

siderolabs/bldr (siderolabs/bldr)

v0.3.1

Compare Source

bldr 0.3.1 (2024-05-23)

Welcome to the v0.3.1 release of bldr!

Please try out the release binaries and report any issues at
https://github.com/siderolabs/bldr/issues.

Contributors
  • Dmitriy Matrenichev
  • Noel Georgi
  • Andrey Smirnov
  • Andrey Smirnov
  • Utku Ozdemir
Changes
11 commits

  • 7f6df03 chore: set PKG_NAME environment variable
  • a7ac3b0 feat: provision platform context dynamically
  • 40aea38 feat: support per-dependency arch
  • 65e6a18 feat: support platform override
  • 6eaf7ab feat: support multiple cache paths
  • 6db0478 chore: support platform for dependencies
  • 2ad4508 chore: bump deps
  • 02c15d5 release(v0.2.2): prepare release
  • 20de986 feat: support --cache-from/--cache-imports
  • 38bee98 chore: rekres to support gh actions
  • d7f236f chore: add a no-op github workflow

Changes since v0.3.0
1 commit

  • 7f6df03 chore: set PKG_NAME environment variable

Changes from siderolabs/gen
15 commits

  • 238baf9 chore: add typesafe SyncMap and bump stuff
  • efca710 chore: add FilterInPlace method to maps and update module
  • 36a3ae3 feat: update module
  • f9f5805 chore: bump rekres and add functions from exp
  • b968d21 feat: add TryRecv and RecvWithContext functions
  • 476dfea feat: add foreach and clear to lazymap
  • 214c1ef chore: set slice.Filter result slice cap to len
  • 8e89b1e feat: add GetOrCreate and GetOrCall methods
  • 7c7ccc3 feat: introduce channel SendWithContext
  • b3b6db8 fix: fix Copy documentation and implementation
  • 521f737 feat: add xerrors package which contains additions to the std errors
  • 726e066 fix: rename tuples.go to pair.go and set proper package name
  • d8d7d25 chore: minor additions
  • 338a650 chore: add initial implementation and documentation
  • 4fd8667 Initial commit

Dependency Changes
  • github.com/containerd/containerd v1.7.3 -> v1.7.17
  • github.com/emicklei/dot v1.6.0 -> v1.6.2
  • github.com/google/go-github/v62 v62.0.0 new
  • github.com/moby/buildkit v0.12.1 -> v0.13.2
  • github.com/moby/docker-image-spec v1.3.1 new
  • github.com/opencontainers/image-spec v1.1.0-rc3 -> v1.1.0
  • github.com/otiai10/copy v1.12.0 -> v1.14.0
  • github.com/siderolabs/gen v0.4.8 new
  • github.com/spf13/cobra v1.7.0 -> v1.8.0
  • github.com/stretchr/testify v1.8.4 -> v1.9.0
  • golang.org/x/oauth2 v0.11.0 -> v0.20.0
  • golang.org/x/sync v0.3.0 -> v0.7.0

Previous release can be found at v0.2.1


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/releases branch 5 times, most recently from fb4eb33 to dfd8d10 Compare May 26, 2023 14:32
@renovate renovate bot force-pushed the renovate/releases branch 3 times, most recently from b4e2863 to f8a80c6 Compare June 2, 2023 08:25
@renovate renovate bot force-pushed the renovate/releases branch 2 times, most recently from 6891c79 to fce3cef Compare June 7, 2023 10:24
@renovate renovate bot force-pushed the renovate/releases branch 3 times, most recently from e32974e to 3dd575a Compare June 22, 2023 02:43
@renovate renovate bot changed the title chore: update releases chore: update releases - autoclosed Jun 26, 2023
@renovate renovate bot closed this Jun 26, 2023
@renovate renovate bot deleted the renovate/releases branch June 26, 2023 12:31
@renovate renovate bot changed the title chore: update releases - autoclosed chore: update releases Jun 28, 2023
@renovate renovate bot restored the renovate/releases branch June 28, 2023 03:00
@renovate renovate bot reopened this Jun 28, 2023
@renovate renovate bot changed the title chore: update releases chore: update dependency git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git to v2.39.1 Jun 30, 2023
@renovate renovate bot changed the title chore: update dependency git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git to v2.39.1 chore: update releases Jul 1, 2023
@renovate renovate bot force-pushed the renovate/releases branch 2 times, most recently from 3b52c50 to 7ecec9a Compare July 3, 2023 23:40
@renovate renovate bot changed the title chore: update releases chore: update dependency perl/perl5 to v5.38.0 Jul 4, 2023
@renovate renovate bot changed the title chore: update dependency perl/perl5 to v5.38.0 chore: update releases Jul 7, 2023
@renovate renovate bot force-pushed the renovate/releases branch 2 times, most recently from 55b934f to 5971a0c Compare July 10, 2023 20:37
@renovate renovate bot force-pushed the renovate/releases branch 5 times, most recently from 2eb6e80 to 6d981a5 Compare April 10, 2024 02:47
@renovate renovate bot force-pushed the renovate/releases branch 3 times, most recently from 5a59db7 to 8cbb729 Compare May 2, 2024 17:59
@renovate renovate bot changed the title chore: update releases chore: update releases - autoclosed May 9, 2024
@renovate renovate bot closed this May 9, 2024
@renovate renovate bot deleted the renovate/releases branch May 9, 2024 15:14
@renovate renovate bot changed the title chore: update releases - autoclosed chore: update releases May 12, 2024
@renovate renovate bot reopened this May 12, 2024
@renovate renovate bot restored the renovate/releases branch May 12, 2024 02:54
@renovate renovate bot changed the title chore: update releases chore: update dependency libbpf/libbpf to v1.4.2 May 13, 2024
@renovate renovate bot changed the title chore: update dependency libbpf/libbpf to v1.4.2 chore: update releases May 15, 2024
@renovate renovate bot force-pushed the renovate/releases branch 3 times, most recently from 48c579e to b26f21a Compare May 24, 2024 11:48
@renovate renovate bot force-pushed the renovate/releases branch 6 times, most recently from 758e0b9 to 1522471 Compare June 7, 2024 05:45
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants