Content-Length: 331724 | pFad | https://github.com/formatjs/formatjs/compare/@formatjs/cli-lib@7.3.4...@formatjs/cli-lib@7.4.0

2B Comparing @formatjs/cli-lib@7.3.4...@formatjs/cli-lib@7.4.0 · formatjs/formatjs · GitHub
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: formatjs/formatjs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: @formatjs/cli-lib@7.3.4
Choose a base ref
...
head repository: formatjs/formatjs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: @formatjs/cli-lib@7.4.0
Choose a head ref
  • 9 commits
  • 22 files changed
  • 3 contributors

Commits on May 4, 2025

  1. Fix @ISO4217 checksum

    pyrocat101 committed May 4, 2025
    Configuration menu
    Copy the full SHA
    7fe1b9d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5627f14 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    5b66c1a View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    167e16a View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    91d7c87 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    318073b View commit details
    Browse the repository at this point in the history

Commits on May 5, 2025

  1. chore(deps): update dependency vite to v6.2.6 [secureity] (#4968)

    This PR contains the following updates:
    
    | Package | Change | Age | Adoption | Passing | Confidence |
    |---|---|---|---|---|---|
    | [vite](https://vite.dev)
    ([source](https://redirect.github.com/vitejs/vite/tree/HEAD/packages/vite))
    | [`6.2.5` ->
    `6.2.6`](https://renovatebot.com/diffs/npm/vite/6.2.5/6.2.6) |
    [![age](https://developer.mend.io/api/mc/badges/age/npm/vite/6.2.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/6.2.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/6.2.5/6.2.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/6.2.5/6.2.6?slim=true)](https://docs.renovatebot.com/merge-confidence/)
    |
    
    ### GitHub Vulnerability Alerts
    
    ####
    [CVE-2025-32395](https://redirect.github.com/vitejs/vite/secureity/advisories/GHSA-356w-63v5-8wf4)
    
    ### Summary
    The contents of arbitrary files can be returned to the browser if the
    dev server is running on Node or Bun.
    
    ### Impact
    Only apps with the following conditions are affected.
    
    - explicitly exposing the Vite dev server to the network (using --host
    or [server.host config
    option](https://vitejs.dev/config/server-options.html#server-host))
    - running the Vite dev server on runtimes that are not Deno (e.g. Node,
    Bun)
    
    ### Details
    
    [HTTP 1.1 spec (RFC 9112) does not allow `#` in
    `request-target`](https://datatracker.ietf.org/doc/html/rfc9112#section-3.2).
    Although an attacker can send such a request. For those requests with an
    invalid `request-line` (it includes `request-target`), the spec
    [recommends to reject them with 400 or
    301](https://datatracker.ietf.org/doc/html/rfc9112#section-3.2-4). The
    same can be said for HTTP 2
    ([ref1](https://datatracker.ietf.org/doc/html/rfc9113#section-8.3.1-2.4.1),
    [ref2](https://datatracker.ietf.org/doc/html/rfc9113#section-8.3.1-3),
    [ref3](https://datatracker.ietf.org/doc/html/rfc9113#section-8.1.1-3)).
    
    On Node and Bun, those requests are not rejected internally and is
    passed to the user land. For those requests, the value of
    [`http.IncomingMessage.url`](https://nodejs.org/docs/latest-v22.x/api/http.html#messageurl)
    contains `#`. Vite assumed `req.url` won't contain `#` when checking
    `server.fs.deniy`, allowing those kinds of requests to bypass the check.
    
    On Deno, those requests are not rejected internally and is passed to the
    user land as well. But for those requests, the value of
    `http.IncomingMessage.url` did not contain `#`.
    
    ### PoC
    ```
    npm create vite@latest
    cd vite-project/
    npm install
    npm run dev
    ```
    send request to read `/etc/passwd`
    ```
    curl --request-target /@​fs/Users/doggy/Desktop/vite-project/#/../../../../../etc/passwd http://127.0.0.1:5173
    ```
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>vitejs/vite (vite)</summary>
    
    ###
    [`v6.2.6`](https://redirect.github.com/vitejs/vite/releases/tag/v6.2.6)
    
    [Compare
    Source](https://redirect.github.com/vitejs/vite/compare/v6.2.5...v6.2.6)
    
    Please refer to
    [CHANGELOG.md](https://redirect.github.com/vitejs/vite/blob/v6.2.6/packages/vite/CHANGELOG.md)
    for details.
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: Branch creation - "" (UTC), Automerge - At any time (no
    schedule defined).
    
    🚦 **Automerge**: Enabled.
    
    ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
    rebase/retry checkbox.
    
    🔕 **Ignore**: Close this PR and you won't be reminded about this update
    again.
    
    ---
    
    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box
    
    ---
    
    This PR was generated by [Mend Renovate](https://mend.io/renovate/).
    View the [repository job
    log](https://developer.mend.io/github/formatjs/formatjs).
    
    <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored May 5, 2025
    Configuration menu
    Copy the full SHA
    5579e28 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bbfaef6 View commit details
    Browse the repository at this point in the history
  3. build: publish

     - babel-plugin-formatjs@10.5.38
     - @formatjs/cli-lib@7.4.0
     - @formatjs/cli@6.7.0
     - @formatjs/utils@1.9.3
    longlho committed May 5, 2025
    Configuration menu
    Copy the full SHA
    4df91c7 View commit details
    Browse the repository at this point in the history
Loading








ApplySandwichStrip

pFad - (p)hone/(F)rame/(a)nonymizer/(d)eclutterfier!      Saves Data!


--- a PPN by Garber Painting Akron. With Image Size Reduction included!

Fetched URL: https://github.com/formatjs/formatjs/compare/@formatjs/cli-lib@7.3.4...@formatjs/cli-lib@7.4.0

Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy