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

Merged
merged 2 commits into from
May 3, 2024

Conversation

WolfSoko
Copy link
Owner

@WolfSoko WolfSoko commented Mar 2, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@assemblyscript/loader (source) 0.27.24 -> 0.27.27 age adoption passing confidence
@ngneat/elf-entities ^5.0.1 -> ^5.0.2 age adoption passing confidence
@sentry/angular-ivy (source) ^7.103.0 -> ^7.112.2 age adoption passing confidence
@tensorflow/tfjs 4.17.0 -> 4.18.0 age adoption passing confidence
ace-builds 1.32.6 -> 1.33.1 age adoption passing confidence
aws-cdk (source) ^2.130.0 -> ^2.139.1 age adoption passing confidence
aws-cdk-lib (source) ^2.130.0 -> ^2.139.1 age adoption passing confidence
core-js (source) 3.36.1 -> 3.37.0 age adoption passing confidence
firebase (source, changelog) 10.8.0 -> 10.11.1 age adoption passing confidence
mathjs (source) 12.4.0 -> 12.4.2 age adoption passing confidence
p5 1.9.0 -> 1.9.3 age adoption passing confidence
three (source) 0.161.0 -> 0.164.1 age adoption passing confidence
vega 5.27.0 -> 5.28.0 age adoption passing confidence
vega-embed 6.24.0 -> 6.25.0 age adoption passing confidence
vega-lite (source) 5.16.3 -> 5.18.0 age adoption passing confidence

Release Notes

AssemblyScript/assemblyscript (@​assemblyscript/loader)

v0.27.27

Compare Source

