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

Merge v11 Feature Branch #8475

Draft
wants to merge 15 commits into
base: main
Choose a base branch
from
Draft

Merge v11 Feature Branch #8475

wants to merge 15 commits into from

Commits on Sep 3, 2024

  1. Configuration menu
    Copy the full SHA
    c04d9ef View commit details
    Browse the repository at this point in the history

Commits on Sep 9, 2024

  1. Make memory lru gc the default (#8110)

    * Make memory lru gc the default
    
    * undo yarn.lock
    
    * Make memory lru gc the default
    
    * Fix tests
    wu-hui authored Sep 9, 2024
    Configuration menu
    Copy the full SHA
    a377fb2 View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. V11 release removal of node-fetch and undici dependencies (#8492)

    Our v11 release will require node 18+. Since fetch has been introduced in these node versions, we can remove our dependency on third party fetch implementations.
    
    This change removes our usage of fetch variants undici and node-fetch for our node target builds and our CI tools.
    DellaBitta authored Sep 20, 2024
    Configuration menu
    Copy the full SHA
    c8937e7 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'main' into v11

    hsubox76 committed Sep 20, 2024
    Configuration menu
    Copy the full SHA
    7194d9c View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2024

  1. V11 - Remove functions node bundle (#8507)

    With the removal of fetch we no long need to create a node bundle for functions. Instead the sourcebase may become isomorphic, so long as we remove the older node sources. And that's what the PR does!
    DellaBitta authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    d253484 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    097bd67 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2024

  1. Configuration menu
    Copy the full SHA
    09ba48f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    245e65e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    3fe4f4f View commit details
    Browse the repository at this point in the history

Commits on Sep 25, 2024

  1. Remove ES5 Support (#8509)

    dlarocque authored Sep 25, 2024
    Configuration menu
    Copy the full SHA
    36cb017 View commit details
    Browse the repository at this point in the history

Commits on Sep 26, 2024

  1. Configuration menu
    Copy the full SHA
    6b035b7 View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2024

  1. Configuration menu
    Copy the full SHA
    98bbf53 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2024

  1. Upgrade cjs bundles for storage and performance (#8557)

    These should have been part of the bigger PR, but I missed these.
    dlarocque authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    26d6c3b View commit details
    Browse the repository at this point in the history
  2. Rollup JS files with rollup-typescript-plugin (#8503)

    The rollup-typescript-plugin does not transpile JS files using the TS
    compiler by default. This means that external dependencies that provide
    JS bundles will not be transpiled to the target ES version specified in
    the TypeScript config used by the plugin.
    
    This resulted in one of our dependencies (https://github.com/jakearchibald/idb)
    being included in the CDN bundles without being transpiled to
    ES5 (the target ES version). Since this dependencies bundle uses
    ES2018 syntax (object spread operator `{ ...x }`), this upgraded our CDN
    bundles' minimum ES version requirement to ES2018 which isn't compatible with older browser versions.
    To see the ES2018 syntax in one of the CDN bundles, see
    https://www.gstatic.com/firebasejs/10.13.1/firebase-app.js and search for `...oldTraps`.
    dlarocque authored Oct 2, 2024
    Configuration menu
    Copy the full SHA
    95d3309 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    0dbb8e6 View commit details
    Browse the repository at this point in the history