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 all non-major dependencies #838

Merged
merged 4 commits into from
Oct 17, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 2, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@sentry/tracing (source) 7.72.0 -> 7.74.1 age adoption passing confidence dependencies minor
@sentry/vite-plugin (source) 2.7.1 -> 2.8.0 age adoption passing confidence devDependencies minor
@sentry/vue (source) 7.72.0 -> 7.74.1 age adoption passing confidence dependencies minor
@vitejs/plugin-vue (source) 4.3.4 -> 4.4.0 age adoption passing confidence devDependencies minor
@vueuse/core 10.4.1 -> 10.5.0 age adoption passing confidence dependencies minor
Pillow (source, changelog) ~=10.0.0 -> ~=10.1.0 age adoption passing confidence minor
actix-governor 0.4.1 -> 0.5.0 age adoption passing confidence dependencies minor
cypress 13.3.0 -> 13.3.1 age adoption passing confidence devDependencies patch
diesel (source) 2.1.2 -> 2.1.3 age adoption passing confidence dependencies patch
getmeili/meilisearch v1.4.0 -> v1.4.1 age adoption passing confidence patch
maplibre-gl 3.3.1 -> 3.5.1 age adoption passing confidence dependencies minor
octocrab 0.30.1 -> 0.31.2 age adoption passing confidence dependencies minor
pinia 2.1.6 -> 2.1.7 age adoption passing confidence dependencies patch
python 3.11-bullseye -> 3.12-bullseye age adoption passing confidence stage minor
regex 1.9.6 -> 1.10.2 age adoption passing confidence dependencies minor
reqwest 0.11.20 -> 0.11.22 age adoption passing confidence dependencies patch
rust 1.72-alpine -> 1.73-alpine age adoption passing confidence stage minor
sass 1.68.0 -> 1.69.3 age adoption passing confidence devDependencies minor
tokio (source) 1.32 -> 1.33 age adoption passing confidence workspace.dependencies minor
vite (source) 4.4.9 -> 4.4.11 age adoption passing confidence devDependencies patch
vue-tsc 1.8.15 -> 1.8.19 age adoption passing confidence devDependencies patch

Warning

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


Release Notes

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

v7.74.1