Bug fixes
  • for statement increment will be processed in correct context (#​2839) (64cba2e)
Other

v0.27.26

Compare Source

Bug fixes
  • ignore this (#​2834) (b640ff2)
    This is a dummy commit to create a new release.
Other
  • Compile incrementors in for loops within the initializer's flow (#​2826) (9102c05)
    It turns out that incrementors were compiled with the body's flow, which
    meant that the incrementor had access to local variables declared in the
    body. Now, incrementors no longer have access to such variables.

    Fixes #​2825.

  • Binaryen on transform (#​2832) (9605c03)

    • Expose binaryen instance on transform

    • Fix invalid import in generated output

v0.27.25

Compare Source

Bug fixes
ngneat/elf (@​ngneat/elf-entities)

v5.0.2

Compare Source

getsentry/sentry-javascript (@​sentry/angular-ivy)

v7.112.2

Compare Source

  • fix(nextjs|sveltekit): Ensure we can pass browserTracingIntegration (#​11765)

v7.112.1

Compare Source

  • fix(ember/v7): Do not create rendering spans without transaction (#​11750)

v7.112.0

Compare Source

Important Changes
  • feat: Export pluggable integrations from SDK packages (#​11723)

Instead of installing @sentry/integrations, you can now import the pluggable integrations directly from your SDK
package:

// Before
import * as Sentry fromv '@​sentry/browser';
import { dedupeIntegration } from '@​sentry/integrations';

Sentry.init({
  integrations: [dedupeIntegration()],
});

// After
import * as Sentry from '@​sentry/browser';

Sentry.init({
  integrations: [Sentry.dedupeIntegration()],
});

Note that only the functional integrations (e.g. xxxIntegration()) are re-exported.

Other Changes
  • feat(replay): Add "maxCanvasSize" option for replay canvases (#​11732)
  • fix(serverless): [v7] Check if cloud event callback is a function (#​11734)

v7.111.0

Compare Source

  • feat(core): Add server.address to browser http.client spans (#​11663)
  • fix: Ensure next & sveltekit correctly handle browserTracingIntegration (#​11647)
  • fix(browser): Don't assume window.document is available (#​11598)

v7.110.1

Compare Source

  • fix(nextjs): Fix tunnelRoute matching logic for hybrid cloud (#​11577)

v7.110.0

Compare Source

Important Changes
  • feat(tracing): Add interactions sample rate to browser tracing integrations (#​11382)

You can now use a interactionsSampleRate to control the sample rate of INP spans. interactionsSampleRate is applied
on top of the global tracesSampleRate. Therefore if interactionsSampleRate is 0.5 and tracesSampleRate is 0.1,
then the actual sample rate for interactions is 0.05.

Sentry.init({
  tracesSampleRate: 0.1,
  integrations: [
    Sentry.browserTracingIntegration({
      interactionsSampleRate: 0.5,
    }),
  ],
});
  • Deprecations

This release deprecates the Hub class, as well as the addRequestDataToTransaction method. The trpcMiddleware
method is no longer on the Handlers export, but instead is a standalone export.

Please see the detailed Migration docs on how to migrate to the new APIs.

  • feat: Deprecate and relocate trpcMiddleware (#​11389)
  • feat(core): Deprecate Hub class (#​11528)
  • feat(types): Deprecate Hub interface (#​11530)
  • ref: Deprecate addRequestDataToTransaction (#​11368)
Other Changes
  • feat(core): Update metric normalization (#​11519)
  • feat(feedback): Customize feedback placeholder text color (#​11521)
  • feat(remix): Skip span creation for OPTIONS and HEAD request. (#​11485)
  • feat(utils): Add metric buckets rate limit (#​11506)
  • fix(core): unref timer to not block node exit (#​11483)
  • fix(metrics): Map statsd to metric_bucket (#​11505)
  • fix(spans): Allow zero exclusive time for INP spans (#​11408)
  • ref(feedback): Configure feedback fonts (#​11520)

v7.109.0

Compare Source

This release deprecates some exports from the @sentry/replay package. These exports have been moved to the browser SDK
(or related framework SDKs like @sentry/react).

  • feat(feedback): Make "required" text for input elements configurable (#​11287)
  • feat(node): Add scope to ANR events (#​11267)
  • feat(replay): Bump rrweb to 2.12.0 (#​11317)
  • fix(node): Local variables skipped after Promise (#​11248)
  • fix(node): Skip capturing Hapi Boom error responses (#​11324)
  • fix(web-vitals): Check for undefined navigation entry (#​11312)
  • ref(replay): Deprecate @sentry/replay exports (#​11242)

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

v7.108.0

Compare Source

This release fixes issues with Time to First Byte (TTFB) calculation in the SDK that was introduced with 7.95.0. It
also fixes some bugs with Interaction to First Paint (INP) instrumentation. This may impact your Sentry Performance
Score calculation.

  • feat(serverless): Add Node.js 20 to compatible runtimes (#​11104)
  • feat(core): Backport ResizeObserver and googletag default filters (#​11210)
  • feat(webvitals): Adds event entry names for INP handler. Also guard against empty metric value
  • fix(metrics): use correct statsd data category (#​11187)
  • fix(node): Record local variables with falsy values (v7) (#​11190)
  • fix(node): Use unique variable for ANR context transfer (v7) (#​11162)
  • fix(node): Time zone handling for cron (#​11225)
  • fix(tracing): use web-vitals ttfb calculation (#​11231)
  • fix(types): Fix incorrect sampled type on Transaction (#​11146)
  • fix(webvitals): Fix mapping not being maintained properly and sometimes not sending INP spans (#​11183)

Work in this release contributed by @​quisido and @​joshkel. Thank you for your contributions!

v7.107.0

Compare Source

This release fixes issues with INP instrumentation with the Next.js SDK and adds support for the enableInp option in
the deprecated BrowserTracing integration for backwards compatibility.

  • feat(performance): Port INP span instrumentation to old browser tracing (#​11085)
  • fix(ember): Ensure browser tracing is correctly lazy loaded (#​11027)
  • fix(node): Do not assert in vendored proxy code (v7 backport) (#​11009)
  • fix(react): Set handled value in ErrorBoundary depending on fallback [v7] (#​11037)

v7.106.1

Compare Source

  • fix(nextjs/v7): Use passthrough createReduxEnhancer on server (#​11010)

v7.106.0

Compare Source

  • feat(nextjs): Support Hybrid Cloud DSNs with tunnelRoute option (#​10958)
  • feat(remix): Add Vite dev-mode support to Express instrumentation (#​10811)
  • fix(core): Undeprecate setTransactionName
  • fix(browser): Don't use chrome variable name (#​10874)
  • fix(nextjs): Client code should not use Node global (#​10925)
  • fix(node): support undici headers as strings or arrays (#​10938)
  • fix(types): Add AttachmentType and use for envelope attachment_type property (#​10946)
  • ref(ember): Avoid namespace import to hopefully resolve minification issue (#​10885)
  • chore(sveltekit): Fix punctuation in a console.log (#​10895)

Work in this release contributed by @​jessezhang91 and @​bfontaine. Thank you for your contributions!

v7.105.0

Compare Source

Important Changes
  • feat: Ensure withActiveSpan is exported everywhere (#​10877)

You can use the withActiveSpan method to ensure a certain span is the active span in a given callback. This can be
used to create a span as a child of a specific span with the startSpan API methods:

const parentSpan = Sentry.startInactiveSpan({ name: 'parent' });
if (parentSpan) {
  withActiveSpan(parentSpan, () => {
    // This will be a direct child of parentSpan
    const childSpan = Sentry.startInactiveSpan({ name: 'child' });
  });
}
tensorflow/tfjs (@​tensorflow/tfjs)

v4.18.0

Compare Source

ajaxorg/ace-builds (ace-builds)

v1.33.1

Compare Source

v1.33.0

Compare Source

Features
  • Make translation system key based and add annotation type to gutter icon aria labels (#​5524) (bb8256d)
Bug Fixes
1.32.9 (2024-03-29)
Bug Fixes
  • apply class to autocomplete popup for no suggestions state (#​5522) (a66f861)
1.32.8 (2024-03-22)
Bug Fixes
1.32.7 (2024-03-01)
Bug Fixes
  • swap blue/red in cloudeditor themes to reduces usage of red (#​5492) (0e8f549)
1.32.6 (2024-02-07)
1.32.5 (2024-01-30)
1.32.4 (2024-01-29)
Bug Fixes
1.32.3 (2023-12-29)
Bug Fixes
1.32.2 (2023-12-14)
Bug Fixes
  • themes: changed the solarized theme primary color from [#​93](https://togithub.com/ajaxorg/ace/issues/93)A1A1 to [#​839496](https://togithub.com/ajaxorg/ace/issues/839496). (#​5422) (114a5c1), closes #​93A1A1
1.32.1 (2023-12-11)
Bug Fixes
  • don't show loading state when empty completer array is provided (7a8a929)
  • prevent browser scroll while scrolling over the tooltip (#​5414) (c6475c0)
  • switch aria-selected to aria-current for webkit (#​5416) (bf1a4ea), closes #​5403
  • yaml worker errors at undefined row/column (06cc12a)

v1.32.9

Compare Source

v1.32.8

Compare Source

v1.32.7

Compare Source

aws/aws-cdk (aws-cdk)

v2.139.1

Compare Source

Reverts
  • fix(lambda): version.fromVersionArn creates invalid Version object (#​30003) (ced7a46)

Alpha modules (2.139.1-alpha.0)

v2.139.0

Compare Source

Features
Bug Fixes

Alpha modules (2.139.0-alpha.0)

v2.138.0

Compare Source

Features
Bug Fixes

Alpha modules (2.138.0-alpha.0)
⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
  • cognito-identitypool-alpha: The argument of IdentityPoolProviderUrl.userPool() has been changed from url: string to userPool: UserPool, userPoolClient: UserPoolClient. If you want to specify custom identifier string, use IdentityPoolProviderUrl.custom() instead.
Bug Fixes
  • cognito-identitypool-alpha: inconvenient IdentityPoolProviderUrl.userPool() (#​29025) (90a7734)

v2.137.0

Compare Source

Features
Bug Fixes

Alpha modules (2.137.0-alpha.0)
Bug Fixes

v2.136.1

Compare Source

Reverts

Alpha modules (2.136.1-alpha.0)

v2.136.0

Compare Source

Features
Bug Fixes

Alpha modules (2.136.0-alpha.0)

v2.135.0

Compare Source

Features
Bug Fixes

Alpha modules (2.135.0-alpha.0)

v2.134.0

Compare Source

Features

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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 has been generated by Renovate Bot.

@WolfSoko WolfSoko added the dependencies Pull requests that update a dependency file label Mar 2, 2024
@WolfSoko WolfSoko enabled auto-merge (rebase) March 2, 2024 15:16
Copy link

nx-cloud bot commented Mar 2, 2024

☁️ Nx Cloud Report

CI is running/has finished running commands for commit 571d1e4. As they complete they will appear below. Click to see the status, the terminal output, and the build insights.

📂 See all runs for this CI Pipeline Execution


✅ Successfully ran 5 targets

Sent with 💌 from NxCloud.

@WolfSoko WolfSoko force-pushed the renovate-github/all-non-major-dependencies branch 6 times, most recently from 25db627 to 3d6bc5e Compare March 2, 2024 17:30
@WolfSoko WolfSoko self-assigned this Mar 2, 2024
@WolfSoko WolfSoko changed the title fix(deps): ⬆️ update all non-major dependencies fix(deps): ⬆️ update dependency firebase to v10.8.1 Mar 2, 2024
@WolfSoko WolfSoko changed the title fix(deps): ⬆️ update dependency firebase to v10.8.1 fix(deps): ⬆️ update all non-major dependencies Mar 3, 2024
@WolfSoko WolfSoko force-pushed the renovate-github/all-non-major-dependencies branch 4 times, most recently from a8332ff to c8f03c2 Compare March 12, 2024 04:12
@WolfSoko WolfSoko force-pushed the renovate-github/all-non-major-dependencies branch 7 times, most recently from bda905d to 44b11d6 Compare March 18, 2024 01:53
@WolfSoko WolfSoko force-pushed the renovate-github/all-non-major-dependencies branch 4 times, most recently from e77dd6e to 8ff5740 Compare March 25, 2024 17:06
@WolfSoko WolfSoko force-pushed the renovate-github/all-non-major-dependencies branch 3 times, most recently from 33723ae to e61d0c5 Compare March 31, 2024 22:38
@WolfSoko WolfSoko force-pushed the renovate-github/all-non-major-dependencies branch 24 times, most recently from 0c97e06 to 2c9a891 Compare May 2, 2024 21:53
@WolfSoko WolfSoko force-pushed the renovate-github/all-non-major-dependencies branch from 2c9a891 to dea8093 Compare May 3, 2024 03:56
@WolfSoko WolfSoko disabled auto-merge May 3, 2024 19:02
@WolfSoko WolfSoko merged commit 314e1ba into main May 3, 2024
5 checks passed
@WolfSoko WolfSoko deleted the renovate-github/all-non-major-dependencies branch May 3, 2024 19:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants