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

fix(deps): update patch, pin, image digest versions #573

Merged
merged 1 commit into from
Dec 8, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 6, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@tailwindcss/forms 0.5.6 -> 0.5.7 age adoption passing confidence dependencies patch
@testing-library/jest-dom 6.1.3 -> 6.1.5 age adoption passing confidence devDependencies patch
@types/react (source) 18.2.24 -> 18.2.42 age adoption passing confidence dependencies patch
@types/react-datepicker (source) 4.19.0 -> 4.19.3 age adoption passing confidence devDependencies patch
@types/react-dom (source) 18.2.8 -> 18.2.17 age adoption passing confidence dependencies patch
@vitejs/plugin-react (source) 4.2.0 -> 4.2.1 age adoption passing confidence devDependencies patch
Werkzeug (changelog) ==2.3.7 -> ==2.3.8 age adoption passing confidence patch
cachetools ==5.3.1 -> ==5.3.2 age adoption passing confidence patch
geventhttpclient ==2.0.10 -> ==2.0.11 age adoption passing confidence patch
nginx 1.25.2 -> 1.25.3 age adoption passing confidence final patch
postcss (source) 8.4.31 -> 8.4.32 age adoption passing confidence devDependencies patch
prettier-plugin-tailwindcss 0.5.4 -> 0.5.9 age adoption passing confidence devDependencies patch
psutil ==5.9.5 -> ==5.9.6 age adoption passing confidence patch
pyasn1 (changelog) ==0.5.0 -> ==0.5.1 age adoption passing confidence patch
pyzmq (source) ==25.1.1 -> ==25.1.2 age adoption passing confidence patch
react-oidc-context 2.3.0 -> 2.3.1 age adoption passing confidence dependencies patch
tailwindcss (source) 3.3.3 -> 3.3.6 age adoption passing confidence devDependencies patch
org.testcontainers:testcontainers-bom (source) 1.19.0 -> 1.19.3 age adoption passing confidence dependencies patch
io.swagger.core.v3:swagger-annotations 2.2.16 -> 2.2.19 age adoption passing confidence dependencies patch
org.jetbrains.kotlin.plugin.spring 1.9.10 -> 1.9.21 age adoption passing confidence plugin patch
org.jetbrains.kotlin.jvm 1.9.10 -> 1.9.21 age adoption passing confidence plugin patch
org.apache.groovy:groovy-all (source) 4.0.15 -> 4.0.16 age adoption passing confidence dependencies patch
org.liquibase.gradle 2.2.0 -> 2.2.1 age adoption passing confidence plugin patch
org.flywaydb.flyway 9.22.1 -> 9.22.3 age adoption passing confidence plugin patch
jacoco (source) 0.8.10 -> 0.8.11 age adoption passing confidence dependencies patch

Release Notes

tailwindlabs/tailwindcss-forms (@​tailwindcss/forms)

v0.5.7

Compare Source

