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 #821

Merged
merged 1 commit into from
Sep 28, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 20, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@sentry/tracing (source) 7.69.0 -> 7.72.0 age adoption passing confidence dependencies minor
@sentry/vue (source) 7.69.0 -> 7.72.0 age adoption passing confidence dependencies minor
cached 0.45.1 -> 0.46.0 age adoption passing confidence dependencies minor
cypress 13.2.0 -> 13.3.0 age adoption passing confidence devDependencies minor
diesel (source) 2.1.1 -> 2.1.2 age adoption passing confidence dependencies patch
getmeili/meilisearch v1.3.4 -> v1.4.0 age adoption passing confidence minor
numba ~=0.57.1 -> ~=0.58.0 age adoption passing confidence minor
pydantic (changelog) ~=2.3.0 -> ~=2.4.2 age adoption passing confidence minor
sass 1.67.0 -> 1.68.0 age adoption passing confidence devDependencies minor
sqlx 0.7.1 -> 0.7.2 age adoption passing confidence dependencies patch
vue-router 4.2.4 -> 4.2.5 age adoption passing confidence dependencies patch
vue-tsc 1.8.11 -> 1.8.15 age adoption passing confidence devDependencies patch

Release Notes

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

v7.72.0

Compare Source

Important Changes
  • feat(node): App Not Responding with stack traces (#​9079)

This release introduces support for Application Not Responding (ANR) errors for Node.js applications.
These errors are triggered when the Node.js main thread event loop of an application is blocked for more than five seconds.
The Node SDK reports ANR errors as Sentry events and can optionally attach a stacktrace of the blocking code to the ANR event.

To enable ANR detection, import and use the enableANRDetection function from the @sentry/node package before you run the rest of your application code.
Any event loop blocking before calling enableANRDetection will not be detected by the SDK.

Example (ESM):

import * as Sentry from "@​sentry/node";

Sentry.init({
  dsn: "___PUBLIC_DSN___",
  tracesSampleRate: 1.0,
});

await Sentry.enableANRDetection({ captureStackTrace: true });
// Function that runs your app
runApp();

Example (CJS):

const Sentry = require("@​sentry/node");

Sentry.init({
  dsn: "___PUBLIC_DSN___",
  tracesSampleRate: 1.0,
});

Sentry.enableANRDetection({ captureStackTrace: true }).then(() => {
  // Function that runs your app
  runApp();
});
Other Changes
  • fix(nextjs): Filter RequestAsyncStorage locations by locations that webpack will resolve (#​9114)
  • fix(replay): Ensure replay_id is not captured when session is expired (#​9109)

v7.71.0

Compare Source

  • feat(bun): Instrument Bun.serve (#​9080)
  • fix(core): Ensure global event processors are always applied to event (#​9064)
  • fix(core): Run client eventProcessors before global ones (#​9032)
  • fix(nextjs): Use webpack module paths to attempt to resolve internal request async storage module (#​9100)
  • fix(react): Add actual error name to boundary error name (#​9065)
  • fix(react): Compare location against basename-prefixed route. (#​9076)
  • ref(browser): Refactor browser integrations to use processEvent (#​9022)

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

Bundle size 📦
Path Size
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 75.58 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 31.46 KB
@​sentry/browser - Webpack (gzipped) 22.06 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 70.27 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 28.57 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 20.64 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 222.17 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 86.57 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 61.42 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.43 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 75.6 KB
@​sentry/react - Webpack (gzipped) 22.09 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 93.48 KB
@​sentry/nextjs Client - Webpack (gzipped) 51.04 KB

v7.70.0

Compare Source

Important Changes

This release contains the beta version of @sentry/bun, our SDK for the Bun JavaScript runtime! For details on how to use it, please see the README. Any feedback/bug reports are greatly appreciated, please reach out on GitHub.

Note that as of now the Bun runtime does not support global error handlers. This is being actively worked on, see the tracking issue in Bun's GitHub repo.

  • feat(remix): Add Remix 2.x release support. (#​8940)

The Sentry Remix SDK now officially supports Remix v2! See our Remix docs for more details.

Other Changes
  • chore(node): Upgrade cookie to ^0.5.0 (#​9013)
  • feat(core): Introduce processEvent hook on Integration (#​9017)
  • feat(node): Improve non-error messages (#​9026)
  • feat(vercel-edge): Add Vercel Edge Runtime package (#​9041)
  • fix(remix): Use React.ComponentType instead of React.FC as withSentry's generic type. (#​9043)
  • fix(replay): Ensure replay events go through preprocessEvent hook (#​9034)
  • fix(replay): Fix typo in Replay types (#​9028)
  • fix(sveltekit): Adjust handleErrorWithSentry type (#​9054)
  • fix(utils): Try-catch monkeypatching to handle frozen objects/functions (#​9031)

Work in this release contributed by @​Dima-Dim, @​krist7599555 and @​lifeiscontent. Thank you for your contributions!

Special thanks for @​isaacharrisholt for helping us implement a Vercel Edge Runtime SDK which we use under the hood for our Next.js SDK.

Bundle size 📦

Path Size
@​sentry/browser (incl. Tracing, Replay) - Webpack (gzipped) 75.58 KB
@​sentry/browser (incl. Tracing) - Webpack (gzipped) 31.49 KB
@​sentry/browser - Webpack (gzipped) 22.09 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (gzipped) 70.27 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (gzipped) 28.59 KB
@​sentry/browser - ES6 CDN Bundle (gzipped) 20.66 KB
@​sentry/browser (incl. Tracing, Replay) - ES6 CDN Bundle (minified & uncompressed) 222.15 KB
@​sentry/browser (incl. Tracing) - ES6 CDN Bundle (minified & uncompressed) 86.64 KB
@​sentry/browser - ES6 CDN Bundle (minified & uncompressed) 61.49 KB
@​sentry/browser (incl. Tracing) - ES5 CDN Bundle (gzipped) 31.46 KB
@​sentry/react (incl. Tracing, Replay) - Webpack (gzipped) 75.61 KB
@​sentry/react - Webpack (gzipped) 22.12 KB
@​sentry/nextjs Client (incl. Tracing, Replay) - Webpack (gzipped) 93.49 KB
@​sentry/nextjs Client - Webpack (gzipped) 51.07 KB
jaemk/cached (cached)

v0.46.0

[0.46.0]

cypress-io/cypress (cypress)

v13.3.0

Compare Source

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

diesel-rs/diesel (diesel)

v2.1.2: Diesel 2.1.2

Compare Source

  • Fixed another potential breaking chaneg around queries containing DISTINCT ON and ORDER BY clauses consisting of custom sql expressions (e.g. .nullable())
  • Fixed an issue where #[derive(Selectable)] and #[diesel(check_for_backend)] generates invalid rust code if the struct contains lifetimes/generic types

You can support the development of diesel by contributions or by sponsoring the project on Github.

pydantic/pydantic (pydantic)

v2.4.2

Compare Source

GitHub release

What's Changed
Fixes
New Contributors

v2.4.1

Compare Source

GitHub release

What's Changed
Packaging
Fixes

v2.4.0

Compare Source

GitHub release

What's Changed
Packaging
New Features
Changes
Performance
Fixes
New Contributors
sass/dart-sass (sass)

v1.68.0

Compare Source

  • Fix the source spans associated with the abs-percent deprecation.
JS API
  • Non-filesystem importers can now set the nonCanonicalScheme field, which
    declares that one or more URL schemes (without :) will never be used for
    URLs returned by the canonicalize() method.

  • Add a containingUrl field to the canonicalize() and findFileUrl()
    methods of importers, which is set to the canonical URL of the stylesheet that
    contains the current load. For filesystem importers, this is always set; for
    other importers, it's set only if the current load has no URL scheme, or if
    its URL scheme is declared as non-canonical by the importer.

Dart API
  • Add AsyncImporter.isNonCanonicalScheme, which importers (async or sync) can
    use to indicate that a certain URL scheme will never be used for URLs returned
    by the canonicalize() method.

  • Add AsyncImporter.containingUrl, which is set during calls to the
    canonicalize() method to the canonical URL of the stylesheet that contains
    the current load. This is set only if the current load has no URL scheme, or
    if its URL scheme is declared as non-canonical by the importer.

Embedded Sass
  • The CalculationValue.interpolation field is deprecated and will be removed
    in a future version. It will no longer be set by the compiler, and if the host
    sets it it will be treated as equivalent to CalculationValue.string except
    that "(" and ")" will be added to the beginning and end of the string
    values.

  • Properly include TypeScript types in the sass-embedded package.

launchbadge/sqlx (sqlx)

v0.7.2

23 pull requests were merged this release cycle.

Added
Changed
Fixed
vuejs/router (vue-router)

v4.2.5

Compare Source

Please refer to CHANGELOG.md for details.

vuejs/language-tools (vue-tsc)

v1.8.15

Compare Source

v1.8.14

Compare Source

Full-time Support by

WebContainer API is here.

Our Platinum Sponsors
The Intuitive Web Framework
The Progressive JavaScript Framework
Our Silver Sponsors

Add you via GitHub Sponsors or Open Collective

v1.8.13

Compare Source

  • fix: generate valid syntax when noPropertyAccessFromIndexSignature is not enabled (#​3575) - thanks @​so1ve

v1.8.12

Compare Source

  • feat: support vitepress's code snippet import (#​3559) - thanks @​so1ve
  • fix(component-meta): fix modules interoperability with vue-component-type-helper
  • fix: avoid losing generic types with strictTemplates: false (#​3565) - thanks @​so1ve
  • fix: format slots with typeannotation correctly (#​3573) - thanks @​so1ve

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

👋 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 Sep 20, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 7e54987 to af7239c Compare September 21, 2023 03:51
github-actions bot added a commit that referenced this pull request Sep 21, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from af7239c to 80f59e7 Compare September 21, 2023 12:17
github-actions bot added a commit that referenced this pull request Sep 21, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 80f59e7 to fcb5119 Compare September 22, 2023 09:32
github-actions bot added a commit that referenced this pull request Sep 22, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fcb5119 to f600964 Compare September 24, 2023 18:14
github-actions bot added a commit that referenced this pull request Sep 24, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f600964 to cdb5e11 Compare September 25, 2023 12:26
github-actions bot added a commit that referenced this pull request Sep 25, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cdb5e11 to 6e7dd3e Compare September 25, 2023 15:41
github-actions bot added a commit that referenced this pull request Sep 25, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6e7dd3e to a7f5ac9 Compare September 25, 2023 18:38
github-actions bot added a commit that referenced this pull request Sep 25, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a7f5ac9 to 8a33f3a Compare September 26, 2023 15:24
github-actions bot added a commit that referenced this pull request Sep 26, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 8a33f3a to a261731 Compare September 26, 2023 19:13
github-actions bot added a commit that referenced this pull request Sep 26, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a261731 to 0486514 Compare September 27, 2023 01:02
github-actions bot added a commit that referenced this pull request Sep 27, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0486514 to 4951e3b Compare September 27, 2023 16:33
github-actions bot added a commit that referenced this pull request Sep 27, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 61a4cc5 to 6db3848 Compare September 28, 2023 09:21
github-actions bot added a commit that referenced this pull request Sep 28, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6db3848 to 3215f32 Compare September 28, 2023 09:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3215f32 to 6f2f42e Compare September 28, 2023 09:59
@CommanderStorm CommanderStorm merged commit b857239 into main Sep 28, 2023
21 checks passed
@CommanderStorm CommanderStorm deleted the renovate/all-minor-patch branch September 28, 2023 10:32
github-actions bot added a commit that referenced this pull request Sep 28, 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