Skip to content

Update CI dependencies (master) #12106

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

Merged
merged 1 commit into from
Jul 3, 2025
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 30, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@sentry/browser (source) 9.24.0 -> 9.34.0 age confidence devDependencies minor
astral-sh/ruff-pre-commit v0.11.12 -> v0.12.1 age confidence repository minor
prettier (source) 3.5.3 -> 3.6.2 age confidence minor
prettier-plugin-sh (source) 0.17.4 -> 0.18.0 age confidence minor
python-jsonschema/check-jsonschema 0.33.0 -> 0.33.1 age confidence repository patch
renovatebot/pre-commit-hooks 40.36.8 -> 40.62.1 age confidence repository minor
requests (source, changelog) ==2.32.3 -> ==2.32.4 age confidence patch
sass 1.89.1 -> 1.89.2 age confidence devDependencies patch
sbrunner/python-versions-hook 1.1.1 -> 1.1.2 age confidence repository patch
terser (source) 5.40.0 -> 5.43.1 age confidence devDependencies minor
webpack-dev-server 5.2.1 -> 5.2.2 age confidence devDependencies patch

Note: The pre-commit manager in Renovate is not supported by the pre-commit maintainers or community. Please do not report any problems there, instead create a Discussion in the Renovate repository if you have any questions.


Release Notes

getsentry/sentry-javascript (@​sentry/browser)

v9.34.0

Compare Source

Important Changes
  • feat(nuxt): Add Cloudflare Nitro plugin (#​15597)

    A Nitro plugin for @sentry/nuxt which initializes Sentry when deployed to Cloudflare (cloudflare-pages preset).

    1. Remove the previous server config file: sentry.server.config.ts

    2. Add a plugin in server/plugins (e.g. server/plugins/sentry-cloudflare-setup.ts)

    3. Add this code in your plugin file

      // server/plugins/sentry-cloudflare-setup.ts (filename does not matter)
      import { sentryCloudflareNitroPlugin } from '@​sentry/nuxt/module/plugins';
      
      export default defineNitroPlugin(
        sentryCloudflareNitroPlugin({
          dsn: 'https://dsn',
          tracesSampleRate: 1.0,
        }),
      );

      or with access to nitroApp:

      // server/plugins/sentry-cloudflare-setup.ts (filename does not matter)
      import { sentryCloudflareNitroPlugin } from '@​sentry/nuxt/module/plugins';
      
      export default defineNitroPlugin(sentryCloudflareNitroPlugin((nitroApp: NitroApp) => {
        // You can access nitroApp here if needed
        return  ({
          dsn: 'https://dsn',
          tracesSampleRate: 1.0,
        })
      }))
Other Changes
  • feat(browser): Record standalone LCP spans (#​16591)
  • fix(nuxt): Only add OTel alias in dev mode (#​16756)

Bundle size 📦

Path Size
@​sentry/browser 23.42 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 38.11 KB
@​sentry/browser (incl. Tracing, Replay) 75.35 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.61 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 80.01 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 91.81 KB
@​sentry/browser (incl. Feedback) 39.79 KB
@​sentry/browser (incl. sendFeedback) 28.02 KB
@​sentry/browser (incl. FeedbackAsync) 32.8 KB
@​sentry/react 25.16 KB
@​sentry/react (incl. Tracing) 40.04 KB
@​sentry/vue 27.69 KB
@​sentry/vue (incl. Tracing) 39.9 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.9 KB
CDN Bundle (incl. Tracing) 38.19 KB
CDN Bundle (incl. Tracing, Replay) 73.24 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.57 KB
CDN Bundle - uncompressed 72.75 KB
CDN Bundle (incl. Tracing) - uncompressed 113.89 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 225.27 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 237.8 KB
@​sentry/nextjs (client) 41.64 KB
@​sentry/sveltekit (client) 38.56 KB
@​sentry/node 150.68 KB
@​sentry/node - without tracing 96.32 KB
@​sentry/aws-serverless 121.48 KB

v9.33.0

Compare Source

Important Changes
  • feat: Add opt-in vercelAiIntegration to cloudflare & vercel-edge (#​16732)

The vercelAiIntegration is now available as opt-in for the Cloudflare and the Next.js SDK for Vercel Edge.
To use it, add the integration in Sentry.init

Sentry.init({
  tracesSampleRate: 1.0,
  integrations: [Sentry.vercelAIIntegration()],
});

And enable telemetry for Vercel AI calls

const result = await generateText({
  model: openai('gpt-4o'),
  experimental_telemetry: {
    isEnabled: true,
  },
});
  • feat(node): Add postgresjs instrumentation (#​16665)

The Node.js SDK now includes instrumentation for Postgres.js.

  • feat(node): Use diagnostics channel for Fastify v5 error handling (#​16715)

If you're on Fastify v5, you no longer need to call setupFastifyErrorHandler. It is done automatically by the node SDK. Older versions still rely on calling setupFastifyErrorHandler.

Other Changes
  • feat(cloudflare): Allow interop with OpenTelemetry emitted spans (#​16714)
  • feat(cloudflare): Flush after waitUntil (#​16681)
  • fix(nextjs): Remove ai from default server external packages (#​16736)

Work in this release was contributed by @​0xbad0c0d3. Thank you for your contribution!

v9.32.0

Compare Source

Important Changes
  • feat(browser): Add CLS sources to span attributes (#​16710)

Enhances CLS (Cumulative Layout Shift) spans by adding attributes detailing the elements that caused layout shifts.

  • feat(cloudflare): Add instrumentWorkflowWithSentry to instrument workflows (#​16672)

We've added support for Cloudflare Workflows, enabling comprehensive tracing for your workflow runs. This integration uses the workflow's instanceId as the Sentry trace_id and for sampling, linking all steps together. You'll now be able to see full traces, including retries with exponential backoff.

  • feat(pino-transport): Add functionality to send logs to sentry (#​16667)

Adds the ability to send logs to Sentry via a pino transport.

Other Changes
  • feat(nextjs): Expose top level buildTime errorHandler option (#​16718)
  • feat(node): update pipeline spans to use agent naming (#​16712)
  • feat(deps): bump @​prisma/instrumentation from 6.9.0 to 6.10.1 (#​16698)
  • fix(sveltekit): Export logger from sveltekit worker (#​16716)
  • fix(google-cloud-serverless): Make CloudEventsContext compatible with CloudEvent (#​16705)
  • fix(nextjs): Stop injecting release value when create release options is set to false (#​16695)
  • fix(node): account for Object. syntax with local variables matching (#​16702)
  • fix(nuxt): Add alias for @opentelemetry/resources (#​16727)

Work in this release was contributed by @​flaeppe. Thank you for your contribution!

Bundle size 📦

Path Size
@​sentry/browser 23.42 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 37.93 KB
@​sentry/browser (incl. Tracing, Replay) 75.18 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.42 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 79.83 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 91.63 KB
@​sentry/browser (incl. Feedback) 39.79 KB
@​sentry/browser (incl. sendFeedback) 28.02 KB
@​sentry/browser (incl. FeedbackAsync) 32.8 KB
@​sentry/react 25.16 KB
@​sentry/react (incl. Tracing) 39.88 KB
@​sentry/vue 27.69 KB
@​sentry/vue (incl. Tracing) 39.75 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.9 KB
CDN Bundle (incl. Tracing) 38 KB
CDN Bundle (incl. Tracing, Replay) 73.08 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.41 KB
CDN Bundle - uncompressed 72.75 KB
CDN Bundle (incl. Tracing) - uncompressed 112.71 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 224.1 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 236.62 KB
@​sentry/nextjs (client) 41.48 KB
@​sentry/sveltekit (client) 38.41 KB
@​sentry/node 147.34 KB
@​sentry/node - without tracing 96.32 KB
@​sentry/aws-serverless 121.48 KB

v9.31.0

Compare Source

Important Changes
  • feat(nextjs): Add option for auto-generated random tunnel route (#​16626)

Adds an option to automatically generate a random tunnel route for the Next.js SDK. This helps prevent ad blockers and other tools from blocking Sentry requests by using a randomized path instead of the predictable /monitoring endpoint.

  • feat(core): Allow to pass scope & client to getTraceData (#​16633)

Adds the ability to pass custom scope and client parameters to the getTraceData function, providing more flexibility when generating trace data for distributed tracing.

Other Changes
  • feat(core): Add support for x-forwarded-host and x-forwarded-proto headers (#​16687)
  • deps: Remove unused @sentry/opentelemetry dependency (#​16677)
  • deps: Update all bundler plugin instances to latest & allow caret ranges (#​16641)
  • feat(deps): Bump @​prisma/instrumentation from 6.8.2 to 6.9.0 (#​16608)
  • feat(flags): add node support for generic featureFlagsIntegration and move utils to core (#​16585)
  • feat(flags): capture feature flag evaluations on spans (#​16485)
  • feat(pino): Add initial package for @sentry/pino-transport (#​16652)
  • fix: Wait for the correct clientWidth/clientHeight when showing Feedback Screenshot previews (#​16648)
  • fix(browser): Remove usage of Array.at() method (#​16647)
  • fix(core): Improve safeJoin usage in console logging integration (#​16658)
  • fix(google-cloud-serverless): Make CloudEvent type compatible (#​16661)
  • fix(nextjs): Fix lookup of instrumentation-client.js file (#​16637)
  • fix(node): Ensure graphql errors result in errored spans (#​16678)

Bundle size 📦

Path Size
@​sentry/browser 23.42 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 37.89 KB
@​sentry/browser (incl. Tracing, Replay) 75.13 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.38 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 79.78 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 91.58 KB
@​sentry/browser (incl. Feedback) 39.79 KB
@​sentry/browser (incl. sendFeedback) 28.02 KB
@​sentry/browser (incl. FeedbackAsync) 32.8 KB
@​sentry/react 25.16 KB
@​sentry/react (incl. Tracing) 39.84 KB
@​sentry/vue 27.69 KB
@​sentry/vue (incl. Tracing) 39.71 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.9 KB
CDN Bundle (incl. Tracing) 37.97 KB
CDN Bundle (incl. Tracing, Replay) 73.03 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.38 KB
CDN Bundle - uncompressed 72.75 KB
CDN Bundle (incl. Tracing) - uncompressed 112.63 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 224.01 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 236.53 KB
@​sentry/nextjs (client) 41.44 KB
@​sentry/sveltekit (client) 38.37 KB
@​sentry/node 147.29 KB
@​sentry/node - without tracing 96.27 KB
@​sentry/aws-serverless 121.42 KB

v9.30.0

Compare Source

  • feat(nextjs): Add URL to tags of server components and generation functions issues (#​16500)
  • feat(nextjs): Ensure all packages we auto-instrument are externalized (#​16552)
  • feat(node): Automatically enable vercelAiIntegration when ai module is detected (#​16565)
  • feat(node): Ensure modulesIntegration works in more environments (#​16566)
  • feat(core): Don't gate user on logs with sendDefaultPii (#​16527)
  • feat(browser): Add detail to measure spans and add regression tests (#​16557)
  • feat(node): Update Vercel AI span attributes (#​16580)
  • fix(opentelemetry): Ensure only orphaned spans of sent spans are sent (#​16590)
Bundle size 📦
Path Size
@​sentry/browser 23.43 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 37.88 KB
@​sentry/browser (incl. Tracing, Replay) 75.08 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 68.33 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 79.74 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 91.52 KB
@​sentry/browser (incl. Feedback) 39.77 KB
@​sentry/browser (incl. sendFeedback) 28.03 KB
@​sentry/browser (incl. FeedbackAsync) 32.8 KB
@​sentry/react 25.15 KB
@​sentry/react (incl. Tracing) 39.82 KB
@​sentry/vue 27.7 KB
@​sentry/vue (incl. Tracing) 39.7 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.88 KB
CDN Bundle (incl. Tracing) 38.05 KB
CDN Bundle (incl. Tracing, Replay) 73.03 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 78.32 KB
CDN Bundle - uncompressed 72.74 KB
CDN Bundle (incl. Tracing) - uncompressed 112.6 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 223.9 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 236.42 KB
@​sentry/nextjs (client) 41.44 KB
@​sentry/sveltekit (client) 38.36 KB
@​sentry/node 147.12 KB
@​sentry/node - without tracing 96.09 KB
@​sentry/aws-serverless 121.25 KB

v9.29.0

Compare Source

v9.28.1

Compare Source

  • feat(deps): Bump @​sentry/cli from 2.45.0 to 2.46.0 (#​16516)
  • fix(nextjs): Avoid tracing calls to symbolication server on dev (#​16533)
  • fix(sveltekit): Add import attribute for node exports (#​16528)

Work in this release was contributed by @​eltigerchino. Thank you for your contribution!

Bundle size 📦
Path Size
@​sentry/browser 23.43 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 37.46 KB
@​sentry/browser (incl. Tracing, Replay) 74.68 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 67.94 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 79.33 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 91.13 KB
@​sentry/browser (incl. Feedback) 39.78 KB
@​sentry/browser (incl. sendFeedback) 28.03 KB
@​sentry/browser (incl. FeedbackAsync) 32.8 KB
@​sentry/react 25.15 KB
@​sentry/react (incl. Tracing) 39.41 KB
@​sentry/vue 27.69 KB
@​sentry/vue (incl. Tracing) 39.27 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.88 KB
CDN Bundle (incl. Tracing) 37.63 KB
CDN Bundle (incl. Tracing, Replay) 72.66 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 77.99 KB
CDN Bundle - uncompressed 72.67 KB
CDN Bundle (incl. Tracing) - uncompressed 111.42 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 222.72 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 235.25 KB
@​sentry/nextjs (client) 41.03 KB
@​sentry/sveltekit (client) 37.93 KB
@​sentry/node 146.9 KB
@​sentry/node - without tracing 96.03 KB
@​sentry/aws-serverless 121.19 KB

v9.28.0

Compare Source

Important Changes
  • feat(nestjs): Stop creating spans for TracingInterceptor (#​16501)

With this change we stop creating spans for TracingInterceptor as this interceptor only serves as an internal helper and adds noise for the user.

  • feat(node): Update vercel ai spans as per new conventions (#​16497)

This feature ships updates to the span names and ops to better match OpenTelemetry. This should make them more easily accessible to the new agents module view we are building.

Other Changes
  • fix(sveltekit): Export vercelAIIntegration from @sentry/node (#​16496)

Work in this release was contributed by @​agrattan0820. Thank you for your contribution!

Bundle size 📦
Path Size
@​sentry/browser 23.43 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 37.46 KB
@​sentry/browser (incl. Tracing, Replay) 74.68 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 67.94 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 79.33 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 91.13 KB
@​sentry/browser (incl. Feedback) 39.78 KB
@​sentry/browser (incl. sendFeedback) 28.03 KB
@​sentry/browser (incl. FeedbackAsync) 32.8 KB
@​sentry/react 25.15 KB
@​sentry/react (incl. Tracing) 39.41 KB
@​sentry/vue 27.69 KB
@​sentry/vue (incl. Tracing) 39.27 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.88 KB
CDN Bundle (incl. Tracing) 37.63 KB
CDN Bundle (incl. Tracing, Replay) 72.66 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 77.99 KB
CDN Bundle - uncompressed 72.67 KB
CDN Bundle (incl. Tracing) - uncompressed 111.42 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 222.72 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 235.25 KB
@​sentry/nextjs (client) 41.03 KB
@​sentry/sveltekit (client) 37.93 KB
@​sentry/node 146.9 KB
@​sentry/node - without tracing 96.03 KB
@​sentry/aws-serverless 121.19 KB

v9.27.0

Compare Source

  • feat(node): Expand how vercel ai input/outputs can be set (#​16455)
  • feat(node): Switch to new semantic conventions for Vercel AI (#​16476)
  • feat(react-router): Add component annotation plugin (#​16472)
  • feat(react-router): Export wrappers for server loaders and actions (#​16481)
  • fix(browser): Ignore unrealistically long INP values (#​16484)
  • fix(react-router): Conditionally add ReactRouterServer integration (#​16470)

v9.26.0

Compare Source

  • feat(react-router): Re-export functions from @sentry/react (#​16465)
  • fix(nextjs): Skip re instrumentating on generate phase of experimental build mode (#​16410)
  • fix(node): Ensure adding sentry-trace and baggage headers via SentryHttpInstrumentation doesn't crash (#​16473)

v9.25.1

Compare Source

  • fix(otel): Don't ignore child spans after the root is sent (#​16416)

v9.25.0

Compare Source

Important Changes
  • feat(browser): Add option to ignore mark and measure spans (#​16443)

This release adds an option to browserTracingIntegration that lets you ignore
mark and measure spans created from the performance.mark(...) and performance.measure(...) browser APIs:

Sentry.init({
  integrations: [
    Sentry.browserTracingIntegration({
      ignorePerformanceApiSpans: ['measure-to-ignore', /mark-to-ignore/],
    }),
  ],
});
Other Changes
  • feat(browser): Export getTraceData from the browser sdks (#​16433)
  • feat(node): Add includeServerName option (#​16442)
  • fix(nuxt): Remove setting @sentry/nuxt external (#​16444)
Bundle size 📦
Path Size
@​sentry/browser 23.43 KB
@​sentry/browser - with treeshaking flags 23.2 KB
@​sentry/browser (incl. Tracing) 37.44 KB
@​sentry/browser (incl. Tracing, Replay) 74.69 KB
@​sentry/browser (incl. Tracing, Replay) - with treeshaking flags 67.96 KB
@​sentry/browser (incl. Tracing, Replay with Canvas) 79.33 KB
@​sentry/browser (incl. Tracing, Replay, Feedback) 91.13 KB
@​sentry/browser (incl. Feedback) 39.77 KB
@​sentry/browser (incl. sendFeedback) 28.03 KB
@​sentry/browser (incl. FeedbackAsync) 32.8 KB
@​sentry/react 25.15 KB
@​sentry/react (incl. Tracing) 39.39 KB
@​sentry/vue 27.67 KB
@​sentry/vue (incl. Tracing) 39.24 KB
@​sentry/svelte 23.45 KB
CDN Bundle 24.88 KB
CDN Bundle (incl. Tracing) 37.62 KB
CDN Bundle (incl. Tracing, Replay) 72.64 KB
CDN Bundle (incl. Tracing, Replay, Feedback) 77.93 KB
CDN Bundle - uncompressed 72.67 KB
CDN Bundle (incl. Tracing) - uncompressed 111.4 KB
CDN Bundle (incl. Tracing, Replay) - uncompressed 222.7 KB
CDN Bundle (incl. Tracing, Replay, Feedback) - uncompressed 235.22 KB
@​sentry/nextjs (client) 41.02 KB
@​sentry/sveltekit (client) 37.93 KB
@​sentry/node 146.37 KB
@​sentry/node - without tracing 95.83 KB
@​sentry/aws-serverless 120.98 KB
astral-sh/ruff-pre-commit (astral-sh/ruff-pre-commit)

v0.12.1

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.12.1

v0.12.0

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.12.0

v0.11.13

Compare Source

See: https://github.com/astral-sh/ruff/releases/tag/0.11.13

prettier/prettier (prettier)

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.

v3.6.0

Compare Source

diff

🔗 Release Notes

un-ts/prettier (prettier-plugin-sh)

v0.18.0

Compare Source

Minor Changes
python-jsonschema/check-jsonschema (python-jsonschema/check-jsonschema)

v0.33.1

Compare Source

  • Update vendored schemas: bamboo-spec, bitbucket-pipelines, circle-ci, cloudbuild,
    compose-spec, dependabot, drone-ci, github-actions, github-workflows, gitlab-ci,
    mergify, readthedocs, renovate, taskfile, travis, woodpecker-ci (2025-06-22)
  • Fix: support click==8.2.0
  • Fix a bug in Last-Modified header parsing which used local time and could
    result in improper caching. Thanks :user:fenuks! (:pr:565)
renovatebot/pre-commit-hooks (renovatebot/pre-commit-hooks)

v40.62.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.62.1 for more changes

v40.62.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.62.0 for more changes

v40.61.3

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.61.3 for more changes

v40.61.2

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.61.2 for more changes

v40.61.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.61.1 for more changes

v40.61.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.61.0 for more changes

v40.60.5

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.60.5 for more changes

v40.60.4

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.60.4 for more changes

v40.60.3

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.60.3 for more changes

v40.60.2

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.60.2 for more changes

v40.60.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.60.1 for more changes

v40.60.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.60.0 for more changes

v40.59.4

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.59.4 for more changes

v40.59.3

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.59.3 for more changes

v40.59.2

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.59.2 for more changes

v40.59.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.59.1 for more changes

v40.59.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.59.0 for more changes

v40.58.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.58.0 for more changes

v40.57.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.57.1 for more changes

v40.57.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.57.0 for more changes

v40.56.3

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.56.3 for more changes

v40.56.2

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.56.2 for more changes

v40.56.1

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.56.1 for more changes

v40.56.0

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.56.0 for more changes

v40.55.2

Compare Source

See https://github.com/renovatebot/renovate/releases/tag/40.55.2 for mor


Configuration

📅 Schedule: Branch creation - "after 5pm on the first day of the month,on the first day of the month" in timezone Europe/Zurich, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Update the dependencies label Jun 30, 2025
@renovate renovate bot enabled auto-merge (squash) June 30, 2025 22:44
@renovate renovate bot force-pushed the renovate/master-ci-dependencies branch from 3001aca to dfcbe6d Compare July 1, 2025 07:26
@renovate renovate bot force-pushed the renovate/master-ci-dependencies branch from 60df4d1 to 462a811 Compare July 3, 2025 14:29
@renovate renovate bot merged commit cd40d28 into master Jul 3, 2025
23 checks passed
@renovate renovate bot deleted the renovate/master-ci-dependencies branch July 3, 2025 15:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Update the dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants