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 AxiosRequestHeaders & AxiosHeaders types; #5482

Merged
merged 12 commits into from
Jan 21, 2023

Conversation

DigitalBrainJS
Copy link
Collaborator

@DigitalBrainJS DigitalBrainJS commented Jan 20, 2023

const headers = new AxiosHeaders({foo: "bar"})

for (const [header, value] of headers) {
  console.log(header, value);
}
  • Improved AxiosRequestHeaders type to be able to handle assignment of an AxiosHeaders instance;
  const headers:AxiosRequestHeaders = new AxiosHeaders({x:1});

  headers.y = 2;

  headers.get('x');
  const requestInterceptorId: number = axios.interceptors.request.use(
      async (config) => {
        config.headers.Accept ="foo1";
        config.headers.setAccept("foo2");
        config.headers = new AxiosHeaders({x:1});
        config.headers.foo = "1";
        config.headers.set('bar', '2');
        // config.headers = {...config.headers, myHeader: "myValue"}; // throws type error in TS, but works in JS runtime, possible workaround:
         config.headers.set({myHeader: "myValue"})
        // config.headers = {myHeader: "myValue"}; // throws type error in TS, but works in JS runtime, possible workaround:
         config.headers = new AxiosHeaders({myHeader: "myValue"});
         // OR
         config.headers = {...config.headers} as AxiosRequestHeaders;
        // since Axios will automatically convert plain object headers to an AxiosHeaders instance after interceptors and transforms calls
        return config;
      },
      (error: any) => Promise.reject(error)
  );

// AxiosHeaders instance assigment

