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

fix: Regular Expression Denial of Service (ReDoS) #6132

Merged
merged 11 commits into from Dec 26, 2023

Conversation

WillianAgostini
Copy link
Contributor

Fixes #6131
An optimization of regex was implemented.

lib/helpers/combineURLs.js Fixed Show fixed Hide fixed
lib/helpers/combineURLs.js Fixed Show fixed Hide fixed
@WillianAgostini WillianAgostini changed the title Regular Expression Denial of Service (ReDoS) fix: Regular Expression Denial of Service (ReDoS) Dec 14, 2023
Copy link

@firattale firattale left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Copy link
Collaborator

@DigitalBrainJS DigitalBrainJS left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems this code is still vulnerable

    instance.defaults.baseURL = '///foo' + '/'.repeat(100000) + 'bar/'; 
   // Expected 8803.69999999972 to be less than 20.

Anyway, I believe that replacing /\/+$/ with /\/?\/$/ is enough to solve the issue with ReDos handling only practical cases of user input. The fix now does normalization at more than just the end/beginning and seems overkill as I don't see any cases where we might need to normalize more than two slashes in a valid URL. Moreover, using multiple regular expressions does not benefit performance and code size. Thoughts?

@WillianAgostini
Copy link
Contributor Author

Seems this code is still vulnerable

    instance.defaults.baseURL = '///foo' + '/'.repeat(100000) + 'bar/'; 
   // Expected 8803.69999999972 to be less than 20.

Anyway, I believe that replacing /\/+$/ with /\/?\/$/ is enough to solve the issue with ReDos handling only practical cases of user input. The fix now does normalization at more than just the end/beginning and seems overkill as I don't see any cases where we might need to normalize more than two slashes in a valid URL. Moreover, using multiple regular expressions does not benefit performance and code size. Thoughts?

Fixes 918286c

@ffk-tecky
Copy link

any idea when would this be released?

@DigitalBrainJS
Copy link
Collaborator

Is there any reason we can't simplify this solution to /\/?\/$/ or /\/{1,n}$/? The second regexp /^\/+/ is not vulnerable to ReDoS as it has linear complexity, so there is no reason to filter its input.

@WillianAgostini
Copy link
Contributor Author

Is there any reason we can't simplify this solution to /\/?\/$/ or /\/{1,n}$/? The second regexp /^\/+/ is not vulnerable to ReDoS as it has linear complexity, so there is no reason to filter its input.

However, please note that using /\/?\/$/ or /\/{1,n}$/ does not handle cases where multiple slashes need to be replaced, as demonstrated by the example: '///foo' + '/'.repeat(100000) + 'bar////////'.
In the second case, if you are certain about it, I can remove the filter.

@DigitalBrainJS
Copy link
Collaborator

DigitalBrainJS commented Dec 25, 2023

does not handle cases where multiple slashes need to be replaced

I don't see any reason why we need to normalize multiple trailing slashes since it's an invalid url. We just need to join the base url and relative path and there is no point in complicating the code for an impractical case. So for now I'm I tend to the simplest implementation.

In the second case, if you are certain about it, I can remove the filter.

Well, this is quite obvious, since the graph of the regexp has no branches, only a direct loop. This can be confirmed with a test service like https://devina.io/redos-checker or your test case.

@WillianAgostini
Copy link
Contributor Author

does not handle cases where multiple slashes need to be replaced

I don't see any reason why we need to normalize multiple trailing slashes since it's an invalid url. We just need to join the base url and relative path and there is no point in complicating the code for an impractical case. So for now I'm I tend to the simplest implementation.

In the second case, if you are certain about it, I can remove the filter.

Well, this is quite obvious, since the graph of the regexp has no branches, only a direct loop. This can be confirmed with a test service like https://devina.io/redos-checker or your test case.

I applied the changes ae9f303

…nto fix/6131

� Conflicts:
�	lib/helpers/combineURLs.js
�	test/specs/defaults.spec.js
@DigitalBrainJS DigitalBrainJS merged commit 5e7ad38 into axios:v1.x Dec 26, 2023
8 checks passed
@WillianAgostini WillianAgostini deleted the fix/6131 branch December 26, 2023 20:46
@github-actions github-actions bot mentioned this pull request Dec 26, 2023
contentful-automation bot pushed a commit to contentful/contentful-merge that referenced this pull request Dec 27, 2023
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a>
chore(release): v1.6.3 (<a
href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a>
chore(ci): added branches filter for notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a>
fix: Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a>
docs: update alloy link (<a
href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a>
docs: add headline sponsors</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](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>
neotokenapp bot pushed a commit to neohelden/commons-nestjs-server-auth that referenced this pull request Dec 27, 2023
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a>
chore(release): v1.6.3 (<a
href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a>
chore(ci): added branches filter for notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a>
fix: Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a>
docs: update alloy link (<a
href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a>
docs: add headline sponsors</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](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>
ModyQyW added a commit to uni-helper/uni-network that referenced this pull request Dec 27, 2023
github-actions bot pushed a commit to implydata/openapi-ts that referenced this pull request Dec 27, 2023
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a>
chore(release): v1.6.3 (<a
href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a>
chore(ci): added branches filter for notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a>
fix: Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a>
docs: update alloy link (<a
href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a>
docs: add headline sponsors</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](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>
manudeli pushed a commit to suspensive/react that referenced this pull request Dec 27, 2023
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a>
chore(release): v1.6.3 (<a
href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a>
chore(ci): added branches filter for notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a>
fix: Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a>
docs: update alloy link (<a
href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a>
docs: add headline sponsors</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](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>
anthony-nhs pushed a commit to NHSDigital/prescriptionsforpatients that referenced this pull request Dec 27, 2023
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a>
chore(release): v1.6.3 (<a
href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a>
chore(ci): added branches filter for notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a>
fix: Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a>
docs: update alloy link (<a
href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a>
docs: add headline sponsors</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](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>
rm-hull pushed a commit to rm-hull/scratchpad that referenced this pull request Dec 27, 2023
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a>
chore(release): v1.6.3 (<a
href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a>
chore(ci): added branches filter for notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a>
fix: Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a>
docs: update alloy link (<a
href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a>
docs: add headline sponsors</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](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>
anthony-nhs added a commit to NHSDigital/electronic-prescription-service-api that referenced this pull request Dec 27, 2023
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a>
chore(release): v1.6.3 (<a
href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a>
chore(ci): added branches filter for notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a>
fix: Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a>
docs: update alloy link (<a
href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a>
docs: add headline sponsors</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR 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>
Co-authored-by: anthony-nhs <121869075+anthony-nhs@users.noreply.github.com>
abhi-markan pushed a commit to UK-Export-Finance/mdm-api that referenced this pull request Dec 28, 2023
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a>
chore(release): v1.6.3 (<a
href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a>
chore(ci): added branches filter for notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a>
fix: Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a>
docs: update alloy link (<a
href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a>
docs: add headline sponsors</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](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>
Fyphen1223 added a commit to Fyphen1223/CosmoMusic that referenced this pull request Dec 29, 2023
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a>
chore(release): v1.6.3 (<a
href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a>
chore(ci): added branches filter for notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a>
fix: Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a>
docs: update alloy link (<a
href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a>
docs: add headline sponsors</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](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>
github-merge-queue bot pushed a commit to Kitware/CDash that referenced this pull request Jan 1, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a>
chore(release): v1.6.3 (<a
href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a>
chore(ci): added branches filter for notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a>
fix: Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a>
docs: update alloy link (<a
href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a>
docs: add headline sponsors</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](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>
kodiakhq bot pushed a commit to relaycorp/awala-keystore-cloud-js that referenced this pull request Jan 1, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/releases">axios's releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>) (<a href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman" title="+15/-6 ([#6145](axios/axios#6145) )">Jay</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/WillianAgostini" title="+17/-2 ([#6132](axios/axios#6132) )">Willian Agostini</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/DigitalBrainJS" title="+3/-0 ([#6084](axios/axios#6084) )">Dmitriy Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's changelog</a>.</em></p>
<blockquote>
<h2><a href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a> (2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>) (<a href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman" title="+15/-6 ([#6145](axios/axios#6145) )">Jay</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/WillianAgostini" title="+17/-2 ([#6132](axios/axios#6132) )">Willian Agostini</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/DigitalBrainJS" title="+3/-0 ([#6084](axios/axios#6084) )">Dmitriy Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a> chore(release): v1.6.3 (<a href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a> chore(ci): added branches filter for notify action; (<a href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a> fix: Regular Expression Denial of Service (ReDoS) (<a href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a> docs: update alloy link (<a href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a> docs: add headline sponsors</li>
<li>See full diff in <a href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](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>
kodiakhq bot pushed a commit to relaycorp/relaynet-pohttp-js that referenced this pull request Jan 1, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/releases">axios's releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>) (<a href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman" title="+15/-6 ([#6145](axios/axios#6145) )">Jay</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/WillianAgostini" title="+17/-2 ([#6132](axios/axios#6132) )">Willian Agostini</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/DigitalBrainJS" title="+3/-0 ([#6084](axios/axios#6084) )">Dmitriy Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's changelog</a>.</em></p>
<blockquote>
<h2><a href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a> (2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>) (<a href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman" title="+15/-6 ([#6145](axios/axios#6145) )">Jay</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/WillianAgostini" title="+17/-2 ([#6132](axios/axios#6132) )">Willian Agostini</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/DigitalBrainJS" title="+3/-0 ([#6084](axios/axios#6084) )">Dmitriy Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a> chore(release): v1.6.3 (<a href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a> chore(ci): added branches filter for notify action; (<a href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a> fix: Regular Expression Denial of Service (ReDoS) (<a href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a> docs: update alloy link (<a href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a> docs: add headline sponsors</li>
<li>See full diff in <a href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](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>
Gaute945 added a commit to Gaute945/Overmounting that referenced this pull request Jan 2, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a>
chore(release): v1.6.3 (<a
href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a>
chore(ci): added branches filter for notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a>
fix: Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a>
docs: update alloy link (<a
href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a>
docs: add headline sponsors</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.3)](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>
corinagum pushed a commit to microsoft/teams-ai that referenced this pull request Jan 2, 2024
…1108)

#minor Bumps the production group in /js with 2 updates:
[axios](https://github.com/axios/axios) and
[openai](https://github.com/openai/openai-node).

Updates `axios` from 1.6.2 to 1.6.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/b15b918d179900e7d47a08f4e96efc89e16d8a7b"><code>b15b918</code></a>
chore(release): v1.6.3 (<a
href="https://redirect.github.com/axios/axios/issues/6151">#6151</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/b76cce0e0f67c0597c748f8b0eb5245277fa6dc7"><code>b76cce0</code></a>
chore(ci): added branches filter for notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6084">#6084</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d"><code>5e7ad38</code></a>
fix: Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/8befb86efb101ef9dc1d1c16d77d2bf42600727f"><code>8befb86</code></a>
docs: update alloy link (<a
href="https://redirect.github.com/axios/axios/issues/6145">#6145</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d18f40d89af9f86275a24b4ade68bc60eff97214"><code>d18f40d</code></a>
docs: add headline sponsors</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `openai` from 4.23.0 to 4.24.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/openai/openai-node/releases">openai's
releases</a>.</em></p>
<blockquote>
<h2>v4.24.1</h2>
<h2>4.24.1 (2023-12-22)</h2>
<p>Full Changelog: <a
href="https://github.com/openai/openai-node/compare/v4.24.0...v4.24.1">v4.24.0...v4.24.1</a></p>
<h3>Bug Fixes</h3>
<ul>
<li><strong>pagination:</strong> correct type annotation object field
(<a
href="https://redirect.github.com/openai/openai-node/issues/590">#590</a>)
(<a
href="https://github.com/openai/openai-node/commit/4066edad4b5305e82e610f44f4720843f2b69d39">4066eda</a>)</li>
</ul>
<h3>Documentation</h3>
<ul>
<li><strong>messages:</strong> improvements to helpers reference + typos
(<a
href="https://redirect.github.com/openai/openai-node/issues/595">#595</a>)
(<a
href="https://github.com/openai/openai-node/commit/96a59b91c424db67b8a5bdb7cab5da68c57282d4">96a59b9</a>)</li>
<li>reformat README.md (<a
href="https://redirect.github.com/openai/openai-node/issues/592">#592</a>)
(<a
href="https://github.com/openai/openai-node/commit/8ffc7f876cc8f4b7afaf68a37f94f826ef22a6b8">8ffc7f8</a>)</li>
</ul>
<h3>Refactors</h3>
<ul>
<li>write jest config in typescript (<a
href="https://redirect.github.com/openai/openai-node/issues/588">#588</a>)
(<a
href="https://github.com/openai/openai-node/commit/eb6ceebf90ba45ec5b803f32b9b080829f6a973a">eb6ceeb</a>)</li>
</ul>
<h2>v4.24.0</h2>
<h2>4.24.0 (2023-12-19)</h2>
<p>Full Changelog: <a
href="https://github.com/openai/openai-node/compare/v4.23.0...v4.24.0">v4.23.0...v4.24.0</a></p>
<h3>Features</h3>
<ul>
<li><strong>api:</strong> add additional instructions for runs (<a
href="https://redirect.github.com/openai/openai-node/issues/586">#586</a>)
(<a
href="https://github.com/openai/openai-node/commit/401d93ea39fe0e90088799858299322035c0a7e8">401d93e</a>)</li>
</ul>
<h3>Chores</h3>
<ul>
<li><strong>deps:</strong> update dependency start-server-and-test to
v2.0.3 (<a
href="https://redirect.github.com/openai/openai-node/issues/580">#580</a>)
(<a
href="https://github.com/openai/openai-node/commit/8e1aca1f8be6e583483919ed9ef9b04fab076066">8e1aca1</a>)</li>
<li><strong>deps:</strong> update dependency ts-jest to v29.1.1 (<a
href="https://redirect.github.com/openai/openai-node/issues/578">#578</a>)
(<a
href="https://github.com/openai/openai-node/commit/a6edb7bc3cfc447d0c55ae23cc1c2219105d3666">a6edb7b</a>)</li>
<li><strong>deps:</strong> update jest (<a
href="https://redirect.github.com/openai/openai-node/issues/582">#582</a>)
(<a
href="https://github.com/openai/openai-node/commit/e49e471ec7a136f2cbaf82551ccaaea366c87a91">e49e471</a>)</li>
<li><strong>internal:</strong> bump deps (<a
href="https://redirect.github.com/openai/openai-node/issues/583">#583</a>)
(<a
href="https://github.com/openai/openai-node/commit/2e07b4c66ab1fdbb353fdd00994e293f93e981db">2e07b4c</a>)</li>
<li><strong>internal:</strong> update deps (<a
href="https://redirect.github.com/openai/openai-node/issues/581">#581</a>)
(<a
href="https://github.com/openai/openai-node/commit/7b690dca67ee8c3b0a89caf7f786ede5dc612a76">7b690dc</a>)</li>
</ul>
<h3>Documentation</h3>
<ul>
<li>upgrade models in examples to latest version (<a
href="https://redirect.github.com/openai/openai-node/issues/585">#585</a>)
(<a
href="https://github.com/openai/openai-node/commit/60101a4117b1a8223d09fb9fe21d89af32431939">60101a4</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/openai/openai-node/blob/master/CHANGELOG.md">openai's
changelog</a>.</em></p>
<blockquote>
<h2>4.24.1 (2023-12-22)</h2>
<p>Full Changelog: <a
href="https://github.com/openai/openai-node/compare/v4.24.0...v4.24.1">v4.24.0...v4.24.1</a></p>
<h3>Bug Fixes</h3>
<ul>
<li><strong>pagination:</strong> correct type annotation object field
(<a
href="https://redirect.github.com/openai/openai-node/issues/590">#590</a>)
(<a
href="https://github.com/openai/openai-node/commit/4066edad4b5305e82e610f44f4720843f2b69d39">4066eda</a>)</li>
</ul>
<h3>Documentation</h3>
<ul>
<li><strong>messages:</strong> improvements to helpers reference + typos
(<a
href="https://redirect.github.com/openai/openai-node/issues/595">#595</a>)
(<a
href="https://github.com/openai/openai-node/commit/96a59b91c424db67b8a5bdb7cab5da68c57282d4">96a59b9</a>)</li>
<li>reformat README.md (<a
href="https://redirect.github.com/openai/openai-node/issues/592">#592</a>)
(<a
href="https://github.com/openai/openai-node/commit/8ffc7f876cc8f4b7afaf68a37f94f826ef22a6b8">8ffc7f8</a>)</li>
</ul>
<h3>Refactors</h3>
<ul>
<li>write jest config in typescript (<a
href="https://redirect.github.com/openai/openai-node/issues/588">#588</a>)
(<a
href="https://github.com/openai/openai-node/commit/eb6ceebf90ba45ec5b803f32b9b080829f6a973a">eb6ceeb</a>)</li>
</ul>
<h2>4.24.0 (2023-12-19)</h2>
<p>Full Changelog: <a
href="https://github.com/openai/openai-node/compare/v4.23.0...v4.24.0">v4.23.0...v4.24.0</a></p>
<h3>Features</h3>
<ul>
<li><strong>api:</strong> add additional instructions for runs (<a
href="https://redirect.github.com/openai/openai-node/issues/586">#586</a>)
(<a
href="https://github.com/openai/openai-node/commit/401d93ea39fe0e90088799858299322035c0a7e8">401d93e</a>)</li>
</ul>
<h3>Chores</h3>
<ul>
<li><strong>deps:</strong> update dependency start-server-and-test to
v2.0.3 (<a
href="https://redirect.github.com/openai/openai-node/issues/580">#580</a>)
(<a
href="https://github.com/openai/openai-node/commit/8e1aca1f8be6e583483919ed9ef9b04fab076066">8e1aca1</a>)</li>
<li><strong>deps:</strong> update dependency ts-jest to v29.1.1 (<a
href="https://redirect.github.com/openai/openai-node/issues/578">#578</a>)
(<a
href="https://github.com/openai/openai-node/commit/a6edb7bc3cfc447d0c55ae23cc1c2219105d3666">a6edb7b</a>)</li>
<li><strong>deps:</strong> update jest (<a
href="https://redirect.github.com/openai/openai-node/issues/582">#582</a>)
(<a
href="https://github.com/openai/openai-node/commit/e49e471ec7a136f2cbaf82551ccaaea366c87a91">e49e471</a>)</li>
<li><strong>internal:</strong> bump deps (<a
href="https://redirect.github.com/openai/openai-node/issues/583">#583</a>)
(<a
href="https://github.com/openai/openai-node/commit/2e07b4c66ab1fdbb353fdd00994e293f93e981db">2e07b4c</a>)</li>
<li><strong>internal:</strong> update deps (<a
href="https://redirect.github.com/openai/openai-node/issues/581">#581</a>)
(<a
href="https://github.com/openai/openai-node/commit/7b690dca67ee8c3b0a89caf7f786ede5dc612a76">7b690dc</a>)</li>
</ul>
<h3>Documentation</h3>
<ul>
<li>upgrade models in examples to latest version (<a
href="https://redirect.github.com/openai/openai-node/issues/585">#585</a>)
(<a
href="https://github.com/openai/openai-node/commit/60101a4117b1a8223d09fb9fe21d89af32431939">60101a4</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/openai/openai-node/commit/b595cd953a704dba2aef4c6c3fa431f83f18ccf9"><code>b595cd9</code></a>
release: 4.24.1</li>
<li><a
href="https://github.com/openai/openai-node/commit/027da52b1fcfb984946bb8b25538880cb487ca5f"><code>027da52</code></a>
docs(messages): improvements to helpers reference + typos (<a
href="https://redirect.github.com/openai/openai-node/issues/595">#595</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/af111778533354762326ecc8c89aba32c400524d"><code>af11177</code></a>
docs: reformat README.md (<a
href="https://redirect.github.com/openai/openai-node/issues/592">#592</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/824089dcf6d51b35d0918c37542a1a01bb2def1b"><code>824089d</code></a>
fix(pagination): correct type annotation object field (<a
href="https://redirect.github.com/openai/openai-node/issues/590">#590</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/44ffb66cc9f1f3d18ccf5a68c13effbe5079181e"><code>44ffb66</code></a>
refactor: write jest config in typescript (<a
href="https://redirect.github.com/openai/openai-node/issues/588">#588</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/e383a0f034dfa2676215b91287b31ff2f56aa833"><code>e383a0f</code></a>
release: 4.24.0</li>
<li><a
href="https://github.com/openai/openai-node/commit/dcf732bf1cd9c9be6d818d45d3658a43bcf795c5"><code>dcf732b</code></a>
feat(api): add additional instructions for runs (<a
href="https://redirect.github.com/openai/openai-node/issues/586">#586</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/88253e613b9c166fcbbc97ce7081275ea3a2803a"><code>88253e6</code></a>
docs: upgrade models in examples to latest version (<a
href="https://redirect.github.com/openai/openai-node/issues/585">#585</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/19fd06b1d6f06a6eacaa989c1b0169c80de3957f"><code>19fd06b</code></a>
chore(internal): bump deps (<a
href="https://redirect.github.com/openai/openai-node/issues/583">#583</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/161f65751c67c34b8c4be610b3f47a8ca1007684"><code>161f657</code></a>
chore(deps): update jest (<a
href="https://redirect.github.com/openai/openai-node/issues/582">#582</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/openai/openai-node/compare/v4.23.0...v4.24.1">compare
view</a></li>
</ul>
</details>
<br />


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 <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@github-actions github-actions bot added the v1.6.3 label Jan 3, 2024
Copy link
Contributor

github-actions bot commented Jan 3, 2024

Hi, @WillianAgostini! This PR has been published in v1.6.3 release. Thank you for your contribution ❤️!

antgamdia pushed a commit to vmware-tanzu/kubeapps that referenced this pull request Jan 8, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li><a
href="https://github.com/axios/axios/commit/8790b8e7847c7f450544e7195c837ffc10fcb160"><code>8790b8e</code></a>
chore(release): v1.6.4 (<a
href="https://redirect.github.com/axios/axios/issues/6173">#6173</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0ad520de0f087b7e012e432660e44631be7f689e"><code>0ad520d</code></a>
chore(ci): fix notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6172">#6172</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e"><code>3c0c11c</code></a>
fix(security): fixed formToJSON prototype pollution vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8"><code>75af1cd</code></a>
fix(security): fixed security vulnerability in follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/90864b3a3fb52ede567f7dd70b055f1f45c162ef"><code>90864b3</code></a>
docs: update logos</li>
<li><a
href="https://github.com/axios/axios/commit/1542719bc7300f885df202942eff986a3d826372"><code>1542719</code></a>
docs: updated headline sponsors</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.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>
antgamdia added a commit to vmware-tanzu/kubeapps that referenced this pull request Jan 8, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li><a
href="https://github.com/axios/axios/commit/8790b8e7847c7f450544e7195c837ffc10fcb160"><code>8790b8e</code></a>
chore(release): v1.6.4 (<a
href="https://redirect.github.com/axios/axios/issues/6173">#6173</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0ad520de0f087b7e012e432660e44631be7f689e"><code>0ad520d</code></a>
chore(ci): fix notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6172">#6172</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e"><code>3c0c11c</code></a>
fix(security): fixed formToJSON prototype pollution vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8"><code>75af1cd</code></a>
fix(security): fixed security vulnerability in follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/90864b3a3fb52ede567f7dd70b055f1f45c162ef"><code>90864b3</code></a>
docs: update logos</li>
<li><a
href="https://github.com/axios/axios/commit/1542719bc7300f885df202942eff986a3d826372"><code>1542719</code></a>
docs: updated headline sponsors</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.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>
Co-authored-by: Antonio Gámez, PhD <agamez@vmware.com>
ckniffen pushed a commit to ripple/explorer that referenced this pull request Jan 8, 2024
Bumps [axios](https://github.com/axios/axios) from 1.5.1 to 1.6.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2>Release v1.6.2</h2>
<h2>Release notes:</h2>
<h3>Features</h3>
<ul>
<li><strong>withXSRFToken:</strong> added withXSRFToken option as a
workaround to achieve the old <code>withCredentials</code> behavior; (<a
href="https://redirect.github.com/axios/axios/issues/6046">#6046</a>)
(<a
href="https://github.com/axios/axios/commit/cff996779b272a5e94c2b52f5503ccf668bc42dc">cff9967</a>)</li>
</ul>
<h3>PRs</h3>
<ul>
<li>feat(withXSRFToken): added withXSRFToken option as a workaround to
achieve the old `withCredentials` behavior; ( <a
href="https://api.github.com/repos/axios/axios/pulls/6046">#6046</a>
)</li>
</ul>
<pre><code>
📢 This PR added &amp;#x27;withXSRFToken&amp;#x27; option as a
replacement for old withCredentials behaviour.
You should now use withXSRFToken along with withCredential to get the
old behavior.
This functionality is considered as a fix.
&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.1...v1.6.2">1.6.2</a>
(2023-11-14)</h2>
<h3>Features</h3>
<ul>
<li><strong>withXSRFToken:</strong> added withXSRFToken option as a
workaround to achieve the old <code>withCredentials</code> behavior; (<a
href="https://redirect.github.com/axios/axios/issues/6046">#6046</a>)
(<a
href="https://github.com/axios/axios/commit/cff996779b272a5e94c2b52f5503ccf668bc42dc">cff9967</a>)</li>
</ul>
<h3>PRs</h3>
<ul>
<li>feat(withXSRFToken): added withXSRFToken option as a workaround to
achieve the old `withCredentials` behavior; ( <a
href="https://api.github.com/repos/axios/axios/pulls/6046">#6046</a>
)</li>
</ul>
<pre><code>&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li><a
href="https://github.com/axios/axios/commit/8790b8e7847c7f450544e7195c837ffc10fcb160"><code>8790b8e</code></a>
chore(release): v1.6.4 (<a
href="https://redirect.github.com/axios/axios/issues/6173">#6173</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0ad520de0f087b7e012e432660e44631be7f689e"><code>0ad520d</code></a>
chore(ci): fix notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6172">#6172</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e"><code>3c0c11c</code></a>
fix(security): fixed formToJSON prototype pollution vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8"><code>75af1cd</code></a>
fix(security): fixed security vulnerability in follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/90864b3a3fb52ede567f7dd70b055f1f45c162ef"><code>90864b3</code></a>
docs: update logos</li>
<li><a
href="https://github.com/axios/axios/commit/1542719bc7300f885df202942eff986a3d826372"><code>1542719</code></a>
docs: updated headline sponsors</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.5.1...v1.6.5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.5.1&new-version=1.6.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>
JamieDanielson pushed a commit to honeycombio/honeycomb-opentelemetry-node that referenced this pull request Jan 10, 2024
Bumps [axios](https://github.com/axios/axios) from 1.4.0 to 1.6.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2>Release v1.6.2</h2>
<h2>Release notes:</h2>
<h3>Features</h3>
<ul>
<li><strong>withXSRFToken:</strong> added withXSRFToken option as a
workaround to achieve the old <code>withCredentials</code> behavior; (<a
href="https://redirect.github.com/axios/axios/issues/6046">#6046</a>)
(<a
href="https://github.com/axios/axios/commit/cff996779b272a5e94c2b52f5503ccf668bc42dc">cff9967</a>)</li>
</ul>
<h3>PRs</h3>
<ul>
<li>feat(withXSRFToken): added withXSRFToken option as a workaround to
achieve the old `withCredentials` behavior; ( <a
href="https://api.github.com/repos/axios/axios/pulls/6046">#6046</a>
)</li>
</ul>
<pre><code>
📢 This PR added &amp;#x27;withXSRFToken&amp;#x27; option as a
replacement for old withCredentials behaviour.
You should now use withXSRFToken along with withCredential to get the
old behavior.
This functionality is considered as a fix.
&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.1...v1.6.2">1.6.2</a>
(2023-11-14)</h2>
<h3>Features</h3>
<ul>
<li><strong>withXSRFToken:</strong> added withXSRFToken option as a
workaround to achieve the old <code>withCredentials</code> behavior; (<a
href="https://redirect.github.com/axios/axios/issues/6046">#6046</a>)
(<a
href="https://github.com/axios/axios/commit/cff996779b272a5e94c2b52f5503ccf668bc42dc">cff9967</a>)</li>
</ul>
<h3>PRs</h3>
<ul>
<li>feat(withXSRFToken): added withXSRFToken option as a workaround to
achieve the old `withCredentials` behavior; ( <a
href="https://api.github.com/repos/axios/axios/pulls/6046">#6046</a>
)</li>
</ul>
<pre><code>&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li><a
href="https://github.com/axios/axios/commit/8790b8e7847c7f450544e7195c837ffc10fcb160"><code>8790b8e</code></a>
chore(release): v1.6.4 (<a
href="https://redirect.github.com/axios/axios/issues/6173">#6173</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0ad520de0f087b7e012e432660e44631be7f689e"><code>0ad520d</code></a>
chore(ci): fix notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6172">#6172</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e"><code>3c0c11c</code></a>
fix(security): fixed formToJSON prototype pollution vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8"><code>75af1cd</code></a>
fix(security): fixed security vulnerability in follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/90864b3a3fb52ede567f7dd70b055f1f45c162ef"><code>90864b3</code></a>
docs: update logos</li>
<li><a
href="https://github.com/axios/axios/commit/1542719bc7300f885df202942eff986a3d826372"><code>1542719</code></a>
docs: updated headline sponsors</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.4.0...v1.6.5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.4.0&new-version=1.6.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>
Fyphen1223 added a commit to Fyphen1223/CosmoMusic that referenced this pull request Jan 15, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li><a
href="https://github.com/axios/axios/commit/8790b8e7847c7f450544e7195c837ffc10fcb160"><code>8790b8e</code></a>
chore(release): v1.6.4 (<a
href="https://redirect.github.com/axios/axios/issues/6173">#6173</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0ad520de0f087b7e012e432660e44631be7f689e"><code>0ad520d</code></a>
chore(ci): fix notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6172">#6172</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e"><code>3c0c11c</code></a>
fix(security): fixed formToJSON prototype pollution vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8"><code>75af1cd</code></a>
fix(security): fixed security vulnerability in follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/90864b3a3fb52ede567f7dd70b055f1f45c162ef"><code>90864b3</code></a>
docs: update logos</li>
<li><a
href="https://github.com/axios/axios/commit/1542719bc7300f885df202942eff986a3d826372"><code>1542719</code></a>
docs: updated headline sponsors</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.2&new-version=1.6.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>
milliorn added a commit to milliorn/recipe-page that referenced this pull request Jan 16, 2024
[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

Rebasing might not happen immediately, so don't worry if this takes some
time.

Note: if you make any changes to this PR yourself, they will take
precedence over the rebase.

---

[//]: # (dependabot-end)

Bumps [axios](https://github.com/axios/axios) from 1.5.1 to 1.6.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2>Release v1.6.2</h2>
<h2>Release notes:</h2>
<h3>Features</h3>
<ul>
<li><strong>withXSRFToken:</strong> added withXSRFToken option as a
workaround to achieve the old <code>withCredentials</code> behavior; (<a
href="https://redirect.github.com/axios/axios/issues/6046">#6046</a>)
(<a
href="https://github.com/axios/axios/commit/cff996779b272a5e94c2b52f5503ccf668bc42dc">cff9967</a>)</li>
</ul>
<h3>PRs</h3>
<ul>
<li>feat(withXSRFToken): added withXSRFToken option as a workaround to
achieve the old `withCredentials` behavior; ( <a
href="https://api.github.com/repos/axios/axios/pulls/6046">#6046</a>
)</li>
</ul>
<pre><code>
📢 This PR added &amp;#x27;withXSRFToken&amp;#x27; option as a
replacement for old withCredentials behaviour.
You should now use withXSRFToken along with withCredential to get the
old behavior.
This functionality is considered as a fix.
&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.1...v1.6.2">1.6.2</a>
(2023-11-14)</h2>
<h3>Features</h3>
<ul>
<li><strong>withXSRFToken:</strong> added withXSRFToken option as a
workaround to achieve the old <code>withCredentials</code> behavior; (<a
href="https://redirect.github.com/axios/axios/issues/6046">#6046</a>)
(<a
href="https://github.com/axios/axios/commit/cff996779b272a5e94c2b52f5503ccf668bc42dc">cff9967</a>)</li>
</ul>
<h3>PRs</h3>
<ul>
<li>feat(withXSRFToken): added withXSRFToken option as a workaround to
achieve the old `withCredentials` behavior; ( <a
href="https://api.github.com/repos/axios/axios/pulls/6046">#6046</a>
)</li>
</ul>
<pre><code>&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li><a
href="https://github.com/axios/axios/commit/8790b8e7847c7f450544e7195c837ffc10fcb160"><code>8790b8e</code></a>
chore(release): v1.6.4 (<a
href="https://redirect.github.com/axios/axios/issues/6173">#6173</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0ad520de0f087b7e012e432660e44631be7f689e"><code>0ad520d</code></a>
chore(ci): fix notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6172">#6172</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e"><code>3c0c11c</code></a>
fix(security): fixed formToJSON prototype pollution vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8"><code>75af1cd</code></a>
fix(security): fixed security vulnerability in follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/90864b3a3fb52ede567f7dd70b055f1f45c162ef"><code>90864b3</code></a>
docs: update logos</li>
<li><a
href="https://github.com/axios/axios/commit/1542719bc7300f885df202942eff986a3d826372"><code>1542719</code></a>
docs: updated headline sponsors</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.5.1...v1.6.5">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.5.1&new-version=1.6.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>
Signed-off-by: Scott Milliorn <scottmilliorn@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Scott Milliorn <scottmilliorn@gmail.com>
qiongshusheng pushed a commit to qiongshusheng/axios that referenced this pull request Feb 22, 2024
derevnjuk pushed a commit to NeuraLegion/har-sdk that referenced this pull request Mar 7, 2024
Bumps [axios](https://github.com/axios/axios) from 1.2.0 to 1.6.6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/WillianAgostini" title="+17/-2
([#6132](axios/axios#6132) )">Willian
Agostini</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+3/-0
([#6084](axios/axios#6084) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2>Release v1.6.2</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.3">1.6.3</a>
(2023-12-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Regular Expression Denial of Service (ReDoS) (<a
href="https://redirect.github.com/axios/axios/issues/6132">#6132</a>)
(<a
href="https://github.com/axios/axios/commit/5e7ad38fb0f819fceb19fb2ee5d5d38f56aa837d">5e7ad38</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+15/-6 ([#6145](axios/axios#6145)
)">Jay</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li><a
href="https://github.com/axios/axios/commit/8790b8e7847c7f450544e7195c837ffc10fcb160"><code>8790b8e</code></a>
chore(release): v1.6.4 (<a
href="https://redirect.github.com/axios/axios/issues/6173">#6173</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0ad520de0f087b7e012e432660e44631be7f689e"><code>0ad520d</code></a>
chore(ci): fix notify action; (<a
href="https://redirect.github.com/axios/axios/issues/6172">#6172</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e"><code>3c0c11c</code></a>
fix(security): fixed formToJSON prototype pollution vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.2.0...v1.6.6">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.2.0&new-version=1.6.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

You can trigger a rebase of this PR 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)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/NeuraLegion/har-sdk/network/alerts).

</details>

> **Note**
> Automatic rebases have been disabled on this pull request as it has
been open for over 30 days.

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Regular Expression Denial of Service (ReDoS) in axios/axios
4 participants