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): upgrade devDependencies (minor) #191

Merged
merged 1 commit into from
Mar 11, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 19, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@opentelemetry/api (source) ^1.7.0 -> ^1.8.0 age adoption passing confidence
@opentelemetry/exporter-metrics-otlp-http (source) ^0.48.0 -> ^0.49.1 age adoption passing confidence
@opentelemetry/otlp-exporter-base (source) ^0.48.0 -> ^0.49.1 age adoption passing confidence
@opentelemetry/resources (source) ^1.21.0 -> ^1.22.0 age adoption passing confidence
@opentelemetry/sdk-metrics (source) ^1.21.0 -> ^1.22.0 age adoption passing confidence
@opentelemetry/semantic-conventions (source) ^1.21.0 -> ^1.22.0 age adoption passing confidence
@types/node (source) ^20.11.17 -> ^20.11.25 age adoption passing confidence
esbuild ^0.20.0 -> ^0.20.1 age adoption passing confidence
eslint (source) ^8.56.0 -> ^8.57.0 age adoption passing confidence
eslint-plugin-vitest ^0.3.22 -> ^0.3.24 age adoption passing confidence
typescript (source) ^5.3.3 -> ^5.4.2 age adoption passing confidence
vite (source) ^5.1.1 -> ^5.1.5 age adoption passing confidence

Release Notes

open-telemetry/opentelemetry-js (@​opentelemetry/api)

v1.8.0

Compare Source

  • @opentelemetry/sdk-metrics has been promoted to stable
  • @opentelemetry/api-metrics has been merged into @opentelemetry/api and deprecated
💥 Breaking Change
🚀 (Enhancement)
🐛 (Bug Fix)
  • fix(sdk-trace): enforce consistent span durations
    #​3327 @​dyladan
  • fix(resources): fix EnvDetector throwing errors when attribute values contain spaces
    #​3295
  • fix(trace): fix an issue which caused negative span durations in web based spans
    #​3359 @​dyladan
  • fix(resources): strict OTEL_RESOURCE_ATTRIBUTES baggage octet decoding
    #​3341 @​legendecas
📚 (Refine Doc)
🏠 (Internal)
evanw/esbuild (esbuild)

v0.20.1

