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: globus/globus-sdk-javascript
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.4.1
Choose a base ref
...
head repository: globus/globus-sdk-javascript
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.5.0
Choose a head ref
  • 10 commits
  • 13 files changed
  • 4 contributors

Commits on Jan 28, 2025

  1. deps: bump @types/node from 22.10.7 to 22.10.10 (#417)

    Bumps
    [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
    from 22.10.7 to 22.10.10.
    <details>
    <summary>Commits</summary>
    <ul>
    <li>See full diff in <a
    href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=22.10.7&new-version=22.10.10)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't
    alter it yourself. You can also trigger a rebase manually by commenting
    `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits
    that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after
    your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge
    and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating
    it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop
    Dependabot creating any more for this major version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop
    Dependabot creating any more for this minor version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop
    Dependabot creating any more for this dependency (unless you reopen the
    PR or upgrade to it yourself)
    
    
    </details>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 28, 2025
    Configuration menu
    Copy the full SHA
    38e92a4 View commit details
    Browse the repository at this point in the history
  2. deps: bump @playwright/test from 1.49.1 to 1.50.0 (#416)

    Bumps [@playwright/test](https://github.com/microsoft/playwright) from
    1.49.1 to 1.50.0.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/microsoft/playwright/releases"><code>@​playwright/test</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v1.50.0</h2>
    <h2>Test runner</h2>
    <ul>
    <li>
    <p>New option <a
    href="https://playwright.dev/docs/api/class-test#test-step-option-timeout"><code>timeout</code></a>
    allows specifying a maximum run time for an individual test step. A
    timed-out step will fail the execution of the test.</p>
    <pre lang="js"><code>test('some test', async ({ page }) =&gt; {
      await test.step('a step', async () =&gt; {
        // This step can time out separately from the test
      }, { timeout: 1000 });
    });
    </code></pre>
    </li>
    <li>
    <p>New method <a
    href="https://playwright.dev/docs/api/class-test#test-step-skip">test.step.skip()</a>
    to disable execution of a test step.</p>
    <pre lang="js"><code>test('some test', async ({ page }) =&gt; {
      await test.step('before running step', async () =&gt; {
        // Normal step
      });
    <p>await test.step.skip('not yet ready', async () =&gt; {<br />
    // This step is skipped<br />
    });</p>
    <p>await test.step('after running step', async () =&gt; {<br />
    // This step still runs even though the previous one was skipped<br />
    });<br />
    });<br />
    </code></pre></p>
    </li>
    <li>
    <p>Expanded <a
    href="https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-match-aria-snapshot-2">expect(locator).toMatchAriaSnapshot()</a>
    to allow storing of aria snapshots in separate YAML files.</p>
    </li>
    <li>
    <p>Added method <a
    href="https://playwright.dev/docs/api/class-locatorassertions#locator-assertions-to-have-accessible-error-message">expect(locator).toHaveAccessibleErrorMessage()</a>
    to assert the Locator points to an element with a given <a
    href="https://w3c.github.io/aria/#aria-errormessage">aria
    errormessage</a>.</p>
    </li>
    <li>
    <p>Option <a
    href="https://playwright.dev/docs/api/class-testconfig#test-config-update-snapshots">testConfig.updateSnapshots</a>
    added the configuration enum <code>changed</code>. <code>changed</code>
    updates only the snapshots that have changed, whereas <code>all</code>
    now updates all snapshots, regardless of whether there are any
    differences.</p>
    </li>
    <li>
    <p>New option <a
    href="https://playwright.dev/docs/api/class-testconfig#test-config-update-source-method">testConfig.updateSourceMethod</a>
    defines the way source code is updated when <a
    href="https://playwright.dev/docs/api/class-testconfig#test-config-update-snapshots">testConfig.updateSnapshots</a>
    is configured. Added <code>overwrite</code> and <code>3-way</code> modes
    that write the changes into source code, on top of existing
    <code>patch</code> mode that creates a patch file.</p>
    <pre lang="bash"><code>npx playwright test --update-snapshots=changed
    --update-source-method=3way
    </code></pre>
    </li>
    <li>
    <p>Option <a
    href="https://playwright.dev/docs/api/class-testconfig#test-config-web-server">testConfig.webServer</a>
    added a <code>gracefulShutdown</code> field for specifying a process
    kill signal other than the default <code>SIGKILL</code>.</p>
    </li>
    <li>
    <p>Exposed <a
    href="https://playwright.dev/docs/api/class-teststep#test-step-attachments">testStep.attachments</a>
    from the reporter API to allow retrieval of all attachments created by
    that step.</p>
    </li>
    </ul>
    <h2>UI updates</h2>
    <ul>
    <li>Updated default HTML reporter to improve display of
    attachments.</li>
    <li>New button for picking elements to produce aria snapshots.</li>
    <li>Additional details (such as keys pressed) are now displayed
    alongside action API calls in traces.</li>
    <li>Display of <code>canvas</code> content in traces is error-prone.
    Display is now disabled by default, and can be enabled via the
    <code>Display canvas content</code> UI setting.</li>
    <li><code>Call</code> and <code>Network</code> panels now display
    additional time information.</li>
    </ul>
    <h2>Breaking</h2>
    <!-- raw HTML omitted -->
    </blockquote>
    <p>... (truncated)</p>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/microsoft/playwright/commit/9d221785334d22b0606b746bffe8a89b8f652e1c"><code>9d22178</code></a>
    chore: mark v1.50.0 (<a
    href="https://redirect.github.com/microsoft/playwright/issues/34447">#34447</a>)</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/5d6ac9622d19e46b3388a9861d983abc63685a4d"><code>5d6ac96</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34442">#34442</a>):
    fix(test runner): respect updateSourceMethod from the co...</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/97b76b46af0b11ecfc13abe6a2808a3b08260c3c"><code>97b76b4</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34440">#34440</a>):
    chore(driver): roll driver to recent Node.js LTS version</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/7bbcc3c62448ddc2d5e46503d52879db5ac10902"><code>7bbcc3c</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34353">#34353</a>):
    chore: move attachment link back to tree item, make it f...</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/2811a1d4f55cdac7fc6a36d2100069506e870c24"><code>2811a1d</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34430">#34430</a>):
    docs: switch gracefulShutdown to primarily mention SIGTE...</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/2b8d1ce260a0a92946f049404e5f2ccad30b082a"><code>2b8d1ce</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34380">#34380</a>):
    docs: release notes for v1.50 js (<a
    href="https://redirect.github.com/microsoft/playwright/issues/34425">#34425</a>)</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/715eb250e736334ea7a24100aed79215147058a4"><code>715eb25</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34409">#34409</a>):
    fix(aria snapshot): make rebase work when options are sp...</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/6106ef020fd921d022f516c573de3c3cb412698b"><code>6106ef0</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34410">#34410</a>):
    fix(list reporter): do not break after output without tr...</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/09cd74f7b05694d9862bab1b056bdbff42d6687e"><code>09cd74f</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34407">#34407</a>):
    fix(step.skip): show a skipped indicator in UI mode (<a
    href="https://redirect.github.com/microsoft/playwright/issues/34">#34</a>...</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/cc6eb090ec28c32e80f4ab5d237e41a5780770a6"><code>cc6eb09</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34386">#34386</a>):
    chore: step timeout improvements (<a
    href="https://redirect.github.com/microsoft/playwright/issues/34387">#34387</a>)</li>
    <li>Additional commits viewable in <a
    href="https://github.com/microsoft/playwright/compare/v1.49.1...v1.50.0">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@playwright/test&package-manager=npm_and_yarn&previous-version=1.49.1&new-version=1.50.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't
    alter it yourself. You can also trigger a rebase manually by commenting
    `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits
    that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after
    your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge
    and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating
    it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop
    Dependabot creating any more for this major version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop
    Dependabot creating any more for this minor version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop
    Dependabot creating any more for this dependency (unless you reopen the
    PR or upgrade to it yourself)
    
    
    </details>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 28, 2025
    Configuration menu
    Copy the full SHA
    2a5b73f View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2025

  1. deps: bump @types/node from 22.10.10 to 22.12.0 (#419)

    Bumps
    [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
    from 22.10.10 to 22.12.0.
    <details>
    <summary>Commits</summary>
    <ul>
    <li>See full diff in <a
    href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=22.10.10&new-version=22.12.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't
    alter it yourself. You can also trigger a rebase manually by commenting
    `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits
    that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after
    your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge
    and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating
    it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop
    Dependabot creating any more for this major version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop
    Dependabot creating any more for this minor version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop
    Dependabot creating any more for this dependency (unless you reopen the
    PR or upgrade to it yourself)
    
    
    </details>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jan 29, 2025
    Configuration menu
    Copy the full SHA
    e69e6ac View commit details
    Browse the repository at this point in the history

Commits on Jan 31, 2025

  1. fix(Transfer, Typescript): Adds TransferErrorDocument type and improv…

    …es DirectoryListingError types. (#420)
    
    - Include optional `authorization_parameters`
    - More precise type for `ConsentRequired`, expanded `code` definition.
    jbottigliero authored Jan 31, 2025
    Configuration menu
    Copy the full SHA
    aadfbdf View commit details
    Browse the repository at this point in the history

Commits on Feb 3, 2025

  1. deps: bump @types/node from 22.12.0 to 22.13.0 (#422)

    Bumps
    [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
    from 22.12.0 to 22.13.0.
    <details>
    <summary>Commits</summary>
    <ul>
    <li>See full diff in <a
    href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=22.12.0&new-version=22.13.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't
    alter it yourself. You can also trigger a rebase manually by commenting
    `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits
    that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after
    your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge
    and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating
    it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop
    Dependabot creating any more for this major version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop
    Dependabot creating any more for this minor version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop
    Dependabot creating any more for this dependency (unless you reopen the
    PR or upgrade to it yourself)
    
    
    </details>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 3, 2025
    Configuration menu
    Copy the full SHA
    c86242f View commit details
    Browse the repository at this point in the history
  2. deps: bump @playwright/test from 1.50.0 to 1.50.1 (#423)

    Bumps [@playwright/test](https://github.com/microsoft/playwright) from
    1.50.0 to 1.50.1.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/microsoft/playwright/releases"><code>@​playwright/test</code>'s
    releases</a>.</em></p>
    <blockquote>
    <h2>v1.50.1</h2>
    <h3>Highlights</h3>
    <p><a
    href="https://redirect.github.com/microsoft/playwright/issues/34483">microsoft/playwright#34483</a>
    - [Feature]: single aria snapshot for different engines/browsers
    <a
    href="https://redirect.github.com/microsoft/playwright/issues/34497">microsoft/playwright#34497</a>
    - [Bug]: Firefox not handling keepalive: true fetch requests
    <a
    href="https://redirect.github.com/microsoft/playwright/issues/34504">microsoft/playwright#34504</a>
    - [Bug]: update snapshots not creating good diffs
    <a
    href="https://redirect.github.com/microsoft/playwright/issues/34507">microsoft/playwright#34507</a>
    - [Bug]: snapshotPathTemplate doesnt work when multiple projects
    <a
    href="https://redirect.github.com/microsoft/playwright/issues/34462">microsoft/playwright#34462</a>
    - [Bug]: updateSnapshots &quot;changed&quot; throws an error</p>
    <h2>Browser Versions</h2>
    <ul>
    <li>Chromium 133.0.6943.16</li>
    <li>Mozilla Firefox 134.0</li>
    <li>WebKit 18.2</li>
    </ul>
    <p>This version was also tested against the following stable
    channels:</p>
    <ul>
    <li>Google Chrome 132</li>
    <li>Microsoft Edge 132</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/microsoft/playwright/commit/dbc685ca98bf937a318f36b0de9ed6e48dac2db5"><code>dbc685c</code></a>
    chore: mark v1.50.1 (<a
    href="https://redirect.github.com/microsoft/playwright/issues/34575">#34575</a>)</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/13d80f184ec34621f877ef46b64ecb930e9f6410"><code>13d80f1</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34560">#34560</a>):
    chore(docs): clarify connection method via BrowserType.c...</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/159210da82fbd5448af1165355f1fd0bab10c132"><code>159210d</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34556">#34556</a>):
    fix(toMatchAriaSnapshot): fail test run when updating mi...</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/fbad9f7ff74836dbc16a329704323b69df3ca605"><code>fbad9f7</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34537">#34537</a>):
    feat: per-assertion snapshot path template in config (<a
    href="https://redirect.github.com/microsoft/playwright/issues/3">#3</a>...</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/67313faaa79ccab350d519114cda1834cc966bcb"><code>67313fa</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34550">#34550</a>):
    roll follow-ups for .NET and Python</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/4b7794b37afd2e3e13f2054f1014055ae178f7db"><code>4b7794b</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34544">#34544</a>):
    fix(aria): disregard text area textContent</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/1efbedd3b3370457a1d48df3d43d0a7254ed68d3"><code>1efbedd</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34535">#34535</a>):
    Revert &quot;Reapply &quot;fix(har timing): record connect timing
    ...</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/1e258e0894d5fe25a0b4134f432cf41c12864159"><code>1e258e0</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34420">#34420</a>):
    chore(deps): bump vite from 5.4.6 to 5.4.14 (<a
    href="https://redirect.github.com/microsoft/playwright/issues/34539">#34539</a>)</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/7be4ef58de3c0b95d5f78f85a5c171c806046c01"><code>7be4ef5</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34522">#34522</a>):
    test: fetch request through socks proxy over ipv4</li>
    <li><a
    href="https://github.com/microsoft/playwright/commit/7b3e5902898634093b4dcd3a9bd1cbcfae874a1b"><code>7b3e590</code></a>
    cherry-pick(<a
    href="https://redirect.github.com/microsoft/playwright/issues/34530">#34530</a>):
    fix(firefox): disable fetch keep-alive for now before a ...</li>
    <li>Additional commits viewable in <a
    href="https://github.com/microsoft/playwright/compare/v1.50.0...v1.50.1">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@playwright/test&package-manager=npm_and_yarn&previous-version=1.50.0&new-version=1.50.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't
    alter it yourself. You can also trigger a rebase manually by commenting
    `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits
    that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after
    your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge
    and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating
    it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop
    Dependabot creating any more for this major version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop
    Dependabot creating any more for this minor version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop
    Dependabot creating any more for this dependency (unless you reopen the
    PR or upgrade to it yourself)
    
    
    </details>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 3, 2025
    Configuration menu
    Copy the full SHA
    0db8260 View commit details
    Browse the repository at this point in the history

Commits on Feb 5, 2025

  1. deps: bump @types/node from 22.13.0 to 22.13.1 (#424)

    Bumps
    [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
    from 22.13.0 to 22.13.1.
    <details>
    <summary>Commits</summary>
    <ul>
    <li>See full diff in <a
    href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@types/node&package-manager=npm_and_yarn&previous-version=22.13.0&new-version=22.13.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
    
    Dependabot will resolve any conflicts with this PR as long as you don't
    alter it yourself. You can also trigger a rebase manually by commenting
    `@dependabot rebase`.
    
    [//]: # (dependabot-automerge-start)
    [//]: # (dependabot-automerge-end)
    
    ---
    
    <details>
    <summary>Dependabot commands and options</summary>
    <br />
    
    You can trigger Dependabot actions by commenting on this PR:
    - `@dependabot rebase` will rebase this PR
    - `@dependabot recreate` will recreate this PR, overwriting any edits
    that have been made to it
    - `@dependabot merge` will merge this PR after your CI passes on it
    - `@dependabot squash and merge` will squash and merge this PR after
    your CI passes on it
    - `@dependabot cancel merge` will cancel a previously requested merge
    and block automerging
    - `@dependabot reopen` will reopen this PR if it is closed
    - `@dependabot close` will close this PR and stop Dependabot recreating
    it. You can achieve the same result by closing it manually
    - `@dependabot show <dependency name> ignore conditions` will show all
    of the ignore conditions of the specified dependency
    - `@dependabot ignore this major version` will close this PR and stop
    Dependabot creating any more for this major version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this minor version` will close this PR and stop
    Dependabot creating any more for this minor version (unless you reopen
    the PR or upgrade to it yourself)
    - `@dependabot ignore this dependency` will close this PR and stop
    Dependabot creating any more for this dependency (unless you reopen the
    PR or upgrade to it yourself)
    
    
    </details>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 5, 2025
    Configuration menu
    Copy the full SHA
    8a9de93 View commit details
    Browse the repository at this point in the history

Commits on Feb 6, 2025

  1. feat(Search): Adds support for Search Index Roles CRUD methods. (#425)

    Co-authored-by: Joe Bottigliero <694253+jbottigliero@users.noreply.github.com>
    jakeglobus and jbottigliero authored Feb 6, 2025
    Configuration menu
    Copy the full SHA
    1b40d08 View commit details
    Browse the repository at this point in the history
  2. fix(Typescript, Search): Improve the GFacet Search type (#426)

    This _seems_ like a more accurate representation of
    https://docs.globus.org/api/search/reference/post_query/#gfacet...
    
    I was specifically encountering an issue with `size` not being allowed
    (optional) when using `type: "terms"`.
    jbottigliero authored Feb 6, 2025
    Configuration menu
    Copy the full SHA
    1b245a5 View commit details
    Browse the repository at this point in the history
  3. chore(main): release 5.5.0 (#421)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ##
    [5.5.0](v5.4.1...v5.5.0)
    (2025-02-06)
    
    
    ### Features
    
    * **Search:** Adds support for Search Index Roles CRUD methods.
    ([#425](#425))
    ([1b40d08](1b40d08))
    
    
    ### Bug Fixes
    
    * **Transfer, Typescript:** Adds TransferErrorDocument type and improves
    DirectoryListingError types.
    ([#420](#420))
    ([aadfbdf](aadfbdf))
    * **Typescript, Search:** Improve the GFacet Search type
    ([#426](#426))
    ([1b245a5](1b245a5))
    
    ---
    This PR was generated with [Release
    Please](https://github.com/googleapis/release-please). See
    [documentation](https://github.com/googleapis/release-please#release-please).
    
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored Feb 6, 2025
    Configuration menu
    Copy the full SHA
    e2e91a0 View commit details
    Browse the repository at this point in the history
Loading