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(types): fixed AxiosRequestConfig header interface by refactoring it to RawAxiosRequestConfig; #5420

Merged
merged 11 commits into from Jan 6, 2023

Conversation

DigitalBrainJS
Copy link
Collaborator

@DigitalBrainJS DigitalBrainJS commented Dec 29, 2022

  • Refactored AxiosRequestConfig to RawAxiosRequestConfig interface;
  • Re-added AxiosRequestConfig as a subinterface of RawAxiosRequestConfig;
export interface AxiosRequestConfig<D = any> extends RawAxiosRequestConfig {
  headers: AxiosRequestHeaders;
}
axios.interceptors.request.use((req: AxiosRequestConfig) => {
  req.headers.set('foo', 'bar');
  req.headers['Content-Type'] = 123;
  return req;
});

Fixes #5415

Copy link

@github-advanced-security github-advanced-security bot left a comment

Choose a reason for hiding this comment

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

CodeQL found more than 10 potential problems in the proposed changes. Check the Files changed tab for more details.

@tada5hi
Copy link

tada5hi commented Dec 30, 2022

@DigitalBrainJS would be great to merge this fix soon ✌️

@karlhorky
Copy link
Contributor

Maybe the description should be edited here to also add:

Fixes #5416

JiPaix added a commit to JiPaix/Fukayo that referenced this pull request Dec 31, 2022
@xgenem
Copy link

xgenem commented Jan 2, 2023

This would be nice since you no longer have to typecast it like what I did.

@jonesmac
Copy link

jonesmac commented Jan 2, 2023

@DigitalBrainJS thanks for hoping on this so quick. I've spent some time looking over this issue and it looks like it stems back from trying to support AxiosHeaders class as a valid type of header property on the AxiosRequestConfig type. I wonder if there's really any value to supporting this use case?

7a2f901#diff-243f86a2e64131743ca04681df5d21438e79fcabe06f18029cb8dcef6a70121fR351

I've seen other request libraries express headers as an Object/Map so is there really value to supporting a custom class like AxiosHeaders in the config? In my case, as a library that wants to allow consumers to pass an axios config but add my custom headers (i.e. CONTENT-TYPE / AUTHORIZATION), the library will need to detect which type of header collection you are passing (Record or AxiosHeaders) and update accordingly.

If you think you need to support both, I'd suggest making the AxiosHeaders constructor accept the other AxiosRequestConfig['headers'] type of RawAxiosRequestHeaders. Right now it only takes type RawAxiosHeaders = Record<string, AxiosHeaderValue> which doesn't sufficiently overlap type RawAxiosRequestHeaders = Partial<RawAxiosHeaders & MethodsHeaders & CommonHeaders>;

That way, if a client passes a config of either headers type, the AxiosHeaders class can handle converting it keeping both header types somewhat interoperable.

@baraeb92
Copy link

baraeb92 commented Jan 3, 2023

This might need your attention @jasonsaayman

@DigitalBrainJS
Copy link
Collaborator Author

DigitalBrainJS commented Jan 4, 2023

@jonesmac Yes, the need to support AxiosHeaders as config headers was due to the previous bug #5226 - some plugins (axios-retry) and users re-use config inside interceptors by passing internal config directly to a new Axios request. This is more of a backward compatibility fix than a new feature, although users can now use AxiosHeaders as a helper for case-insensitive header preprocessing (merge, delete).

