• 0.1.1 d3f0376d67

    chore(deps): update dependencies (non-major) (#16)
    All checks were successful
    CD / Release (push) Successful in 12s

    gitea-actions released this 2025-10-02 08:02:24 +02:00 | 43 commits to main since this release

    This PR contains the following updates:

    Package Type Update Change Pending
    @types/node (source) devDependencies minor 24.3.1 -> 24.5.2 24.6.2 (+2)
    esbuild devDependencies patch 0.25.9 -> 0.25.10
    ts-jest (source) devDependencies patch 29.4.1 -> 29.4.2 29.4.4 (+1)

    Release Notes

    evanw/esbuild (esbuild)

    v0.25.10

    Compare Source

    • Fix a panic in a minification edge case (#​4287)

      This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value undefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

      function identity(x) { return x }
      identity({ y: identity(123) })
      
    • Fix @supports nested inside pseudo-element (#​4265)

      When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as ::placeholder for correctness. The CSS nesting specification says the following:

      The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.

      However, it seems like this behavior is different for nested at-rules such as @supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:

      /* Original code */
      ::placeholder {
        color: red;
        body & { color: green }
        @​supports (color: blue) { color: blue }
      }
      
      /* Old output (with --supported:nesting=false) */
      ::placeholder {
        color: red;
      }
      body :is() {
        color: green;
      }
      @​supports (color: blue) {
         {
          color: blue;
        }
      }
      
      /* New output (with --supported:nesting=false) */
      ::placeholder {
        color: red;
      }
      body :is() {
        color: green;
      }
      @​supports (color: blue) {
        ::placeholder {
          color: blue;
        }
      }
      
    kulshekhar/ts-jest (ts-jest)

    v29.4.2

    Compare Source


    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 Renovate Bot.

    Reviewed-on: #16
    Reviewed-by: t.behrendt t.behrendt@noreply.localhost
    Co-authored-by: Renovate Bot renovate@t00n.de
    Co-committed-by: Renovate Bot renovate@t00n.de

    Downloads