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.6.0
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.7.0
Choose a head ref
  • 8 commits
  • 8 files changed
  • 3 contributors

Commits on Mar 30, 2025

  1. deps: bump @types/node from 22.13.10 to 22.13.14 (#469)

    Bumps
    [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
    from 22.13.10 to 22.13.14.
    <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.10&new-version=22.13.14)](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 Mar 30, 2025
    Configuration menu
    Copy the full SHA
    43c9944 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2025

  1. deps: bump esbuild from 0.25.1 to 0.25.2 (#471)

    Bumps [esbuild](https://github.com/evanw/esbuild) from 0.25.1 to 0.25.2.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/evanw/esbuild/releases">esbuild's
    releases</a>.</em></p>
    <blockquote>
    <h2>v0.25.2</h2>
    <ul>
    <li>
    <p>Support flags in regular expressions for the API (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4121">#4121</a>)</p>
    <p>The JavaScript plugin API for esbuild takes JavaScript regular
    expression objects for the <code>filter</code> option. Internally these
    are translated into Go regular expressions. However, this translation
    previously ignored the <code>flags</code> property of the regular
    expression. With this release, esbuild will now translate JavaScript
    regular expression flags into Go regular expression flags. Specifically
    the JavaScript regular expression <code>/\.[jt]sx?$/i</code> is turned
    into the Go regular expression <code>`(?i)\.[jt]sx?$`</code> internally
    inside of esbuild's API. This should make it possible to use JavaScript
    regular expressions with the <code>i</code> flag. Note that JavaScript
    and Go don't support all of the same regular expression features, so
    this mapping is only approximate.</p>
    </li>
    <li>
    <p>Fix node-specific annotations for string literal export names (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4100">#4100</a>)</p>
    <p>When node instantiates a CommonJS module, it scans the AST to look
    for names to expose via ESM named exports. This is a heuristic that
    looks for certain patterns such as <code>exports.NAME = ...</code> or
    <code>module.exports = { ... }</code>. This behavior is used by esbuild
    to &quot;annotate&quot; CommonJS code that was converted from ESM with
    the original ESM export names. For example, when converting the file
    <code>export let foo, bar</code> from ESM to CommonJS, esbuild appends
    this to the end of the file:</p>
    <pre lang="js"><code>// Annotate the CommonJS export names for ESM
    import in node:
    0 &amp;&amp; (module.exports = {
      bar,
      foo
    });
    </code></pre>
    <p>However, this feature previously didn't work correctly for export
    names that are not valid identifiers, which can be constructed using
    string literal export names. The generated code contained a syntax
    error. That problem is fixed in this release:</p>
    <pre lang="js"><code>// Original code
    let foo
    export { foo as &quot;foo!&quot; }
    <p>// Old output (with --format=cjs --platform=node)
    ...
    0 &amp;&amp; (module.exports = {
    &quot;foo!&quot;
    });</p>
    <p>// New output (with --format=cjs --platform=node)
    ...
    0 &amp;&amp; (module.exports = {
    &quot;foo!&quot;: null
    });
    </code></pre></p>
    </li>
    <li>
    <p>Basic support for index source maps (<a
    href="https://redirect.github.com/evanw/esbuild/issues/3439">#3439</a>,
    <a
    href="https://redirect.github.com/evanw/esbuild/pull/4109">#4109</a>)</p>
    <p>The source map specification has an optional mode called <a
    href="https://tc39.es/ecma426/#sec-index-source-map">index source
    maps</a> that makes it easier for tools to create an aggregate
    JavaScript file by concatenating many smaller JavaScript files with
    source maps, and then generate an aggregate source map by simply
    providing the original source maps along with some offset information.
    My understanding is that this is rarely used in practice. I'm only aware
    of two uses of it in the wild: <a
    href="https://clojurescript.org/">ClojureScript</a> and <a
    href="https://turbo.build/pack/">Turbopack</a>.</p>
    <p>This release provides basic support for indexed source maps. However,
    the implementation has not been tested on a real app (just on very
    simple test input). If you are using index source maps in a real app,
    please try this out and report back if anything isn't working for
    you.</p>
    <p>Note that this is also not a complete implementation. For example,
    index source maps technically allows nesting source maps to an arbitrary
    depth, while esbuild's implementation in this release only supports a
    single level of nesting. It's unclear whether supporting more than one
    level of nesting is important or not given the lack of available test
    cases.</p>
    <p>This feature was contributed by <a
    href="https://github.com/clyfish"><code>@​clyfish</code></a>.</p>
    </li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/evanw/esbuild/blob/main/CHANGELOG.md">esbuild's
    changelog</a>.</em></p>
    <blockquote>
    <h2>0.25.2</h2>
    <ul>
    <li>
    <p>Support flags in regular expressions for the API (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4121">#4121</a>)</p>
    <p>The JavaScript plugin API for esbuild takes JavaScript regular
    expression objects for the <code>filter</code> option. Internally these
    are translated into Go regular expressions. However, this translation
    previously ignored the <code>flags</code> property of the regular
    expression. With this release, esbuild will now translate JavaScript
    regular expression flags into Go regular expression flags. Specifically
    the JavaScript regular expression <code>/\.[jt]sx?$/i</code> is turned
    into the Go regular expression <code>`(?i)\.[jt]sx?$`</code> internally
    inside of esbuild's API. This should make it possible to use JavaScript
    regular expressions with the <code>i</code> flag. Note that JavaScript
    and Go don't support all of the same regular expression features, so
    this mapping is only approximate.</p>
    </li>
    <li>
    <p>Fix node-specific annotations for string literal export names (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4100">#4100</a>)</p>
    <p>When node instantiates a CommonJS module, it scans the AST to look
    for names to expose via ESM named exports. This is a heuristic that
    looks for certain patterns such as <code>exports.NAME = ...</code> or
    <code>module.exports = { ... }</code>. This behavior is used by esbuild
    to &quot;annotate&quot; CommonJS code that was converted from ESM with
    the original ESM export names. For example, when converting the file
    <code>export let foo, bar</code> from ESM to CommonJS, esbuild appends
    this to the end of the file:</p>
    <pre lang="js"><code>// Annotate the CommonJS export names for ESM
    import in node:
    0 &amp;&amp; (module.exports = {
      bar,
      foo
    });
    </code></pre>
    <p>However, this feature previously didn't work correctly for export
    names that are not valid identifiers, which can be constructed using
    string literal export names. The generated code contained a syntax
    error. That problem is fixed in this release:</p>
    <pre lang="js"><code>// Original code
    let foo
    export { foo as &quot;foo!&quot; }
    <p>// Old output (with --format=cjs --platform=node)
    ...
    0 &amp;&amp; (module.exports = {
    &quot;foo!&quot;
    });</p>
    <p>// New output (with --format=cjs --platform=node)
    ...
    0 &amp;&amp; (module.exports = {
    &quot;foo!&quot;: null
    });
    </code></pre></p>
    </li>
    <li>
    <p>Basic support for index source maps (<a
    href="https://redirect.github.com/evanw/esbuild/issues/3439">#3439</a>,
    <a
    href="https://redirect.github.com/evanw/esbuild/pull/4109">#4109</a>)</p>
    <p>The source map specification has an optional mode called <a
    href="https://tc39.es/ecma426/#sec-index-source-map">index source
    maps</a> that makes it easier for tools to create an aggregate
    JavaScript file by concatenating many smaller JavaScript files with
    source maps, and then generate an aggregate source map by simply
    providing the original source maps along with some offset information.
    My understanding is that this is rarely used in practice. I'm only aware
    of two uses of it in the wild: <a
    href="https://clojurescript.org/">ClojureScript</a> and <a
    href="https://turbo.build/pack/">Turbopack</a>.</p>
    <p>This release provides basic support for indexed source maps. However,
    the implementation has not been tested on a real app (just on very
    simple test input). If you are using index source maps in a real app,
    please try this out and report back if anything isn't working for
    you.</p>
    <p>Note that this is also not a complete implementation. For example,
    index source maps technically allows nesting source maps to an arbitrary
    depth, while esbuild's implementation in this release only supports a
    single level of nesting. It's unclear whether supporting more than one
    level of nesting is important or not given the lack of available test
    cases.</p>
    <p>This feature was contributed by <a
    href="https://github.com/clyfish"><code>@​clyfish</code></a>.</p>
    </li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/evanw/esbuild/commit/4475787eef4c4923b92b9fa37ebba1c88b9e1d9b"><code>4475787</code></a>
    publish 0.25.2 to npm</li>
    <li><a
    href="https://github.com/evanw/esbuild/commit/8f56771afc37c2b328056a2e6aefdfc2b821c5d7"><code>8f56771</code></a>
    fix <a
    href="https://redirect.github.com/evanw/esbuild/issues/4121">#4121</a>:
    map js regexp flags to go regexp flags</li>
    <li><a
    href="https://github.com/evanw/esbuild/commit/36b458d144796882a78baaa40baac5f88c7694b1"><code>36b458d</code></a>
    follow-up to <a
    href="https://redirect.github.com/evanw/esbuild/issues/4109">#4109</a></li>
    <li><a
    href="https://github.com/evanw/esbuild/commit/8b8437cb0fccd680ef39548fc7bb56ff8f48333d"><code>8b8437c</code></a>
    feat: support index source map (<a
    href="https://redirect.github.com/evanw/esbuild/issues/4109">#4109</a>)</li>
    <li><a
    href="https://github.com/evanw/esbuild/commit/75286c1b4fabcf93140b97c3c0488f0253158b47"><code>75286c1</code></a>
    unit test for absolute windows paths in source map</li>
    <li><a
    href="https://github.com/evanw/esbuild/commit/bcc77fbee56ec7c050813c972d8bb1e06a8e57ef"><code>bcc77fb</code></a>
    fix <a
    href="https://redirect.github.com/evanw/esbuild/issues/4100">#4100</a>:
    invalid identifiers in node annotation</li>
    <li><a
    href="https://github.com/evanw/esbuild/commit/37cb6a2bc3da13e7805a57782ced720fda7eb1f7"><code>37cb6a2</code></a>
    fix a warning from <code>npm publish</code></li>
    <li>See full diff in <a
    href="https://github.com/evanw/esbuild/compare/v0.25.1...v0.25.2">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=esbuild&package-manager=npm_and_yarn&previous-version=0.25.1&new-version=0.25.2)](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 Apr 1, 2025
    Configuration menu
    Copy the full SHA
    d13b79f View commit details
    Browse the repository at this point in the history
  2. deps: bump ts-jest from 29.2.6 to 29.3.1 (#470)

    Bumps [ts-jest](https://github.com/kulshekhar/ts-jest) from 29.2.6 to
    29.3.1.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/kulshekhar/ts-jest/releases">ts-jest's
    releases</a>.</em></p>
    <blockquote>
    <h2>v29.3.1</h2>
    <p>Please refer to <a
    href="https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md">CHANGELOG.md</a>
    for details.</p>
    <h2>v29.3.0</h2>
    <p>Please refer to <a
    href="https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md">CHANGELOG.md</a>
    for details.</p>
    </blockquote>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/kulshekhar/ts-jest/blob/main/CHANGELOG.md">ts-jest's
    changelog</a>.</em></p>
    <blockquote>
    <h2><a
    href="https://github.com/kulshekhar/ts-jest/compare/v29.3.0...v29.3.1">29.3.1</a>
    (2025-03-31)</h2>
    <h3>Bug Fixes</h3>
    <ul>
    <li>fix: allow <code>isolatedModules</code> mode to have
    <code>ts.Program</code> under <code>Node16/Next</code> (<a
    href="https://github.com/kulshekhar/ts-jest/commit/25157eb">25157eb</a>)</li>
    <li>fix: improve message for <code>isolatedModules</code> of
    <code>ts-jest</code> config (<a
    href="https://github.com/kulshekhar/ts-jest/commit/547eb6f">547eb6f</a>)</li>
    </ul>
    <h2><a
    href="https://github.com/kulshekhar/ts-jest/compare/v29.2.6...v29.3.0">29.3.0</a>
    (2025-03-21)</h2>
    <h3>Features</h3>
    <ul>
    <li>feat: support hybrid <code>module</code> values for
    <code>isolatedModules: true</code> (<a
    href="https://github.com/kulshekhar/ts-jest/commit/f372121">f372121</a>)</li>
    </ul>
    <h3>Bug Fixes</h3>
    <ul>
    <li>fix: set <code>customConditions</code> to <code>undefined</code> in
    <code>TsCompiler</code> (<a
    href="https://github.com/kulshekhar/ts-jest/commit/b091d70">b091d70</a>),
    closes <a
    href="https://redirect.github.com/kulshekhar/ts-jest/issues/4620">#4620</a></li>
    </ul>
    <h3>Code Refactoring</h3>
    <ul>
    <li>refactor: remove manual version checker (<a
    href="https://github.com/kulshekhar/ts-jest/commit/89458fc">89458fc</a>)</li>
    <li>refactor: remove patching deps based on version checker (<a
    href="https://github.com/kulshekhar/ts-jest/commit/bac4c43">bac4c43</a>)</li>
    <li>refactor: deprecate <code>RawCompilerOptions</code> interface (<a
    href="https://github.com/kulshekhar/ts-jest/commit/2b1b6cd">2b1b6cd</a>)</li>
    <li>refactor: deprecate transform option <code>isolatedModules</code>
    (<a
    href="https://github.com/kulshekhar/ts-jest/commit/7dfef71">7dfef71</a>)</li>
    </ul>
    <h2>DEPRECATIONS</h2>
    <ul>
    <li><code>RawCompilerOptions</code> is deprecated in favor of
    <code>TsConfigJson.CompilerOptions</code> from
    <code>type-fest</code></li>
    <li><code>isolatedModules</code> transform option is deprecated in favor
    of <a
    href="https://www.typescriptlang.org/tsconfig/#isolatedModules">https://www.typescriptlang.org/tsconfig/#isolatedModules</a></li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/kulshekhar/ts-jest/commit/7738269b233e887d8917b2a6edd78a1bf4eb39c1"><code>7738269</code></a>
    chore(release): 29.3.1</li>
    <li><a
    href="https://github.com/kulshekhar/ts-jest/commit/04a12d73abac8b3d9ae7bf0548f3a8386d0b5043"><code>04a12d7</code></a>
    test: improve <code>examples</code> folder</li>
    <li><a
    href="https://github.com/kulshekhar/ts-jest/commit/547eb6f811a49ca1c5f9d5ecc8106033704c8325"><code>547eb6f</code></a>
    fix: improve message for <code>isolatedModules</code> of
    <code>ts-jest</code> config</li>
    <li><a
    href="https://github.com/kulshekhar/ts-jest/commit/0c3465fe26ef52b93783731e8c93d4396a27599f"><code>0c3465f</code></a>
    docs: indicate clearer about <code>isolatedModules</code>
    deprecation</li>
    <li><a
    href="https://github.com/kulshekhar/ts-jest/commit/25157eb12442531ec4feb12f3c5b0f81249d5b66"><code>25157eb</code></a>
    fix: allow <code>isolatedModules</code> mode to have Program under
    <code>Node16/Next</code></li>
    <li><a
    href="https://github.com/kulshekhar/ts-jest/commit/cc1f630b985cd079923f207fd09fd29e9a424ec5"><code>cc1f630</code></a>
    build(deps): Update dependency <code>@​types/node</code> to
    v20.17.28</li>
    <li><a
    href="https://github.com/kulshekhar/ts-jest/commit/66bde83d2590a6cb4bc4ca090e9f79adc954aceb"><code>66bde83</code></a>
    build(deps): Update dependency <code>@​types/semver</code> to
    ^7.7.0</li>
    <li><a
    href="https://github.com/kulshekhar/ts-jest/commit/a4275caf188f47275a0c1a798d3a8c1a8361027e"><code>a4275ca</code></a>
    Remove --no-audit</li>
    <li><a
    href="https://github.com/kulshekhar/ts-jest/commit/38cacd360dc07a3f4c05a72f47cdc16b23c020e7"><code>38cacd3</code></a>
    Add NPM cache</li>
    <li><a
    href="https://github.com/kulshekhar/ts-jest/commit/36e38833106dc66280a53088f117b9447e0f202e"><code>36e3883</code></a>
    build(deps): Update dependency <code>@​formatjs/ts-transformer</code> to
    ^3.13.34</li>
    <li>Additional commits viewable in <a
    href="https://github.com/kulshekhar/ts-jest/compare/v29.2.6...v29.3.1">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ts-jest&package-manager=npm_and_yarn&previous-version=29.2.6&new-version=29.3.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 Apr 1, 2025
    Configuration menu
    Copy the full SHA
    4595696 View commit details
    Browse the repository at this point in the history
  3. deps: bump eslint-plugin-prettier from 5.2.3 to 5.2.5 (#468)

    Bumps
    [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
    from 5.2.3 to 5.2.5.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/prettier/eslint-plugin-prettier/releases">eslint-plugin-prettier's
    releases</a>.</em></p>
    <blockquote>
    <h2>v5.2.5</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li><a
    href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/721">#721</a>
    <a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/4f5513de4ce919c607773fd35d833117a8d8b676"><code>4f5513d</code></a>
    Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>!
    - fix: clarify correct <code>eslint-config-prettier</code> peer
    range</li>
    </ul>
    <h2>v5.2.4</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li><a
    href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/715">#715</a>
    <a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/b8cfe56e345a9cd0f0160da91d99b8ee9e37c67e"><code>b8cfe56</code></a>
    Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>!
    - chore: hourcekeeping, bump all (dev) deps</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md">eslint-plugin-prettier's
    changelog</a>.</em></p>
    <blockquote>
    <h2>5.2.5</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li><a
    href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/721">#721</a>
    <a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/4f5513de4ce919c607773fd35d833117a8d8b676"><code>4f5513d</code></a>
    Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>!
    - fix: clarify correct <code>eslint-config-prettier</code> peer
    range</li>
    </ul>
    <h2>5.2.4</h2>
    <h3>Patch Changes</h3>
    <ul>
    <li><a
    href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/715">#715</a>
    <a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/b8cfe56e345a9cd0f0160da91d99b8ee9e37c67e"><code>b8cfe56</code></a>
    Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>!
    - chore: hourcekeeping, bump all (dev) deps</li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/b2e195c7f32aef30363655b92c0f44b7453a25c2"><code>b2e195c</code></a>
    chore: release eslint-plugin-prettier (<a
    href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/722">#722</a>)</li>
    <li><a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/4f5513de4ce919c607773fd35d833117a8d8b676"><code>4f5513d</code></a>
    fix: clarify correct <code>eslint-config-prettier</code> peer range (<a
    href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/721">#721</a>)</li>
    <li><a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/022254164f6f2727434f463dbb598a230d0d8807"><code>0222541</code></a>
    chore(deps): pin dependencies (<a
    href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/720">#720</a>)</li>
    <li><a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/9f0ba209ab55b0ecaf955c6e593e11cff986e42e"><code>9f0ba20</code></a>
    chore: add renovate preset</li>
    <li><a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/d670ebbba434b97c63a99598e5baa072dc6751b6"><code>d670ebb</code></a>
    chore: fix release script</li>
    <li><a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/0e123363095357c469e6f04324db8dd55a6e18dc"><code>0e12336</code></a>
    chore: release eslint-plugin-prettier (<a
    href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/716">#716</a>)</li>
    <li><a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/b8cfe56e345a9cd0f0160da91d99b8ee9e37c67e"><code>b8cfe56</code></a>
    chore: hourcekeeping, bump all (dev) deps (<a
    href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/715">#715</a>)</li>
    <li><a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/ca5eb3ec11c4ae511e1da22736c73b253210b73b"><code>ca5eb3e</code></a>
    test: improve how to get <code>FlatESLint</code> (<a
    href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/713">#713</a>)</li>
    <li><a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/6f35f1ba6b2b52dfb012dee686cf14932fe892c3"><code>6f35f1b</code></a>
    chore(housekeeping): update ESLint to v9 (<a
    href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/709">#709</a>)</li>
    <li><a
    href="https://github.com/prettier/eslint-plugin-prettier/commit/9726349ca4209a8c83b4e54656825dd0ac17d956"><code>9726349</code></a>
    chore: rename default branch to <code>main</code> (<a
    href="https://redirect.github.com/prettier/eslint-plugin-prettier/issues/710">#710</a>)</li>
    <li>See full diff in <a
    href="https://github.com/prettier/eslint-plugin-prettier/compare/v5.2.3...v5.2.5">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=eslint-plugin-prettier&package-manager=npm_and_yarn&previous-version=5.2.3&new-version=5.2.5)](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 Apr 1, 2025
    Configuration menu
    Copy the full SHA
    894ad5d View commit details
    Browse the repository at this point in the history
  4. deps: bump typedoc from 0.28.0 to 0.28.1 (#462)

    Bumps [typedoc](https://github.com/TypeStrong/TypeDoc) from 0.28.0 to
    0.28.1.
    <details>
    <summary>Release notes</summary>
    <p><em>Sourced from <a
    href="https://github.com/TypeStrong/TypeDoc/releases">typedoc's
    releases</a>.</em></p>
    <blockquote>
    <h2>v0.28.1</h2>
    <h3>Features</h3>
    <ul>
    <li>The <code>TypeDocOptions</code> interface now marks options as
    optional so it no longer has to be wrapped in <code>Partial</code>
    for use in config files, <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2901">#2901</a>.</li>
    <li>API: Expose control methods for deferred conversion for plugin use
    (typedoc-plugin-missing-exports)</li>
    <li>API: Expose method to disable TypeDoc usage of
    <code>localStorage</code> without clearing it, <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2908">#2908</a>.</li>
    </ul>
    <h3>Bug Fixes</h3>
    <ul>
    <li><code>--watch</code> can now infer entry points from
    <code>package.json</code> as supported in non-watch mode, <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2899">#2899</a>.</li>
    <li><code>@include</code> with regions now works on files with CRLF line
    endings, <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2902">#2902</a>.</li>
    <li>Generated page names now correctly handles UTF-8 characters
    requiring more than 16 bits <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2905">#2905</a>.</li>
    <li>Fixed a crash when converting <code>module.exports = []</code>, <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2909">#2909</a>.</li>
    <li>Fixed URL generation which introduced a superfluous <code>./</code>
    in relative links, <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2910">#2910</a>.</li>
    </ul>
    <h3>Thanks!</h3>
    <ul>
    <li><a
    href="https://github.com/jsmith2-coveo"><code>@​jsmith2-coveo</code></a></li>
    <li><a
    href="https://github.com/romainmnr"><code>@​romainmnr</code></a></li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Changelog</summary>
    <p><em>Sourced from <a
    href="https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md">typedoc's
    changelog</a>.</em></p>
    <blockquote>
    <h2>v0.28.1 (2025-03-20)</h2>
    <h3>Features</h3>
    <ul>
    <li>The <code>TypeDocOptions</code> interface now marks options as
    optional so it no longer has to be wrapped in <code>Partial</code>
    for use in config files, <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2901">#2901</a>.</li>
    <li>API: Expose control methods for deferred conversion for plugin use
    (typedoc-plugin-missing-exports)</li>
    <li>API: Expose method to disable TypeDoc usage of
    <code>localStorage</code> without clearing it, <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2908">#2908</a>.</li>
    </ul>
    <h3>Bug Fixes</h3>
    <ul>
    <li><code>--watch</code> can now infer entry points from
    <code>package.json</code> as supported in non-watch mode, <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2899">#2899</a>.</li>
    <li><code>@include</code> with regions now works on files with CRLF line
    endings, <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2902">#2902</a>.</li>
    <li>Generated page names now correctly handles UTF-8 characters
    requiring more than 16 bits <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2905">#2905</a>.</li>
    <li>Fixed a crash when converting <code>module.exports = []</code>, <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2909">#2909</a>.</li>
    <li>Fixed URL generation which introduced a superfluous <code>./</code>
    in relative links, <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2910">#2910</a>.</li>
    </ul>
    <h3>Thanks!</h3>
    <ul>
    <li><a
    href="https://github.com/jsmith2-coveo"><code>@​jsmith2-coveo</code></a></li>
    <li><a
    href="https://github.com/romainmnr"><code>@​romainmnr</code></a></li>
    </ul>
    </blockquote>
    </details>
    <details>
    <summary>Commits</summary>
    <ul>
    <li><a
    href="https://github.com/TypeStrong/typedoc/commit/6090b3e31471cea3728db1b03888bca5703b437e"><code>6090b3e</code></a>
    Update changelog for release</li>
    <li><a
    href="https://github.com/TypeStrong/typedoc/commit/6421662cd2b16a7385adb61bb6b767a862a6c629"><code>6421662</code></a>
    Release v0.28.1</li>
    <li><a
    href="https://github.com/TypeStrong/typedoc/commit/c7ac719aceb638bfd89d77e0b9df56a665fd9891"><code>c7ac719</code></a>
    Update changelog</li>
    <li><a
    href="https://github.com/TypeStrong/typedoc/commit/a49c6c8ae591dff3224d50170f01515d129d44e9"><code>a49c6c8</code></a>
    Make clearing TypeDoc fields from local storage optional (<a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2908">#2908</a>)</li>
    <li><a
    href="https://github.com/TypeStrong/typedoc/commit/b53a2208ac698ab1a8d74533fd7042d83776e019"><code>b53a220</code></a>
    Fix <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2910">#2910</a></li>
    <li><a
    href="https://github.com/TypeStrong/typedoc/commit/34ce994d943b71e14457a0e8f5db986d546057d7"><code>34ce994</code></a>
    Fix crash when converting array from module.exports</li>
    <li><a
    href="https://github.com/TypeStrong/typedoc/commit/2d95afa72ed84d3a71bc451df6f5c63f73340802"><code>2d95afa</code></a>
    Merge pull request <a
    href="https://redirect.github.com/TypeStrong/TypeDoc/issues/2906">#2906</a>
    from romainmnr/master</li>
    <li><a
    href="https://github.com/TypeStrong/typedoc/commit/df1033f086c952253e7f052d5bbe6b5f68bcf90c"><code>df1033f</code></a>
    style: remove useless spaces</li>
    <li><a
    href="https://github.com/TypeStrong/typedoc/commit/c421520b789c75e47a5904ae3da9a8b2d1edad55"><code>c421520</code></a>
    text(createNormalizedUrl): add UTF8 &amp; emoji tests</li>
    <li><a
    href="https://github.com/TypeStrong/typedoc/commit/383e164c6a090c9e6d716337513384bcd8cfa489"><code>383e164</code></a>
    fix(createNormalizedUrl): replace String.fromCharCode by
    String.fromCodePoint</li>
    <li>Additional commits viewable in <a
    href="https://github.com/TypeStrong/TypeDoc/compare/v0.28.0...v0.28.1">compare
    view</a></li>
    </ul>
    </details>
    <br />
    
    
    [![Dependabot compatibility
    score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=typedoc&package-manager=npm_and_yarn&previous-version=0.28.0&new-version=0.28.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 Apr 1, 2025
    Configuration menu
    Copy the full SHA
    6b2c86c View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2025

  1. Configuration menu
    Copy the full SHA
    0712eee View commit details
    Browse the repository at this point in the history
  2. deps: bump @types/node from 22.13.14 to 22.13.17 (#472)

    Bumps
    [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
    from 22.13.14 to 22.13.17.
    <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.14&new-version=22.13.17)](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 Apr 2, 2025
    Configuration menu
    Copy the full SHA
    22f7a8f View commit details
    Browse the repository at this point in the history
  3. chore(main): release 5.7.0 (#474)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ##
    [5.7.0](v5.6.0...v5.7.0)
    (2025-04-02)
    
    
    ### Features
    
    * **Flows:** Add Run `update`, `remove`, and `getDefinition` methods
    ([#473](#473))
    ([0712eee](0712eee))
    
    ---
    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 Apr 2, 2025
    Configuration menu
    Copy the full SHA
    db79a63 View commit details
    Browse the repository at this point in the history
Loading