{
const requestInterceptorId: number = axios.interceptors.request.use(

Check notice

Code scanning / CodeQL

Unused variable, import, function or class

Unused variable requestInterceptorId.

Choose a reason for hiding this comment

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

     config.headers = {...config.headers} as AxiosRequestHeaders;

// AxiosHeaders instance assigment

{
const requestInterceptorId: number = axios.interceptors.request.use(

Check notice

Code scanning / CodeQL

Unused variable, import, function or class

Unused variable requestInterceptorId.

// iterator

const headers = new axios.AxiosHeaders({foo: "bar"})

Check notice

Code scanning / CodeQL

Semicolon insertion

Avoid automated semicolon insertion (99% of all statements in [the enclosing script](1) have an explicit semicolon).

// iterator

const headers = new AxiosHeaders({foo: "bar"})

Check notice

Code scanning / CodeQL

Semicolon insertion

Avoid automated semicolon insertion (99% of all statements in [the enclosing script](1) have an explicit semicolon).
fix(types): fixed `AxiosRequestHeaders` type;
@DigitalBrainJS DigitalBrainJS merged commit 6486929 into axios:v1.x Jan 21, 2023
mergify bot pushed a commit to alan-sdk/alan.dart that referenced this pull request Jan 24, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.3 to 1.2.4.
<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.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code> back to <code>AxiosRequestConfig</code>; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>) (<a href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>) (<a href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+242/-108 ([#5486](axios/axios#5486) [#5482](axios/axios#5482) )">Dmitriy Mozgovoy</a></li>
<li><img src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1 ([#5478](axios/axios#5478) )">Daniel Hillmann</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.2.3...v1.2.4">1.2.4</a> (2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code> back to <code>AxiosRequestConfig</code>; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>) (<a href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>) (<a href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+242/-108 ([#5486](axios/axios#5486) [#5482](axios/axios#5482) )">Dmitriy Mozgovoy</a></li>
<li><img src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1 ([#5478](axios/axios#5478) )">Daniel Hillmann</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/axios/axios/commit/6600d51e6bbb7db984484ea09f62ec22f9044ed8"><code>6600d51</code></a> [Release] v1.2.4 (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5487">#5487</a>)</li>
<li><a href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0"><code>2a71f49</code></a> fix(types): renamed <code>RawAxiosRequestConfig</code> back to <code>AxiosRequestConfig</code>; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5">#5</a>...</li>
<li><a href="https://github.com/axios/axios/commit/6486929f70b537c51fc964b559131f2391e7e2a7"><code>6486929</code></a> Fix AxiosRequestHeaders &amp; AxiosHeaders types; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5482">#5482</a>)</li>
<li><a href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b"><code>186ea06</code></a> fix AxiosRequestConfig generic (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)</li>
<li>See full diff in <a href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">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.3&new-version=1.2.4)](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 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-actions bot pushed a commit to Clumsy-Coder/pihole-dashboard that referenced this pull request Jan 25, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.3 to 1.2.4.
<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.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</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.2.3...v1.2.4">1.2.4</a>
(2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/6600d51e6bbb7db984484ea09f62ec22f9044ed8"><code>6600d51</code></a>
[Release] v1.2.4 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5487">#5487</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0"><code>2a71f49</code></a>
fix(types): renamed <code>RawAxiosRequestConfig</code> back to
<code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5">#5</a>...</li>
<li><a
href="https://github.com/axios/axios/commit/6486929f70b537c51fc964b559131f2391e7e2a7"><code>6486929</code></a>
Fix AxiosRequestHeaders &amp; AxiosHeaders types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5482">#5482</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b"><code>186ea06</code></a>
fix AxiosRequestConfig generic (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">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.3&new-version=1.2.4)](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 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>
absoludity pushed a commit to vmware-tanzu/kubeapps that referenced this pull request Jan 25, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.3 to 1.2.4.
<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.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</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.2.3...v1.2.4">1.2.4</a>
(2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/6600d51e6bbb7db984484ea09f62ec22f9044ed8"><code>6600d51</code></a>
[Release] v1.2.4 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5487">#5487</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0"><code>2a71f49</code></a>
fix(types): renamed <code>RawAxiosRequestConfig</code> back to
<code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5">#5</a>...</li>
<li><a
href="https://github.com/axios/axios/commit/6486929f70b537c51fc964b559131f2391e7e2a7"><code>6486929</code></a>
Fix AxiosRequestHeaders &amp; AxiosHeaders types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5482">#5482</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b"><code>186ea06</code></a>
fix AxiosRequestConfig generic (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">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.3&new-version=1.2.4)](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 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 roots/bud that referenced this pull request Jan 27, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.2 to 1.2.4.
<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.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code> back to <code>AxiosRequestConfig</code>; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>) (<a href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>) (<a href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+242/-108 ([#5486](axios/axios#5486) [#5482](axios/axios#5482) )">Dmitriy Mozgovoy</a></li>
<li><img src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1 ([#5478](axios/axios#5478) )">Daniel Hillmann</a></li>
</ul>
<h2>1.2.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosRequestConfig header interface by refactoring it to RawAxiosRequestConfig; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5420">#5420</a>) (<a href="https://github.com/axios/axios/commit/08119634a22f1d5b19f5c9ea0adccb6d3eebc3bc">0811963</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+938/-442 ([#5456](axios/axios#5456) [#5455](axios/axios#5455) [#5453](axios/axios#5453) [#5451](axios/axios#5451) [#5449](axios/axios#5449) [#5447](axios/axios#5447) [#5446](axios/axios#5446) [#5443](axios/axios#5443) [#5442](axios/axios#5442) [#5439](axios/axios#5439) [#5420](axios/axios#5420) )">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.2.3...v1.2.4">1.2.4</a> (2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code> back to <code>AxiosRequestConfig</code>; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>) (<a href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>) (<a href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+242/-108 ([#5486](axios/axios#5486) [#5482](axios/axios#5482) )">Dmitriy Mozgovoy</a></li>
<li><img src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1 ([#5478](axios/axios#5478) )">Daniel Hillmann</a></li>
</ul>
<h2><a href="https://github.com/axios/axios/compare/1.2.2...1.2.3">1.2.3</a> (2023-01-10)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosRequestConfig header interface by refactoring it to RawAxiosRequestConfig; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5420">#5420</a>) (<a href="https://github.com/axios/axios/commit/08119634a22f1d5b19f5c9ea0adccb6d3eebc3bc">0811963</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+938/-442 ([#5456](axios/axios#5456) [#5455](axios/axios#5455) [#5453](axios/axios#5453) [#5451](axios/axios#5451) [#5449](axios/axios#5449) [#5447](axios/axios#5447) [#5446](axios/axios#5446) [#5443](axios/axios#5443) [#5442](axios/axios#5442) [#5439](axios/axios#5439) [#5420](axios/axios#5420) )">Dmitriy Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/axios/axios/commit/6600d51e6bbb7db984484ea09f62ec22f9044ed8"><code>6600d51</code></a> [Release] v1.2.4 (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5487">#5487</a>)</li>
<li><a href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0"><code>2a71f49</code></a> fix(types): renamed <code>RawAxiosRequestConfig</code> back to <code>AxiosRequestConfig</code>; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5">#5</a>...</li>
<li><a href="https://github.com/axios/axios/commit/6486929f70b537c51fc964b559131f2391e7e2a7"><code>6486929</code></a> Fix AxiosRequestHeaders &amp; AxiosHeaders types; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5482">#5482</a>)</li>
<li><a href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b"><code>186ea06</code></a> fix AxiosRequestConfig generic (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)</li>
<li><a href="https://github.com/axios/axios/commit/557ed0a7489b1bf62296ea34568eeea8975ff4f9"><code>557ed0a</code></a> chore(ci): fixed publish action; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5470">#5470</a>)</li>
<li><a href="https://github.com/axios/axios/commit/484e0b6ed24745df9cadaacc0fbf129114e70d00"><code>484e0b6</code></a> chore(release): v1.2.3 (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5459">#5459</a>)</li>
<li><a href="https://github.com/axios/axios/commit/d83316db4a242252db3a2ed7728cb43f8f8f4189"><code>d83316d</code></a> chore(ci): enabled npm publishing;  (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5460">#5460</a>)</li>
<li><a href="https://github.com/axios/axios/commit/d750901deda2994a2d89643e8f18723cfb6b2732"><code>d750901</code></a> chore(ci): added an action to make GitHub &amp; NPM releases when merging a relea...</li>
<li><a href="https://github.com/axios/axios/commit/477c71427dc1d03e0f3dced0d65bd7c1b99fd900"><code>477c714</code></a> chore(ci): fixed error in generating changelog with unnecessary spaces; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5455">#5455</a>)</li>
<li><a href="https://github.com/axios/axios/commit/e2a1e280f6dfbb4f11ad541dec9541cdbf760ab1"><code>e2a1e28</code></a> chore(ci): improved contributors &amp; PRs sections generator; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5453">#5453</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/axios/axios/compare/1.2.2...v1.2.4">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.2&new-version=1.2.4)](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 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>
osyrisrblx pushed a commit to roblox-ts/types that referenced this pull request Jan 29, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.3 to 1.2.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.2.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosHeaders to handle spread syntax
by making all methods non-enumerable; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5499">#5499</a>)
(<a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+82/-54 ([#5499](axios/axios#5499)
)">Dmitriy Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/EFord36" title="+1/-1
([#5462](axios/axios#5462) )">Elliot
Ford</a></li>
</ul>
<h2>Release v1.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</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.2.4...v1.2.5">1.2.5</a>
(2023-01-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosHeaders to handle spread syntax
by making all methods non-enumerable; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5499">#5499</a>)
(<a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+82/-54 ([#5499](axios/axios#5499)
)">Dmitriy Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/EFord36" title="+1/-1
([#5462](axios/axios#5462) )">Elliot
Ford</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">1.2.4</a>
(2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/366161e5e48f818fa42c906e91b71f7876aadabb"><code>366161e</code></a>
chore(release): v1.2.5 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5500">#5500</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/18c1710f244f54d5891a017714bb58f21f5039bd"><code>18c1710</code></a>
docs: fix GitHub workflow badges (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5462">#5462</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22"><code>580f1e8</code></a>
fix(types): fixed AxiosHeaders to handle spread syntax by making all
methods ...</li>
<li><a
href="https://github.com/axios/axios/commit/6600d51e6bbb7db984484ea09f62ec22f9044ed8"><code>6600d51</code></a>
[Release] v1.2.4 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5487">#5487</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0"><code>2a71f49</code></a>
fix(types): renamed <code>RawAxiosRequestConfig</code> back to
<code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5">#5</a>...</li>
<li><a
href="https://github.com/axios/axios/commit/6486929f70b537c51fc964b559131f2391e7e2a7"><code>6486929</code></a>
Fix AxiosRequestHeaders &amp; AxiosHeaders types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5482">#5482</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b"><code>186ea06</code></a>
fix AxiosRequestConfig generic (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.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.2.3&new-version=1.2.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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 30, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.2 to 1.2.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.2.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> added missed Authorization accessor; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>) (<a href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26">342c0ba</a>)</li>
<li><strong>types:</strong> fixed <code>CommonRequestHeadersList</code> &amp; <code>CommonResponseHeadersList</code> types to be private in commonJS; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5503">#5503</a>) (<a href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c">5a3d0a3</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+24/-9 ([#5503](axios/axios#5503) [#5502](axios/axios#5502) )">Dmitriy Mozgovoy</a></li>
</ul>
<h2>Release v1.2.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosHeaders to handle spread syntax by making all methods non-enumerable; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5499">#5499</a>) (<a href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+82/-54 ([#5499](axios/axios#5499) )">Dmitriy Mozgovoy</a></li>
<li><img src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/EFord36" title="+1/-1 ([#5462](axios/axios#5462) )">Elliot Ford</a></li>
</ul>
<h2>Release v1.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code> back to <code>AxiosRequestConfig</code>; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>) (<a href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>) (<a href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+242/-108 ([#5486](axios/axios#5486) [#5482](axios/axios#5482) )">Dmitriy Mozgovoy</a></li>
<li><img src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1 ([#5478](axios/axios#5478) )">Daniel Hillmann</a></li>
</ul>
<h2>1.2.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosRequestConfig header interface by refactoring it to RawAxiosRequestConfig; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5420">#5420</a>) (<a href="https://github.com/axios/axios/commit/08119634a22f1d5b19f5c9ea0adccb6d3eebc3bc">0811963</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+938/-442 ([#5456](axios/axios#5456) [#5455](axios/axios#5455) [#5453](axios/axios#5453) [#5451](axios/axios#5451) [#5449](axios/axios#5449) [#5447](axios/axios#5447) [#5446](axios/axios#5446) [#5443](axios/axios#5443) [#5442](axios/axios#5442) [#5439](axios/axios#5439) [#5420](axios/axios#5420) )">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.2.5...v1.2.6">1.2.6</a> (2023-01-28)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> added missed Authorization accessor; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>) (<a href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26">342c0ba</a>)</li>
<li><strong>types:</strong> fixed <code>CommonRequestHeadersList</code> &amp; <code>CommonResponseHeadersList</code> types to be private in commonJS; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5503">#5503</a>) (<a href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c">5a3d0a3</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+24/-9 ([#5503](axios/axios#5503) [#5502](axios/axios#5502) )">Dmitriy Mozgovoy</a></li>
</ul>
<h2><a href="https://github.com/axios/axios/compare/v1.2.4...v1.2.5">1.2.5</a> (2023-01-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosHeaders to handle spread syntax by making all methods non-enumerable; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5499">#5499</a>) (<a href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+82/-54 ([#5499](axios/axios#5499) )">Dmitriy Mozgovoy</a></li>
<li><img src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/EFord36" title="+1/-1 ([#5462](axios/axios#5462) )">Elliot Ford</a></li>
</ul>
<h2><a href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">1.2.4</a> (2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code> back to <code>AxiosRequestConfig</code>; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>) (<a href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>) (<a href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+242/-108 ([#5486](axios/axios#5486) [#5482](axios/axios#5482) )">Dmitriy Mozgovoy</a></li>
<li><img src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1 ([#5478](axios/axios#5478) )">Daniel Hillmann</a></li>
</ul>
<h2><a href="https://github.com/axios/axios/compare/1.2.2...1.2.3">1.2.3</a> (2023-01-10)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosRequestConfig header interface by refactoring it to RawAxiosRequestConfig; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5420">#5420</a>) (<a href="https://github.com/axios/axios/commit/08119634a22f1d5b19f5c9ea0adccb6d3eebc3bc">0811963</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16" alt="avatar" /> <a href="https://github.com/DigitalBrainJS" title="+938/-442 ([#5456](axios/axios#5456) [#5455](axios/axios#5455) [#5453](axios/axios#5453) [#5451](axios/axios#5451) [#5449](axios/axios#5449) [#5447](axios/axios#5447) [#5446](axios/axios#5446) [#5443](axios/axios#5443) [#5442](axios/axios#5442) [#5439](axios/axios#5439) [#5420](axios/axios#5420) )">Dmitriy Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/axios/axios/commit/5bde91cac787d92ae56c6cb293941244cc4c617d"><code>5bde91c</code></a> chore(release): v1.2.6 (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5505">#5505</a>)</li>
<li><a href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c"><code>5a3d0a3</code></a> fix(types): fixed <code>CommonRequestHeadersList</code> &amp; <code>CommonResponseHeadersList</code> ty...</li>
<li><a href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26"><code>342c0ba</code></a> fix(headers): added missed Authorization accessor; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>)</li>
<li><a href="https://github.com/axios/axios/commit/a105feb7b5f8abca95a30d476707288268123892"><code>a105feb</code></a> chore(deps): bump ua-parser-js from 0.7.31 to 0.7.33 (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5493">#5493</a>)</li>
<li><a href="https://github.com/axios/axios/commit/366161e5e48f818fa42c906e91b71f7876aadabb"><code>366161e</code></a> chore(release): v1.2.5 (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5500">#5500</a>)</li>
<li><a href="https://github.com/axios/axios/commit/18c1710f244f54d5891a017714bb58f21f5039bd"><code>18c1710</code></a> docs: fix GitHub workflow badges (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5462">#5462</a>)</li>
<li><a href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22"><code>580f1e8</code></a> fix(types): fixed AxiosHeaders to handle spread syntax by making all methods ...</li>
<li><a href="https://github.com/axios/axios/commit/6600d51e6bbb7db984484ea09f62ec22f9044ed8"><code>6600d51</code></a> [Release] v1.2.4 (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5487">#5487</a>)</li>
<li><a href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0"><code>2a71f49</code></a> fix(types): renamed <code>RawAxiosRequestConfig</code> back to <code>AxiosRequestConfig</code>; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5">#5</a>...</li>
<li><a href="https://github.com/axios/axios/commit/6486929f70b537c51fc964b559131f2391e7e2a7"><code>6486929</code></a> Fix AxiosRequestHeaders &amp; AxiosHeaders types; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5482">#5482</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/axios/axios/compare/1.2.2...v1.2.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.2&new-version=1.2.6)](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 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>
ErikFortune added a commit to ErikFortune/ts-bcp47 that referenced this pull request Jan 31, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.3 to 1.2.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.2.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> added missed Authorization accessor; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>)
(<a
href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26">342c0ba</a>)</li>
<li><strong>types:</strong> fixed <code>CommonRequestHeadersList</code>
&amp; <code>CommonResponseHeadersList</code> types to be private in
commonJS; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5503">#5503</a>)
(<a
href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c">5a3d0a3</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+24/-9 ([#5503](axios/axios#5503)
[#5502](axios/axios#5502) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2>Release v1.2.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosHeaders to handle spread syntax
by making all methods non-enumerable; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5499">#5499</a>)
(<a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+82/-54 ([#5499](axios/axios#5499)
)">Dmitriy Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/EFord36" title="+1/-1
([#5462](axios/axios#5462) )">Elliot
Ford</a></li>
</ul>
<h2>Release v1.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</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.2.5...v1.2.6">1.2.6</a>
(2023-01-28)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> added missed Authorization accessor; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>)
(<a
href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26">342c0ba</a>)</li>
<li><strong>types:</strong> fixed <code>CommonRequestHeadersList</code>
&amp; <code>CommonResponseHeadersList</code> types to be private in
commonJS; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5503">#5503</a>)
(<a
href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c">5a3d0a3</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+24/-9 ([#5503](axios/axios#5503)
[#5502](axios/axios#5502) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.2.4...v1.2.5">1.2.5</a>
(2023-01-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosHeaders to handle spread syntax
by making all methods non-enumerable; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5499">#5499</a>)
(<a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+82/-54 ([#5499](axios/axios#5499)
)">Dmitriy Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/EFord36" title="+1/-1
([#5462](axios/axios#5462) )">Elliot
Ford</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">1.2.4</a>
(2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/5bde91cac787d92ae56c6cb293941244cc4c617d"><code>5bde91c</code></a>
chore(release): v1.2.6 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5505">#5505</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c"><code>5a3d0a3</code></a>
fix(types): fixed <code>CommonRequestHeadersList</code> &amp;
<code>CommonResponseHeadersList</code> ty...</li>
<li><a
href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26"><code>342c0ba</code></a>
fix(headers): added missed Authorization accessor; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a105feb7b5f8abca95a30d476707288268123892"><code>a105feb</code></a>
chore(deps): bump ua-parser-js from 0.7.31 to 0.7.33 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5493">#5493</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/366161e5e48f818fa42c906e91b71f7876aadabb"><code>366161e</code></a>
chore(release): v1.2.5 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5500">#5500</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/18c1710f244f54d5891a017714bb58f21f5039bd"><code>18c1710</code></a>
docs: fix GitHub workflow badges (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5462">#5462</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22"><code>580f1e8</code></a>
fix(types): fixed AxiosHeaders to handle spread syntax by making all
methods ...</li>
<li><a
href="https://github.com/axios/axios/commit/6600d51e6bbb7db984484ea09f62ec22f9044ed8"><code>6600d51</code></a>
[Release] v1.2.4 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5487">#5487</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0"><code>2a71f49</code></a>
fix(types): renamed <code>RawAxiosRequestConfig</code> back to
<code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5">#5</a>...</li>
<li><a
href="https://github.com/axios/axios/commit/6486929f70b537c51fc964b559131f2391e7e2a7"><code>6486929</code></a>
Fix AxiosRequestHeaders &amp; AxiosHeaders types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5482">#5482</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.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.3&new-version=1.2.6)](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 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: Erik Fortune <ErikFortune@outlook.com>
absoludity pushed a commit to vmware-tanzu/kubeapps that referenced this pull request Feb 1, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.3 to 1.3.0.
<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.3.0</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> fixed &amp; optimized clear method; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5507">#5507</a>)
(<a
href="https://github.com/axios/axios/commit/9915635c69d0ab70daca5738488421f67ca60959">9915635</a>)</li>
<li><strong>http:</strong> add zlib headers if missing (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5497">#5497</a>)
(<a
href="https://github.com/axios/axios/commit/65e8d1e28ce829f47a837e45129730e541950d3c">65e8d1e</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>fomdata:</strong> added support for spec-compliant FormData
&amp; Blob types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5316">#5316</a>)
(<a
href="https://github.com/axios/axios/commit/6ac574e00a06731288347acea1e8246091196953">6ac574e</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+352/-67
([#5514](axios/axios#5514)
[#5512](axios/axios#5512)
[#5510](axios/axios#5510)
[#5509](axios/axios#5509)
[#5508](axios/axios#5508)
[#5316](axios/axios#5316)
[#5507](axios/axios#5507) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/ItsNotGoodName" title="+43/-2
([#5497](axios/axios#5497)
)">ItsNotGoodName</a></li>
</ul>
<h2>Release v1.2.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> added missed Authorization accessor; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>)
(<a
href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26">342c0ba</a>)</li>
<li><strong>types:</strong> fixed <code>CommonRequestHeadersList</code>
&amp; <code>CommonResponseHeadersList</code> types to be private in
commonJS; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5503">#5503</a>)
(<a
href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c">5a3d0a3</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+24/-9 ([#5503](axios/axios#5503)
[#5502](axios/axios#5502) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2>Release v1.2.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosHeaders to handle spread syntax
by making all methods non-enumerable; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5499">#5499</a>)
(<a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+82/-54 ([#5499](axios/axios#5499)
)">Dmitriy Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/EFord36" title="+1/-1
([#5462](axios/axios#5462) )">Elliot
Ford</a></li>
</ul>
<h2>Release v1.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</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>
<h1><a
href="https://github.com/axios/axios/compare/v1.2.6...v1.3.0">1.3.0</a>
(2023-01-31)</h1>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> fixed &amp; optimized clear method; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5507">#5507</a>)
(<a
href="https://github.com/axios/axios/commit/9915635c69d0ab70daca5738488421f67ca60959">9915635</a>)</li>
<li><strong>http:</strong> add zlib headers if missing (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5497">#5497</a>)
(<a
href="https://github.com/axios/axios/commit/65e8d1e28ce829f47a837e45129730e541950d3c">65e8d1e</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>fomdata:</strong> added support for spec-compliant FormData
&amp; Blob types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5316">#5316</a>)
(<a
href="https://github.com/axios/axios/commit/6ac574e00a06731288347acea1e8246091196953">6ac574e</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+352/-67
([#5514](axios/axios#5514)
[#5512](axios/axios#5512)
[#5510](axios/axios#5510)
[#5509](axios/axios#5509)
[#5508](axios/axios#5508)
[#5316](axios/axios#5316)
[#5507](axios/axios#5507) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/ItsNotGoodName" title="+43/-2
([#5497](axios/axios#5497)
)">ItsNotGoodName</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.2.5...v1.2.6">1.2.6</a>
(2023-01-28)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> added missed Authorization accessor; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>)
(<a
href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26">342c0ba</a>)</li>
<li><strong>types:</strong> fixed <code>CommonRequestHeadersList</code>
&amp; <code>CommonResponseHeadersList</code> types to be private in
commonJS; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5503">#5503</a>)
(<a
href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c">5a3d0a3</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+24/-9 ([#5503](axios/axios#5503)
[#5502](axios/axios#5502) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.2.4...v1.2.5">1.2.5</a>
(2023-01-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosHeaders to handle spread syntax
by making all methods non-enumerable; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5499">#5499</a>)
(<a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+82/-54 ([#5499](axios/axios#5499)
)">Dmitriy Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/EFord36" title="+1/-1
([#5462](axios/axios#5462) )">Elliot
Ford</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">1.2.4</a>
(2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</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/7fbfbbeff69904cd64e8ac62da8969a1e633ee23"><code>7fbfbbe</code></a>
chore(release): v1.3.0 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5513">#5513</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/926347315405e43842373b646c8a23d3700ab53f"><code>9263473</code></a>
chore(ci): fixed contributors avatar rendering for CHANGELOG.md; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5514">#5514</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/995737726024c6741cf4a09508d004c4f1323ffb"><code>9957377</code></a>
chore(ci): change release-it git config; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5512">#5512</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/46a650cf338953e69a22d3623a1810578b9b072e"><code>46a650c</code></a>
chore(ci): prepare package-lock.json for commit on build stage; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5510">#5510</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/4bf50524e20cfd5436f71cda9a79f23452f0eb3e"><code>4bf5052</code></a>
chore(ci): add git diff echo; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5509">#5509</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/91d6009c43fd1e8ca76cfaeaab66ce228593d8f6"><code>91d6009</code></a>
chore(ci): add git status echo; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5508">#5508</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/6ac574e00a06731288347acea1e8246091196953"><code>6ac574e</code></a>
feat(fomdata): added support for spec-compliant FormData &amp; Blob
types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5316">#5316</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/65e8d1e28ce829f47a837e45129730e541950d3c"><code>65e8d1e</code></a>
fix(http): add zlib headers if missing (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5497">#5497</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/9915635c69d0ab70daca5738488421f67ca60959"><code>9915635</code></a>
fix(headers): fixed &amp; optimized clear method; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5507">#5507</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5bde91cac787d92ae56c6cb293941244cc4c617d"><code>5bde91c</code></a>
chore(release): v1.2.6 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5505">#5505</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.2.3...v1.3.0">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.3&new-version=1.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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: Antonio Gamez Diaz <agamez@vmware.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Antonio Gamez Diaz <agamez@vmware.com>
ghost pushed a commit to Revolt-Unofficial-Clients/Solenoid that referenced this pull request Feb 2, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.2 to 1.2.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.2.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> added missed Authorization accessor; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>)
(<a
href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26">342c0ba</a>)</li>
<li><strong>types:</strong> fixed <code>CommonRequestHeadersList</code>
&amp; <code>CommonResponseHeadersList</code> types to be private in
commonJS; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5503">#5503</a>)
(<a
href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c">5a3d0a3</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+24/-9 ([#5503](axios/axios#5503)
[#5502](axios/axios#5502) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2>Release v1.2.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosHeaders to handle spread syntax
by making all methods non-enumerable; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5499">#5499</a>)
(<a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+82/-54 ([#5499](axios/axios#5499)
)">Dmitriy Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/EFord36" title="+1/-1
([#5462](axios/axios#5462) )">Elliot
Ford</a></li>
</ul>
<h2>Release v1.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</a></li>
</ul>
<h2>1.2.3</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosRequestConfig header interface by
refactoring it to RawAxiosRequestConfig; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5420">#5420</a>)
(<a
href="https://github.com/axios/axios/commit/08119634a22f1d5b19f5c9ea0adccb6d3eebc3bc">0811963</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+938/-442 ([#5456](axios/axios#5456)
[#5455](axios/axios#5455)
[#5453](axios/axios#5453)
[#5451](axios/axios#5451)
[#5449](axios/axios#5449)
[#5447](axios/axios#5447)
[#5446](axios/axios#5446)
[#5443](axios/axios#5443)
[#5442](axios/axios#5442)
[#5439](axios/axios#5439)
[#5420](axios/axios#5420) )">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.2.5...v1.2.6">1.2.6</a>
(2023-01-28)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> added missed Authorization accessor; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>)
(<a
href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26">342c0ba</a>)</li>
<li><strong>types:</strong> fixed <code>CommonRequestHeadersList</code>
&amp; <code>CommonResponseHeadersList</code> types to be private in
commonJS; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5503">#5503</a>)
(<a
href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c">5a3d0a3</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+24/-9 ([#5503](axios/axios#5503)
[#5502](axios/axios#5502) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.2.4...v1.2.5">1.2.5</a>
(2023-01-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosHeaders to handle spread syntax
by making all methods non-enumerable; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5499">#5499</a>)
(<a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+82/-54 ([#5499](axios/axios#5499)
)">Dmitriy Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/EFord36" title="+1/-1
([#5462](axios/axios#5462) )">Elliot
Ford</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">1.2.4</a>
(2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/1.2.2...1.2.3">1.2.3</a>
(2023-01-10)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosRequestConfig header interface by
refactoring it to RawAxiosRequestConfig; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5420">#5420</a>)
(<a
href="https://github.com/axios/axios/commit/08119634a22f1d5b19f5c9ea0adccb6d3eebc3bc">0811963</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+938/-442 ([#5456](axios/axios#5456)
[#5455](axios/axios#5455)
[#5453](axios/axios#5453)
[#5451](axios/axios#5451)
[#5449](axios/axios#5449)
[#5447](axios/axios#5447)
[#5446](axios/axios#5446)
[#5443](axios/axios#5443)
[#5442](axios/axios#5442)
[#5439](axios/axios#5439)
[#5420](axios/axios#5420) )">Dmitriy
Mozgovoy</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/5bde91cac787d92ae56c6cb293941244cc4c617d"><code>5bde91c</code></a>
chore(release): v1.2.6 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5505">#5505</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c"><code>5a3d0a3</code></a>
fix(types): fixed <code>CommonRequestHeadersList</code> &amp;
<code>CommonResponseHeadersList</code> ty...</li>
<li><a
href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26"><code>342c0ba</code></a>
fix(headers): added missed Authorization accessor; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a105feb7b5f8abca95a30d476707288268123892"><code>a105feb</code></a>
chore(deps): bump ua-parser-js from 0.7.31 to 0.7.33 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5493">#5493</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/366161e5e48f818fa42c906e91b71f7876aadabb"><code>366161e</code></a>
chore(release): v1.2.5 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5500">#5500</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/18c1710f244f54d5891a017714bb58f21f5039bd"><code>18c1710</code></a>
docs: fix GitHub workflow badges (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5462">#5462</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22"><code>580f1e8</code></a>
fix(types): fixed AxiosHeaders to handle spread syntax by making all
methods ...</li>
<li><a
href="https://github.com/axios/axios/commit/6600d51e6bbb7db984484ea09f62ec22f9044ed8"><code>6600d51</code></a>
[Release] v1.2.4 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5487">#5487</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0"><code>2a71f49</code></a>
fix(types): renamed <code>RawAxiosRequestConfig</code> back to
<code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5">#5</a>...</li>
<li><a
href="https://github.com/axios/axios/commit/6486929f70b537c51fc964b559131f2391e7e2a7"><code>6486929</code></a>
Fix AxiosRequestHeaders &amp; AxiosHeaders types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5482">#5482</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/1.2.2...v1.2.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.2&new-version=1.2.6)](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 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>
jharley pushed a commit to honeycombio/gha-create-asana-task that referenced this pull request Feb 13, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.0 to 1.3.0.
<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.3.0</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> fixed &amp; optimized clear method; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5507">#5507</a>)
(<a
href="https://github.com/axios/axios/commit/9915635c69d0ab70daca5738488421f67ca60959">9915635</a>)</li>
<li><strong>http:</strong> add zlib headers if missing (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5497">#5497</a>)
(<a
href="https://github.com/axios/axios/commit/65e8d1e28ce829f47a837e45129730e541950d3c">65e8d1e</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>fomdata:</strong> added support for spec-compliant FormData
&amp; Blob types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5316">#5316</a>)
(<a
href="https://github.com/axios/axios/commit/6ac574e00a06731288347acea1e8246091196953">6ac574e</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+352/-67
([#5514](axios/axios#5514)
[#5512](axios/axios#5512)
[#5510](axios/axios#5510)
[#5509](axios/axios#5509)
[#5508](axios/axios#5508)
[#5316](axios/axios#5316)
[#5507](axios/axios#5507) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/ItsNotGoodName" title="+43/-2
([#5497](axios/axios#5497)
)">ItsNotGoodName</a></li>
</ul>
<h2>Release v1.2.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> added missed Authorization accessor; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>)
(<a
href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26">342c0ba</a>)</li>
<li><strong>types:</strong> fixed <code>CommonRequestHeadersList</code>
&amp; <code>CommonResponseHeadersList</code> types to be private in
commonJS; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5503">#5503</a>)
(<a
href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c">5a3d0a3</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+24/-9 ([#5503](axios/axios#5503)
[#5502](axios/axios#5502) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2>Release v1.2.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosHeaders to handle spread syntax
by making all methods non-enumerable; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5499">#5499</a>)
(<a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+82/-54 ([#5499](axios/axios#5499)
)">Dmitriy Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/EFord36" title="+1/-1
([#5462](axios/axios#5462) )">Elliot
Ford</a></li>
</ul>
<h2>Release v1.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</a></li>
</ul>
<!-- 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>
<h1><a
href="https://github.com/axios/axios/compare/v1.2.6...v1.3.0">1.3.0</a>
(2023-01-31)</h1>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> fixed &amp; optimized clear method; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5507">#5507</a>)
(<a
href="https://github.com/axios/axios/commit/9915635c69d0ab70daca5738488421f67ca60959">9915635</a>)</li>
<li><strong>http:</strong> add zlib headers if missing (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5497">#5497</a>)
(<a
href="https://github.com/axios/axios/commit/65e8d1e28ce829f47a837e45129730e541950d3c">65e8d1e</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li><strong>fomdata:</strong> added support for spec-compliant FormData
&amp; Blob types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5316">#5316</a>)
(<a
href="https://github.com/axios/axios/commit/6ac574e00a06731288347acea1e8246091196953">6ac574e</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+352/-67
([#5514](axios/axios#5514)
[#5512](axios/axios#5512)
[#5510](axios/axios#5510)
[#5509](axios/axios#5509)
[#5508](axios/axios#5508)
[#5316](axios/axios#5316)
[#5507](axios/axios#5507) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/ItsNotGoodName" title="+43/-2
([#5497](axios/axios#5497)
)">ItsNotGoodName</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.2.5...v1.2.6">1.2.6</a>
(2023-01-28)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> added missed Authorization accessor; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5502">#5502</a>)
(<a
href="https://github.com/axios/axios/commit/342c0ba9a16ea50f5ed7d2366c5c1a2c877e3f26">342c0ba</a>)</li>
<li><strong>types:</strong> fixed <code>CommonRequestHeadersList</code>
&amp; <code>CommonResponseHeadersList</code> types to be private in
commonJS; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5503">#5503</a>)
(<a
href="https://github.com/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c">5a3d0a3</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+24/-9 ([#5503](axios/axios#5503)
[#5502](axios/axios#5502) )">Dmitriy
Mozgovoy</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.2.4...v1.2.5">1.2.5</a>
(2023-01-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> fixed AxiosHeaders to handle spread syntax
by making all methods non-enumerable; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5499">#5499</a>)
(<a
href="https://github.com/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+82/-54 ([#5499](axios/axios#5499)
)">Dmitriy Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/EFord36" title="+1/-1
([#5462](axios/axios#5462) )">Elliot
Ford</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">1.2.4</a>
(2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</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/7fbfbbeff69904cd64e8ac62da8969a1e633ee23"><code>7fbfbbe</code></a>
chore(release): v1.3.0 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5513">#5513</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/926347315405e43842373b646c8a23d3700ab53f"><code>9263473</code></a>
chore(ci): fixed contributors avatar rendering for CHANGELOG.md; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5514">#5514</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/995737726024c6741cf4a09508d004c4f1323ffb"><code>9957377</code></a>
chore(ci): change release-it git config; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5512">#5512</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/46a650cf338953e69a22d3623a1810578b9b072e"><code>46a650c</code></a>
chore(ci): prepare package-lock.json for commit on build stage; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5510">#5510</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/4bf50524e20cfd5436f71cda9a79f23452f0eb3e"><code>4bf5052</code></a>
chore(ci): add git diff echo; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5509">#5509</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/91d6009c43fd1e8ca76cfaeaab66ce228593d8f6"><code>91d6009</code></a>
chore(ci): add git status echo; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5508">#5508</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/6ac574e00a06731288347acea1e8246091196953"><code>6ac574e</code></a>
feat(fomdata): added support for spec-compliant FormData &amp; Blob
types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5316">#5316</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/65e8d1e28ce829f47a837e45129730e541950d3c"><code>65e8d1e</code></a>
fix(http): add zlib headers if missing (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5497">#5497</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/9915635c69d0ab70daca5738488421f67ca60959"><code>9915635</code></a>
fix(headers): fixed &amp; optimized clear method; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5507">#5507</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/5bde91cac787d92ae56c6cb293941244cc4c617d"><code>5bde91c</code></a>
chore(release): v1.2.6 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5505">#5505</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.2.0...v1.3.0">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.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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>
Clumsy-Coder pushed a commit to Clumsy-Coder/pihole-dashboard that referenced this pull request Feb 21, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.3 to 1.2.4.
<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.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</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.2.3...v1.2.4">1.2.4</a>
(2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/6600d51e6bbb7db984484ea09f62ec22f9044ed8"><code>6600d51</code></a>
[Release] v1.2.4 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5487">#5487</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0"><code>2a71f49</code></a>
fix(types): renamed <code>RawAxiosRequestConfig</code> back to
<code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5">#5</a>...</li>
<li><a
href="https://github.com/axios/axios/commit/6486929f70b537c51fc964b559131f2391e7e2a7"><code>6486929</code></a>
Fix AxiosRequestHeaders &amp; AxiosHeaders types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5482">#5482</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b"><code>186ea06</code></a>
fix AxiosRequestConfig generic (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">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.3&new-version=1.2.4)](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 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>
Clumsy-Coder pushed a commit to Clumsy-Coder/pihole-dashboard that referenced this pull request Feb 21, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.3 to 1.2.4.
<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.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</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.2.3...v1.2.4">1.2.4</a>
(2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/6600d51e6bbb7db984484ea09f62ec22f9044ed8"><code>6600d51</code></a>
[Release] v1.2.4 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5487">#5487</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0"><code>2a71f49</code></a>
fix(types): renamed <code>RawAxiosRequestConfig</code> back to
<code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5">#5</a>...</li>
<li><a
href="https://github.com/axios/axios/commit/6486929f70b537c51fc964b559131f2391e7e2a7"><code>6486929</code></a>
Fix AxiosRequestHeaders &amp; AxiosHeaders types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5482">#5482</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b"><code>186ea06</code></a>
fix AxiosRequestConfig generic (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">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.3&new-version=1.2.4)](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 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>
Clumsy-Coder pushed a commit to Clumsy-Coder/pihole-dashboard that referenced this pull request Jul 29, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.3 to 1.2.4.
<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.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</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.2.3...v1.2.4">1.2.4</a>
(2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/6600d51e6bbb7db984484ea09f62ec22f9044ed8"><code>6600d51</code></a>
[Release] v1.2.4 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5487">#5487</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0"><code>2a71f49</code></a>
fix(types): renamed <code>RawAxiosRequestConfig</code> back to
<code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5">#5</a>...</li>
<li><a
href="https://github.com/axios/axios/commit/6486929f70b537c51fc964b559131f2391e7e2a7"><code>6486929</code></a>
Fix AxiosRequestHeaders &amp; AxiosHeaders types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5482">#5482</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b"><code>186ea06</code></a>
fix AxiosRequestConfig generic (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">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.3&new-version=1.2.4)](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 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>
Clumsy-Coder pushed a commit to Clumsy-Coder/pihole-dashboard that referenced this pull request Aug 20, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.3 to 1.2.4.
<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.2.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</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.2.3...v1.2.4">1.2.4</a>
(2023-01-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> renamed <code>RawAxiosRequestConfig</code>
back to <code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5486">#5486</a>)
(<a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)
(<a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/DigitalBrainJS"
title="+242/-108 ([#5486](axios/axios#5486)
[#5482](axios/axios#5482) )">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/hilleer" title="+1/-1
([#5478](axios/axios#5478) )">Daniel
Hillmann</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/6600d51e6bbb7db984484ea09f62ec22f9044ed8"><code>6600d51</code></a>
[Release] v1.2.4 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5487">#5487</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0"><code>2a71f49</code></a>
fix(types): renamed <code>RawAxiosRequestConfig</code> back to
<code>AxiosRequestConfig</code>; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5">#5</a>...</li>
<li><a
href="https://github.com/axios/axios/commit/6486929f70b537c51fc964b559131f2391e7e2a7"><code>6486929</code></a>
Fix AxiosRequestHeaders &amp; AxiosHeaders types; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5482">#5482</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b"><code>186ea06</code></a>
fix AxiosRequestConfig generic (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5478">#5478</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.2.3...v1.2.4">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.3&new-version=1.2.4)](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 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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

axios 1.2.3 causes an AxiosHeader error
2 participants