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 dependencies #864

Merged
merged 1 commit into from
Sep 19, 2023
Merged

fix(deps): update dependencies #864

merged 1 commit into from
Sep 19, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 17, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/icons-material (source) 5.14.7 -> 5.14.9 age adoption passing confidence
@mui/lab (source) 5.0.0-alpha.142 -> 5.0.0-alpha.145 age adoption passing confidence
@mui/material (source) 5.14.7 -> 5.14.10 age adoption passing confidence
@sentry/browser (source) 7.68.0 -> 7.69.0 age adoption passing confidence

Release Notes

mui/material-ui (@​mui/icons-material)

v5.14.9

Compare Source

Sep 13, 2023

A big thanks to the 18 contributors who made this release possible. Here are some highlights ✨:

@mui/[email protected]
  • ​[ButtonGroup] Determine first, last and middle buttons to support different elements with correct styling (#​38520) @​ZeeshanTamboli
  • ​[Modal] Fix console warning when onTransitionEnter , onTransitionExit provided (#​38868) @​sai6855
  • ​Revert "[Autocomplete] Type multiple values with readonly arrays." (#​38827) @​mnajdova
  • ​[Tabs] Scrollable tabs shouldn't crash when customizing their styles in the theme with slot callbacks (#​38544) @​brentertz
  • ​[AlertTitle][BreadCrumbs] Fix inheritance message in docs (#​38876) @​sai6855
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
Docs
Examples
Core

All contributors of this release in alphabetical order: @​brentertz, @​brijeshb42, @​danilo-leal, @​DiegoAndai, @​dvkam, @​flaviendelangle, @​Janpot, @​LadyBluenotes, @​michaldudak, @​michelengelen, @​mj12albert, @​mnajdova, @​oliviertassinari, @​sai6855, @​samuelsycamore, @​siriwatknp, @​zanivan, @​ZeeshanTamboli

v5.14.8

Compare Source

Sep 5, 2023

A big thanks to the 25 contributors who made this release possible.

@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
@mui/[email protected]
Docs
Core

All contributors of this release in alphabetical order: @​alexfauquette, @​alisasanib, @​amal-qb, @​anle9650, @​anon-phantom, @​bharatkashyap, @​brijeshb42, @​christophermorin, @​danilo-leal, @​flaviendelangle, @​imevanc, @​jyash97, @​mbrookes, @​michaldudak, @​mj12albert, @​oliviertassinari, @​omriklein, @​pcorpet, @​rajgop1, @​ruflair, @​sai6855, @​siriwatknp, @​szalonna, @​zanivan, @​ZeeshanTamboli

mui/material-ui (@​mui/lab)

v5.0.0-alpha.145

Compare Source

v5.0.0-alpha.144

Compare Source

v5.0.0-alpha.143

Compare Source

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

v7.69.0

Compare Source

Important Changes
  • New Performance APIs
    • feat: Update span performance API names (#​8971)
    • feat(core): Introduce startSpanManual (#​8913)

This release introduces a new set of top level APIs for the Performance Monitoring SDKs. These aim to simplify creating spans and reduce the boilerplate needed for performance instrumentation. The three new methods introduced are Sentry.startSpan, Sentry.startInactiveSpan, and Sentry.startSpanManual. These methods are available in the browser and node SDKs.

Sentry.startSpan wraps a callback in a span. The span is automatically finished when the callback returns. This is the recommended way to create spans.

// Start a span that tracks the duration of expensiveFunction
const result = Sentry.startSpan({ name: 'important function' }, () => {
  return expensiveFunction();
});

// You can also mutate the span wrapping the callback to set data or status
Sentry.startSpan({ name: 'important function' }, (span) => {
  // span is undefined if performance monitoring is turned off or if
  // the span was not sampled. This is done to reduce overhead.
  span?.setData('version', '1.0.0');
  return expensiveFunction();
});

If you don't want the span to finish when the callback returns, use Sentry.startSpanManual to control when the span is finished. This is useful for event emitters or similar.

// Start a span that tracks the duration of middleware
function middleware(_req, res, next) {
  return Sentry.startSpanManual({ name: 'middleware' }, (span, finish) => {
    res.once('finish', () => {
      span?.setHttpStatus(res.status);
      finish();
    });
    return next();
  });
}

Sentry.startSpan and Sentry.startSpanManual create a span and make it active for the duration of the callback. Any spans created while this active span is running will be added as a child span to it. If you want to create a span without making it active, use Sentry.startInactiveSpan. This is useful for creating parallel spans that are not related to each other.

const span1 = Sentry.startInactiveSpan({ name: 'span1' });

someWork();

const span2 = Sentry.startInactiveSpan({ name: 'span2' });

moreWork();

const span3 = Sentry.startInactiveSpan({ name: 'span3' });

evenMoreWork();

span1?.finish();
span2?.finish();
span3?.finish();
Other Changes
  • feat(core): Export BeforeFinishCallback type (#​8999)
  • build(eslint): Enforce that ts-expect-error is used (#​8987)
  • feat(integration): Ensure LinkedErrors integration runs before all event processors (#​8956)
  • feat(node-experimental): Keep breadcrumbs on transaction (#​8967)
  • feat(redux): Add 'attachReduxState' option (#​8953)
  • feat(remix): Accept org, project and url as args to upload script (#​8985)
  • fix(utils): Prevent iterating over VueViewModel (#​8981)
  • fix(utils): uuidv4 fix for cloudflare (#​8968)
  • fix(core): Always use event message and exception values for ignoreErrors (#​8986)
  • fix(nextjs): Add new potential location for Next.js request AsyncLocalStorage (#​9006)
  • fix(node-experimental): Ensure we only create HTTP spans when outgoing (#​8966)
  • fix(node-experimental): Ignore OPTIONS & HEAD requests (#​9001)
  • fix(node-experimental): Ignore outgoing Sentry requests (#​8994)
  • fix(node-experimental): Require parent span for pg spans (#​8993)
  • fix(node-experimental): Use Sentry logger as Otel logger (#​8960)
  • fix(node-otel): Refactor OTEL span reference cleanup (#​9000)
  • fix(react): Switch to props in useRoutes (#​8998)
  • fix(remix): Add glob to Remix SDK dependencies. (#​8963)
  • fix(replay): Ensure handleRecordingEmit aborts when event is not added (#​8938)
  • fix(replay): Fully stop & restart session when it expires (#​8834)

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


Configuration

📅 Schedule: Branch creation - "before 6am on Monday" in timezone Asia/Tokyo, 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.

@renovate renovate bot requested a review from bicstone as a code owner September 17, 2023 19:24
@renovate renovate bot force-pushed the renovate/dependencies branch 2 times, most recently from 461c36c to b5c10fe Compare September 19, 2023 01:39
@renovate renovate bot force-pushed the renovate/dependencies branch from b5c10fe to 1514ada Compare September 19, 2023 01:54
@bicstone bicstone merged commit 83fcdbe into main Sep 19, 2023
3 checks passed
@bicstone bicstone deleted the renovate/dependencies branch September 19, 2023 02:00
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