@DigitalBrainJS DigitalBrainJS merged commit 0811963 into axios:v1.x Jan 6, 2023
@github-actions github-actions bot mentioned this pull request Jan 7, 2023
@github-actions github-actions bot mentioned this pull request Jan 10, 2023
github-actions bot pushed a commit to Clumsy-Coder/pihole-dashboard that referenced this pull request Jan 18, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.2 to 1.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>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/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/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><a
href="https://github.com/axios/axios/commit/18772ed8fdcd0768a9b520737d81283c04a273f8"><code>18772ed</code></a>
chore(ci): improved logging; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5451">#5451</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/259f5f5aaadfcaf7f3a3fe462d8b0dbbc8004962"><code>259f5f5</code></a>
chore(ci): added step of generating a list of contributors for
CHANELOG.md; (...</li>
<li><a
href="https://github.com/axios/axios/commit/d33a3deb82b808f109b598abbf39fd2a1f8da998"><code>d33a3de</code></a>
chore(ci): added commit message config; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5447">#5447</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/ebb9e814436d2f6c7cc65ffecb6ff013539ce961"><code>ebb9e81</code></a>
chore(deps): bump json5 from 1.0.1 to 1.0.2 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5438">#5438</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/1.2.2...v1.2.3">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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 18, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.2 to 1.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>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/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/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><a
href="https://github.com/axios/axios/commit/18772ed8fdcd0768a9b520737d81283c04a273f8"><code>18772ed</code></a>
chore(ci): improved logging; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5451">#5451</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/259f5f5aaadfcaf7f3a3fe462d8b0dbbc8004962"><code>259f5f5</code></a>
chore(ci): added step of generating a list of contributors for
CHANELOG.md; (...</li>
<li><a
href="https://github.com/axios/axios/commit/d33a3deb82b808f109b598abbf39fd2a1f8da998"><code>d33a3de</code></a>
chore(ci): added commit message config; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5447">#5447</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/ebb9e814436d2f6c7cc65ffecb6ff013539ce961"><code>ebb9e81</code></a>
chore(deps): bump json5 from 1.0.1 to 1.0.2 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5438">#5438</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/1.2.2...v1.2.3">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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>
fwilhe added a commit to SAP/cloud-sdk-js that referenced this pull request Jan 18, 2023
mergify bot pushed a commit to alan-sdk/alan.dart that referenced this pull request Jan 18, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.2 to 1.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/releases">axios's releases</a>.</em></p>
<blockquote>
<h2>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/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/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><a href="https://github.com/axios/axios/commit/18772ed8fdcd0768a9b520737d81283c04a273f8"><code>18772ed</code></a> chore(ci): improved logging; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5451">#5451</a>)</li>
<li><a href="https://github.com/axios/axios/commit/259f5f5aaadfcaf7f3a3fe462d8b0dbbc8004962"><code>259f5f5</code></a> chore(ci): added step of generating a list of contributors for CHANELOG.md; (...</li>
<li><a href="https://github.com/axios/axios/commit/d33a3deb82b808f109b598abbf39fd2a1f8da998"><code>d33a3de</code></a> chore(ci): added commit message config; (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5447">#5447</a>)</li>
<li><a href="https://github.com/axios/axios/commit/ebb9e814436d2f6c7cc65ffecb6ff013539ce961"><code>ebb9e81</code></a> chore(deps): bump json5 from 1.0.1 to 1.0.2 (<a href="https://github-redirect.dependabot.com/axios/axios/issues/5438">#5438</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/axios/axios/compare/1.2.2...v1.2.3">compare view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot 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>
fwilhe added a commit to SAP/cloud-sdk-js that referenced this pull request Jan 19, 2023
* chore(deps): bump axios from 1.2.2 to 1.2.3

Bumps [axios](https://github.com/axios/axios) from 1.2.2 to 1.2.3.
- [Release notes](https://github.com/axios/axios/releases)
- [Changelog](https://github.com/axios/axios/blob/v1.x/CHANGELOG.md)
- [Commits](axios/axios@1.2.2...v1.2.3)

---
updated-dependencies:
- dependency-name: axios
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Replace AxiosRequestConfig with RawAxiosRequestConfig

See axios/axios#5420

* Lint, eslint-disable-next-line import/named

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Florian Wilhelm <florian.wilhelm02@sap.com>
@DavidRigglemanININ
Copy link

I was disappointed to find the patch release (1.2.3) contain breaking changes and traced it back to this particular change. I was able to update multiple spots in my code base with the latest changes and can build fine now, but was surprised to see a non-backwards compatible change in a patch release and without really any note of it in the release notes. Hopefully, this can be considered in future releases. Thanks so much your work in creating and updating this great library!

absoludity pushed a commit to vmware-tanzu/kubeapps that referenced this pull request Jan 20, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.2 to 1.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>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/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/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><a
href="https://github.com/axios/axios/commit/18772ed8fdcd0768a9b520737d81283c04a273f8"><code>18772ed</code></a>
chore(ci): improved logging; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5451">#5451</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/259f5f5aaadfcaf7f3a3fe462d8b0dbbc8004962"><code>259f5f5</code></a>
chore(ci): added step of generating a list of contributors for
CHANELOG.md; (...</li>
<li><a
href="https://github.com/axios/axios/commit/d33a3deb82b808f109b598abbf39fd2a1f8da998"><code>d33a3de</code></a>
chore(ci): added commit message config; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5447">#5447</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/ebb9e814436d2f6c7cc65ffecb6ff013539ce961"><code>ebb9e81</code></a>
chore(deps): bump json5 from 1.0.1 to 1.0.2 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5438">#5438</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/1.2.2...v1.2.3">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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>
@arminrosu
Copy link

I was disappointed to find the patch release (1.2.3) contain breaking changes and traced it back to this particular change.

Ditto. In my case, it broke multiple js clients generated by openapi-generator, as it defaults method arguments to options: AxiosRequestConfig = {}. Unfortunately, patches to openapi-generator are slow to be integrated, so I downgraded axios@1.2.2 for now.

@ecyrbe
Copy link
Contributor

ecyrbe commented Jan 21, 2023

I think this should be fixed because this is a breaking change.
It breaks clients using AxiosRequestConfig. Zodios that is using axios got broken by this.

At least i was hoping that axios would not make breaking changes on stable public interfaces like that and tag them as patch.

edit: to clarify, with this change, i can't make zodios compatible with axios < 1.2.3 while making it compatible with axios 1.2.3 and i guess any lib using axios out there will have the same trouble. I was happy that i have until now been able to maintain zodios compatible with even 0.x versions. Is there any way to do something to not break compatibility ?

osyrisrblx pushed a commit to roblox-ts/types that referenced this pull request Jan 22, 2023
Bumps [axios](https://github.com/axios/axios) from 1.2.0 to 1.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>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>
<h2>1.2.2</h2>
<h2>[1.2.2] - 2022-12-29</h2>
<h3>Fixed</h3>
<ul>
<li>fix(ci): fix release script inputs <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5392">#5392</a></li>
<li>fix(ci): prerelease scipts <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5377">#5377</a></li>
<li>fix(ci): release scripts <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5376">#5376</a></li>
<li>fix(ci): typescript tests <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5375">#5375</a></li>
<li>fix: Brotli decompression <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5353">#5353</a></li>
<li>fix: add missing HttpStatusCode <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5345">#5345</a></li>
</ul>
<h3>Chores</h3>
<ul>
<li>chore(ci): set conventional-changelog header config <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5406">#5406</a></li>
<li>chore(ci): fix automatic contributors resolving <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5403">#5403</a></li>
<li>chore(ci): improved logging for the contributors list generator <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5398">#5398</a></li>
<li>chore(ci): fix release action <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5397">#5397</a></li>
<li>chore(ci): fix version bump script by adding bump argument for
target version <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5393">#5393</a></li>
<li>chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2 <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5342">#5342</a></li>
<li>chore(ci): GitHub Actions Release script <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5384">#5384</a></li>
<li>chore(ci): release scripts <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5364">#5364</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">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/1652293?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/winniehell">Winnie</a></li>
</ul>
<h2>v1.2.1</h2>
<h2>[1.2.1] - 2022-12-05</h2>
<h3>Changed</h3>
<ul>
<li>feat(exports): export mergeConfig <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5151">#5151</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>fix(CancelledError): include config <a
href="https://github-redirect.dependabot.com/axios/axios/pull/4922">#4922</a></li>
<li>fix(general): removing multiple/trailing/leading whitespace <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5022">#5022</a></li>
<li>fix(headers): decompression for responses without Content-Length
header <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5306">#5306</a></li>
<li>fix(webWorker): exception to sending form data in web worker <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5139">#5139</a></li>
</ul>
<h3>Refactors</h3>
<ul>
<li>refactor(types): AxiosProgressEvent.event type to any <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5308">#5308</a></li>
<li>refactor(types): add missing types for static AxiosError.from method
<a
href="https://github-redirect.dependabot.com/axios/axios/pull/4956">#4956</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>
<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>
<h2>[1.2.2] - 2022-12-29</h2>
<h3>Fixed</h3>
<ul>
<li>fix(ci): fix release script inputs <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5392">#5392</a></li>
<li>fix(ci): prerelease scipts <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5377">#5377</a></li>
<li>fix(ci): release scripts <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5376">#5376</a></li>
<li>fix(ci): typescript tests <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5375">#5375</a></li>
<li>fix: Brotli decompression <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5353">#5353</a></li>
<li>fix: add missing HttpStatusCode <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5345">#5345</a></li>
</ul>
<h3>Chores</h3>
<ul>
<li>chore(ci): set conventional-changelog header config <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5406">#5406</a></li>
<li>chore(ci): fix automatic contributors resolving <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5403">#5403</a></li>
<li>chore(ci): improved logging for the contributors list generator <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5398">#5398</a></li>
<li>chore(ci): fix release action <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5397">#5397</a></li>
<li>chore(ci): fix version bump script by adding bump argument for
target version <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5393">#5393</a></li>
<li>chore(deps): bump decode-uri-component from 0.2.0 to 0.2.2 <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5342">#5342</a></li>
<li>chore(ci): GitHub Actions Release script <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5384">#5384</a></li>
<li>chore(ci): release scripts <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5364">#5364</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">Dmitriy
Mozgovoy</a></li>
<li><img
src="https://avatars.githubusercontent.com/u/1652293?v=4&amp;s=16"
alt="avatar" /> <a href="https://github.com/winniehell">Winnie</a></li>
</ul>
<h2>[1.2.1] - 2022-12-05</h2>
<h3>Changed</h3>
<ul>
<li>feat(exports): export mergeConfig <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5151">#5151</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li>fix(CancelledError): include config <a
href="https://github-redirect.dependabot.com/axios/axios/pull/4922">#4922</a></li>
<li>fix(general): removing multiple/trailing/leading whitespace <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5022">#5022</a></li>
<li>fix(headers): decompression for responses without Content-Length
header <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5306">#5306</a></li>
<li>fix(webWorker): exception to sending form data in web worker <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5139">#5139</a></li>
</ul>
<h3>Refactors</h3>
<ul>
<li>refactor(types): AxiosProgressEvent.event type to any <a
href="https://github-redirect.dependabot.com/axios/axios/pull/5308">#5308</a></li>
<li>refactor(types): add missing types for static AxiosError.from method
<a
href="https://github-redirect.dependabot.com/axios/axios/pull/4956">#4956</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/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><a
href="https://github.com/axios/axios/commit/18772ed8fdcd0768a9b520737d81283c04a273f8"><code>18772ed</code></a>
chore(ci): improved logging; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5451">#5451</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/259f5f5aaadfcaf7f3a3fe462d8b0dbbc8004962"><code>259f5f5</code></a>
chore(ci): added step of generating a list of contributors for
CHANELOG.md; (...</li>
<li><a
href="https://github.com/axios/axios/commit/d33a3deb82b808f109b598abbf39fd2a1f8da998"><code>d33a3de</code></a>
chore(ci): added commit message config; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5447">#5447</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/ebb9e814436d2f6c7cc65ffecb6ff013539ce961"><code>ebb9e81</code></a>
chore(deps): bump json5 from 1.0.1 to 1.0.2 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5438">#5438</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.2.0...v1.2.3">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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>
@soulchild
Copy link

Clients generated by orval are broken as well:

Argument of type '{ headers?: AxiosRequestHeaders | undefined; url?: string | undefined; method?: string | undefined; baseURL?: string | undefined; transformRequest?: AxiosRequestTransformer | AxiosRequestTransformer[] | undefined; ... 31 more ...; formSerializer?: FormSerializerOptions | undefined; }' is not assignable to parameter of type 'AxiosRequestConfig<any>'.

Please revert this change and re-release it as a major release instead ASAP.

@arminrosu
Copy link

Further $0.02 - I think the root issue is that the same Typings are used for input arguments and output types, whereas e.g. headers can be defaulted to and output as a required property.

Looking at the code, this is a non-trivial task to fix quickly overall, but this PR should be reverted.

@DigitalBrainJS are you aware of the discussion here? Should we have raised a new issue?

@DavidRigglemanININ
Copy link

If you end up reverting this PR, just don't try to do something like republish 1.2.3 again with the fix. That would just make the problem even worse for those who did take the time to make the necessary updates.

@ecyrbe
Copy link
Contributor

ecyrbe commented Jan 23, 2023

I found a way to make my code compatible with all versions, by extracting the types from function signature instead of importing them :
https://github.com/ecyrbe/zodios/blob/feature/v11/packages/axios/src/axios-provider.ts#L23

Hope this helps

@DigitalBrainJS
Copy link
Collaborator Author

@arminrosu I hope #5486 should fix this, as it renames the inner config interface instead of the outer one (and keeps RawAxiosRequestConfig as an alias of the external config interface, AxiosRequestConfig=RawAxiosRequestConfig). This should minimize the impact on the Axios ecosystem caused by the attempt to fix the #5415 issue. Otherwise, we would have had to revert several releases as the problems with types start earlier than in the last one.

@arminrosu
Copy link

@DigitalBrainJS ah, sweet, didn't see the fix PR. Thanks for the quick turn-around! Keep up the good work!

juliusfitzhugh-ccpo added a commit to dod-ccpo/atat-web-api that referenced this pull request Jan 25, 2023
Update axios to v1.2.4.

Fix failing unit tests for the ATAT API spec client, due to changes
in the 'AxiosRequestConfig' type for the interceptor.

See refs:
- axios/axios#5420
- axios/axios#5486
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>
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>
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>
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.2 to 1.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>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/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/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><a
href="https://github.com/axios/axios/commit/18772ed8fdcd0768a9b520737d81283c04a273f8"><code>18772ed</code></a>
chore(ci): improved logging; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5451">#5451</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/259f5f5aaadfcaf7f3a3fe462d8b0dbbc8004962"><code>259f5f5</code></a>
chore(ci): added step of generating a list of contributors for
CHANELOG.md; (...</li>
<li><a
href="https://github.com/axios/axios/commit/d33a3deb82b808f109b598abbf39fd2a1f8da998"><code>d33a3de</code></a>
chore(ci): added commit message config; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5447">#5447</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/ebb9e814436d2f6c7cc65ffecb6ff013539ce961"><code>ebb9e81</code></a>
chore(deps): bump json5 from 1.0.1 to 1.0.2 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5438">#5438</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/1.2.2...v1.2.3">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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.2 to 1.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>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/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/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><a
href="https://github.com/axios/axios/commit/18772ed8fdcd0768a9b520737d81283c04a273f8"><code>18772ed</code></a>
chore(ci): improved logging; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5451">#5451</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/259f5f5aaadfcaf7f3a3fe462d8b0dbbc8004962"><code>259f5f5</code></a>
chore(ci): added step of generating a list of contributors for
CHANELOG.md; (...</li>
<li><a
href="https://github.com/axios/axios/commit/d33a3deb82b808f109b598abbf39fd2a1f8da998"><code>d33a3de</code></a>
chore(ci): added commit message config; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5447">#5447</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/ebb9e814436d2f6c7cc65ffecb6ff013539ce961"><code>ebb9e81</code></a>
chore(deps): bump json5 from 1.0.1 to 1.0.2 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5438">#5438</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/1.2.2...v1.2.3">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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>
Say383 added a commit to Say383/cloud-code-samples that referenced this pull request Apr 11, 2023
<h3>Snyk has created this PR to upgrade axios from 1.2.3 to 1.3.4.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.
<hr/>

- The recommended version is **8 versions** ahead of your current
version.
- The recommended version was released **a month ago**, on 2023-02-22.


<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>axios</b></summary>
    <ul>
      <li>
<b>1.3.4</b> - <a
href="https://snyk.io/redirect/github/axios/axios/releases/tag/v1.3.4">2023-02-22</a></br><h2>Release
notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>blob:</strong> added a check to make sure the Blob class is
available in the browser's global scope; (<a
href="https://snyk.io/redirect/github/axios/axios/issues/5548"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5548/hovercard">#5548</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/3772c8fe74112a56e3e9551f894d899bc3a9443a">3772c8f</a>)</li>
<li><strong>http:</strong> fixed regression bug when handling
synchronous errors inside the adapter; (<a
href="https://snyk.io/redirect/github/axios/axios/issues/5564"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5564/hovercard">#5564</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/a3b246c9de5c3bc4b5a742e15add55b375479451">a3b246c</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=18"><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=18"
alt="avatar" width="18" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/DigitalBrainJS" title="+38/-26
(#5564 )">Dmitriy Mozgovoy</a></li>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/19550000?v=4&amp;s=18"><img
src="https://avatars.githubusercontent.com/u/19550000?v=4&amp;s=18"
alt="avatar" width="18" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/lcysgsg" title="+4/-0 (#5548
)">lcysgsg</a></li>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/5492927?v=4&amp;s=18"><img
src="https://avatars.githubusercontent.com/u/5492927?v=4&amp;s=18"
alt="avatar" width="18" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/Cadienvan" title="+3/-0 (#5444
)">Michael Di Prisco</a></li>
</ul>
      </li>
      <li>
<b>1.3.3</b> - <a
href="https://snyk.io/redirect/github/axios/axios/releases/tag/v1.3.3">2023-02-13</a></br><h2>Release
notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>formdata:</strong> added a check to make sure the FormData
class is available in the browser's global scope; (<a
href="https://snyk.io/redirect/github/axios/axios/issues/5545"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5545/hovercard">#5545</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/a6dfa72010db5ad52db8bd13c0f98e537e8fd05d">a6dfa72</a>)</li>
<li><strong>formdata:</strong> fixed setting NaN as Content-Length for
form payload in some cases; (<a
href="https://snyk.io/redirect/github/axios/axios/issues/5535"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5535/hovercard">#5535</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/c19f7bf770f90ae8307f4ea3104f227056912da1">c19f7bf</a>)</li>
<li><strong>headers:</strong> fixed the filtering logic of the clear
method; (<a
href="https://snyk.io/redirect/github/axios/axios/issues/5542"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5542/hovercard">#5542</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/ea87ebfe6d1699af072b9e7cd40faf8f14b0ab93">ea87ebf</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=18"><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=18"
alt="avatar" width="18" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/DigitalBrainJS" title="+11/-7
(#5545 #5535 #5542 )">Dmitriy Mozgovoy</a></li>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/19842213?v=4&amp;s=18"><img
src="https://avatars.githubusercontent.com/u/19842213?v=4&amp;s=18"
alt="avatar" width="18" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/ruofee" title="+2/-2 (#5467
)">陈若枫</a></li>
</ul>
      </li>
      <li>
<b>1.3.2</b> - <a
href="https://snyk.io/redirect/github/axios/axios/releases/tag/v1.3.2">2023-02-03</a></br><h2>Release
notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>http:</strong> treat <a href="http://localhost"
rel="nofollow">http://localhost</a> as base URL for relative paths to
avoid <code>ERR_INVALID_URL</code> error; (<a
href="https://snyk.io/redirect/github/axios/axios/issues/5528"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5528/hovercard">#5528</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/128d56f4a0fb8f5f2ed6e0dd80bc9225fee9538c">128d56f</a>)</li>
<li><strong>http:</strong> use explicit import instead of TextEncoder
global; (<a
href="https://snyk.io/redirect/github/axios/axios/issues/5530"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5530/hovercard">#5530</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/6b3c305fc40c56428e0afabedc6f4d29c2830f6f">6b3c305</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=18"><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=18"
alt="avatar" width="18" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/DigitalBrainJS" title="+2/-1
(#5530 #5528 )">Dmitriy Mozgovoy</a></li>
</ul>
      </li>
      <li>
<b>1.3.1</b> - <a
href="https://snyk.io/redirect/github/axios/axios/releases/tag/v1.3.1">2023-02-01</a></br><h2>Release
notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>formdata:</strong> add hotfix to use the asynchronous API to
compute the content-length header value; (<a
href="https://snyk.io/redirect/github/axios/axios/issues/5521"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5521/hovercard">#5521</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/96d336f527619f21da012fe1f117eeb53e5a2120">96d336f</a>)</li>
<li><strong>serializer:</strong> fixed serialization of array-like
objects; (<a
href="https://snyk.io/redirect/github/axios/axios/issues/5518"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5518/hovercard">#5518</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/08104c028c0f9353897b1b6691d74c440fd0c32d">08104c0</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=18"><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=18"
alt="avatar" width="18" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/DigitalBrainJS" title="+27/-8
(#5521 #5518 )">Dmitriy Mozgovoy</a></li>
</ul>
      </li>
      <li>
<b>1.3.0</b> - <a
href="https://snyk.io/redirect/github/axios/axios/releases/tag/v1.3.0">2023-01-31</a></br><h2>Release
notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> fixed &amp; optimized clear method; (<a
href="https://snyk.io/redirect/github/axios/axios/issues/5507"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5507/hovercard">#5507</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/9915635c69d0ab70daca5738488421f67ca60959">9915635</a>)</li>
<li><strong>http:</strong> add zlib headers if missing (<a
href="https://snyk.io/redirect/github/axios/axios/issues/5497"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5497/hovercard">#5497</a>) (<a
href="https://snyk.io/redirect/github/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://snyk.io/redirect/github/axios/axios/issues/5316"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5316/hovercard">#5316</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/6ac574e00a06731288347acea1e8246091196953">6ac574e</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=18"><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=18"
alt="avatar" width="18" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/DigitalBrainJS" title="+352/-67
(#5514 #5512 #5510 #5509 #5508 #5316 #5507 )">Dmitriy Mozgovoy</a></li>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/35015993?v=4&amp;s=18"><img
src="https://avatars.githubusercontent.com/u/35015993?v=4&amp;s=18"
alt="avatar" width="18" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/ItsNotGoodName" title="+43/-2
(#5497 )">ItsNotGoodName</a></li>
</ul>
      </li>
      <li>
<b>1.2.6</b> - <a
href="https://snyk.io/redirect/github/axios/axios/releases/tag/v1.2.6">2023-01-28</a></br><h2>Release
notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> added missed Authorization accessor; (<a
href="https://snyk.io/redirect/github/axios/axios/issues/5502"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5502/hovercard">#5502</a>) (<a
href="https://snyk.io/redirect/github/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://snyk.io/redirect/github/axios/axios/issues/5503"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5503/hovercard">#5503</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/5a3d0a3234d77361a1bc7cedee2da1e11df08e2c">5a3d0a3</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/DigitalBrainJS" title="+24/-9
(#5503 #5502 )">Dmitriy Mozgovoy</a></li>
</ul>
      </li>
      <li>
<b>1.2.5</b> - <a
href="https://snyk.io/redirect/github/axios/axios/releases/tag/v1.2.5">2023-01-26</a></br><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://snyk.io/redirect/github/axios/axios/issues/5499"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5499/hovercard">#5499</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/580f1e8033a61baa38149d59fd16019de3932c22">580f1e8</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/DigitalBrainJS" title="+82/-54
(#5499 )">Dmitriy Mozgovoy</a></li>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16"><img
src="https://avatars.githubusercontent.com/u/20516159?v=4&amp;s=16"
alt="avatar" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/EFord36" title="+1/-1 (#5462
)">Elliot Ford</a></li>
</ul>
      </li>
      <li>
<b>1.2.4</b> - <a
href="https://snyk.io/redirect/github/axios/axios/releases/tag/v1.2.4">2023-01-24</a></br><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://snyk.io/redirect/github/axios/axios/issues/5486"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5486/hovercard">#5486</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/2a71f49bc6c68495fa419003a3107ed8bd703ad0">2a71f49</a>)</li>
<li><strong>types:</strong> fix <code>AxiosRequestConfig</code> generic;
(<a href="https://snyk.io/redirect/github/axios/axios/issues/5478"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5478/hovercard">#5478</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/186ea062da8b7d578ae78b1a5c220986b9bce81b">9bce81b</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/DigitalBrainJS" title="+242/-108
(#5486 #5482 )">Dmitriy Mozgovoy</a></li>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"><img
src="https://avatars.githubusercontent.com/u/9430821?v=4&amp;s=16"
alt="avatar" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/hilleer" title="+1/-1 (#5478
)">Daniel Hillmann</a></li>
</ul>
      </li>
      <li>
<b>1.2.3</b> - <a
href="https://snyk.io/redirect/github/axios/axios/releases/tag/v1.2.3">2023-01-17</a></br><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://snyk.io/redirect/github/axios/axios/issues/5420"
data-hovercard-type="pull_request"
data-hovercard-url="/axios/axios/pull/5420/hovercard">#5420</a>) (<a
href="https://snyk.io/redirect/github/axios/axios/commit/08119634a22f1d5b19f5c9ea0adccb6d3eebc3bc">0811963</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><a target="_blank" rel="noopener noreferrer nofollow"
href="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"><img
src="https://avatars.githubusercontent.com/u/12586868?v=4&amp;s=16"
alt="avatar" style="max-width: 100%;"></a> <a
href="https://snyk.io/redirect/github/DigitalBrainJS" title="+938/-442
(#5456 #5455 #5453 #5451 #5449 #5447 #5446 #5443 #5442 #5439 #5420
)">Dmitriy Mozgovoy</a></li>
</ul>
      </li>
    </ul>
from <a
href="https://snyk.io/redirect/github/axios/axios/releases">axios GitHub
release notes</a>
  </details>
</details>


<details>
  <summary><b>Commit messages</b></summary>
  </br>
  <details>
    <summary>Package name: <b>axios</b></summary>
    <ul>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/2e70cecda42993e1153248f0f96715c3c55f7f39">2e70cec</a>
chore(release): v1.3.4 (#5565)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/cbe2de60d3c9f494b4f5996632107d7a3a93abf1">cbe2de6</a>
chore(ci): remove team-reviewers config; (#5566)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/2b1fc73600f28028499aa08c7baff980da10b504">2b1fc73</a>
chore(docs): added missing config.transport doc (#5444)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/3772c8fe74112a56e3e9551f894d899bc3a9443a">3772c8f</a>
fix(blob): added a check to make sure the Blob class is available in the
browser&#x27;s global scope; (#5548)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/a3b246c9de5c3bc4b5a742e15add55b375479451">a3b246c</a>
fix(http): fixed regression bug when handling synchronous errors inside
the adapter; (#5564)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/d9ebf8fb3ab2e6d277626d72bcf5580e2a6e795b">d9ebf8f</a>
chore(release): v1.3.3 (#5546)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/a43bca033db3dc47e4d1635b7e7af8a6f60b6c6b">a43bca0</a>
chore(example): fix source map urls; (#5467)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/a6dfa72010db5ad52db8bd13c0f98e537e8fd05d">a6dfa72</a>
fix(formdata): added a check to make sure the FormData class is
available in the browser&#x27;s global scope; (#5545)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/c19f7bf770f90ae8307f4ea3104f227056912da1">c19f7bf</a>
fix(formdata): fixed setting NaN as Content-Length for form payload in
some cases; (#5535)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/ea87ebfe6d1699af072b9e7cd40faf8f14b0ab93">ea87ebf</a>
fix(headers): fixed the filtering logic of the clear method;
(#5542)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/0b449293fc238f30f39ab9ed0fca86a23c8a6a79">0b44929</a>
chore(release): v1.3.2 (#5531)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/6b3c305fc40c56428e0afabedc6f4d29c2830f6f">6b3c305</a>
fix(http): use explicit import instead of TextEncoder global;
(#5530)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/128d56f4a0fb8f5f2ed6e0dd80bc9225fee9538c">128d56f</a>
fix(http): treat http://localhost as base URL for relative paths to
avoid &#x60;ERR_INVALID_URL&#x60; error; (#5528)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/54d3facb3b032665e6ae84e157073702b5c2e4d9">54d3fac</a>
chore(release): v1.3.1 (#5522)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/96d336f527619f21da012fe1f117eeb53e5a2120">96d336f</a>
fix(formdata): add hotfix to use the asynchronous API to compute the
content-length header value; (#5521)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/08104c028c0f9353897b1b6691d74c440fd0c32d">08104c0</a>
fix(serializer): fixed serialization of array-like objects; (#5518)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/7fbfbbeff69904cd64e8ac62da8969a1e633ee23">7fbfbbe</a>
chore(release): v1.3.0 (#5513)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/926347315405e43842373b646c8a23d3700ab53f">9263473</a>
chore(ci): fixed contributors avatar rendering for CHANGELOG.md;
(#5514)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/995737726024c6741cf4a09508d004c4f1323ffb">9957377</a>
chore(ci): change release-it git config; (#5512)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/46a650cf338953e69a22d3623a1810578b9b072e">46a650c</a>
chore(ci): prepare package-lock.json for commit on build stage;
(#5510)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/4bf50524e20cfd5436f71cda9a79f23452f0eb3e">4bf5052</a>
chore(ci): add git diff echo; (#5509)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/91d6009c43fd1e8ca76cfaeaab66ce228593d8f6">91d6009</a>
chore(ci): add git status echo; (#5508)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/6ac574e00a06731288347acea1e8246091196953">6ac574e</a>
feat(fomdata): added support for spec-compliant FormData &amp; Blob
types; (#5316)</li>
<li><a
href="https://snyk.io/redirect/github/axios/axios/commit/65e8d1e28ce829f47a837e45129730e541950d3c">65e8d1e</a>
fix(http): add zlib headers if missing (#5497)</li>
    </ul>

<a
href="https://snyk.io/redirect/github/axios/axios/compare/557ed0a7489b1bf62296ea34568eeea8975ff4f9...2e70cecda42993e1153248f0f96715c3c55f7f39">Compare</a>
  </details>
</details>
<hr/>

**Note:** *You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs.*

For more information: <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiI3NjQzYmY3ZC04ODhjLTQ1YmItOGY4YS0yMjAzZDI4OWQ4NjEiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6Ijc2NDNiZjdkLTg4OGMtNDViYi04ZjhhLTIyMDNkMjg5ZDg2MSJ9fQ=="
width="0" height="0"/>

🧐 [View latest project
report](https://app.snyk.io/org/say383/project/49bf3284-2685-413c-a9c8-772065a7ff42?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/say383/project/49bf3284-2685-413c-a9c8-772065a7ff42/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/say383/project/49bf3284-2685-413c-a9c8-772065a7ff42/settings/integration?pkg&#x3D;axios&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

<!---
(snyk:metadata:{"prId":"7643bf7d-888c-45bb-8f8a-2203d289d861","prPublicId":"7643bf7d-888c-45bb-8f8a-2203d289d861","dependencies":[{"name":"axios","from":"1.2.3","to":"1.3.4"}],"packageManager":"npm","type":"auto","projectUrl":"https://app.snyk.io/org/say383/project/49bf3284-2685-413c-a9c8-772065a7ff42?utm_source=github&utm_medium=referral&page=upgrade-pr","projectPublicId":"49bf3284-2685-413c-a9c8-772065a7ff42","env":"prod","prType":"upgrade","vulns":[],"issuesToFix":[],"upgrade":[],"upgradeInfo":{"versionsDiff":8,"publishedDate":"2023-02-22T21:06:23.063Z"},"templateVariants":[],"hasFixes":false,"isMajorUpgrade":false,"isBreakingChange":false,"priorityScoreList":[]})
--->
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.2 to 1.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>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/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/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><a
href="https://github.com/axios/axios/commit/18772ed8fdcd0768a9b520737d81283c04a273f8"><code>18772ed</code></a>
chore(ci): improved logging; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5451">#5451</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/259f5f5aaadfcaf7f3a3fe462d8b0dbbc8004962"><code>259f5f5</code></a>
chore(ci): added step of generating a list of contributors for
CHANELOG.md; (...</li>
<li><a
href="https://github.com/axios/axios/commit/d33a3deb82b808f109b598abbf39fd2a1f8da998"><code>d33a3de</code></a>
chore(ci): added commit message config; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5447">#5447</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/ebb9e814436d2f6c7cc65ffecb6ff013539ce961"><code>ebb9e81</code></a>
chore(deps): bump json5 from 1.0.1 to 1.0.2 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5438">#5438</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/1.2.2...v1.2.3">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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.2 to 1.2.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>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/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/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><a
href="https://github.com/axios/axios/commit/18772ed8fdcd0768a9b520737d81283c04a273f8"><code>18772ed</code></a>
chore(ci): improved logging; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5451">#5451</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/259f5f5aaadfcaf7f3a3fe462d8b0dbbc8004962"><code>259f5f5</code></a>
chore(ci): added step of generating a list of contributors for
CHANELOG.md; (...</li>
<li><a
href="https://github.com/axios/axios/commit/d33a3deb82b808f109b598abbf39fd2a1f8da998"><code>d33a3de</code></a>
chore(ci): added commit message config; (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5447">#5447</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/ebb9e814436d2f6c7cc65ffecb6ff013539ce961"><code>ebb9e81</code></a>
chore(deps): bump json5 from 1.0.1 to 1.0.2 (<a
href="https://github-redirect.dependabot.com/axios/axios/issues/5438">#5438</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/1.2.2...v1.2.3">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot 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.

Broken AxiosHeaders typings
10 participants