Compare Source

  • Fix a bug with the CSS nesting transform (#​3648)

    This release fixes a bug with the CSS nesting transform for older browsers where the generated CSS could be incorrect if a selector list contained a pseudo element followed by another selector. The bug was caused by incorrectly mutating the parent rule's selector list when filtering out pseudo elements for the child rules:

    /* Original code */
    .foo {
      &:after,
      & .bar {
        color: red;
      }
    }
    
    /* Old output (with --supported:nesting=false) */
    .foo .bar,
    .foo .bar {
      color: red;
    }
    
    /* New output (with --supported:nesting=false) */
    .foo:after,
    .foo .bar {
      color: red;
    }
  • Constant folding for JavaScript inequality operators (#​3645)

    This release introduces constant folding for the < > <= >= operators. The minifier will now replace these operators with true or false when both sides are compile-time numeric or string constants:

    // Original code
    console.log(1 < 2, '🍕' > '🧀')
    
    // Old output (with --minify)
    console.log(1<2,"🍕">"🧀");
    
    // New output (with --minify)
    console.log(!0,!1);
  • Better handling of __proto__ edge cases (#​3651)

    JavaScript object literal syntax contains a special case where a non-computed property with a key of __proto__ sets the prototype of the object. This does not apply to computed properties or to properties that use the shorthand property syntax introduced in ES6. Previously esbuild didn't correctly preserve the "sets the prototype" status of properties inside an object literal, meaning a property that sets the prototype could accidentally be transformed into one that doesn't and vice versa. This has now been fixed:

    // Original code
    function foo(__proto__) {
      return { __proto__: __proto__ } // Note: sets the prototype
    }
    function bar(__proto__, proto) {
      {
        let __proto__ = proto
        return { __proto__ } // Note: doesn't set the prototype
      }
    }
    
    // Old output
    function foo(__proto__) {
      return { __proto__ }; // Note: no longer sets the prototype (WRONG)
    }
    function bar(__proto__, proto) {
      {
        let __proto__2 = proto;
        return { __proto__: __proto__2 }; // Note: now sets the prototype (WRONG)
      }
    }
    
    // New output
    function foo(__proto__) {
      return { __proto__: __proto__ }; // Note: sets the prototype (correct)
    }
    function bar(__proto__, proto) {
      {
        let __proto__2 = proto;
        return { ["__proto__"]: __proto__2 }; // Note: doesn't set the prototype (correct)
      }
    }
  • Fix cross-platform non-determinism with CSS color space transformations (#​3650)

    The Go compiler takes advantage of "fused multiply and add" (FMA) instructions on certain processors which do the operation x*y + z without intermediate rounding. This causes esbuild's CSS color space math to differ on different processors (currently ppc64le and s390x), which breaks esbuild's guarantee of deterministic output. To avoid this, esbuild's color space math now inserts a float64() cast around every single math operation. This tells the Go compiler not to use the FMA optimization.

  • Fix a crash when resolving a path from a directory that doesn't exist (#​3634)

    This release fixes a regression where esbuild could crash when resolving an absolute path if the source directory for the path resolution operation doesn't exist. While this situation doesn't normally come up, it could come up when running esbuild concurrently with another operation that mutates the file system as esbuild is doing a build (such as using git to switch branches). The underlying problem was a regression that was introduced in version 0.18.0.

eslint/eslint (eslint)

v8.57.0

Compare Source

Features

  • 1120b9b feat: Add loadESLint() API method for v8 (#​18098) (Nicholas C. Zakas)
  • dca7d0f feat: Enable eslint.config.mjs and eslint.config.cjs (#​18066) (Nitin Kumar)

Bug Fixes

  • 2196d97 fix: handle absolute file paths in FlatRuleTester (#​18064) (Nitin Kumar)
  • 69dd1d1 fix: Ensure config keys are printed for config errors (#​18067) (Nitin Kumar)
  • 9852a31 fix: deep merge behavior in flat config (#​18065) (Nitin Kumar)
  • 4c7e9b0 fix: allow circular references in config (#​18056) (Milos Djermanovic)

Documentation

Chores

veritem/eslint-plugin-vitest (eslint-plugin-vitest)

v0.3.24

Compare Source

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v0.3.23...v0.3.24

v0.3.23

Compare Source

Features

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v0.3.22...v0.3.23

Microsoft/TypeScript (typescript)

v5.4.2: TypeScript 5.4

Compare Source

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

vitejs/vite (vite)

v5.1.5

Compare Source

v5.1.4

Compare Source

v5.1.3

Compare Source

v5.1.2

Compare Source


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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 jharvey10 as a code owner February 19, 2024 01:42
@renovate renovate bot force-pushed the renovate/devdependencies-(minor) branch 4 times, most recently from cfba6cb to 6b3b1d1 Compare February 26, 2024 22:31
@renovate renovate bot force-pushed the renovate/devdependencies-(minor) branch 6 times, most recently from d285c69 to 2fd92b2 Compare March 8, 2024 21:10
@renovate renovate bot force-pushed the renovate/devdependencies-(minor) branch 3 times, most recently from 4d85f17 to 430e4b5 Compare March 11, 2024 18:23
@renovate renovate bot force-pushed the renovate/devdependencies-(minor) branch from 430e4b5 to bfc3b71 Compare March 11, 2024 20:12
Copy link

sonarcloud bot commented Mar 11, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@jharvey10 jharvey10 merged commit ebdd792 into main Mar 11, 2024
7 checks passed
@jharvey10 jharvey10 deleted the renovate/devdependencies-(minor) branch March 11, 2024 20:14
@telemmy telemmy bot mentioned this pull request Mar 11, 2024
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