Fixed
  • Use normal checkbox and radio appearance in forced-colors mode (#​152)
testing-library/jest-dom (@​testing-library/jest-dom)

v6.1.5

Compare Source

Bug Fixes

v6.1.4

Compare Source

Bug Fixes
  • upgrade @adobe/css-tools to 4.3.1 to address vulnerability (#​532) (44f1eab)
vitejs/vite-plugin-react (@​vitejs/plugin-react)

v4.2.1

Compare Source

Remove generic parameter on Plugin to avoid type error with Rollup 4/Vite 5 and skipLibCheck: false.

I expect very few people to currently use this feature, but if you are extending the React plugin via api object, you can get back the typing of the hook by importing ViteReactPluginApi:

import type { Plugin } from 'vite'
import type { ViteReactPluginApi } from '@​vitejs/plugin-react'

export const somePlugin: Plugin = {
  name: 'some-plugin',
  api: {
    reactBabel: (babelConfig) => {
      babelConfig.plugins.push('some-babel-plugin')
    },
  } satisfies ViteReactPluginApi,
}
tkem/cachetools (cachetools)

v5.3.2

Compare Source

===================

  • Add support for Python 3.12.

  • Various documentation improvements.

gwik/geventhttpclient (geventhttpclient)

v2.0.11

Compare Source

What's Changed

Full Changelog: geventhttpclient/geventhttpclient@2.0.10...2.0.11

postcss/postcss (postcss)

v8.4.32

Compare Source

  • Fixed postcss().process() types (by Andrew Ferreira).
tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)

v0.5.9

Compare Source

Fixed
  • Fixed location of embedded preflight CSS file (#​231)

v0.5.8

Compare Source

Added
  • Re-enable support for prettier-plugin-marko (#​229)

v0.5.7

Compare Source

Fixed
  • Fix sorting inside dynamic custom attributes (#​225)

v0.5.6

Compare Source

Fixed
  • Fix sorting inside {{ … }} expressions when using @shopify/prettier-plugin-liquid v1.3+ (#​222)

v0.5.5

Compare Source

Fixed
  • Sort classes inside className in Astro (#​215)
  • Support member access on function calls (#​218)
giampaolo/psutil (psutil)

v5.9.6

Compare Source

=====

2023-10-15

Enhancements

  • 1703_: cpu_percent()_ and cpu_times_percent()_ are now thread safe,
    meaning they can be called from different threads and still return
    meaningful and independent results. Before, if (say) 10 threads called
    cpu_percent(interval=None) at the same time, only 1 thread out of 10
    would get the right result.
  • 2266_: if Process_ class is passed a very high PID, raise NoSuchProcess_
    instead of OverflowError. (patch by Xuehai Pan)
  • 2246_: drop python 3.4 & 3.5 support. (patch by Matthieu Darbois)
  • 2290_: PID reuse is now pre-emptively checked for Process.ppid()_ and
    Process.parents()_.
  • 2312_: use ruff Python linter instead of flake8 + isort. It's an
    order of magnitude faster + it adds a ton of new code quality checks.

Bug fixes

  • 2195_, [Linux]: no longer print exception at import time in case /proc/stat
    can't be read due to permission error. Redirect it to PSUTIL_DEBUG
    instead.
  • 2241_, [NetBSD]: can't compile On NetBSD 10.99.3/amd64. (patch by Thomas
    Klausner)
  • 2245_, [Windows]: fix var unbound error on possibly in swap_memory()_
    (patch by student_2333)
  • 2268_: bytes2human() utility function was unable to properly represent
    negative values.
  • 2252_, [Windows]: disk_usage()_ fails on Python 3.12+. (patch by
    Matthieu Darbois)
  • 2284_, [Linux]: Process.memory_full_info()_ may incorrectly raise
    ZombieProcess_ if it's determined via /proc/pid/smaps_rollup. Instead
    we now fallback on reading /proc/pid/smaps.
  • 2287_, [OpenBSD], [NetBSD]: Process.is_running()_ erroneously return
    False for zombie processes, because creation time cannot be determined.
  • 2288_, [Linux]: correctly raise ZombieProcess_ on Process.exe(),
    Process.cmdline()
    and Process.memory_maps()_ instead of returning a
    "null" value.
  • 2290_: differently from what stated in the doc, PID reuse is not
    pre-emptively checked for Process.nice()_ (set), Process.ionice(),
    (set), Process.cpu_affinity()
    (set), Process.rlimit()_
    (set), Process.parent()_.
  • 2308_, [OpenBSD]: Process.threads()_ always fail with AccessDenied (also as
    root).
pyasn1/pyasn1 (pyasn1)

v0.5.1

Compare Source

  • Added support for PyPy 3.10 and Python 3.12
    pr #​32

  • Updated RTD configuration to include a dummy index.rst
    redirecting to contents.html, ensuring compatibility with
    third-party documentation and search indexes.
    pr #​47

  • Fixed the API breakage wih decoder.decode(substrateFun=...).

    A substrateFun passed to decoder.decode() can now be either
    v0.4 Non-Streaming or v0.5 Streaming. pyasn1 will detect and
    handle both cases transparently.

    A substrateFun passed to one of the new streaming decoders is
    still expected to be v0.5 Streaming only.
    pr #​30
    pr #​39

zeromq/pyzmq (pyzmq)

v25.1.2

Compare Source

authts/react-oidc-context (react-oidc-context)

v2.3.1

Compare Source

react-oidc-context 2.3.1 is a bugfix release.

Changelog:

  • #​932: add signinResourceOwnerCredentials
  • #​936: generate esm package.json with version
  • #​933: fix broken link for LICENSE in README.md
  • #​900: fix some unit-test warning like "inside a test was not wrapped in act"

thanks to @​mikoto2000 and @​Gitarcitano

tailwindlabs/tailwindcss (tailwindcss)

v3.3.6

Compare Source

Fixed
  • Don’t add spaces to negative numbers following a comma (#​12324)
  • Don't emit @config in CSS when watching via the CLI (#​12327)
  • Improve types for resolveConfig (#​12272)
  • Ensure configured font-feature-settings for mono are included in Preflight (#​12342)
  • Improve candidate detection in minified JS arrays (without spaces) (#​12396)
  • Don't crash when given applying a variant to a negated version of a simple utility (#​12514)
  • Fix support for slashes in arbitrary modifiers (#​12515)
  • Fix source maps of variant utilities that come from an @layer rule (#​12508)
  • Fix loading of built-in plugins when using an ESM or TypeScript config with the Standalone CLI (#​12506)

v3.3.5

Compare Source

Fixed
  • Fix incorrect spaces around - in calc() expression (#​12283)

v3.3.4

Compare Source

Fixed
  • Improve normalisation of calc()-like functions (#​11686)
  • Skip calc() normalisation in nested theme() calls (#​11705)
  • Fix incorrectly generated CSS when using square brackets inside arbitrary properties (#​11709)
  • Make content optional for presets in TypeScript types (#​11730)
  • Handle variable colors that have variable fallback values (#​12049)
  • Batch reading content files to prevent too many open files error (#​12079)
  • Skip over classes inside :not(…) when nested in an at-rule (#​12105)
  • Update types to work with Node16 module resolution (#​12097)
  • Don’t crash when important and parent selectors are equal in @apply (#​12112)
  • Eliminate irrelevant rules when applying variants (#​12113)
  • Improve RegEx parser, reduce possibilities as the key for arbitrary properties (#​12121)
  • Fix sorting of utilities that share multiple candidates (#​12173)
  • Ensure variants with arbitrary values and a modifier are correctly matched in the RegEx based parser (#​12179)
  • Fix crash when watching renamed files on FreeBSD (#​12193)
  • Allow plugins from a parent document to be used in an iframe (#​12208)
  • Add types for tailwindcss/nesting (#​12269)
  • Bump jiti, fast-glob, and browserlist dependencies (#​11550)
  • Improve automatic var injection for properties that accept a <dashed-ident> (#​12236)
testcontainers/testcontainers-java (org.testcontainers:testcontainers-bom)

v1.19.3

Compare Source

What's Changed
🐛 Bug Fixes
🧹 Housekeeping

v1.19.2

Compare Source

Testcontainers for Java 1.19.2
Core
Modules
  • New Oracle Free module
Elasticserach
JDBC
K3S
Kafka
LocalStack
YugabyteDB
What's Changed
📖 Documentation
📦 Dependency updates
12 changes

v1.19.1

Compare Source

Testcontainers for Java 1.19.1
Core
Modules
Redpanda
What's Changed
☠️ Deprecations
📖 Documentation
📦 Dependency updates
7 changes
swagger-api/swagger-core (io.swagger.core.v3:swagger-annotations)

v2.2.19: Swagger-core 2.2.19 released!

  • give precedence to requiredMode annotation (#​4533)
  • update dependencies (#​4521)
  • Bump org.apache.maven.plugins:maven-source-plugin from 3.2.1 to 3.3.0 (#​4513)
  • add deps update CI (#​4509)

v2.2.18: Swagger-core 2.2.18 released!

v2.2.17: Swagger-core 2.2.17 released!

  • python CI - encode request body (#​4489)
  • python CI - encode request body (#​4488)
  • update pythom CI (#​4487)
  • update dependencies (#​4486)
  • refs #​4455 - add config properties for default response status code (#​4482)
  • fix: compare string using equals instead of == for Reader class (#​4480)
jacoco/jacoco (jacoco)

v0.8.11: 0.8.11

New Features

  • JaCoCo now officially supports Java 21 (GitHub #​1520).
  • Experimental support for Java 22 class files (GitHub #​1479).
  • Part of bytecode generated by the Java compilers for exhaustive switch expressions is filtered out during generation of report (GitHub #​1472).
  • Part of bytecode generated by the Java compilers for record patterns is filtered out during generation of report (GitHub #​1473).

Fixed bugs

  • Instrumentation should not cause VerifyError when the last local variable of method parameters is overridden in the method body to store a value of type long or double (GitHub #​893).
  • Restore exec file compatibility with versions from 0.7.5 to 0.8.8 in case of class files with zero line numbers (GitHub #​1492).

Non-functional Changes

  • jacoco-maven-plugin now requires at least Java 8 (GitHub #​1466, #​1468).
  • JaCoCo build now requires at least Maven 3.5.4 (GitHub #​1467).
  • Maven 3.9.2 should not produce warnings for jacoco-maven-plugin (GitHub #​1468).
  • JaCoCo build now requires JDK 17 (GitHub #​1482).
  • JaCoCo now depends on ASM 9.6 (GitHub #​1518).

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

Copy link

codecov bot commented Nov 6, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (a9058c3) 99.07% compared to head (b3e20c5) 99.07%.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #573   +/-   ##
=======================================
  Coverage   99.07%   99.07%           
=======================================
  Files          27       27           
  Lines        1085     1085           
  Branches       97       97           
=======================================
  Hits         1075     1075           
  Misses         10       10           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/patch-pin-image-digest-versions branch 7 times, most recently from 062fb87 to 2a7a7b4 Compare November 10, 2023 23:01
@renovate renovate bot changed the title chore(deps): update patch, pin, image digest versions fix(deps): update patch, pin, image digest versions Nov 10, 2023
@renovate renovate bot force-pushed the renovate/patch-pin-image-digest-versions branch 6 times, most recently from 87181ee to 92fb82f Compare November 21, 2023 18:51
@renovate renovate bot force-pushed the renovate/patch-pin-image-digest-versions branch 8 times, most recently from b4dd87f to c7c1aa4 Compare November 27, 2023 21:41
@renovate renovate bot force-pushed the renovate/patch-pin-image-digest-versions branch 6 times, most recently from 5929590 to e2eb7c6 Compare December 4, 2023 20:31
@renovate renovate bot force-pushed the renovate/patch-pin-image-digest-versions branch 5 times, most recently from 3466b6a to 661b8e0 Compare December 6, 2023 04:35
@renovate renovate bot force-pushed the renovate/patch-pin-image-digest-versions branch from 661b8e0 to b3e20c5 Compare December 8, 2023 16:03
@renovate renovate bot merged commit aa21589 into main Dec 8, 2023
7 checks passed
@renovate renovate bot deleted the renovate/patch-pin-image-digest-versions branch December 8, 2023 19:18
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.

0 participants