Compare Source

  • chore(astro): Add astro-integration keyword (#​9265)
  • fix(core): Narrow filters for health check transactions (#​9257)
  • fix(nextjs): Fix HMR by inserting new entrypoints at the end (#​9267)
  • fix(nextjs): Fix resolution of request async storage module (#​9259)
  • fix(node-experimental): Guard against missing fetch (#​9275)
  • fix(remix): Update defer injection logic. (#​9242)
  • fix(tracing-internal): Parameterize express middleware parameters (#​8668)
  • fix(utils): Move Node specific ANR impl. out of utils (#​9258)

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

Bundle size 📦

Path Size
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 83.98 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 31.57 KB
@​sentry/browser - Webpack (gzipped) 21.75 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 80.47 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 29.51 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 21.69 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 245.55 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 85.53 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 61.45 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 32.64 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 84.05 KB
@​sentry/react - Webpack (gzipped) 21.79 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 102.18 KB
@​sentry/nextjs Client - Webpack (gzipped) 49.65 KB

v7.74.0

Compare Source

Important Changes
  • feat(astro): Add sentryAstro integration (#​9218)

This Release introduces the first alpha version of our new SDK for Astro.
At this time, the SDK is considered experimental and things might break and change in future versions.

The core of the SDK is an Astro integration which you easily add to your Astro config:

// astro.config.js
import { defineConfig } from "astro/config";
import sentry from "@​sentry/astro";

export default defineConfig({
  integrations: [
    sentry({
      dsn: "__DSN__",
      sourceMapsUploadOptions: {
        project: "astro",
        authToken: process.env.SENTRY_AUTH_TOKEN,
      },
    }),
  ],
});

Check out the README for usage instructions and what to expect from this alpha release.

Other Changes
  • feat(core): Add addIntegration utility (#​9186)
  • feat(core): Add continueTrace method (#​9164)
  • feat(node-experimental): Add NodeFetch integration (#​9226)
  • feat(node-experimental): Use native OTEL Spans (#​9161, #​9214)
  • feat(node-experimental): Sample in OTEL Sampler (#​9203)
  • feat(serverlesss): Allow disabling transaction traces (#​9154)
  • feat(tracing): Allow direct pg module to enable esbuild support (#​9227)
  • feat(utils): Move common node ANR code to utils (#​9191)
  • feat(vue): Expose VueIntegration to initialize vue app later (#​9180)
  • fix: Don't set referrerPolicy on serverside fetch transports (#​9200)
  • fix: Ensure we never mutate options passed to init (#​9162)
  • fix(ember): Avoid pulling in utils at build time (#​9221)
  • fix(ember): Drop undefined config values (#​9175)
  • fix(node): Ensure mysql integration works without callback (#​9222)
  • fix(node): Only require inspector when needed (#​9149)
  • fix(node): Remove ANR debug option and instead add logger.isEnabled() (#​9230)
  • fix(node): Strip .mjs and .cjs extensions from module name (#​9231)
  • fix(replay): bump rrweb to 2.0.1 (#​9240)
  • fix(replay): Fix potential broken CSS in styled-components (#​9234)
  • fix(sveltekit): Flush in server wrappers before exiting (#​9153)
  • fix(types): Update signature of processEvent integration hook (#​9151)
  • fix(utils): Dereference DOM events after they have servered their purpose (#​9224)
  • ref(integrations): Refactor pluggable integrations to use processEvent (#​9021)
  • ref(serverless): Properly deprecate rethrowAfterCapture option (#​9159)
  • ref(utils): Deprecate walk method (#​9157)

Work in this release contributed by @​aldenquimby. Thank you for your contributions!

Bundle size 📦
Path Size
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 84.27 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 31.43 KB
@​sentry/browser - Webpack (gzipped) 22.02 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 78.79 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 28.6 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 21.02 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 254.51 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 86.76 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 62.45 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.48 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 84.3 KB
@​sentry/react - Webpack (gzipped) 22.06 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 102.21 KB
@​sentry/nextjs Client - Webpack (gzipped) 50.96 KB

v7.73.0

Compare Source

Important Changes
  • feat(replay): Upgrade to rrweb2

This is fully backwards compatible with prior versions of the Replay SDK. The only breaking change that we will making is to not be masking aria-label by default. The reason for this change is to align with our core SDK which also does not mask aria-label. This change also enables better support of searching by clicks.

Another change that needs to be highlighted is the 13% bundle size increase. This bundle size increase is necessary to bring improved recording performance and improved replay fidelity, especially in regards to web components and iframes. We will be investigating the reduction of the bundle size in this PR.

Here are benchmarks comparing the version 1 of rrweb to version 2

metric v1 v2
lcp 1486.06 ms 1529.11 ms
cls 0.40 ms 0.40 ms
fid 1.53 ms 1.50 ms
tbt 3207.22 ms 3036.80 ms
memoryAvg 131.83 MB 124.84 MB
memoryMax 324.8 MB 339.03 MB
netTx 282.67 KB 272.51 KB
netRx 8.02 MB 8.07 MB
Other Changes
  • feat: Always assemble Envelopes (#​9101)
  • feat(node): Rate limit local variables for caught exceptions and enable captureAllExceptions by default (#​9102)
  • fix(core): Ensure tunnel is considered for isSentryUrl checks (#​9130)
  • fix(nextjs): Fix RequestAsyncStorage fallback path (#​9126)
  • fix(node-otel): Suppress tracing for generated sentry spans (#​9142)
  • fix(node): fill in span data from http request options object (#​9112)
  • fix(node): Fixes and improvements to ANR detection (#​9128)
  • fix(sveltekit): Avoid data invalidation in wrapped client-side load functions (#​9071)
  • ref(core): Refactor InboundFilters integration to use processEvent (#​9020)
  • ref(wasm): Refactor Wasm integration to use processEvent (#​9019)

Work in this release contributed by @​vlad-zhukov. Thank you for your contribution!

Bundle size 📦

Path Size
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 84.26 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 31.42 KB
@​sentry/browser - Webpack (gzipped) 22 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 78.69 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 28.52 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 20.59 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 254.14 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 86.42 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 61.23 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.38 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 84.28 KB
@​sentry/react - Webpack (gzipped) 22.03 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 102.2 KB
@​sentry/nextjs Client - Webpack (gzipped) 50.95 KB
getsentry/sentry-javascript-bundler-plugins (@​sentry/vite-plugin)

v2.8.0

Compare Source

  • build(core): Bump Sentry CLI to v2.21.2 (#​415)
  • feat: Detect release name for Bitbucket pipelines (#​404)
  • feat: Detect release name for Flightcontrol (#​411)
  • fix(core): Move git revision to a separate function (#​399)
  • fix(esbuild): Don't inject debug IDs into injected modules (#​417)

Work in this release contributed by @​hoslmelq, @​mjomble, and @​aquacash5. Thank you for your contributions!

vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v4.4.0

vueuse/vueuse (@​vueuse/core)

v10.5.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
python-pillow/Pillow (Pillow)

v10.1.0

Compare Source

  • Added TrueType default font to allow for different sizes #​7354
    [radarhere]

  • Fixed invalid argument warning #​7442
    [radarhere]

  • Added ImageOps cover method #​7412
    [radarhere, hugovk]

  • Catch struct.error from truncated EXIF when reading JPEG DPI #​7458
    [radarhere]

  • Consider default image when selecting mode for PNG save_all #​7437
    [radarhere]

  • Support BGR;15, BGR;16 and BGR;24 access, unpacking and putdata #​7303
    [radarhere]

  • Added CMYK to RGB unpacker #​7310
    [radarhere]

  • Improved flexibility of XMP parsing #​7274
    [radarhere]

  • Support reading 8-bit YCbCr TIFF images #​7415
    [radarhere]

  • Allow saving I;16B images as PNG #​7302
    [radarhere]

  • Corrected drawing I;16 points and writing I;16 text #​7257
    [radarhere]

  • Set blue channel to 128 for BC5S #​7413
    [radarhere]

  • Increase flexibility when reading IPTC fields #​7319
    [radarhere]

  • Set C palette to be empty by default #​7289
    [radarhere]

  • Added gs_binary to control Ghostscript use on all platforms #​7392
    [radarhere]

  • Read bounding box information from the trailer of EPS files if specified #​7382
    [nopperl, radarhere]

  • Added reading 8-bit color DDS images #​7426
    [radarhere]

  • Added has_transparency_data #​7420
    [radarhere, hugovk]

  • Fixed bug when reading BC5S DDS images #​7401
    [radarhere]

  • Prevent TIFF orientation from being applied more than once #​7383
    [radarhere]

  • Use previous pixel alpha for QOI_OP_RGB #​7357
    [radarhere]

  • Added BC5U reading #​7358
    [radarhere]

  • Allow getpixel() to accept a list #​7355
    [radarhere, homm]

  • Allow GaussianBlur and BoxBlur to accept a sequence of x and y radii #​7336
    [radarhere]

  • Expand JPEG buffer size when saving optimized or progressive #​7345
    [radarhere]

  • Added session type check for Linux in ImageGrab.grabclipboard() #​7332
    [TheNooB2706, radarhere, hugovk]

  • Allow "loop=None" when saving GIF images #​7329
    [radarhere]

  • Fixed transparency when saving P mode images to PDF #​7323
    [radarhere]

  • Added saving LA images as PDFs #​7299
    [radarhere]

  • Set SMaskInData to 1 for PDFs with alpha #​7316, #​7317
    [radarhere]

  • Changed Image mode property to be read-only by default #​7307
    [radarhere]

  • Silence exceptions in repr_jpeg and repr_png #​7266
    [mtreinish, radarhere]

  • Do not use transparency when saving GIF if it has been removed when normalizing mode #​7284
    [radarhere]

  • Fix missing symbols when libtiff depends on libjpeg #​7270
    [heitbaum]

cypress-io/cypress (cypress)

v13.3.1

Compare Source

Changelog: https://docs.cypress.io/guides/references/changelog#13-3-1

diesel-rs/diesel (diesel)

v2.1.3: Diesel 2.1.3

Compare Source

  • Increased accidentally decreased limit around element count in DISTINCT ON and ORDER BY clauses again as that broke existing code
maplibre/maplibre-gl-js (maplibre-gl)

v3.5.1

Compare Source

🐞 Bug fixes
  • Fix regression introduced in 3.5.0, related to async/await (#​3228)

v3.5.0

Compare Source

✨ Features and improvements
  • Add setTiles method to RasterTileSource to dynamically update existing tile sources. (#​3208)

v3.4.1

Compare Source

✨ Features and improvements
  • Locally rendered glyphs are double resolution (48px), greatly improving sharpness of CJK text. (#​2990, #​3006)
🐞 Bug fixes
  • Fix setStyle->style.setState didn't reset _serializedLayers (#​3133).
  • Fix Raster DEM decoding in safari private browsing mode (#​3185)

v3.4.0

Compare Source

✨ Features and improvements
  • Improve error message when a tile can't be loaded (#​3130)
  • Support custom raster-dem encodings (#​3087)
🐞 Bug fixes
  • Fixed Interrupting a scroll zoom causes the next scroll zoom to return to the prior zoom level by reseting scroll handler state properly (#​2709, #​3051)
  • Fix unit test warning about duplicate module names (#​3049)
  • Correct marker position when switching between 2D and 3D view (#​2996)
  • Fix error thrown when unsetting line-gradient [#​2683]
  • Update raster tile end points in documentation
  • Avoiding inertia animation on Mac when reduced motion is on (#​3068)
  • 3d buildings example doesn't work as expected (#​3165)
XAMPPRocky/octocrab (octocrab)

v0.31.2

Compare Source

Other
  • Add follow-redirect feature (#​469)

v0.31.1

Compare Source

Other
  • add get_readme for RepoHandler (#​465)

v0.31.0

Compare Source

Other
vuejs/pinia (pinia)

v2.1.7

Compare Source

Please refer to CHANGELOG.md for details.

rust-lang/regex (regex)

v1.10.2

Compare Source

===================
This is a new patch release that fixes a search regression where incorrect
matches could be reported.

Bug fixes:

  • BUG #​1110:
    Revert broadening of reverse suffix literal optimization introduced in 1.10.1.

v1.10.1

Compare Source

===================
This is a new patch release with a minor increase in the number of valid
patterns and a broadening of some literal optimizations.

New features:

  • FEATURE 04f5d7be:
    Loosen ASCII-compatible rules such that regexes like (?-u:☃) are now allowed.

Performance improvements:

  • PERF 8a8d599f:
    Broader the reverse suffix optimization to apply in more cases.

v1.10.0

Compare Source

===================
This is a new minor release of regex that adds support for start and end
word boundary assertions. That is, \< and \>. The minimum supported Rust
version has also been raised to 1.65, which was released about one year ago.

The new word boundary assertions are:

  • \< or \b{start}: a Unicode start-of-word boundary (\W|\A on the left,
    \w on the right).
  • \> or \b{end}: a Unicode end-of-word boundary (\w on the left, \W|\z
    on the right)).
  • \b{start-half}: half of a Unicode start-of-word boundary (\W|\A on the
    left).
  • \b{end-half}: half of a Unicode end-of-word boundary (\W|\z on the
    right).

The \< and \> are GNU extensions to POSIX regexes. They have been added
to the regex crate because they enjoy somewhat broad support in other regex
engines as well (for example, vim). The \b{start} and \b{end} assertions
are aliases for \< and \>, respectively.

The \b{start-half} and \b{end-half} assertions are not found in any
other regex engine (although regex engines with general look-around support
can certainly express them). They were added principally to support the
implementation of word matching in grep programs, where one generally wants to
be a bit more flexible in what is considered a word boundary.

New features:

Performance improvements:

  • PERF #​1051:
    Unicode character class operations have been optimized in regex-syntax.
  • PERF #​1090:
    Make patterns containing lots of literal characters use less memory.

Bug fixes:

  • BUG #​1046:
    Fix a bug that could result in incorrect match spans when using a Unicode word
    boundary and searching non-ASCII strings.
  • BUG(regex-syntax) #​1047:
    Fix panics that can occur in Ast->Hir translation (not reachable from regex
    crate).
  • BUG(regex-syntax) #​1088:
    Remove guarantees in the API that connect the u flag with a specific HIR
    representation.

regex-automata breaking change release:

This release includes a regex-automata 0.4.0 breaking change release, which
was necessary in order to support the new word boundary assertions. For
example, the Look enum has new variants and the LookSet type now uses u32
instead of u16 to represent a bitset of look-around assertions. These are
overall very minor changes, and most users of regex-automata should be able
to move to 0.4 from 0.3 without any changes at all.

regex-syntax breaking change release:

This release also includes a regex-syntax 0.8.0 breaking change release,
which, like regex-automata, was necessary in order to support the new word
boundary assertions. This release also includes some changes to the Ast
type to reduce heap usage in some cases. If you are using the Ast type
directly, your code may require some minor modifications. Otherwise, users of
regex-syntax 0.7 should be able to migrate to 0.8 without any code changes.

regex-lite release:

The regex-lite 0.1.1 release contains support for the new word boundary
assertions. There are no breaking changes.

seanmonstar/reqwest (reqwest)

v0.11.22

Compare Source

  • Fix compilation on Windows when trust-dns is enabled.

v0.11.21

Compare Source

  • Add automatically detecting macOS proxy settings.
  • Add ClientBuilder::tls_info(bool), which will put tls::TlsInfo into the response extensions.
  • Fix trust-dns resolver from possible hangs.
  • Fix connect timeout to be split among multiple IP addresses.
sass/dart-sass (sass)

v1.69.3

Compare Source

Embedded Sass
  • Fix TypeScript type locations in package.json.

v1.69.2

Compare Source

JS API
  • Fix a bug where Sass crashed when running in the browser if there was a global
    variable named process.

v1.69.1

Compare Source

  • No user-visible changes.

v1.69.0

Compare Source

  • Add a meta.get-mixin() function that returns a mixin as a first-class Sass
    value.

  • Add a meta.apply() mixin that includes a mixin value.

  • Add a meta.module-mixins() function which returns a map from mixin names in
    a module to the first-class mixins that belong to those names.

  • Add a meta.accepts-content() function which returns whether or not a mixin
    value can take a content block.

  • Add support for the relative color syntax from CSS Color 5. This syntax
    cannot be used to create Sass color values. It is always emitted as-is in the
    CSS output.

Dart API
  • Deprecate Deprecation.calcInterp since it was never actually emitted as a
    deprecation.
Embedded Sass
  • Fix a rare race condition where the embedded compiler could freeze when a
    protocol error was immediately followed by another request.
tokio-rs/tokio (tokio)

v1.33.0: Tokio v1.33.0

Compare Source

1.33.0 (October 9, 2023)

Fixed
  • io: mark Interest::add with #[must_use] ([#​6037])
  • runtime: fix cache line size for RISC-V ([#​5994])
  • sync: prevent lock poisoning in watch::Receiver::wait_for ([#​6021])
  • task: fix spawn_local source location ([#​5984])
Changed
  • sync: use Acquire/Release orderings instead of SeqCst in watch ([#​6018])
Added
  • fs: add vectored writes to tokio::fs::File ([#​5958])
  • io: add Interest::remove method ([#​5906])
  • io: add vectored writes to DuplexStream ([#​5985])
  • net: add Apple tvOS support ([#​6045])
  • sync: add ?Sized bound to {MutexGuard,OwnedMutexGuard}::map ([#​5997])
  • sync: add watch::Receiver::mark_unseen ([#​5962], [#​6014], [#​6017])
  • sync: add watch::Sender::new ([#​5998])
  • sync: add const fn OnceCell::from_value ([#​5903])
Removed
  • remove unused stats feature ([#​5952])
Documented
  • add missing backticks in code examples ([#​5938], [#​6056])
  • fix typos ([#​5988], [#​6030])
  • process: document that Child::wait is cancel safe ([#​5

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

@github-actions
Copy link
Contributor

github-actions bot commented Oct 2, 2023

👋 Thank you for contributing. A staging environment for this PR for this change will be available shortly

github-actions bot added a commit that referenced this pull request Oct 2, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d177c7f to af9393a Compare October 2, 2023 18:35
github-actions bot added a commit that referenced this pull request Oct 2, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from af9393a to af1c8ed Compare October 3, 2023 04:17
github-actions bot added a commit that referenced this pull request Oct 3, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from af1c8ed to b21fddc Compare October 3, 2023 13:17
github-actions bot added a commit that referenced this pull request Oct 3, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b21fddc to a31531a Compare October 3, 2023 19:48
github-actions bot added a commit that referenced this pull request Oct 3, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 527bac3 to 2dfeaa9 Compare October 4, 2023 21:47
github-actions bot added a commit that referenced this pull request Oct 4, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2dfeaa9 to a13f624 Compare October 5, 2023 09:48
github-actions bot added a commit that referenced this pull request Oct 5, 2023
github-actions bot added a commit that referenced this pull request Oct 5, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from e0da3fc to 6c70c58 Compare October 5, 2023 16:25
github-actions bot added a commit that referenced this pull request Oct 5, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6e107ee to fe9bb92 Compare October 6, 2023 19:15
github-actions bot added a commit that referenced this pull request Oct 6, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fe9bb92 to b2208df Compare October 6, 2023 22:18
github-actions bot added a commit that referenced this pull request Oct 6, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b2208df to 3f40f98 Compare October 7, 2023 16:10
github-actions bot added a commit that referenced this pull request Oct 7, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3f40f98 to 50540b7 Compare October 8, 2023 10:30
github-actions bot added a commit that referenced this pull request Oct 12, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7babe97 to 169821d Compare October 13, 2023 12:49
github-actions bot added a commit that referenced this pull request Oct 13, 2023
github-actions bot added a commit that referenced this pull request Oct 13, 2023
github-actions bot added a commit that referenced this pull request Oct 14, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 169821d to f63a0ec Compare October 14, 2023 17:00
github-actions bot added a commit that referenced this pull request Oct 14, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f63a0ec to cc4073b Compare October 15, 2023 17:48
github-actions bot added a commit that referenced this pull request Oct 15, 2023
github-actions bot added a commit that referenced this pull request Oct 15, 2023
github-actions bot added a commit that referenced this pull request Oct 16, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cc4073b to d5eeb5e Compare October 16, 2023 17:04
github-actions bot added a commit that referenced this pull request Oct 16, 2023
github-actions bot added a commit that referenced this pull request Oct 16, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d5eeb5e to 985d23c Compare October 17, 2023 14:24
github-actions bot added a commit that referenced this pull request Oct 17, 2023
github-actions bot added a commit that referenced this pull request Oct 17, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 985d23c to b0e5c85 Compare October 17, 2023 21:30
github-actions bot added a commit that referenced this pull request Oct 17, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b0e5c85 to 929ad5e Compare October 17, 2023 21:44
@CommanderStorm CommanderStorm enabled auto-merge (squash) October 17, 2023 21:51
data/Dockerfile Outdated Show resolved Hide resolved
@renovate
Copy link
Contributor Author

renovate bot commented Oct 17, 2023

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

Warning: custom changes will be lost.

@CommanderStorm CommanderStorm merged commit 7dd2d4d into main Oct 17, 2023
19 checks passed
@CommanderStorm CommanderStorm deleted the renovate/all-minor-patch branch October 17, 2023 23:32
github-actions bot added a commit that referenced this pull request Oct 17, 2023
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.

1 participant