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: wrap errors to improve async stack trace #5987

Merged
merged 13 commits into from Jan 24, 2024

Conversation

ikonst
Copy link
Contributor

@ikonst ikonst commented Oct 6, 2023

V8 has async stack traces across awaits, so we're wrapping request and intentionally awaiting it to allow any error to "cross", then wrapping the exception therefore getting a stack trace that includes the caller, while at the same keep the original exception as the cause.

Fixes #2387.

@andrew0
Copy link

andrew0 commented Oct 6, 2023

thanks for putting this together in a PR @ikonst. I did a bit more testing and was thinking it might actually be better to only adjust the stacktrace in lib/core/dispatchRequest. The current stack traces only seem to be a problem when dispatching the actual request, but there could be other errors in the interceptor chain that we don't want to mess with.

Using the test script I shared in the original issue and this PR:

const axios = require('axios');

async function makeRequest() {
  await axios.get('https://httpstat.us/500');
}

async function main() {
  await makeRequest();
}

main().catch((err) => {
  console.error(err.stack);
});

I get this stack trace:

AxiosError: Request failed with status code 500
    at AxiosError.from (node_modules/axios/dist/node/axios.cjs:837:14)
    at Axios.request (node_modules/axios/dist/node/axios.cjs:3820:61)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async makeRequest (test.js:4:3)
    at async main (test.js:8:3)

But if I add an interceptor that throws an error, you lose the context of which interceptor failed:

const axios = require('axios');

axios.interceptors.request.use(() => {
  throw new Error('kaboom');
});

async function makeRequest() {
  await axios.get('https://httpstat.us/500');
}

async function main() {
  await makeRequest();
}

main().catch((err) => {
  console.error(err.stack);
});
Error: kaboom
    at AxiosError.from (node_modules/@fds/request/node_modules/axios/dist/node/axios.cjs:837:14)
    at Axios.request (node_modules/axios/dist/node/axios.cjs:3820:61)
    at async makeRequest (test.js:8:3)
    at async main (test.js:12:3)

This was the patch I was testing (for node.js):

diff --git a/dist/node/axios.cjs b/dist/node/axios.cjs
index 8d8b06a66eb5b72fb5d4cbe2bdbd085a1c490aa0..10cd79013e612870f24c08d56765fa154eeab2ab 100644
--- a/dist/node/axios.cjs
+++ b/dist/node/axios.cjs
@@ -3570,6 +3570,17 @@ function dispatchRequest(config) {
 
     return response;
   }, function onAdapterRejection(reason) {
+    if (reason instanceof Error) {
+      const carrier = {};
+      if (Error.captureStackTrace) {
+        Error.captureStackTrace(carrier);
+      } else {
+        carrier.stack = new Error().stack;
+      }
+
+      reason.stack = reason.stack + carrier.stack.replace(/\S.*/, '');
+    }
+
     if (!isCancel(reason)) {
       throwIfCancellationRequested(config);
 

With this patch I get these stack traces:

AxiosError: Request failed with status code 500
    at settle (node_modules/axios/dist/node/axios.cjs:1913:12)
    at IncomingMessage.handleStreamEnd (node_modules/axios/dist/node/axios.cjs:2995:11)
    at IncomingMessage.emit (node:events:525:35)
    at endReadableNT (node:internal/streams/readable:1359:12)
    at process.processTicksAndRejections (node:internal/process/task_queues:82:21)
    at onAdapterRejection (node_modules/axios/dist/node/axios.cjs:3576:15)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async makeRequest (test.js:4:3)
    at async main (test.js:8:3)
Error: kaboom
    at test.js:4:9
    at async makeRequest (test.js:8:3)
    at async main (test.js:12:3)

So for the case where the interceptor throws, it still keeps the callsite at line 4 (inside the interceptor) where the error originates.

@ikonst
Copy link
Contributor Author

ikonst commented Oct 6, 2023

Does it help if you inspect the .cause?

@ikonst
Copy link
Contributor Author

ikonst commented Oct 6, 2023

P.s. I also had a version where I mutate the stack trace instead of wrapping. I thought wrapping is generally the more idiomatic way.

If we do splice the stack, then perhaps we could check that the stack we add to doesn't already contain the stack we're adding.

@ikonst
Copy link
Contributor Author

ikonst commented Oct 20, 2023

@DigitalBrainJS could you help with the review?

1 similar comment
@ikonst
Copy link
Contributor Author

ikonst commented Nov 28, 2023

@DigitalBrainJS could you help with the review?

@alvarlagerlof
Copy link

We've been running this PR as a patch in production for a few weeks now at work, and it works great. Sentry errors for timeouts report enough of where they are happening to be useful.

lib/core/Axios.js Fixed Show fixed Hide fixed
lib/core/Axios.js Fixed Show fixed Hide fixed
test/unit/adapters/http.js Fixed Show resolved Hide resolved
dummy.stack = new Error().stack;
}
// slice off the Error: ... line
dummy.stack = dummy.stack.replace(/^.+\n/g, '');
Copy link
Collaborator

Choose a reason for hiding this comment

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

g flag has no effect here

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ah, you're right! I think I was assuming multiline mode by default and thought g negates that. 🤦

// slice off the Error: ... line
dummy.stack = dummy.stack.replace(/^.+\n/g, '');
// match without the 2 top stack lines
if (!err.stack.endsWith(dummy.stack.replace(/^.+\n.+\n/g, ''))) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

g flag has no effect here

}
}

_dispatchRequest(configOrUrl, config) {
Copy link
Collaborator

Choose a reason for hiding this comment

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

It would probably be better to call this _request for now since we are wrapping the original request function

assert.equal(thrown.message, 'Operation has been canceled.');
done();
});
assert.rejects(
Copy link
Contributor Author

Choose a reason for hiding this comment

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

uh, looks like a floating promise

Copy link
Contributor Author

Choose a reason for hiding this comment

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

nm, it wasn't since we call .then(done).catch(done) on it, but I added void before it to clarify (per convention here)

@ikonst ikonst force-pushed the propagate-stack-trace-async branch from e4e102b to 09575e9 Compare December 6, 2023 18:39
@ikonst ikonst force-pushed the propagate-stack-trace-async branch from ff00a78 to 77430cf Compare December 6, 2023 18:40
@ikonst
Copy link
Contributor Author

ikonst commented Dec 7, 2023

@DigitalBrainJS could you approve CI again?

@ikonst
Copy link
Contributor Author

ikonst commented Jan 4, 2024

@DigitalBrainJS ping

@ikonst
Copy link
Contributor Author

ikonst commented Jan 8, 2024

Maybe we should add --async-stack-traces to the Node options of the 12.x job? In Node 12, it still wasn't the default (https://thecodebarbarian.com/async-stack-traces-in-node-js-12.html).

@ikonst
Copy link
Contributor Author

ikonst commented Jan 16, 2024

@DigitalBrainJS can you please approve the workflows?

neotokenapp bot pushed a commit to neohelden/commons-nestjs-server-auth that referenced this pull request Jan 25, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.6.6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.5&new-version=1.6.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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
eps-autoapprove-dependabot bot pushed a commit to NHSDigital/prescriptionsforpatients that referenced this pull request Jan 25, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.6.6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.5&new-version=1.6.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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
github-actions bot pushed a commit to implydata/openapi-ts that referenced this pull request Jan 25, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.6.6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.5&new-version=1.6.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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
contentful-automation bot pushed a commit to contentful/contentful-merge that referenced this pull request Jan 26, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
antgamdia pushed a commit to vmware-tanzu/kubeapps that referenced this pull request Jan 26, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
eps-autoapprove-dependabot bot pushed a commit to NHSDigital/electronic-prescription-service-api that referenced this pull request Jan 26, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />


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

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: anthony-nhs <121869075+anthony-nhs@users.noreply.github.com>
antgamdia pushed a commit to vmware-tanzu/kubeapps that referenced this pull request Jan 26, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Fyphen1223 added a commit to Fyphen1223/CosmoMusic that referenced this pull request Jan 29, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>
kodiakhq bot pushed a commit to relaycorp/awala-keystore-cloud-js that referenced this pull request Jan 29, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/releases">axios's releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects; (<a href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>) (<a href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/DigitalBrainJS" title="+30/-26 ([#6203](axios/axios#6203) )">Dmitriy Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx" title="+0/-3 ([#6186](axios/axios#6186) )">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>) (<a href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>) (<a href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst" title="+91/-8 ([#5987](axios/axios#5987) )">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula" title="+6/-6 ([#5778](axios/axios#5778) )">Zao Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's changelog</a>.</em></p>
<blockquote>
<h2><a href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a> (2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects; (<a href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>) (<a href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/DigitalBrainJS" title="+30/-26 ([#6203](axios/axios#6203) )">Dmitriy Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx" title="+0/-3 ([#6186](axios/axios#6186) )">zhoulixiang</a></li>
</ul>
<h2><a href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a> (2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>) (<a href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>) (<a href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst" title="+91/-8 ([#5987](axios/axios#5987) )">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula" title="+6/-6 ([#5778](axios/axios#5778) )">Zao Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a> chore(release): v1.6.7 (<a href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a> chore: remove unnecessary check (<a href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a> fix: capture async stack only for rejections with native error objects; (<a href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a> chore(release): v1.6.6 (<a href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a> fix: fixed missed dispatchBeforeRedirect argument (<a href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a> fix: wrap errors to improve async stack trace (<a href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a href="https://github.com/axios/axios/compare/v1.6.5...v1.6.7">compare view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
kodiakhq bot pushed a commit to relaycorp/relaynet-pohttp-js that referenced this pull request Jan 29, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/releases">axios's releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects; (<a href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>) (<a href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/DigitalBrainJS" title="+30/-26 ([#6203](axios/axios#6203) )">Dmitriy Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx" title="+0/-3 ([#6186](axios/axios#6186) )">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>) (<a href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>) (<a href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst" title="+91/-8 ([#5987](axios/axios#5987) )">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula" title="+6/-6 ([#5778](axios/axios#5778) )">Zao Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's changelog</a>.</em></p>
<blockquote>
<h2><a href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a> (2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects; (<a href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>) (<a href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/DigitalBrainJS" title="+30/-26 ([#6203](axios/axios#6203) )">Dmitriy Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx" title="+0/-3 ([#6186](axios/axios#6186) )">zhoulixiang</a></li>
</ul>
<h2><a href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a> (2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>) (<a href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>) (<a href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst" title="+91/-8 ([#5987](axios/axios#5987) )">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula" title="+6/-6 ([#5778](axios/axios#5778) )">Zao Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a> chore(release): v1.6.7 (<a href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a> chore: remove unnecessary check (<a href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a> fix: capture async stack only for rejections with native error objects; (<a href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a> chore(release): v1.6.6 (<a href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a> fix: fixed missed dispatchBeforeRedirect argument (<a href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a> fix: wrap errors to improve async stack trace (<a href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a href="https://github.com/axios/axios/compare/v1.6.5...v1.6.7">compare view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>
aacebo added a commit to microsoft/teams-ai that referenced this pull request Jan 29, 2024
…1215)

#minor

Bumps the production group in /js with 7 updates:

| Package | From | To |
| --- | --- | --- |
|
[@azure/msal-node](https://github.com/AzureAD/microsoft-authentication-library-for-js)
| `2.6.1` | `2.6.2` |
| [axios](https://github.com/axios/axios) | `1.6.5` | `1.6.7` |
| [botbuilder](https://github.com/Microsoft/botbuilder-js) | `4.21.4` |
`4.22.1` |
| [botbuilder-dialogs](https://github.com/Microsoft/botbuilder-js) |
`4.21.4` | `4.22.1` |
| [openai](https://github.com/openai/openai-node) | `4.25.0` | `4.26.0`
|
| [dotenv](https://github.com/motdotla/dotenv) | `16.3.2` | `16.4.1` |
| [botbuilder-azure-blobs](https://github.com/Microsoft/botbuilder-js) |
`4.21.4` | `4.22.1` |

Updates `@azure/msal-node` from 2.6.1 to 2.6.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/AzureAD/microsoft-authentication-library-for-js/releases"><code>@​azure/msal-node</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@​azure/msal-node</code> v2.6.2</h2>
<h2>2.6.2</h2>
<p>Tue, 23 Jan 2024 00:06:05 GMT</p>
<h3>Patches</h3>
<ul>
<li>Fix bug affecting metadata resolution for tenanted authorities (<a
href="mailto:thomas.norling@microsoft.com">thomas.norling@microsoft.com</a>)</li>
<li>Bump <code>@​azure/msal-common</code> to v14.6.1 (beachball)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/AzureAD/microsoft-authentication-library-for-js/commit/2df9045fe3e9a2450c21f0024088697ec616802a"><code>2df9045</code></a>
Bump package versions</li>
<li><a
href="https://github.com/AzureAD/microsoft-authentication-library-for-js/commit/2c5e4f1c72835d4dc47a72d158094af89964b9b0"><code>2c5e4f1</code></a>
Read me MSAL Angular: Update github issues link. (<a
href="https://redirect.github.com/AzureAD/microsoft-authentication-library-for-js/issues/6834">#6834</a>)</li>
<li><a
href="https://github.com/AzureAD/microsoft-authentication-library-for-js/commit/cf10eccbb55087167321c2461fdb2b21c505f0a4"><code>cf10ecc</code></a>
Bump actions/cache from 3 to 4 (<a
href="https://redirect.github.com/AzureAD/microsoft-authentication-library-for-js/issues/6835">#6835</a>)</li>
<li><a
href="https://github.com/AzureAD/microsoft-authentication-library-for-js/commit/688e3c1f5657ce8f6c3d0d7c62a80ee954fbe12b"><code>688e3c1</code></a>
Fix: Require is not defined in MJS (<a
href="https://redirect.github.com/AzureAD/microsoft-authentication-library-for-js/issues/6831">#6831</a>)</li>
<li><a
href="https://github.com/AzureAD/microsoft-authentication-library-for-js/commit/54b4253e3848dc985529c77036bab8d692309bf5"><code>54b4253</code></a>
Bump vite from 3.2.7 to 3.2.8 (<a
href="https://redirect.github.com/AzureAD/microsoft-authentication-library-for-js/issues/6832">#6832</a>)</li>
<li><a
href="https://github.com/AzureAD/microsoft-authentication-library-for-js/commit/2d4d0b2cde8e072ba6c64aea9b251984b2dd4021"><code>2d4d0b2</code></a>
Update issue templates (<a
href="https://redirect.github.com/AzureAD/microsoft-authentication-library-for-js/issues/6475">#6475</a>)</li>
<li><a
href="https://github.com/AzureAD/microsoft-authentication-library-for-js/commit/c0a59a93d82d22a7cf142ed1b3dbabfd43aa4c5d"><code>c0a59a9</code></a>
Fix cachePlugin.js not resolving when cache file doesn't exist (<a
href="https://redirect.github.com/AzureAD/microsoft-authentication-library-for-js/issues/6713">#6713</a>)</li>
<li><a
href="https://github.com/AzureAD/microsoft-authentication-library-for-js/commit/35ecaa5775e45955c04d70a38815671534f1fabf"><code>35ecaa5</code></a>
Format Errors related documentation (<a
href="https://redirect.github.com/AzureAD/microsoft-authentication-library-for-js/issues/6720">#6720</a>)</li>
<li><a
href="https://github.com/AzureAD/microsoft-authentication-library-for-js/commit/e6b89ba6da08052a4ad045c9b4e8620ba604c3d5"><code>e6b89ba</code></a>
Bump msgpackr from 1.9.7 to 1.10.1 (<a
href="https://redirect.github.com/AzureAD/microsoft-authentication-library-for-js/issues/6792">#6792</a>)</li>
<li><a
href="https://github.com/AzureAD/microsoft-authentication-library-for-js/commit/7035deaaa499ead2c8e1d1d34fa138004cd49531"><code>7035dea</code></a>
Fix bug affecting metadata resolution for tenanted authorities (<a
href="https://redirect.github.com/AzureAD/microsoft-authentication-library-for-js/issues/6814">#6814</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/AzureAD/microsoft-authentication-library-for-js/compare/msal-node-v2.6.1...msal-node-v2.6.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `axios` from 1.6.5 to 1.6.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `botbuilder` from 4.21.4 to 4.22.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Microsoft/botbuilder-js/releases">botbuilder's
releases</a>.</em></p>
<blockquote>
<h2>Bot Framework JS SDK 4.22.0</h2>
<p>This is the January 2024 4.22.0 release for the JS SDK. This contains
a security fixes, Sharepoint support, and ASE improvements.</p>
<h2>What's Changed</h2>
<ul>
<li>
<p>feat: Add ASE channel validation in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4589">microsoft/botbuilder-js#4589</a></p>
</li>
<li>
<p>feat: Add isVisible property to AceData with nanoid in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4606">microsoft/botbuilder-js#4606</a></p>
</li>
<li>
<p>feat: Support for SharePoint (Viva) Adaptive Card Extension in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4551">microsoft/botbuilder-js#4551</a></p>
</li>
<li>
<p>fix: USGovSingleTenant OAuthEndpoint in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4588">microsoft/botbuilder-js#4588</a></p>
</li>
<li>
<p>bump: Update mocha package to avoid vulnerability in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4603">microsoft/botbuilder-js#4603</a></p>
</li>
<li>
<p>fix: <a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4582">#4582</a>
UserAssignedIdentity(WorkloadIdentity) auth fails with 'scope <a
href="https://api.botframework.com">https://api.botframework.com</a> is
not valid' in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4607">microsoft/botbuilder-js#4607</a></p>
</li>
<li>
<p>fix: Remove old <code>@​microsoft/recognizers-text-number</code>
version with postinstall scripts in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4608">microsoft/botbuilder-js#4608</a></p>
</li>
<li>
<p>fix: <a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4544">#4544</a>
JwtTokenExtractor.getIdentity:err! FetchError: request to
'login.botframework.com/v1/.well-known/openidconfiguration' in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4583">microsoft/botbuilder-js#4583</a></p>
</li>
</ul>
<h2>Proxy notes</h2>
<p>The introduction of MSAL in 4.21.0 encountered an issue when used
behind a proxy. This version adds an additional way to specify proxy
settings. This does require a change to the bot startup code if
required.</p>
<p><img
src="https://github.com/microsoft/botbuilder-js/assets/1024902/dc0cc5b0-2484-4fdb-8127-5eb9cb659056"
alt="image" /></p>
<p>See this issue for details, and if additional discussion is required:
<a
href="https://redirect.github.com/microsoft/botbuilder-js/issues/4544">microsoft/botbuilder-js#4544</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/581156ba8badb035f6790923c92eece6d3c263c4"><code>581156b</code></a>
use npm to run postinstall scripts (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4611">#4611</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/f09c5381fc261f1c667678510cafdb9e8faf8154"><code>f09c538</code></a>
fix: <a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4582">#4582</a>
UserAssignedIdentity(WorkloadIdentity) auth fails with 'scope ht...</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/e9c44b9bbc92e7c4627a945dd35bf52c5f6db7c1"><code>e9c44b9</code></a>
fix: Remove old <code>@​microsoft/recognizers-text-number</code> version
with postinstall s...</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/a0bd4bd219960d49400e46344ca2425ee67431e0"><code>a0bd4bd</code></a>
feat: Add isVisible property to AceData (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4606">#4606</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/1f745610c6b38a41fe92bcf027fae367f2b983b0"><code>1f74561</code></a>
fix: <a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4544">#4544</a>
JwtTokenExtractor.getIdentity:err! FetchError: request to https:...</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/f597523316454edd4247624f37df25177c3d9b4c"><code>f597523</code></a>
fix: add content type header (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4587">#4587</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/18edf1793955c5e366cbc39ca51fb63732215d72"><code>18edf17</code></a>
update mocha package to avoid vulnerability with nanoid (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4603">#4603</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/21e7caa0509c501e89662561b608e93ce62d90fd"><code>21e7caa</code></a>
feat: Add ASE channel validation. (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4589">#4589</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/aa83fbe7529619e50e6935838911c2f27f864f9d"><code>aa83fbe</code></a>
fix: USGovSingleTenant OAuthEndpoint (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4588">#4588</a>)</li>
<li>See full diff in <a
href="https://github.com/Microsoft/botbuilder-js/compare/4.21.4...4.22.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `botbuilder-dialogs` from 4.21.4 to 4.22.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Microsoft/botbuilder-js/releases">botbuilder-dialogs's
releases</a>.</em></p>
<blockquote>
<h2>Bot Framework JS SDK 4.22.0</h2>
<p>This is the January 2024 4.22.0 release for the JS SDK. This contains
a security fixes, Sharepoint support, and ASE improvements.</p>
<h2>What's Changed</h2>
<ul>
<li>
<p>feat: Add ASE channel validation in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4589">microsoft/botbuilder-js#4589</a></p>
</li>
<li>
<p>feat: Add isVisible property to AceData with nanoid in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4606">microsoft/botbuilder-js#4606</a></p>
</li>
<li>
<p>feat: Support for SharePoint (Viva) Adaptive Card Extension in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4551">microsoft/botbuilder-js#4551</a></p>
</li>
<li>
<p>fix: USGovSingleTenant OAuthEndpoint in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4588">microsoft/botbuilder-js#4588</a></p>
</li>
<li>
<p>bump: Update mocha package to avoid vulnerability in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4603">microsoft/botbuilder-js#4603</a></p>
</li>
<li>
<p>fix: <a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4582">#4582</a>
UserAssignedIdentity(WorkloadIdentity) auth fails with 'scope <a
href="https://api.botframework.com">https://api.botframework.com</a> is
not valid' in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4607">microsoft/botbuilder-js#4607</a></p>
</li>
<li>
<p>fix: Remove old <code>@​microsoft/recognizers-text-number</code>
version with postinstall scripts in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4608">microsoft/botbuilder-js#4608</a></p>
</li>
<li>
<p>fix: <a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4544">#4544</a>
JwtTokenExtractor.getIdentity:err! FetchError: request to
'login.botframework.com/v1/.well-known/openidconfiguration' in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4583">microsoft/botbuilder-js#4583</a></p>
</li>
</ul>
<h2>Proxy notes</h2>
<p>The introduction of MSAL in 4.21.0 encountered an issue when used
behind a proxy. This version adds an additional way to specify proxy
settings. This does require a change to the bot startup code if
required.</p>
<p><img
src="https://github.com/microsoft/botbuilder-js/assets/1024902/dc0cc5b0-2484-4fdb-8127-5eb9cb659056"
alt="image" /></p>
<p>See this issue for details, and if additional discussion is required:
<a
href="https://redirect.github.com/microsoft/botbuilder-js/issues/4544">microsoft/botbuilder-js#4544</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/581156ba8badb035f6790923c92eece6d3c263c4"><code>581156b</code></a>
use npm to run postinstall scripts (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4611">#4611</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/f09c5381fc261f1c667678510cafdb9e8faf8154"><code>f09c538</code></a>
fix: <a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4582">#4582</a>
UserAssignedIdentity(WorkloadIdentity) auth fails with 'scope ht...</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/e9c44b9bbc92e7c4627a945dd35bf52c5f6db7c1"><code>e9c44b9</code></a>
fix: Remove old <code>@​microsoft/recognizers-text-number</code> version
with postinstall s...</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/a0bd4bd219960d49400e46344ca2425ee67431e0"><code>a0bd4bd</code></a>
feat: Add isVisible property to AceData (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4606">#4606</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/1f745610c6b38a41fe92bcf027fae367f2b983b0"><code>1f74561</code></a>
fix: <a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4544">#4544</a>
JwtTokenExtractor.getIdentity:err! FetchError: request to https:...</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/f597523316454edd4247624f37df25177c3d9b4c"><code>f597523</code></a>
fix: add content type header (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4587">#4587</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/18edf1793955c5e366cbc39ca51fb63732215d72"><code>18edf17</code></a>
update mocha package to avoid vulnerability with nanoid (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4603">#4603</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/21e7caa0509c501e89662561b608e93ce62d90fd"><code>21e7caa</code></a>
feat: Add ASE channel validation. (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4589">#4589</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/aa83fbe7529619e50e6935838911c2f27f864f9d"><code>aa83fbe</code></a>
fix: USGovSingleTenant OAuthEndpoint (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4588">#4588</a>)</li>
<li>See full diff in <a
href="https://github.com/Microsoft/botbuilder-js/compare/4.21.4...4.22.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `openai` from 4.25.0 to 4.26.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/openai/openai-node/releases">openai's
releases</a>.</em></p>
<blockquote>
<h2>v4.26.0</h2>
<h2>4.26.0 (2024-01-25)</h2>
<p>Full Changelog: <a
href="https://github.com/openai/openai-node/compare/v4.25.0...v4.26.0">v4.25.0...v4.26.0</a></p>
<h3>Features</h3>
<ul>
<li><strong>api:</strong> add text embeddings dimensions param (<a
href="https://redirect.github.com/openai/openai-node/issues/650">#650</a>)
(<a
href="https://github.com/openai/openai-node/commit/1b5a977d0eef7f5cf97daf27333cbbeb6bb479f3">1b5a977</a>)</li>
</ul>
<h3>Chores</h3>
<ul>
<li><strong>internal:</strong> add internal helpers &amp; improve build
scripts (<a
href="https://redirect.github.com/openai/openai-node/issues/643">#643</a>)
(<a
href="https://github.com/openai/openai-node/commit/9392f50e47f26b16632c9eb12187ea7f8a565e09">9392f50</a>)</li>
<li><strong>internal:</strong> adjust ecosystem-tests logging in CI (<a
href="https://redirect.github.com/openai/openai-node/issues/646">#646</a>)
(<a
href="https://github.com/openai/openai-node/commit/156084b8734194a5856612378115b948c82ec6e4">156084b</a>)</li>
<li><strong>internal:</strong> don't re-export streaming type (<a
href="https://redirect.github.com/openai/openai-node/issues/648">#648</a>)
(<a
href="https://github.com/openai/openai-node/commit/4c4be945fa3f54036183e2d0877060db47ea564b">4c4be94</a>)</li>
<li><strong>internal:</strong> fix binary files (<a
href="https://redirect.github.com/openai/openai-node/issues/645">#645</a>)
(<a
href="https://github.com/openai/openai-node/commit/e1fbc396f4d1dd8ba980c25ba03b670dfed887a0">e1fbc39</a>)</li>
<li><strong>internal:</strong> minor streaming updates (<a
href="https://redirect.github.com/openai/openai-node/issues/647">#647</a>)
(<a
href="https://github.com/openai/openai-node/commit/2f073e4e6c9cd0ff3ad434907da710704765a005">2f073e4</a>)</li>
<li><strong>internal:</strong> pin deno version (<a
href="https://redirect.github.com/openai/openai-node/issues/649">#649</a>)
(<a
href="https://github.com/openai/openai-node/commit/7e4b9039320e4ccbafb45f57dce273bedc9b7cb3">7e4b903</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/openai/openai-node/blob/master/CHANGELOG.md">openai's
changelog</a>.</em></p>
<blockquote>
<h2>4.26.0 (2024-01-25)</h2>
<p>Full Changelog: <a
href="https://github.com/openai/openai-node/compare/v4.25.0...v4.26.0">v4.25.0...v4.26.0</a></p>
<h3>Features</h3>
<ul>
<li><strong>api:</strong> add text embeddings dimensions param (<a
href="https://redirect.github.com/openai/openai-node/issues/650">#650</a>)
(<a
href="https://github.com/openai/openai-node/commit/1b5a977d0eef7f5cf97daf27333cbbeb6bb479f3">1b5a977</a>)</li>
</ul>
<h3>Chores</h3>
<ul>
<li><strong>internal:</strong> add internal helpers &amp; improve build
scripts (<a
href="https://redirect.github.com/openai/openai-node/issues/643">#643</a>)
(<a
href="https://github.com/openai/openai-node/commit/9392f50e47f26b16632c9eb12187ea7f8a565e09">9392f50</a>)</li>
<li><strong>internal:</strong> adjust ecosystem-tests logging in CI (<a
href="https://redirect.github.com/openai/openai-node/issues/646">#646</a>)
(<a
href="https://github.com/openai/openai-node/commit/156084b8734194a5856612378115b948c82ec6e4">156084b</a>)</li>
<li><strong>internal:</strong> don't re-export streaming type (<a
href="https://redirect.github.com/openai/openai-node/issues/648">#648</a>)
(<a
href="https://github.com/openai/openai-node/commit/4c4be945fa3f54036183e2d0877060db47ea564b">4c4be94</a>)</li>
<li><strong>internal:</strong> fix binary files (<a
href="https://redirect.github.com/openai/openai-node/issues/645">#645</a>)
(<a
href="https://github.com/openai/openai-node/commit/e1fbc396f4d1dd8ba980c25ba03b670dfed887a0">e1fbc39</a>)</li>
<li><strong>internal:</strong> minor streaming updates (<a
href="https://redirect.github.com/openai/openai-node/issues/647">#647</a>)
(<a
href="https://github.com/openai/openai-node/commit/2f073e4e6c9cd0ff3ad434907da710704765a005">2f073e4</a>)</li>
<li><strong>internal:</strong> pin deno version (<a
href="https://redirect.github.com/openai/openai-node/issues/649">#649</a>)
(<a
href="https://github.com/openai/openai-node/commit/7e4b9039320e4ccbafb45f57dce273bedc9b7cb3">7e4b903</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/openai/openai-node/commit/c9bb4edaf5bc72ccd81fd7978abd468169255f1c"><code>c9bb4ed</code></a>
release: 4.26.0</li>
<li><a
href="https://github.com/openai/openai-node/commit/413df77441c8da1a8971a41d342815a6e9223698"><code>413df77</code></a>
feat(api): add text embeddings dimensions param (<a
href="https://redirect.github.com/openai/openai-node/issues/650">#650</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/5ac7cb7e5e8aaac6e5a3d6abd9ee047e3decc0e8"><code>5ac7cb7</code></a>
chore(internal): pin deno version (<a
href="https://redirect.github.com/openai/openai-node/issues/649">#649</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/09b3cd479a0bf7863f7b2d749d08b3e30edb4379"><code>09b3cd4</code></a>
chore(internal): don't re-export streaming type (<a
href="https://redirect.github.com/openai/openai-node/issues/648">#648</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/8d9eeebf1f6347ae1f59aad626079c13acce877c"><code>8d9eeeb</code></a>
chore(internal): minor streaming updates (<a
href="https://redirect.github.com/openai/openai-node/issues/647">#647</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/fff5046a057d3cb75bc055d71acd8c018a4574b2"><code>fff5046</code></a>
chore(internal): adjust ecosystem-tests logging in CI (<a
href="https://redirect.github.com/openai/openai-node/issues/646">#646</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/ca5887d10b1902812a3caebdf850de1d837021ac"><code>ca5887d</code></a>
chore(internal): fix binary files (<a
href="https://redirect.github.com/openai/openai-node/issues/645">#645</a>)</li>
<li><a
href="https://github.com/openai/openai-node/commit/d3fa4eca3f20a7b5d5524935c822fbaa52870a19"><code>d3fa4ec</code></a>
chore(internal): add internal helpers &amp; improve build scripts (<a
href="https://redirect.github.com/openai/openai-node/issues/643">#643</a>)</li>
<li>See full diff in <a
href="https://github.com/openai/openai-node/compare/v4.25.0...v4.26.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `dotenv` from 16.3.2 to 16.4.1
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md">dotenv's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/motdotla/dotenv/compare/v16.4.0...v16.4.1">16.4.1</a>
(2024-01-24)</h2>
<ul>
<li>Patch support for array as <code>path</code> option <a
href="https://redirect.github.com/motdotla/dotenv/pull/797">#797</a></li>
</ul>
<h2><a
href="https://github.com/motdotla/dotenv/compare/v16.3.2...v16.4.0">16.4.0</a>
(2024-01-23)</h2>
<ul>
<li>Add <code>error.code</code> to error messages around
<code>.env.vault</code> decryption handling <a
href="https://redirect.github.com/motdotla/dotenv/pull/795">#795</a></li>
<li>Add ability to find <code>.env.vault</code> file when filename(s)
passed as an array <a
href="https://redirect.github.com/motdotla/dotenv/pull/784">#784</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/motdotla/dotenv/commit/e251ee244a77fc8f6100d0efaae87ca561f5e33a"><code>e251ee2</code></a>
16.4.1</li>
<li><a
href="https://github.com/motdotla/dotenv/commit/a7fee29bd0392fc8da039e809f833e6df0b6fd3c"><code>a7fee29</code></a>
update CHANGELOG 🪵</li>
<li><a
href="https://github.com/motdotla/dotenv/commit/579d136c2175eaac14a284e58e531e3c2d169b8c"><code>579d136</code></a>
update README</li>
<li><a
href="https://github.com/motdotla/dotenv/commit/7ea2f81a2efc97fee568bb0470a9786638f84b27"><code>7ea2f81</code></a>
Merge pull request <a
href="https://redirect.github.com/motdotla/dotenv/issues/798">#798</a>
from motdotla/fix-tests</li>
<li><a
href="https://github.com/motdotla/dotenv/commit/6b829d2551c6b90d1d7d67d46471d845083b1fff"><code>6b829d2</code></a>
demonstrate currently failing (pending) test. multiple env files should
merge</li>
<li><a
href="https://github.com/motdotla/dotenv/commit/3e2284b89d31648d89c63f696de9c7e6d5438518"><code>3e2284b</code></a>
largely remove mocking from tests except where useful</li>
<li><a
href="https://github.com/motdotla/dotenv/commit/2039c4edc6cc0b29409004e447feca61abf424ac"><code>2039c4e</code></a>
wip: fix tests</li>
<li><a
href="https://github.com/motdotla/dotenv/commit/48a6ade3bf4f1e00f61b74607ee3bc58f7b7064d"><code>48a6ade</code></a>
Merge pull request <a
href="https://redirect.github.com/motdotla/dotenv/issues/797">#797</a>
from tran-simon/master</li>
<li><a
href="https://github.com/motdotla/dotenv/commit/cfd735d7d00f01e3772a35b541b1b141fd5a5c5c"><code>cfd735d</code></a>
fix: support array for path option</li>
<li><a
href="https://github.com/motdotla/dotenv/commit/a44cb3dd00abdd77f3268be111cf9dd68e9a8e91"><code>a44cb3d</code></a>
update README</li>
<li>Additional commits viewable in <a
href="https://github.com/motdotla/dotenv/compare/v16.3.2...v16.4.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `botbuilder-azure-blobs` from 4.21.4 to 4.22.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Microsoft/botbuilder-js/releases">botbuilder-azure-blobs's
releases</a>.</em></p>
<blockquote>
<h2>Bot Framework JS SDK 4.22.0</h2>
<p>This is the January 2024 4.22.0 release for the JS SDK. This contains
a security fixes, Sharepoint support, and ASE improvements.</p>
<h2>What's Changed</h2>
<ul>
<li>
<p>feat: Add ASE channel validation in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4589">microsoft/botbuilder-js#4589</a></p>
</li>
<li>
<p>feat: Add isVisible property to AceData with nanoid in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4606">microsoft/botbuilder-js#4606</a></p>
</li>
<li>
<p>feat: Support for SharePoint (Viva) Adaptive Card Extension in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4551">microsoft/botbuilder-js#4551</a></p>
</li>
<li>
<p>fix: USGovSingleTenant OAuthEndpoint in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4588">microsoft/botbuilder-js#4588</a></p>
</li>
<li>
<p>bump: Update mocha package to avoid vulnerability in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4603">microsoft/botbuilder-js#4603</a></p>
</li>
<li>
<p>fix: <a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4582">#4582</a>
UserAssignedIdentity(WorkloadIdentity) auth fails with 'scope <a
href="https://api.botframework.com">https://api.botframework.com</a> is
not valid' in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4607">microsoft/botbuilder-js#4607</a></p>
</li>
<li>
<p>fix: Remove old <code>@​microsoft/recognizers-text-number</code>
version with postinstall scripts in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4608">microsoft/botbuilder-js#4608</a></p>
</li>
<li>
<p>fix: <a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4544">#4544</a>
JwtTokenExtractor.getIdentity:err! FetchError: request to
'login.botframework.com/v1/.well-known/openidconfiguration' in <a
href="https://redirect.github.com/microsoft/botbuilder-js/pull/4583">microsoft/botbuilder-js#4583</a></p>
</li>
</ul>
<h2>Proxy notes</h2>
<p>The introduction of MSAL in 4.21.0 encountered an issue when used
behind a proxy. This version adds an additional way to specify proxy
settings. This does require a change to the bot startup code if
required.</p>
<p><img
src="https://github.com/microsoft/botbuilder-js/assets/1024902/dc0cc5b0-2484-4fdb-8127-5eb9cb659056"
alt="image" /></p>
<p>See this issue for details, and if additional discussion is required:
<a
href="https://redirect.github.com/microsoft/botbuilder-js/issues/4544">microsoft/botbuilder-js#4544</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/581156ba8badb035f6790923c92eece6d3c263c4"><code>581156b</code></a>
use npm to run postinstall scripts (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4611">#4611</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/f09c5381fc261f1c667678510cafdb9e8faf8154"><code>f09c538</code></a>
fix: <a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4582">#4582</a>
UserAssignedIdentity(WorkloadIdentity) auth fails with 'scope ht...</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/e9c44b9bbc92e7c4627a945dd35bf52c5f6db7c1"><code>e9c44b9</code></a>
fix: Remove old <code>@​microsoft/recognizers-text-number</code> version
with postinstall s...</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/a0bd4bd219960d49400e46344ca2425ee67431e0"><code>a0bd4bd</code></a>
feat: Add isVisible property to AceData (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4606">#4606</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/1f745610c6b38a41fe92bcf027fae367f2b983b0"><code>1f74561</code></a>
fix: <a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4544">#4544</a>
JwtTokenExtractor.getIdentity:err! FetchError: request to https:...</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/f597523316454edd4247624f37df25177c3d9b4c"><code>f597523</code></a>
fix: add content type header (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4587">#4587</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/18edf1793955c5e366cbc39ca51fb63732215d72"><code>18edf17</code></a>
update mocha package to avoid vulnerability with nanoid (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4603">#4603</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/21e7caa0509c501e89662561b608e93ce62d90fd"><code>21e7caa</code></a>
feat: Add ASE channel validation. (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4589">#4589</a>)</li>
<li><a
href="https://github.com/microsoft/botbuilder-js/commit/aa83fbe7529619e50e6935838911c2f27f864f9d"><code>aa83fbe</code></a>
fix: USGovSingleTenant OAuthEndpoint (<a
href="https://redirect.github.com/Microsoft/botbuilder-js/issues/4588">#4588</a>)</li>
<li>See full diff in <a
href="https://github.com/Microsoft/botbuilder-js/compare/4.21.4...4.22.1">compare
view</a></li>
</ul>
</details>
<br />


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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Acebo <aacebowork@gmail.com>
osyrisrblx added a commit to roblox-ts/types that referenced this pull request Jan 29, 2024
Bumps the packages group with 15 updates:

| Package | From | To |
| --- | --- | --- |
|
[@types/jsdom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsdom)
| `21.1.4` | `21.1.6` |
|
[@types/libxmljs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/libxmljs)
| `0.18.11` | `0.18.12` |
|
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)
| `20.8.10` | `20.11.10` |
|
[@types/showdown](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/showdown)
| `2.0.3` | `2.0.6` |
|
[@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)
| `6.9.1` | `6.19.1` |
|
[@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)
| `6.9.1` | `6.19.1` |
| [axios](https://github.com/axios/axios) | `1.6.0` | `1.6.7` |
| [eslint](https://github.com/eslint/eslint) | `8.52.0` | `8.56.0` |
|
[eslint-config-prettier](https://github.com/prettier/eslint-config-prettier)
| `9.0.0` | `9.1.0` |
|
[eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier)
| `5.0.1` | `5.1.3` |
| [fs-extra](https://github.com/jprichardson/node-fs-extra) | `11.1.1` |
`11.2.0` |
|
[@types/fs-extra](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/fs-extra)
| `11.0.3` | `11.0.4` |
| [libxmljs2](https://github.com/marudor/libxmljs2) | `0.32.0` |
`0.33.0` |
| [prettier](https://github.com/prettier/prettier) | `3.0.3` | `3.2.4` |
| [ts-morph](https://github.com/dsherret/ts-morph) | `20.0.0` | `21.0.1`
|

Updates `@types/jsdom` from 21.1.4 to 21.1.6
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jsdom">compare
view</a></li>
</ul>
</details>
<br />

Updates `@types/libxmljs` from 0.18.11 to 0.18.12
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/libxmljs">compare
view</a></li>
</ul>
</details>
<br />

Updates `@types/node` from 20.8.10 to 20.11.10
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare
view</a></li>
</ul>
</details>
<br />

Updates `@types/showdown` from 2.0.3 to 2.0.6
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/showdown">compare
view</a></li>
</ul>
</details>
<br />

Updates `@typescript-eslint/eslint-plugin` from 6.9.1 to 6.19.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@​typescript-eslint/eslint-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v6.19.1</h2>
<h2>6.19.1 (2024-01-22)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-unnecessary-condition] fix false
positive for type variable (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8235">#8235</a>)</li>
<li><strong>type-utils:</strong> preventing isUnsafeAssignment infinite
recursive calls (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8237">#8237</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<h2>v6.19.0</h2>
<h2>6.19.0 (2024-01-15)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [prefer-promise-reject-errors] add
rule (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8011">#8011</a>)</li>
<li><strong>eslint-plugin:</strong> [no-array-delete] add new rule (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8067">#8067</a>)</li>
<li><strong>eslint-plugin:</strong> [no-useless-template-literals] add
fix suggestions (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8065">#8065</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
detect unnecessary non-null-assertion on a call expression (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8143">#8143</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecesary-type-assertion] treat
unknown/any as nullable (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8089">#8089</a>)</li>
<li><strong>typescript-estree:</strong> add JSDocParsingMode enum merge
for typescript/lib/tsserverlibrary (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8193">#8193</a>)</li>
<li><strong>typescript-estree:</strong> disallow <code>using</code> as
the variable keyword for <code>for..in</code> loops (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/7649">#7649</a>)</li>
<li><strong>typescript-estree:</strong> fix incorrect backwards-compat
augmentation in TS 5.3 (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8181">#8181</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>auvred <a
href="https://github.com/auvred"><code>@​auvred</code></a></li>
<li>Brad Zacher <a
href="https://github.com/bradzacher"><code>@​bradzacher</code></a></li>
<li>Josh Goldberg ✨</li>
<li>Joshua Chen</li>
<li>LJX <a
href="https://github.com/lvjiaxuan"><code>@​lvjiaxuan</code></a></li>
<li>Steven <a
href="https://github.com/Solo-steven"><code>@​Solo-steven</code></a></li>
<li>StyleShit <a
href="https://github.com/StyleShit"><code>@​StyleShit</code></a></li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<h2>v6.18.1</h2>
<h2>6.18.1 (2024-01-08)</h2>
<h3>🩹 Fixes</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md"><code>@​typescript-eslint/eslint-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>6.19.1 (2024-01-22)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li>
<p><strong>type-utils:</strong> preventing isUnsafeAssignment infinite
recursive calls</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [no-unnecessary-condition] fix false
positive for type variable</p>
</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>YeonJuan</li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<h2>6.19.0 (2024-01-15)</h2>
<h3>🚀 Features</h3>
<ul>
<li>
<p><strong>eslint-plugin:</strong> [prefer-promise-reject-errors] add
rule</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [no-array-delete] add new rule</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [no-useless-template-literals] add
fix suggestions</p>
</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li>
<p><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
detect unnecessary non-null-assertion on a call expression</p>
</li>
<li>
<p><strong>eslint-plugin:</strong> [no-unnecesary-type-assertion] treat
unknown/any as nullable</p>
</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>auvred</li>
<li>Brad Zacher</li>
<li>Josh Goldberg ✨</li>
<li>Joshua Chen</li>
<li>LJX</li>
<li>Steven</li>
<li>StyleShit</li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<h2>6.18.1 (2024-01-08)</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/a91121425d8c40e90c6dfc282a13e5cbf78a6562"><code>a911214</code></a>
chore(release): publish 6.19.1</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/920f909debc3eb394f5aef4e36568bdf6641e304"><code>920f909</code></a>
fix(eslint-plugin): [no-unnecessary-condition] fix false positive for
type va...</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/01556f50376b87eff21c42d121b627e3a6f003f0"><code>01556f5</code></a>
fix(type-utils): preventing isUnsafeAssignment infinite recursive calls
(<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8237">#8237</a>)</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/7c673a146d26d4360a25638f901a3c329bcca8c4"><code>7c673a1</code></a>
chore(release): publish 6.19.0</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/85ae4a8977149583b0c501e092a927b1435e68d2"><code>85ae4a8</code></a>
fix(eslint-plugin): [no-unnecesary-type-assertion] treat unknown/any as
nulla...</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/5a5670800fda2cd5ffd060b0fb9db351f0f3c4d8"><code>5a56708</code></a>
fix(eslint-plugin): [no-unnecessary-type-assertion] detect unnecessary
non-nu...</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/c3767edf65716be08df25723d7dbb770de0e7037"><code>c3767ed</code></a>
feat(eslint-plugin): [no-useless-template-literals] add fix suggestions
(<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8065">#8065</a>)</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/8ca5e5e8430ba1beb5f12f317d403d7087bf9210"><code>8ca5e5e</code></a>
docs: force space after await in no-floating-promises snippet (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8228">#8228</a>)</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/e0f591e9d299a42bcf2087200b0770d810af2e64"><code>e0f591e</code></a>
feat(eslint-plugin): [no-array-delete] add new rule (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8067">#8067</a>)</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/1aa8664bab1f7ea77539ec83f65123e8ebe34b39"><code>1aa8664</code></a>
feat(eslint-plugin): [prefer-promise-reject-errors] add rule (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin/issues/8011">#8011</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v6.19.1/packages/eslint-plugin">compare
view</a></li>
</ul>
</details>
<br />

Updates `@typescript-eslint/parser` from 6.9.1 to 6.19.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@​typescript-eslint/parser</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v6.19.1</h2>
<h2>6.19.1 (2024-01-22)</h2>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-unnecessary-condition] fix false
positive for type variable (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8235">#8235</a>)</li>
<li><strong>type-utils:</strong> preventing isUnsafeAssignment infinite
recursive calls (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8237">#8237</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>YeonJuan <a
href="https://github.com/yeonjuan"><code>@​yeonjuan</code></a></li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<h2>v6.19.0</h2>
<h2>6.19.0 (2024-01-15)</h2>
<h3>🚀 Features</h3>
<ul>
<li><strong>eslint-plugin:</strong> [prefer-promise-reject-errors] add
rule (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8011">#8011</a>)</li>
<li><strong>eslint-plugin:</strong> [no-array-delete] add new rule (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8067">#8067</a>)</li>
<li><strong>eslint-plugin:</strong> [no-useless-template-literals] add
fix suggestions (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8065">#8065</a>)</li>
</ul>
<h3>🩹 Fixes</h3>
<ul>
<li><strong>eslint-plugin:</strong> [no-unnecessary-type-assertion]
detect unnecessary non-null-assertion on a call expression (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8143">#8143</a>)</li>
<li><strong>eslint-plugin:</strong> [no-unnecesary-type-assertion] treat
unknown/any as nullable (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8089">#8089</a>)</li>
<li><strong>typescript-estree:</strong> add JSDocParsingMode enum merge
for typescript/lib/tsserverlibrary (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8193">#8193</a>)</li>
<li><strong>typescript-estree:</strong> disallow <code>using</code> as
the variable keyword for <code>for..in</code> loops (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/7649">#7649</a>)</li>
<li><strong>typescript-estree:</strong> fix incorrect backwards-compat
augmentation in TS 5.3 (<a
href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/8181">#8181</a>)</li>
</ul>
<h3>❤️  Thank You</h3>
<ul>
<li>auvred <a
href="https://github.com/auvred"><code>@​auvred</code></a></li>
<li>Brad Zacher <a
href="https://github.com/bradzacher"><code>@​bradzacher</code></a></li>
<li>Josh Goldberg ✨</li>
<li>Joshua Chen</li>
<li>LJX <a
href="https://github.com/lvjiaxuan"><code>@​lvjiaxuan</code></a></li>
<li>Steven <a
href="https://github.com/Solo-steven"><code>@​Solo-steven</code></a></li>
<li>StyleShit <a
href="https://github.com/StyleShit"><code>@​StyleShit</code></a></li>
</ul>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<h2>v6.18.1</h2>
<h2>6.18.1 (2024-01-08)</h2>
<h3>🩹 Fixes</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md"><code>@​typescript-eslint/parser</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>6.19.1 (2024-01-22)</h2>
<p>This was a version bump only for parser to align it with other
projects, there were no code changes.</p>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<h2>6.19.0 (2024-01-15)</h2>
<p>This was a version bump only for parser to align it with other
projects, there were no code changes.</p>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<h2>6.18.1 (2024-01-08)</h2>
<p>This was a version bump only for parser to align it with other
projects, there were no code changes.</p>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<h2>6.18.0 (2024-01-06)</h2>
<p>This was a version bump only for parser to align it with other
projects, there were no code changes.</p>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<h1><a
href="https://github.com/typescript-eslint/typescript-eslint/compare/v6.16.0...v6.17.0">6.17.0</a>
(2024-01-01)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@​typescript-eslint/parser</code></p>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<h1><a
href="https://github.com/typescript-eslint/typescript-eslint/compare/v6.15.0...v6.16.0">6.16.0</a>
(2023-12-25)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@​typescript-eslint/parser</code></p>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<h1><a
href="https://github.com/typescript-eslint/typescript-eslint/compare/v6.14.0...v6.15.0">6.15.0</a>
(2023-12-18)</h1>
<p><strong>Note:</strong> Version bump only for package
<code>@​typescript-eslint/parser</code></p>
<p>You can read about our <a
href="https://main--typescript-eslint.netlify.app/users/versioning">versioning
strategy</a> and <a
href="https://main--typescript-eslint.netlify.app/users/releases">releases</a>
on our website.</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/a91121425d8c40e90c6dfc282a13e5cbf78a6562"><code>a911214</code></a>
chore(release): publish 6.19.1</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/7c673a146d26d4360a25638f901a3c329bcca8c4"><code>7c673a1</code></a>
chore(release): publish 6.19.0</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/aa7ab0ec27907657aa6ff5ec287528adecb12c96"><code>aa7ab0e</code></a>
chore(release): publish 6.18.1</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/1ee30876c9572ecffab9dcc7387d4e1eb02cbc4b"><code>1ee3087</code></a>
chore: enable eslint-plugin-jsdoc internally (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser/issues/8145">#8145</a>)</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/21460ef74bac70a40750e98884b51abeb280e2e7"><code>21460ef</code></a>
chore(release): publish 6.18.0</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/d0977abb4cf822f415e1f8a09c8e2b4c2b329555"><code>d0977ab</code></a>
chore: use nx release (<a
href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser/issues/8194">#8194</a>)</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/e566a5dda347470b8ced3cc301b7e4d3e7ed721b"><code>e566a5d</code></a>
chore: publish v6.17.0</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/7246e5604afb20835088104cb47c03b16610f21c"><code>7246e56</code></a>
chore: publish v6.16.0</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/6128a02cb15d500fe22fe265c83e4d7a73ae52c3"><code>6128a02</code></a>
chore: publish v6.15.0</li>
<li><a
href="https://github.com/typescript-eslint/typescript-eslint/commit/c7d702f4315f66c75ae16a4b559ef5b4705bb804"><code>c7d702f</code></a>
chore: publish v6.14.0</li>
<li>Additional commits viewable in <a
href="https://github.com/typescript-eslint/typescript-eslint/commits/v6.19.1/packages/parser">compare
view</a></li>
</ul>
</details>
<br />

Updates `axios` from 1.6.0 to 1.6.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](https://github.com/axios/axios/issues/6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](https://github.com/axios/axios/issues/6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](https://github.com/axios/axios/issues/5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](https://github.com/axios/axios/issues/5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](https://github.com/axios/axios/issues/6176)
[#6175](https://github.com/axios/axios/issues/6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](https://github.com/axios/axios/issues/6172)
[#6167](https://github.com/axios/axios/issues/6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](https://github.com/axios/axios/issues/6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](https://github.com/axios/axios/issues/6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](https://github.com/axios/axios/issues/6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](https://github.com/axios/axios/issues/5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](https://github.com/axios/axios/issues/5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](https://github.com/axios/axios/issues/6176)
[#6175](https://github.com/axios/axios/issues/6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](https://github.com/axios/axios/issues/6172)
[#6167](https://github.com/axios/axios/issues/6167) )">Dmitriy
Mozgovoy</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/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.6.0...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `eslint` from 8.52.0 to 8.56.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/eslint/eslint/releases">eslint's
releases</a>.</em></p>
<blockquote>
<h2>v8.56.0</h2>
<h2>Features</h2>
<ul>
<li><a
href="https://github.com/eslint/eslint/commit/0dd9704c4751e1cd02039f7d6485fee09bbccbf6"><code>0dd9704</code></a>
feat: Support custom severity when reporting unused disable directives
(<a
href="https://redirect.github.com/eslint/eslint/issues/17212">#17212</a>)
(Bryan Mishkin)</li>
<li><a
href="https://github.com/eslint/eslint/commit/31a7e3fde491e36496b54e8905c766b31162d776"><code>31a7e3f</code></a>
feat: fix no-restricted-properties false negatives with unknown objects
(<a
href="https://redirect.github.com/eslint/eslint/issues/17818">#17818</a>)
(Arka Pratim Chaudhuri)</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li><a
href="https://github.com/eslint/eslint/commit/7d5e5f68849ae80caec0fc96ecceebccd348deec"><code>7d5e5f6</code></a>
fix: <code>TypeError: fs.exists is not a function</code> on read-only
file system (<a
href="https://redirect.github.com/eslint/eslint/issues/17846">#17846</a>)
(Francesco Trotta)</li>
<li><a
href="https://github.com/eslint/eslint/commit/74739c849bbb6547b0e555ed8bb2ba1cbe0fdce4"><code>74739c8</code></a>
fix: suggestion with invalid syntax in no-promise-executor-return rule
(<a
href="https://redirect.github.com/eslint/eslint/issues/17812">#17812</a>)
(Bryan Mishkin)</li>
</ul>
<h2>Documentation</h2>
<ul>
<li><a
href="https://github.com/eslint/eslint/commit/90077199fe519953f9af8664bf947db4e4958514"><code>9007719</code></a>
docs: update link in ways-to-extend.md (<a
href="https://redirect.github.com/eslint/eslint/issues/17839">#17839</a>)
(Amel SELMANE)</li>
<li><a
href="https://github.com/eslint/eslint/commit/3a22236f8d10af8a5bcafe56092651d3d681c99d"><code>3a22236</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="https://github.com/eslint/eslint/commit/54c3ca6f2dcd2a7afd53f42fc32055a25587259e"><code>54c3ca6</code></a>
docs: fix migration-guide example (<a
href="https://redirect.github.com/eslint/eslint/issues/17829">#17829</a>)
(Tanuj Kanti)</li>
<li><a
href="https://github.com/eslint/eslint/commit/4391b71e62b15e54b0493f0dce1ea053ebbc0689"><code>4391b71</code></a>
docs: check config comments in rule examples (<a
href="https://redirect.github.com/eslint/eslint/issues/17815">#17815</a>)
(Francesco Trotta)</li>
<li><a
href="https://github.com/eslint/eslint/commit/fd2836342c2be4751b05fe0ba7cece17d1edecc8"><code>fd28363</code></a>
docs: remove mention about ESLint stylistic rules in readme (<a
href="https://redirect.github.com/eslint/eslint/issues/17810">#17810</a>)
(Zwyx)</li>
<li><a
href="https://github.com/eslint/eslint/commit/48ed5a6dad478a14d3e823f137455c523f373e0b"><code>48ed5a6</code></a>
docs: Update README (GitHub Actions Bot)</li>
</ul>
<h2>Chores</h2>
<ul>
<li><a
href="https://github.com/eslint/eslint/commit/ba6af85c7d8ba55d37f8663aee949d148e441c1a"><code>ba6af85</code></a>
chore: upgrade <code>@​eslint/js</code><a
href="https://github.com/8"><code>@​8</code></a>.56.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17864">#17864</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/60a531a9c0811ddf718e26b9136e133f580b6c36"><code>60a531a</code></a>
chore: package.json update for <code>@​eslint/js</code> release
(Jenkins)</li>
<li><a
href="https://github.com/eslint/eslint/commit/ba87a0651a65b52c3ac442b512dd9f4c2b4c5f57"><code>ba87a06</code></a>
chore: update dependency markdownlint to ^0.32.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17783">#17783</a>)
(renovate[bot])</li>
<li><a
href="https://github.com/eslint/eslint/commit/9271d10d9eabeafb0129a090f29191bfd14273c0"><code>9271d10</code></a>
chore: add GitHub issue template for docs issues (<a
href="https://redirect.github.com/eslint/eslint/issues/17845">#17845</a>)
(Josh Goldberg ✨)</li>
<li><a
href="https://github.com/eslint/eslint/commit/70a686b3c1feac5eca98bbff9bd67175f550d5db"><code>70a686b</code></a>
chore: Convert rule tests to FlatRuleTester (<a
href="https://redirect.github.com/eslint/eslint/issues/17819">#17819</a>)
(Nicholas C. Zakas)</li>
<li><a
href="https://github.com/eslint/eslint/commit/f3a599d34c7080fc0b2c9a60b5e54dc98c22867c"><code>f3a599d</code></a>
chore: upgrade eslint-plugin-unicorn to v49.0.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17837">#17837</a>)
(唯然)</li>
<li><a
href="https://github.com/eslint/eslint/commit/905d4b75ab2df42aba30622cee0f66b511397e2c"><code>905d4b7</code></a>
chore: upgrade eslint-plugin-eslint-plugin v5.2.1 (<a
href="https://redirect.github.com/eslint/eslint/issues/17838">#17838</a>)
(唯然)</li>
<li><a
href="https://github.com/eslint/eslint/commit/4d7c3ce246e6b499f472342ef59496a47cc033d6"><code>4d7c3ce</code></a>
chore: update eslint-plugin-n v16.4.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17836">#17836</a>)
(唯然)</li>
<li><a
href="https://github.com/eslint/eslint/commit/fd0c60c3be1f213e5a6d69d8a3248e963619e155"><code>fd0c60c</code></a>
ci: unpin Node.js 21.2.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17821">#17821</a>)
(Francesco Trotta)</li>
</ul>
<h2>v8.55.0</h2>
<h2>Features</h2>
<ul>
<li><a
href="https://github.com/eslint/eslint/commit/8c9e6c100a6eb69da292463293b3b48cff911a01"><code>8c9e6c1</code></a>
feat: importNamePattern option in no-restricted-imports (<a
href="https://redirect.github.com/eslint/eslint/issues/17721">#17721</a>)
(Tanuj Kanti)</li>
</ul>
<h2>Documentation</h2>
<ul>
<li><a
href="https://github.com/eslint/eslint/commit/83ece2afc2dc6c49efe82678663fe4cba590c0e5"><code>83ece2a</code></a>
docs: fix typo <code>--rules</code> -&gt; <code>--rule</code> (<a
href="https://redirect.github.com/eslint/eslint/issues/17806">#17806</a>)
(OKURA Masafumi)</li>
<li><a
href="https://github.com/eslint/eslint/commit/fffca5c362bcd205dbf79d1bb52834f8a98fc6bd"><code>fffca5c</code></a>
docs: remove &quot;Open in Playground&quot; buttons for removed rules
(<a
href="https://redirect.github.com/eslint/eslint/issues/17791">#17791</a>)
(Francesco Trotta)</li>
<li><a
href="https://github.com/eslint/eslint/commit/a6d9442a9ab34d5d19f78d8c8fd0767a1237bfe3"><code>a6d9442</code></a>
docs: fix correct/incorrect examples of rules (<a
href="https://redirect.github.com/eslint/eslint/issues/17789">#17789</a>)
(Tanuj Kanti)</li>
<li><a
href="https://github.com/eslint/eslint/commit/383e99928d7ce649ec9030c9856b03fbac0c3501"><code>383e999</code></a>
docs: update and fix examples for <code>no-unused-vars</code> (<a
href="https://redirect.github.com/eslint/eslint/issues/17788">#17788</a>)
(Tanuj Kanti)</li>
<li><a
href="https://github.com/eslint/eslint/commit/5a8efd5b7ad13eb320a1f468d1d4ab3c8ab99214"><code>5a8efd5</code></a>
docs: add specific stylistic rule for each deprecated rule (<a
href="https://redirect.github.com/eslint/eslint/issues/17778">#17778</a>)
(Etienne)</li>
</ul>
<h2>Chores</h2>
<ul>
<li><a
href="https://github.com/eslint/eslint/commit/eb8950c3b811c9163b9aae23af8b6266ad98b295"><code>eb8950c</code></a>
chore: upgrade <code>@​eslint/js</code><a
href="https://github.com/8"><code>@​8</code></a>.55.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17811">#17811</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/93df3849a7a25ebe0502000bf0bfb80a6613a5ae"><code>93df384</code></a>
chore: package.json update for <code>@​eslint/js</code> release
(Jenkins)</li>
<li><a
href="https://github.com/eslint/eslint/commit/fe4b9545a83e9aca7ba4bb77bc9c868d57de777f"><code>fe4b954</code></a>
chore: upgrade <code>@​eslint/eslintrc</code><a
href="https://github.com/2"><code>@​2</code></a>.1.4 (<a
href="https://redirect.github.com/eslint/eslint/issues/17799">#17799</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/bd8911db85c7a1127543c9212c8cea47a5cb687d"><code>bd8911d</code></a>
ci: pin Node.js 21.2.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17809">#17809</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/b29a16b22f234f6134475efb6c7be5ac946556ee"><code>b29a16b</code></a>
chore: fix several <code>cli</code> tests to run in the intended flat
config mode (<a
href="https://redirect.github.com/eslint/eslint/issues/17797">#17797</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/de165c108203c6703516ac651f5b4cac5b241804"><code>de165c1</code></a>
chore: remove unused config-extends fixtures (<a
href="https://redirect.github.com/eslint/eslint/issues/17781">#17781</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/d4304b8b66eac870ffbf4840d84add8a123b25fc"><code>d4304b8</code></a>
chore: remove formatting/stylistic rules from new rule templates (<a
href="https://redirect.github.com/eslint/eslint/issues/17780">#17780</a>)
(Francesco Trotta)</li>
<li><a
href="https://github.com/eslint/eslint/commit/21024fe2029420b413bed11d23761c87e9a02a1a"><code>21024fe</code></a>
chore: check rule examples for syntax errors (<a
href="https://redirect.github.com/eslint/eslint/issues/17718">#17718</a>)
(Francesco Trotta)</li>
</ul>
<h2>v8.54.0</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/eslint/eslint/blob/main/CHANGELOG.md">eslint's
changelog</a>.</em></p>
<blockquote>
<p>v8.56.0 - December 15, 2023</p>
<ul>
<li><a
href="https://github.com/eslint/eslint/commit/ba6af85c7d8ba55d37f8663aee949d148e441c1a"><code>ba6af85</code></a>
chore: upgrade <code>@​eslint/js</code><a
href="https://github.com/8"><code>@​8</code></a>.56.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17864">#17864</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/60a531a9c0811ddf718e26b9136e133f580b6c36"><code>60a531a</code></a>
chore: package.json update for <code>@​eslint/js</code> release
(Jenkins)</li>
<li><a
href="https://github.com/eslint/eslint/commit/0dd9704c4751e1cd02039f7d6485fee09bbccbf6"><code>0dd9704</code></a>
feat: Support custom severity when reporting unused disable directives
(<a
href="https://redirect.github.com/eslint/eslint/issues/17212">#17212</a>)
(Bryan Mishkin)</li>
<li><a
href="https://github.com/eslint/eslint/commit/31a7e3fde491e36496b54e8905c766b31162d776"><code>31a7e3f</code></a>
feat: fix no-restricted-properties false negatives with unknown objects
(<a
href="https://redirect.github.com/eslint/eslint/issues/17818">#17818</a>)
(Arka Pratim Chaudhuri)</li>
<li><a
href="https://github.com/eslint/eslint/commit/ba87a0651a65b52c3ac442b512dd9f4c2b4c5f57"><code>ba87a06</code></a>
chore: update dependency markdownlint to ^0.32.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17783">#17783</a>)
(renovate[bot])</li>
<li><a
href="https://github.com/eslint/eslint/commit/7d5e5f68849ae80caec0fc96ecceebccd348deec"><code>7d5e5f6</code></a>
fix: <code>TypeError: fs.exists is not a function</code> on read-only
file system (<a
href="https://redirect.github.com/eslint/eslint/issues/17846">#17846</a>)
(Francesco Trotta)</li>
<li><a
href="https://github.com/eslint/eslint/commit/9271d10d9eabeafb0129a090f29191bfd14273c0"><code>9271d10</code></a>
chore: add GitHub issue template for docs issues (<a
href="https://redirect.github.com/eslint/eslint/issues/17845">#17845</a>)
(Josh Goldberg ✨)</li>
<li><a
href="https://github.com/eslint/eslint/commit/70a686b3c1feac5eca98bbff9bd67175f550d5db"><code>70a686b</code></a>
chore: Convert rule tests to FlatRuleTester (<a
href="https://redirect.github.com/eslint/eslint/issues/17819">#17819</a>)
(Nicholas C. Zakas)</li>
<li><a
href="https://github.com/eslint/eslint/commit/90077199fe519953f9af8664bf947db4e4958514"><code>9007719</code></a>
docs: update link in ways-to-extend.md (<a
href="https://redirect.github.com/eslint/eslint/issues/17839">#17839</a>)
(Amel SELMANE)</li>
<li><a
href="https://github.com/eslint/eslint/commit/f3a599d34c7080fc0b2c9a60b5e54dc98c22867c"><code>f3a599d</code></a>
chore: upgrade eslint-plugin-unicorn to v49.0.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17837">#17837</a>)
(唯然)</li>
<li><a
href="https://github.com/eslint/eslint/commit/905d4b75ab2df42aba30622cee0f66b511397e2c"><code>905d4b7</code></a>
chore: upgrade eslint-plugin-eslint-plugin v5.2.1 (<a
href="https://redirect.github.com/eslint/eslint/issues/17838">#17838</a>)
(唯然)</li>
<li><a
href="https://github.com/eslint/eslint/commit/4d7c3ce246e6b499f472342ef59496a47cc033d6"><code>4d7c3ce</code></a>
chore: update eslint-plugin-n v16.4.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17836">#17836</a>)
(唯然)</li>
<li><a
href="https://github.com/eslint/eslint/commit/3a22236f8d10af8a5bcafe56092651d3d681c99d"><code>3a22236</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="https://github.com/eslint/eslint/commit/54c3ca6f2dcd2a7afd53f42fc32055a25587259e"><code>54c3ca6</code></a>
docs: fix migration-guide example (<a
href="https://redirect.github.com/eslint/eslint/issues/17829">#17829</a>)
(Tanuj Kanti)</li>
<li><a
href="https://github.com/eslint/eslint/commit/4391b71e62b15e54b0493f0dce1ea053ebbc0689"><code>4391b71</code></a>
docs: check config comments in rule examples (<a
href="https://redirect.github.com/eslint/eslint/issues/17815">#17815</a>)
(Francesco Trotta)</li>
<li><a
href="https://github.com/eslint/eslint/commit/fd2836342c2be4751b05fe0ba7cece17d1edecc8"><code>fd28363</code></a>
docs: remove mention about ESLint stylistic rules in readme (<a
href="https://redirect.github.com/eslint/eslint/issues/17810">#17810</a>)
(Zwyx)</li>
<li><a
href="https://github.com/eslint/eslint/commit/fd0c60c3be1f213e5a6d69d8a3248e963619e155"><code>fd0c60c</code></a>
ci: unpin Node.js 21.2.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17821">#17821</a>)
(Francesco Trotta)</li>
<li><a
href="https://github.com/eslint/eslint/commit/48ed5a6dad478a14d3e823f137455c523f373e0b"><code>48ed5a6</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="https://github.com/eslint/eslint/commit/74739c849bbb6547b0e555ed8bb2ba1cbe0fdce4"><code>74739c8</code></a>
fix: suggestion with invalid syntax in no-promise-executor-return rule
(<a
href="https://redirect.github.com/eslint/eslint/issues/17812">#17812</a>)
(Bryan Mishkin)</li>
</ul>
<p>v8.55.0 - December 1, 2023</p>
<ul>
<li><a
href="https://github.com/eslint/eslint/commit/eb8950c3b811c9163b9aae23af8b6266ad98b295"><code>eb8950c</code></a>
chore: upgrade <code>@​eslint/js</code><a
href="https://github.com/8"><code>@​8</code></a>.55.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17811">#17811</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/93df3849a7a25ebe0502000bf0bfb80a6613a5ae"><code>93df384</code></a>
chore: package.json update for <code>@​eslint/js</code> release
(Jenkins)</li>
<li><a
href="https://github.com/eslint/eslint/commit/fe4b9545a83e9aca7ba4bb77bc9c868d57de777f"><code>fe4b954</code></a>
chore: upgrade <code>@​eslint/eslintrc</code><a
href="https://github.com/2"><code>@​2</code></a>.1.4 (<a
href="https://redirect.github.com/eslint/eslint/issues/17799">#17799</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/8c9e6c100a6eb69da292463293b3b48cff911a01"><code>8c9e6c1</code></a>
feat: importNamePattern option in no-restricted-imports (<a
href="https://redirect.github.com/eslint/eslint/issues/17721">#17721</a>)
(Tanuj Kanti)</li>
<li><a
href="https://github.com/eslint/eslint/commit/83ece2afc2dc6c49efe82678663fe4cba590c0e5"><code>83ece2a</code></a>
docs: fix typo <code>--rules</code> -&gt; <code>--rule</code> (<a
href="https://redirect.github.com/eslint/eslint/issues/17806">#17806</a>)
(OKURA Masafumi)</li>
<li><a
href="https://github.com/eslint/eslint/commit/bd8911db85c7a1127543c9212c8cea47a5cb687d"><code>bd8911d</code></a>
ci: pin Node.js 21.2.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17809">#17809</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/b29a16b22f234f6134475efb6c7be5ac946556ee"><code>b29a16b</code></a>
chore: fix several <code>cli</code> tests to run in the intended flat
config mode (<a
href="https://redirect.github.com/eslint/eslint/issues/17797">#17797</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/fffca5c362bcd205dbf79d1bb52834f8a98fc6bd"><code>fffca5c</code></a>
docs: remove &quot;Open in Playground&quot; buttons for removed rules
(<a
href="https://redirect.github.com/eslint/eslint/issues/17791">#17791</a>)
(Francesco Trotta)</li>
<li><a
href="https://github.com/eslint/eslint/commit/a6d9442a9ab34d5d19f78d8c8fd0767a1237bfe3"><code>a6d9442</code></a>
docs: fix correct/incorrect examples of rules (<a
href="https://redirect.github.com/eslint/eslint/issues/17789">#17789</a>)
(Tanuj Kanti)</li>
<li><a
href="https://github.com/eslint/eslint/commit/383e99928d7ce649ec9030c9856b03fbac0c3501"><code>383e999</code></a>
docs: update and fix examples for <code>no-unused-vars</code> (<a
href="https://redirect.github.com/eslint/eslint/issues/17788">#17788</a>)
(Tanuj Kanti)</li>
<li><a
href="https://github.com/eslint/eslint/commit/5a8efd5b7ad13eb320a1f468d1d4ab3c8ab99214"><code>5a8efd5</code></a>
docs: add specific stylistic rule for each deprecated rule (<a
href="https://redirect.github.com/eslint/eslint/issues/17778">#17778</a>)
(Etienne)</li>
<li><a
href="https://github.com/eslint/eslint/commit/de165c108203c6703516ac651f5b4cac5b241804"><code>de165c1</code></a>
chore: remove unused config-extends fixtures (<a
href="https://redirect.github.com/eslint/eslint/issues/17781">#17781</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/d4304b8b66eac870ffbf4840d84add8a123b25fc"><code>d4304b8</code></a>
chore: remove formatting/stylistic rules from new rule templates (<a
href="https://redirect.github.com/eslint/eslint/issues/17780">#17780</a>)
(Francesco Trotta)</li>
<li><a
href="https://github.com/eslint/eslint/commit/21024fe2029420b413bed11d23761c87e9a02a1a"><code>21024fe</code></a>
chore: check rule examples for syntax errors (<a
href="https://redirect.github.com/eslint/eslint/issues/17718">#17718</a>)
(Francesco Trotta)</li>
</ul>
<p>v8.54.0 - November 17, 2023</p>
<ul>
<li><a
href="https://github.com/eslint/eslint/commit/d644de9a4b593b565617303a095bc9aa69e7b768"><code>d644de9</code></a>
chore: upgrade <code>@​eslint/js</code><a
href="https://github.com/8"><code>@​8</code></a>.54.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17773">#17773</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/1e6e31415cc429a3a9fc64b2ec03df0e0ec0c91b"><code>1e6e314</code></a>
chore: package.json update for <code>@​eslint/js</code> release
(Jenkins)</li>
<li><a
href="https://github.com/eslint/eslint/commit/98926e6e7323e5dd12a9f016cb558144296665af"><code>98926e6</code></a>
fix: Ensure that extra data is not accidentally stored in the cache file
(<a
href="https://redirect.github.com/eslint/eslint/issues/17760">#17760</a>)
(Milos Djermanovic)</li>
<li><a
href="https://github.com/eslint/eslint/commit/a7a883bd6ba4f140b60cbbb2be5b53d750f6c8db"><code>a7a883b</code></a>
feat: for-direction rule add check for condition in reverse order (<a
href="https://redirect.github.com/eslint/eslint/issues/17755">#17755</a>)
(Angelo Annunziata)</li>
<li><a
href="https://github.com/eslint/eslint/commit/1452dc9f12c45c05d7c569f737221f0d988ecef1"><code>1452dc9</code></a>
feat: Add suggestions to no-console (<a
href="https://redirect.github.com/eslint/eslint/issues/17680">#17680</a>)
(Joel Mathew Koshy)</li>
<li><a
href="https://github.com/eslint/eslint/commit/6fb8805310afe7476d6c404f172177a6d15fcf11"><code>6fb8805</code></a>
chore: Fixed grammar in issue_templates/rule_change (<a
href="https://redirect.github.com/eslint/eslint/issues/17770">#17770</a>)
(Joel Mathew Koshy)</li>
<li><a
href="https://github.com/eslint/eslint/commit/becfdd39b25d795e56c9a13eb3e77af6b9c86e8a"><code>becfdd3</code></a>
docs: Make clear when rules are removed (<a
href="https://redirect.github.com/eslint/eslint/issues/17728">#17728</a>)
(Nicholas C. Zakas)</li>
<li><a
href="https://github.com/eslint/eslint/commit/e8cf9f6a524332293f8b2c90a2db4a532e47d919"><code>e8cf9f6</code></a>
fix: Make dark scroll bar in dark theme (<a
href="https://redirect.github.com/eslint/eslint/issues/17753">#17753</a>)
(Pavel)</li>
<li><a
href="https://github.com/eslint/eslint/commit/85db7243ddb8706ed60ab64a7ddf604d0d7de493"><code>85db724</code></a>
chore: upgrade <code>markdownlint</code> to 0.31.1 (<a
href="https://redirect.github.com/eslint/eslint/issues/17754">#17754</a>)
(Nitin Kumar)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/eslint/eslint/commit/8e8e9f8476d701e4e981b9b4d9957e5d4855e530"><code>8e8e9f8</code></a>
8.56.0</li>
<li><a
href="https://github.com/eslint/eslint/commit/085978b3ce051e454c2244bf36a9493f7fa95d41"><code>085978b</code></a>
Build: changelog update for 8.56.0</li>
<li><a
href="https://github.com/eslint/eslint/commit/ba6af85c7d8ba55d37f8663aee949d148e441c1a"><code>ba6af85</code></a>
chore: upgrade <code>@​eslint/js</code><a
href="https://github.com/8"><code>@​8</code></a>.56.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17864">#17864</a>)</li>
<li><a
href="https://github.com/eslint/eslint/commit/60a531a9c0811ddf718e26b9136e133f580b6c36"><code>60a531a</code></a>
chore: package.json update for <code>@​eslint/js</code> release</li>
<li><a
href="https://github.com/eslint/eslint/commit/0dd9704c4751e1cd02039f7d6485fee09bbccbf6"><code>0dd9704</code></a>
feat: Support custom severity when reporting unused disable directives
(<a
href="https://redirect.github.com/eslint/eslint/issues/17212">#17212</a>)</li>
<li><a
href="https://github.com/eslint/eslint/commit/31a7e3fde491e36496b54e8905c766b31162d776"><code>31a7e3f</code></a>
feat: fix no-restricted-properties false negatives with unknown objects
(<a
href="https://redirect.github.com/eslint/eslint/issues/17818">#17818</a>)</li>
<li><a
href="https://github.com/eslint/eslint/commit/ba87a0651a65b52c3ac442b512dd9f4c2b4c5f57"><code>ba87a06</code></a>
chore: update dependency markdownlint to ^0.32.0 (<a
href="https://redirect.github.com/eslint/eslint/issues/17783">#17783</a>)</li>
<li><a
href="https://github.com/eslint/eslint/commit/7d5e5f68849ae80caec0fc96ecceebccd348deec"><code>7d5e5f6</code></a>
fix: <code>TypeError: fs.exists is not a function</code> on read-only
file system (<a
href="https://redirect.github.com/eslint/eslint/issues/17846">#17846</a>)</li>
<li><a
href="https://github.com/eslint/eslint/commit/9271d10d9eabeafb0129a090f29191bfd14273c0"><code>9271d10</code></a>
chore: add GitHub issue template for docs issues (<a
href="https://redirect.github.com/eslint/eslint/issues/17845">#17845</a>)</li>
<li><a
href="https://github.com/eslint/eslint/commit/70a686b3c1feac5eca98bbff9bd67175f550d5db"><code>70a686b</code></a>
chore: Convert rule tests to FlatRuleTester (<a
href="https://redirect.github.com/eslint/eslint/issues/17819">#17819</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/eslint/eslint/compare/v8.52.0...v8.56.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `eslint-config-prettier` from 9.0.0 to 9.1.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md">eslint-config-prettier's
changelog</a>.</em></p>
<blockquote>
<h3>Version 9.1.0 (2023-12-02)</h3>
<ul>
<li>Added: [unicorn/template-indent], (as a [special
rule][unicorn/template-indent-special]). Thanks to Gürgün Dayıoğlu (<a
href="https://github.com/gurgunday"><code>@​gurgunday</code></a>)!</li>
<li>Changed: All the [formatting rules that were deprecated in ESLint
8.53.0][deprecated-8.53.0] are now excluded if you set the
<code>ESLINT_CONFIG_PRETTIER_NO_DEPRECATED</code> environment
variable.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/prettier/eslint-config-prettier/commit/40c7f3d0624129934bc3b40ab13a8ed938c6313b"><code>40c7f3d</code></a>
eslint-config-prettier v9.1.0</li>
<li><a
href="https://github.com/prettier/eslint-config-prettier/commit/4110dff0c5b258be37506ecee9578cd7ff8e4759"><code>4110dff</code></a>
Merge pull request <a
href="https://redirect.github.com/prettier/eslint-config-prettier/issues/271">#271</a>
from prettier/deprecated</li>
<li><a
href="https://github.com/prettier/eslint-config-prettier/commit/6d0bd9294aeeea34cf9004bde2e6cb79883141fa"><code>6d0bd92</code></a>
Update tests to handle newly deprecated rules</li>
<li><a
href="https://github.com/prettier/eslint-config-prettier/commit/4c876b9424f38e52cee1118ef51ff19ce041cee1"><code>4c876b9</code></a>
Move rules deprecated in ESLint 8.53.0 to the deprecated section</li>
<li><a
href="https://github.com/prettier/eslint-config-prettier/commit/24445c08bd39207e1f5471c153b368a98a3b7223"><code>24445c0</code></a>
Use specialRule constant</li>
<li><a
href="https://github.com/prettier/eslint-config-prettier/commit/782719658f183caa645d3340e6d7a167925258d4"><code>7827196</code></a>
Group deprecated and removed rules by version</li>
<li><a
href="https://github.com/prettier/eslint-config-prettier/commit/48f804c31a008a19096b6b7208fa29a15b42a726"><code>48f804c</code></a>
Roll back to ESLint 8.52.0 for now</li>
<li><a
href="https://github.com/prettier/eslint-config-prettier/commit/16f03b8b4e64a1f36fb6d60891509117cc73627b"><code>16f03b8</code></a>
Update Prettier</li>
<li><a
href="https://github.com/prettier/eslint-config-prettier/commit/b06d618abf0be32cc9af816317dfa806e850d6ba"><code>b06d618</code></a>
Update npm packages</li>
<li><a
href="https://github.com/prettier/eslint-config-prettier/commit/25fc4276f8b9e204484fa5897b50ac86bfb8f8b6"><code>25fc427</code></a>
turn off <code>unicorn/template-indent</code> (<a
href="https://redirect.github.com/prettier/eslint-config-prettier/issues/269">#269</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/prettier/eslint-config-prettier/compare/v9.0.0...v9.1.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `eslint-plugin-prettier` from 5.0.1 to 5.1.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/prettier/eslint-plugin-prettier/releases">eslint-plugin-prettier's
releases</a>.</em></p>
<blockquote>
<h2>v5.1.3</h2>
<h3>Patch Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/629">#629</a>
<a
href="https://github.com/prettier/eslint-plugin-prettier/commit/985b33c56f146b2e65ae391a3af57f63b07ecbdf"><code>985b33c</code></a>
Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>!
- chore: add <code>package.json</code> into <code>exports</code>
map</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/prettier/eslint-plugin-prettier/compare/v5.1.2...v5.1.3">https://github.com/prettier/eslint-plugin-prettier/compare/v5.1.2...v5.1.3</a></p>
<h2>v5.1.2</h2>
<h2>5.1.2</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/623">#623</a>
<a
href="https://github.com/prettier/eslint-plugin-prettier/commit/8210e44309b168c7c06185eae8249b2d0eb65815"><code>8210e44</code></a>
Thanks <a href="https://github.com/BPScott"><code>@​BPScott</code></a>!
- Add exports mapping to package.json, to allow <code>import
eslintPluginRecommended from 'eslint-plugin-prettier/recommended'</code>
to work as expected.</p>
<p>Strictly speaking this is a breaking change as it removes the ability
for people to import from
&quot;eslint-plugin-prettier/eslint-plugin-prettier.js&quot; and
&quot;eslint-plugin-prettier/recommended.js&quot; but the former was
never recommended in the first place and the latter has only been
available for a few days.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/621">#621</a>
<a
href="https://github.com/prettier/eslint-plugin-prettier/commit/2b09e7fc64f38297c8ca39d087dba1f122ef999c"><code>2b09e7f</code></a>
Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>!
- feat: support parsing <code>markdown</code> via
<code>eslint-mdx</code> natively</p>
<p>What means the following is unnecessary anymore when using with
<code>eslint-mdx</code>/<code>eslint-plugin-mdx</code>!</p>
<pre lang="json5"><code>[
  {
    files: [&quot;**/*.md&quot;],
rules: { &quot;prettier/prettier&quot;: [&quot;error&quot;, { parser:
&quot;markdown&quot; }] },
  },
  {
    files: [&quot;**/*.mdx&quot;],
rules: { &quot;prettier/prettier&quot;: [&quot;error&quot;, { parser:
&quot;mdx&quot; }] },
  },
]
</code></pre>
</li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/prettier/eslint-plugin-prettier/compare/v5.1.1...v5.1.2">https://github.com/prettier/eslint-plugin-prettier/compare/v5.1.1...v5.1.2</a></p>
<h2>v5.1.1</h2>
<h2>5.1.1</h2>
<h3>Patch Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/619">#619</a>
<a
href="https://github.com/prettier/eslint-plugin-prettier/commit/b5c0dc5715616a0f2a0da8b8c077434efc618a3e"><code>b5c0dc5</code></a>
Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>!
- chore: skip formatting inline scripts in pug files</li>
</ul>
<h2>v.5.1.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/616">#616</a>
<a
href="https://github.com/prettier/eslint-plugin-prettier/commit/3856413420d3d026e5ae84f29c4bd0d558697135"><code>3856413</code></a>
Thanks <a href="https://github.com/BPScott"><code>@​BPScott</code></a>!
- Add recommended config for the flat config format.</p>
<p>If you are using flat config, import the recommended config from
<code>eslint-plugin-prettier/recommended</code>. Like the legacy format
recommended config, this automatically includes the contents of
<code>eslint-config-prettier</code>.</p>
<pre lang="js"><code></code></pre>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md">eslint-plugin-prettier's
changelog</a>.</em></p>
<blockquote>
<h2>5.1.3</h2>
<h3>Patch Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/629">#629</a>
<a
href="https://github.com/prettier/eslint-plugin-prettier/commit/985b33c56f146b2e65ae391a3af57f63b07ecbdf"><code>985b33c</code></a>
Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>!
- chore: add <code>package.json</code> into <code>exports</code>
map</li>
</ul>
<h2>5.1.2</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/623">#623</a>
<a
href="https://github.com/prettier/eslint-plugin-prettier/commit/8210e44309b168c7c06185eae8249b2d0eb65815"><code>8210e44</code></a>
Thanks <a href="https://github.com/BPScott"><code>@​BPScott</code></a>!
- Add exports mapping to package.json, to allow <code>import
eslintPluginRecommended from 'eslint-plugin-prettier/recommended'</code>
to work as expected.</p>
<p>Strictly speaking this is a breaking change as it removes the ability
for people to import from
&quot;eslint-plugin-prettier/eslint-plugin-prettier.js&quot; and
&quot;eslint-plugin-prettier/recommended.js&quot; but the former was
never recommended in the first place and the latter has only been
available for a few days.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/621">#621</a>
<a
href="https://github.com/prettier/eslint-plugin-prettier/commit/2b09e7fc64f38297c8ca39d087dba1f122ef999c"><code>2b09e7f</code></a>
Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>!
- feat: support parsing <code>markdown</code> via
<code>eslint-mdx</code> natively</p>
<p>What means the following is unnecessary anymore when using with
<code>eslint-mdx</code>/<code>eslint-plugin-mdx</code>!</p>
<pre lang="json5"><code>[
  {
    files: ['**/*.md'],
    rules: { 'prettier/prettier': ['error', { parser: 'markdown' }] },
  },
  {
    files: ['**/*.mdx'],
    rules: { 'prettier/prettier': ['error', { parser: 'mdx' }] },
  },
]
</code></pre>
</li>
</ul>
<h2>5.1.1</h2>
<h3>Patch Changes</h3>
<ul>
<li><a
href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/619">#619</a>
<a
href="https://github.com/prettier/eslint-plugin-prettier/commit/b5c0dc5715616a0f2a0da8b8c077434efc618a3e"><code>b5c0dc5</code></a>
Thanks <a href="https://github.com/JounQin"><code>@​JounQin</code></a>!
- chore: skip formatting inline scripts in pug files</li>
</ul>
<h2>5.1.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/prettier/eslint-plugin-prettier/pull/616">#616</a>
<a
href="https://github.com/prettier/eslint-plugin-prettier/commit/3856413420d3d026e5ae84f29c4bd0d558697135"><code>3856413</code></a>
Thanks <a href="https://github.com/BPScott"><code>@​BPScott</code></a>!
- Add recommended config for the flat config format.</p>
<p>If you are using flat config, import the recommended config from
<code>eslint-plugin-prettier/recommended</code>. Like the l…
github-actions bot pushed a commit to milliorn/cryptocurrency-list that referenced this pull request Feb 1, 2024
[//]: # (dependabot-start)
⚠️  **Dependabot is rebasing this PR** ⚠️ 

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

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

---

[//]: # (dependabot-end)

Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
MikeGoldsmith pushed a commit to honeycombio/honeycomb-opentelemetry-node that referenced this pull request Feb 6, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
npalm pushed a commit to philips-labs/terraform-aws-github-runner that referenced this pull request Feb 8, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.2 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Phalanxia pushed a commit to Rodis-Infrastructure/discord-webhook-bridge that referenced this pull request Feb 12, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.5 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
github-actions bot pushed a commit to milliorn/recipe-page that referenced this pull request Feb 21, 2024
Bumps the npm_and_yarn group with 1 update in the /. directory:
[axios](https://github.com/axios/axios).

Updates `axios` from 1.6.5 to 1.6.6
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li>See full diff in <a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=axios&package-manager=npm_and_yarn&previous-version=1.6.5&new-version=1.6.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 show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/milliorn/recipe-page/network/alerts).

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
MikeGoldsmith pushed a commit to honeycombio/example-greeting-service that referenced this pull request Feb 22, 2024
…#930)

Bumps [axios](https://github.com/axios/axios) from 1.1.3 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.1.3...v1.6.7">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.1.3&new-version=1.6.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/honeycombio/example-greeting-service/network/alerts).

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
ethan-mcconkey added a commit to ethan-mcconkey/ethannet that referenced this pull request Mar 5, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.1 to 1.6.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](axios/axios#6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](axios/axios#6176)
[#6175](axios/axios#6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](axios/axios#6172)
[#6167](axios/axios#6167) )">Dmitriy
Mozgovoy</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.6.1...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


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


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

You can trigger a rebase of this PR by commenting `@dependabot rebase`.

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/NeuraLegion/har-sdk/network/alerts).

</details>

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

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dirkdev98 pushed a commit to lightbasenl/platform-backend-template that referenced this pull request Mar 8, 2024
Bumps the production group with 7 updates:

| Package | From | To |
| --- | --- | --- |
|
[@compas/cli](https://github.com/compasjs/compas/tree/HEAD/packages/cli)
| `0.9.0` | `0.10.0` |
|
[@compas/server](https://github.com/compasjs/compas/tree/HEAD/packages/server)
| `0.9.0` | `0.10.0` |
|
[@compas/stdlib](https://github.com/compasjs/compas/tree/HEAD/packages/stdlib)
| `0.9.0` | `0.10.0` |
|
[@compas/store](https://github.com/compasjs/compas/tree/HEAD/packages/store)
| `0.9.0` | `0.10.0` |
| [axios](https://github.com/axios/axios) | `1.6.2` | `1.6.7` |
| [mjml](https://github.com/mjmlio/mjml/tree/HEAD/packages/mjml) |
`4.14.1` | `4.15.3` |
| [nodemailer](https://github.com/nodemailer/nodemailer) | `6.9.7` |
`6.9.11` |

Updates `@compas/cli` from 0.9.0 to 0.10.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/compasjs/compas/releases"><code>@​compas/cli</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v0.10.0</h2>
<h4>Features</h4>
<ul>
<li>feat(code-gen): support <code>Updater</code> in RQ
<code>setQueryData</code> <a
href="https://github.com/compasjs/compas/commit/7ba289bbbf6e7597c0890d34eba73b8573b9f043"><code>7ba289</code></a></li>
<li>feat(store): accept a <code>tokenMaxAgeResolver</code> in the
session settings <a
href="https://github.com/compasjs/compas/commit/9fa68b8caa0f547c4adc47cfa22cc87d770930b2"><code>9fa68b</code></a></li>
</ul>
<h4>Other</h4>
<ul>
<li>chore: run <code>npm pkg fix</code> <a
href="https://github.com/compasjs/compas/commit/5dc314839505516707694669c34df911e7d70cf9"><code>5dc314</code></a></li>
</ul>
<h4>Dependency updates</h4>
<ul>
<li>build(deps): bump github/codeql-action from 2 to 3 (<a
href="https://redirect.github.com/compasjs/compas/pull/3014">#3014</a>)
<a
href="https://github.com/compasjs/compas/commit/e3252b5ec6deef5466ad55d05d3f1ac1b2fd1157"><code>e3252b</code></a>
<ul>
<li><a href="https://github.com/github/codeql-action/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump actions/upload-artifact from 3 to 4 (<a
href="https://redirect.github.com/compasjs/compas/pull/3016">#3016</a>)
<a
href="https://github.com/compasjs/compas/commit/57398eb32df2b8594bcae483a2a416758ab72c04"><code>57398e</code></a>
<ul>
<li><a
href="https://github.com/actions/upload-artifact/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump file-type from 18.7.0 to 19.0.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/sindresorhus/file-type/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump c8 from 8.0.1 to 9.0.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/bcoe/c8/releases">Release notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-plugin-jsdoc from 46.9.0 to 48.0.2 (<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a
href="https://github.com/gajus/eslint-plugin-jsdoc/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​babel/core</code> from 7.23.5 to 7.23.7
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/babel/babel/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint from 8.54.0 to 8.56.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/eslint/eslint/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-config-prettier from 9.0.0 to 9.1.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)</li>
<li>build(deps): bump eslint-plugin-import from 2.29.0 to 2.29.1 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a
href="https://github.com/import-js/eslint-plugin-import/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump prettier from 3.1.0 to 3.1.1 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/prettier/prettier/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump koa from 2.14.2 to 2.15.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)</li>
<li>build(deps): bump pino from 8.16.2 to 8.17.2 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/pinojs/pino/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​aws-sdk/client-s3</code> from 3.462.0 to
3.489.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/aws/aws-sdk-js-v3/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​aws-sdk/lib-storage</code> from 3.462.0 to
3.489.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/aws/aws-sdk-js-v3/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump sharp from 0.33.0 to 0.33.1 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/lovell/sharp/releases">Release
notes</a></li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/compasjs/compas/blob/main/changelog.md"><code>@​compas/cli</code>'s
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/compasjs/compas/releases/tag/v0.10.0">v0.10.0</a></h3>
<h4>Features</h4>
<ul>
<li>feat(code-gen): support <code>Updater</code> in RQ
<code>setQueryData</code>
<a
href="https://github.com/compasjs/compas/commit/7ba289bbbf6e7597c0890d34eba73b8573b9f043"><code>7ba289</code></a></li>
<li>feat(store): accept a <code>tokenMaxAgeResolver</code> in the
session settings
<a
href="https://github.com/compasjs/compas/commit/9fa68b8caa0f547c4adc47cfa22cc87d770930b2"><code>9fa68b</code></a></li>
</ul>
<h4>Other</h4>
<ul>
<li>chore: run <code>npm pkg fix</code>
<a
href="https://github.com/compasjs/compas/commit/5dc314839505516707694669c34df911e7d70cf9"><code>5dc314</code></a></li>
</ul>
<h4>Dependency updates</h4>
<ul>
<li>build(deps): bump github/codeql-action from 2 to 3
(<a
href="https://redirect.github.com/compasjs/compas/pull/3014">#3014</a>)
<a
href="https://github.com/compasjs/compas/commit/e3252b5ec6deef5466ad55d05d3f1ac1b2fd1157"><code>e3252b</code></a>
<ul>
<li><a href="https://github.com/github/codeql-action/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump actions/upload-artifact from 3 to 4
(<a
href="https://redirect.github.com/compasjs/compas/pull/3016">#3016</a>)
<a
href="https://github.com/compasjs/compas/commit/57398eb32df2b8594bcae483a2a416758ab72c04"><code>57398e</code></a>
<ul>
<li><a
href="https://github.com/actions/upload-artifact/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump file-type from 18.7.0 to 19.0.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/sindresorhus/file-type/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump c8 from 8.0.1 to 9.0.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/bcoe/c8/releases">Release notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-plugin-jsdoc from 46.9.0 to 48.0.2
(<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a
href="https://github.com/gajus/eslint-plugin-jsdoc/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​babel/core</code> from 7.23.5 to 7.23.7
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/babel/babel/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint from 8.54.0 to 8.56.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/eslint/eslint/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-config-prettier from 9.0.0 to 9.1.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)</li>
<li>build(deps): bump eslint-plugin-import from 2.29.0 to 2.29.1
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a
href="https://github.com/import-js/eslint-plugin-import/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump prettier from 3.1.0 to 3.1.1
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/prettier/prettier/releases">Release
notes</a></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/compasjs/compas/commit/73e0c2b97e75082b1409a0f3c34ad0e0e7f0f25f"><code>73e0c2b</code></a>
v0.10.0</li>
<li><a
href="https://github.com/compasjs/compas/commit/3b81c1439c9c6f54f2a2469121ed958b507657bc"><code>3b81c14</code></a>
build(deps): bump the production-breaking group with 5 updates (<a
href="https://github.com/compasjs/compas/tree/HEAD/packages/cli/issues/3032">#3032</a>)</li>
<li><a
href="https://github.com/compasjs/compas/commit/5dc314839505516707694669c34df911e7d70cf9"><code>5dc3148</code></a>
chore: run <code>npm pkg fix</code></li>
<li>See full diff in <a
href="https://github.com/compasjs/compas/commits/v0.10.0/packages/cli">compare
view</a></li>
</ul>
</details>
<br />

Updates `@compas/server` from 0.9.0 to 0.10.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/compasjs/compas/releases"><code>@​compas/server</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v0.10.0</h2>
<h4>Features</h4>
<ul>
<li>feat(code-gen): support <code>Updater</code> in RQ
<code>setQueryData</code> <a
href="https://github.com/compasjs/compas/commit/7ba289bbbf6e7597c0890d34eba73b8573b9f043"><code>7ba289</code></a></li>
<li>feat(store): accept a <code>tokenMaxAgeResolver</code> in the
session settings <a
href="https://github.com/compasjs/compas/commit/9fa68b8caa0f547c4adc47cfa22cc87d770930b2"><code>9fa68b</code></a></li>
</ul>
<h4>Other</h4>
<ul>
<li>chore: run <code>npm pkg fix</code> <a
href="https://github.com/compasjs/compas/commit/5dc314839505516707694669c34df911e7d70cf9"><code>5dc314</code></a></li>
</ul>
<h4>Dependency updates</h4>
<ul>
<li>build(deps): bump github/codeql-action from 2 to 3 (<a
href="https://redirect.github.com/compasjs/compas/pull/3014">#3014</a>)
<a
href="https://github.com/compasjs/compas/commit/e3252b5ec6deef5466ad55d05d3f1ac1b2fd1157"><code>e3252b</code></a>
<ul>
<li><a href="https://github.com/github/codeql-action/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump actions/upload-artifact from 3 to 4 (<a
href="https://redirect.github.com/compasjs/compas/pull/3016">#3016</a>)
<a
href="https://github.com/compasjs/compas/commit/57398eb32df2b8594bcae483a2a416758ab72c04"><code>57398e</code></a>
<ul>
<li><a
href="https://github.com/actions/upload-artifact/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump file-type from 18.7.0 to 19.0.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/sindresorhus/file-type/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump c8 from 8.0.1 to 9.0.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/bcoe/c8/releases">Release notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-plugin-jsdoc from 46.9.0 to 48.0.2 (<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a
href="https://github.com/gajus/eslint-plugin-jsdoc/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​babel/core</code> from 7.23.5 to 7.23.7
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/babel/babel/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint from 8.54.0 to 8.56.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/eslint/eslint/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-config-prettier from 9.0.0 to 9.1.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)</li>
<li>build(deps): bump eslint-plugin-import from 2.29.0 to 2.29.1 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a
href="https://github.com/import-js/eslint-plugin-import/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump prettier from 3.1.0 to 3.1.1 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/prettier/prettier/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump koa from 2.14.2 to 2.15.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)</li>
<li>build(deps): bump pino from 8.16.2 to 8.17.2 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/pinojs/pino/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​aws-sdk/client-s3</code> from 3.462.0 to
3.489.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/aws/aws-sdk-js-v3/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​aws-sdk/lib-storage</code> from 3.462.0 to
3.489.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/aws/aws-sdk-js-v3/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump sharp from 0.33.0 to 0.33.1 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/lovell/sharp/releases">Release
notes</a></li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/compasjs/compas/blob/main/changelog.md"><code>@​compas/server</code>'s
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/compasjs/compas/releases/tag/v0.10.0">v0.10.0</a></h3>
<h4>Features</h4>
<ul>
<li>feat(code-gen): support <code>Updater</code> in RQ
<code>setQueryData</code>
<a
href="https://github.com/compasjs/compas/commit/7ba289bbbf6e7597c0890d34eba73b8573b9f043"><code>7ba289</code></a></li>
<li>feat(store): accept a <code>tokenMaxAgeResolver</code> in the
session settings
<a
href="https://github.com/compasjs/compas/commit/9fa68b8caa0f547c4adc47cfa22cc87d770930b2"><code>9fa68b</code></a></li>
</ul>
<h4>Other</h4>
<ul>
<li>chore: run <code>npm pkg fix</code>
<a
href="https://github.com/compasjs/compas/commit/5dc314839505516707694669c34df911e7d70cf9"><code>5dc314</code></a></li>
</ul>
<h4>Dependency updates</h4>
<ul>
<li>build(deps): bump github/codeql-action from 2 to 3
(<a
href="https://redirect.github.com/compasjs/compas/pull/3014">#3014</a>)
<a
href="https://github.com/compasjs/compas/commit/e3252b5ec6deef5466ad55d05d3f1ac1b2fd1157"><code>e3252b</code></a>
<ul>
<li><a href="https://github.com/github/codeql-action/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump actions/upload-artifact from 3 to 4
(<a
href="https://redirect.github.com/compasjs/compas/pull/3016">#3016</a>)
<a
href="https://github.com/compasjs/compas/commit/57398eb32df2b8594bcae483a2a416758ab72c04"><code>57398e</code></a>
<ul>
<li><a
href="https://github.com/actions/upload-artifact/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump file-type from 18.7.0 to 19.0.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/sindresorhus/file-type/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump c8 from 8.0.1 to 9.0.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/bcoe/c8/releases">Release notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-plugin-jsdoc from 46.9.0 to 48.0.2
(<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a
href="https://github.com/gajus/eslint-plugin-jsdoc/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​babel/core</code> from 7.23.5 to 7.23.7
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/babel/babel/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint from 8.54.0 to 8.56.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/eslint/eslint/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-config-prettier from 9.0.0 to 9.1.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)</li>
<li>build(deps): bump eslint-plugin-import from 2.29.0 to 2.29.1
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a
href="https://github.com/import-js/eslint-plugin-import/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump prettier from 3.1.0 to 3.1.1
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/prettier/prettier/releases">Release
notes</a></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/compasjs/compas/commit/73e0c2b97e75082b1409a0f3c34ad0e0e7f0f25f"><code>73e0c2b</code></a>
v0.10.0</li>
<li><a
href="https://github.com/compasjs/compas/commit/625af0d3549b79ac889813738f0e1528cad5c075"><code>625af0d</code></a>
build(deps): bump the production-compat group with 12 updates (<a
href="https://github.com/compasjs/compas/tree/HEAD/packages/server/issues/3035">#3035</a>)</li>
<li><a
href="https://github.com/compasjs/compas/commit/5dc314839505516707694669c34df911e7d70cf9"><code>5dc3148</code></a>
chore: run <code>npm pkg fix</code></li>
<li>See full diff in <a
href="https://github.com/compasjs/compas/commits/v0.10.0/packages/server">compare
view</a></li>
</ul>
</details>
<br />

Updates `@compas/stdlib` from 0.9.0 to 0.10.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/compasjs/compas/releases"><code>@​compas/stdlib</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v0.10.0</h2>
<h4>Features</h4>
<ul>
<li>feat(code-gen): support <code>Updater</code> in RQ
<code>setQueryData</code> <a
href="https://github.com/compasjs/compas/commit/7ba289bbbf6e7597c0890d34eba73b8573b9f043"><code>7ba289</code></a></li>
<li>feat(store): accept a <code>tokenMaxAgeResolver</code> in the
session settings <a
href="https://github.com/compasjs/compas/commit/9fa68b8caa0f547c4adc47cfa22cc87d770930b2"><code>9fa68b</code></a></li>
</ul>
<h4>Other</h4>
<ul>
<li>chore: run <code>npm pkg fix</code> <a
href="https://github.com/compasjs/compas/commit/5dc314839505516707694669c34df911e7d70cf9"><code>5dc314</code></a></li>
</ul>
<h4>Dependency updates</h4>
<ul>
<li>build(deps): bump github/codeql-action from 2 to 3 (<a
href="https://redirect.github.com/compasjs/compas/pull/3014">#3014</a>)
<a
href="https://github.com/compasjs/compas/commit/e3252b5ec6deef5466ad55d05d3f1ac1b2fd1157"><code>e3252b</code></a>
<ul>
<li><a href="https://github.com/github/codeql-action/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump actions/upload-artifact from 3 to 4 (<a
href="https://redirect.github.com/compasjs/compas/pull/3016">#3016</a>)
<a
href="https://github.com/compasjs/compas/commit/57398eb32df2b8594bcae483a2a416758ab72c04"><code>57398e</code></a>
<ul>
<li><a
href="https://github.com/actions/upload-artifact/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump file-type from 18.7.0 to 19.0.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/sindresorhus/file-type/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump c8 from 8.0.1 to 9.0.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/bcoe/c8/releases">Release notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-plugin-jsdoc from 46.9.0 to 48.0.2 (<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a
href="https://github.com/gajus/eslint-plugin-jsdoc/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​babel/core</code> from 7.23.5 to 7.23.7
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/babel/babel/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint from 8.54.0 to 8.56.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/eslint/eslint/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-config-prettier from 9.0.0 to 9.1.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)</li>
<li>build(deps): bump eslint-plugin-import from 2.29.0 to 2.29.1 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a
href="https://github.com/import-js/eslint-plugin-import/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump prettier from 3.1.0 to 3.1.1 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/prettier/prettier/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump koa from 2.14.2 to 2.15.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)</li>
<li>build(deps): bump pino from 8.16.2 to 8.17.2 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/pinojs/pino/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​aws-sdk/client-s3</code> from 3.462.0 to
3.489.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/aws/aws-sdk-js-v3/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​aws-sdk/lib-storage</code> from 3.462.0 to
3.489.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/aws/aws-sdk-js-v3/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump sharp from 0.33.0 to 0.33.1 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/lovell/sharp/releases">Release
notes</a></li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/compasjs/compas/blob/main/changelog.md"><code>@​compas/stdlib</code>'s
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/compasjs/compas/releases/tag/v0.10.0">v0.10.0</a></h3>
<h4>Features</h4>
<ul>
<li>feat(code-gen): support <code>Updater</code> in RQ
<code>setQueryData</code>
<a
href="https://github.com/compasjs/compas/commit/7ba289bbbf6e7597c0890d34eba73b8573b9f043"><code>7ba289</code></a></li>
<li>feat(store): accept a <code>tokenMaxAgeResolver</code> in the
session settings
<a
href="https://github.com/compasjs/compas/commit/9fa68b8caa0f547c4adc47cfa22cc87d770930b2"><code>9fa68b</code></a></li>
</ul>
<h4>Other</h4>
<ul>
<li>chore: run <code>npm pkg fix</code>
<a
href="https://github.com/compasjs/compas/commit/5dc314839505516707694669c34df911e7d70cf9"><code>5dc314</code></a></li>
</ul>
<h4>Dependency updates</h4>
<ul>
<li>build(deps): bump github/codeql-action from 2 to 3
(<a
href="https://redirect.github.com/compasjs/compas/pull/3014">#3014</a>)
<a
href="https://github.com/compasjs/compas/commit/e3252b5ec6deef5466ad55d05d3f1ac1b2fd1157"><code>e3252b</code></a>
<ul>
<li><a href="https://github.com/github/codeql-action/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump actions/upload-artifact from 3 to 4
(<a
href="https://redirect.github.com/compasjs/compas/pull/3016">#3016</a>)
<a
href="https://github.com/compasjs/compas/commit/57398eb32df2b8594bcae483a2a416758ab72c04"><code>57398e</code></a>
<ul>
<li><a
href="https://github.com/actions/upload-artifact/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump file-type from 18.7.0 to 19.0.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/sindresorhus/file-type/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump c8 from 8.0.1 to 9.0.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/bcoe/c8/releases">Release notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-plugin-jsdoc from 46.9.0 to 48.0.2
(<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a
href="https://github.com/gajus/eslint-plugin-jsdoc/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​babel/core</code> from 7.23.5 to 7.23.7
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/babel/babel/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint from 8.54.0 to 8.56.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/eslint/eslint/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-config-prettier from 9.0.0 to 9.1.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)</li>
<li>build(deps): bump eslint-plugin-import from 2.29.0 to 2.29.1
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a
href="https://github.com/import-js/eslint-plugin-import/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump prettier from 3.1.0 to 3.1.1
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/prettier/prettier/releases">Release
notes</a></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/compasjs/compas/commit/73e0c2b97e75082b1409a0f3c34ad0e0e7f0f25f"><code>73e0c2b</code></a>
v0.10.0</li>
<li><a
href="https://github.com/compasjs/compas/commit/625af0d3549b79ac889813738f0e1528cad5c075"><code>625af0d</code></a>
build(deps): bump the production-compat group with 12 updates (<a
href="https://github.com/compasjs/compas/tree/HEAD/packages/stdlib/issues/3035">#3035</a>)</li>
<li><a
href="https://github.com/compasjs/compas/commit/5dc314839505516707694669c34df911e7d70cf9"><code>5dc3148</code></a>
chore: run <code>npm pkg fix</code></li>
<li>See full diff in <a
href="https://github.com/compasjs/compas/commits/v0.10.0/packages/stdlib">compare
view</a></li>
</ul>
</details>
<br />

Updates `@compas/store` from 0.9.0 to 0.10.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/compasjs/compas/releases"><code>@​compas/store</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v0.10.0</h2>
<h4>Features</h4>
<ul>
<li>feat(code-gen): support <code>Updater</code> in RQ
<code>setQueryData</code> <a
href="https://github.com/compasjs/compas/commit/7ba289bbbf6e7597c0890d34eba73b8573b9f043"><code>7ba289</code></a></li>
<li>feat(store): accept a <code>tokenMaxAgeResolver</code> in the
session settings <a
href="https://github.com/compasjs/compas/commit/9fa68b8caa0f547c4adc47cfa22cc87d770930b2"><code>9fa68b</code></a></li>
</ul>
<h4>Other</h4>
<ul>
<li>chore: run <code>npm pkg fix</code> <a
href="https://github.com/compasjs/compas/commit/5dc314839505516707694669c34df911e7d70cf9"><code>5dc314</code></a></li>
</ul>
<h4>Dependency updates</h4>
<ul>
<li>build(deps): bump github/codeql-action from 2 to 3 (<a
href="https://redirect.github.com/compasjs/compas/pull/3014">#3014</a>)
<a
href="https://github.com/compasjs/compas/commit/e3252b5ec6deef5466ad55d05d3f1ac1b2fd1157"><code>e3252b</code></a>
<ul>
<li><a href="https://github.com/github/codeql-action/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump actions/upload-artifact from 3 to 4 (<a
href="https://redirect.github.com/compasjs/compas/pull/3016">#3016</a>)
<a
href="https://github.com/compasjs/compas/commit/57398eb32df2b8594bcae483a2a416758ab72c04"><code>57398e</code></a>
<ul>
<li><a
href="https://github.com/actions/upload-artifact/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump file-type from 18.7.0 to 19.0.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/sindresorhus/file-type/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump c8 from 8.0.1 to 9.0.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/bcoe/c8/releases">Release notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-plugin-jsdoc from 46.9.0 to 48.0.2 (<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a
href="https://github.com/gajus/eslint-plugin-jsdoc/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​babel/core</code> from 7.23.5 to 7.23.7
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/babel/babel/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint from 8.54.0 to 8.56.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/eslint/eslint/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-config-prettier from 9.0.0 to 9.1.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)</li>
<li>build(deps): bump eslint-plugin-import from 2.29.0 to 2.29.1 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a
href="https://github.com/import-js/eslint-plugin-import/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump prettier from 3.1.0 to 3.1.1 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/prettier/prettier/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump koa from 2.14.2 to 2.15.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)</li>
<li>build(deps): bump pino from 8.16.2 to 8.17.2 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/pinojs/pino/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​aws-sdk/client-s3</code> from 3.462.0 to
3.489.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/aws/aws-sdk-js-v3/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​aws-sdk/lib-storage</code> from 3.462.0 to
3.489.0 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/aws/aws-sdk-js-v3/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump sharp from 0.33.0 to 0.33.1 (<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/lovell/sharp/releases">Release
notes</a></li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/compasjs/compas/blob/main/changelog.md"><code>@​compas/store</code>'s
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/compasjs/compas/releases/tag/v0.10.0">v0.10.0</a></h3>
<h4>Features</h4>
<ul>
<li>feat(code-gen): support <code>Updater</code> in RQ
<code>setQueryData</code>
<a
href="https://github.com/compasjs/compas/commit/7ba289bbbf6e7597c0890d34eba73b8573b9f043"><code>7ba289</code></a></li>
<li>feat(store): accept a <code>tokenMaxAgeResolver</code> in the
session settings
<a
href="https://github.com/compasjs/compas/commit/9fa68b8caa0f547c4adc47cfa22cc87d770930b2"><code>9fa68b</code></a></li>
</ul>
<h4>Other</h4>
<ul>
<li>chore: run <code>npm pkg fix</code>
<a
href="https://github.com/compasjs/compas/commit/5dc314839505516707694669c34df911e7d70cf9"><code>5dc314</code></a></li>
</ul>
<h4>Dependency updates</h4>
<ul>
<li>build(deps): bump github/codeql-action from 2 to 3
(<a
href="https://redirect.github.com/compasjs/compas/pull/3014">#3014</a>)
<a
href="https://github.com/compasjs/compas/commit/e3252b5ec6deef5466ad55d05d3f1ac1b2fd1157"><code>e3252b</code></a>
<ul>
<li><a href="https://github.com/github/codeql-action/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump actions/upload-artifact from 3 to 4
(<a
href="https://redirect.github.com/compasjs/compas/pull/3016">#3016</a>)
<a
href="https://github.com/compasjs/compas/commit/57398eb32df2b8594bcae483a2a416758ab72c04"><code>57398e</code></a>
<ul>
<li><a
href="https://github.com/actions/upload-artifact/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump file-type from 18.7.0 to 19.0.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/sindresorhus/file-type/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump c8 from 8.0.1 to 9.0.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a href="https://github.com/bcoe/c8/releases">Release notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-plugin-jsdoc from 46.9.0 to 48.0.2
(<a
href="https://redirect.github.com/compasjs/compas/pull/3032">#3032</a>)
<ul>
<li>Major version bump</li>
<li><a
href="https://github.com/gajus/eslint-plugin-jsdoc/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump <code>@​babel/core</code> from 7.23.5 to 7.23.7
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/babel/babel/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint from 8.54.0 to 8.56.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/eslint/eslint/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump eslint-config-prettier from 9.0.0 to 9.1.0
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)</li>
<li>build(deps): bump eslint-plugin-import from 2.29.0 to 2.29.1
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a
href="https://github.com/import-js/eslint-plugin-import/releases">Release
notes</a></li>
</ul>
</li>
<li>build(deps): bump prettier from 3.1.0 to 3.1.1
(<a
href="https://redirect.github.com/compasjs/compas/pull/3035">#3035</a>)
<ul>
<li><a href="https://github.com/prettier/prettier/releases">Release
notes</a></li>
</ul>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/compasjs/compas/commit/73e0c2b97e75082b1409a0f3c34ad0e0e7f0f25f"><code>73e0c2b</code></a>
v0.10.0</li>
<li><a
href="https://github.com/compasjs/compas/commit/625af0d3549b79ac889813738f0e1528cad5c075"><code>625af0d</code></a>
build(deps): bump the production-compat group with 12 updates (<a
href="https://github.com/compasjs/compas/tree/HEAD/packages/store/issues/3035">#3035</a>)</li>
<li><a
href="https://github.com/compasjs/compas/commit/9fa68b8caa0f547c4adc47cfa22cc87d770930b2"><code>9fa68b8</code></a>
feat(store): accept a <code>tokenMaxAgeResolver</code> in the session
settings</li>
<li><a
href="https://github.com/compasjs/compas/commit/3b81c1439c9c6f54f2a2469121ed958b507657bc"><code>3b81c14</code></a>
build(deps): bump the production-breaking group with 5 updates (<a
href="https://github.com/compasjs/compas/tree/HEAD/packages/store/issues/3032">#3032</a>)</li>
<li><a
href="https://github.com/compasjs/compas/commit/5dc314839505516707694669c34df911e7d70cf9"><code>5dc3148</code></a>
chore: run <code>npm pkg fix</code></li>
<li>See full diff in <a
href="https://github.com/compasjs/compas/commits/v0.10.0/packages/store">compare
view</a></li>
</ul>
</details>
<br />

Updates `axios` from 1.6.2 to 1.6.7
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](https://github.com/axios/axios/issues/6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](https://github.com/axios/axios/issues/6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](https://github.com/axios/axios/issues/5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](https://github.com/axios/axios/issues/5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](https://github.com/axios/axios/issues/6176)
[#6175](https://github.com/axios/axios/issues/6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2>Release v1.6.4</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](https://github.com/axios/axios/issues/6172)
[#6167](https://github.com/axios/axios/issues/6167) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/gnesher"
title="+10/-10 ([#6163](https://github.com/axios/axios/issues/6163)
)">Guy Nesher</a></li>
</ul>
<h2>Release v1.6.3</h2>
<h2>Release notes:</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](https://github.com/axios/axios/issues/6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](https://github.com/axios/axios/issues/6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](https://github.com/axios/axios/issues/5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](https://github.com/axios/axios/issues/5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+41/-6
([#6176](https://github.com/axios/axios/issues/6176)
[#6175](https://github.com/axios/axios/issues/6175) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+6/-1 ()">Jay</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.4">1.6.4</a>
(2024-01-03)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> fixed formToJSON prototype pollution
vulnerability; (<a
href="https://redirect.github.com/axios/axios/issues/6167">#6167</a>)
(<a
href="https://github.com/axios/axios/commit/3c0c11cade045c4412c242b5727308cff9897a0e">3c0c11c</a>)</li>
<li><strong>security:</strong> fixed security vulnerability in
follow-redirects (<a
href="https://redirect.github.com/axios/axios/issues/6163">#6163</a>)
(<a
href="https://github.com/axios/axios/commit/75af1cdff5b3a6ca3766d3d3afbc3115bb0811b8">75af1cd</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+34/-6 ()">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+34/-3
([#6172](https://github.com/axios/axios/issues/6172)
[#6167](https://github.com/axios/axios/issues/6167) )">Dmitriy
Mozgovoy</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/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0"><code>1a08f90</code></a>
fix: capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/104aa3f65dc30d70273798dff413fb44edd1c9e6"><code>104aa3f</code></a>
chore(release): v1.6.6 (<a
href="https://redirect.github.com/axios/axios/issues/6199">#6199</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39"><code>a1938ff</code></a>
fix: fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab"><code>123f354</code></a>
fix: wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/6d4c421ee157d93b47f3f9082a7044b1da221461"><code>6d4c421</code></a>
chore(release): v1.6.5 (<a
href="https://redirect.github.com/axios/axios/issues/6177">#6177</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c"><code>0736f95</code></a>
fix(ci): refactor notify action as a job of publish action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be"><code>f4f2b03</code></a>
fix(dns): fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/1f73dcbbe0bb37f9e9908abb46a3c252536655c8"><code>1f73dcb</code></a>
docs: update sponsor links</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.6.2...v1.6.7">compare
view</a></li>
</ul>
</details>
<br />

Updates `mjml` from 4.14.1 to 4.15.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/mjmlio/mjml/releases">mjml's
releases</a>.</em></p>
<blockquote>
<h2>v4.15.2</h2>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/mjmlio/mjml/compare/v4.15.1...v4.15.2">https://github.com/mjmlio/mjml/compare/v4.15.1...v4.15.2</a></p>
<h2>v4.15.0</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(mjml-core): prevent empty style tags in head by <a
href="https://github.com/anthony-j-castro"><code>@​anthony-j-castro</code></a>
in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2682">mjmlio/mjml#2682</a></li>
<li>Add mjml-python to ports section in documentation by <a
href="https://github.com/caseyjhol"><code>@​caseyjhol</code></a> in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2732">mjmlio/mjml#2732</a></li>
<li>fix: remove invalid vertical-align property from column by <a
href="https://github.com/garrettjohnson"><code>@​garrettjohnson</code></a>
in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2728">mjmlio/mjml#2728</a></li>
<li>Add Easy-Email editor to the documentation. by <a
href="https://github.com/m-Ryan"><code>@​m-Ryan</code></a> in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2730">mjmlio/mjml#2730</a></li>
<li>Bump word-wrap from 1.2.3 to 1.2.4 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2714">mjmlio/mjml#2714</a></li>
<li>fix(mjml-core): add print to media queries by <a
href="https://github.com/jimmyfortinx"><code>@​jimmyfortinx</code></a>
in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2677">mjmlio/mjml#2677</a></li>
<li>fix(mjml-core): close negative condition by <a
href="https://github.com/jdrouet"><code>@​jdrouet</code></a> in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2704">mjmlio/mjml#2704</a></li>
<li>Adding gradle plugin to documentation by <a
href="https://github.com/Frisch12"><code>@​Frisch12</code></a> in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2735">mjmlio/mjml#2735</a></li>
<li>Improve Accessibility by <a
href="https://github.com/garrettjohnson"><code>@​garrettjohnson</code></a>
in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2738">mjmlio/mjml#2738</a></li>
<li>fix: allow getShorthandAttrValue to parse borders by <a
href="https://github.com/garrettjohnson"><code>@​garrettjohnson</code></a>
in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2729">mjmlio/mjml#2729</a></li>
<li>Bump get-func-name from 2.0.0 to 2.0.2 by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2759">mjmlio/mjml#2759</a></li>
<li>docs: add npm link by <a
href="https://github.com/louix"><code>@​louix</code></a> in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2756">mjmlio/mjml#2756</a></li>
<li>fix mjml-navbar documentation by <a
href="https://github.com/ravigupta-art"><code>@​ravigupta-art</code></a>
in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2799">mjmlio/mjml#2799</a></li>
<li>Automatic component dependencies registration by <a
href="https://github.com/Freezystem"><code>@​Freezystem</code></a> in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2793">mjmlio/mjml#2793</a></li>
<li>add x social network in socialelements.js with correct path to img
by <a href="https://github.com/npracht"><code>@​npracht</code></a> in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2777">mjmlio/mjml#2777</a></li>
<li>[CHORE] Overdue dep update by <a
href="https://github.com/iRyusa"><code>@​iRyusa</code></a> in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2818">mjmlio/mjml#2818</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/anthony-j-castro"><code>@​anthony-j-castro</code></a>
made their first contribution in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2682">mjmlio/mjml#2682</a></li>
<li><a
href="https://github.com/garrettjohnson"><code>@​garrettjohnson</code></a>
made their first contribution in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2728">mjmlio/mjml#2728</a></li>
<li><a href="https://github.com/m-Ryan"><code>@​m-Ryan</code></a> made
their first contribution in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2730">mjmlio/mjml#2730</a></li>
<li><a
href="https://github.com/jimmyfortinx"><code>@​jimmyfortinx</code></a>
made their first contribution in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2677">mjmlio/mjml#2677</a></li>
<li><a href="https://github.com/jdrouet"><code>@​jdrouet</code></a> made
their first contribution in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2704">mjmlio/mjml#2704</a></li>
<li><a href="https://github.com/Frisch12"><code>@​Frisch12</code></a>
made their first contribution in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2735">mjmlio/mjml#2735</a></li>
<li><a href="https://github.com/louix"><code>@​louix</code></a> made
their first contribution in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2756">mjmlio/mjml#2756</a></li>
<li><a
href="https://github.com/ravigupta-art"><code>@​ravigupta-art</code></a>
made their first contribution in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2799">mjmlio/mjml#2799</a></li>
<li><a
href="https://github.com/Freezystem"><code>@​Freezystem</code></a> made
their first contribution in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2793">mjmlio/mjml#2793</a></li>
<li><a href="https://github.com/npracht"><code>@​npracht</code></a> made
their first contribution in <a
href="https://redirect.github.com/mjmlio/mjml/pull/2777">mjmlio/mjml#2777</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/mjmlio/mjml/compare/v4.14.1...v4.15.0">https://github.com/mjmlio/mjml/compare/v4.14.1...v4.15.0</a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/mjmlio/mjml/commit/1c2f45978bebd8a7e707538f045b3863b0e66384"><code>1c2f459</code></a>
v4.15.3</li>
<li><a
href="https://github.com/mjmlio/mjml/commit/ced61790b6717da1b7926083ad19108f3f1976d2"><code>ced6179</code></a>
v4.15.2</li>
<li><a
href="https://github.com/mjmlio/mjml/commit/d276bf8be6ecb735bf9c11bf60babf46f5791e96"><code>d276bf8</code></a>
[FIX] Lockfile didn't update package.json</li>
<li><a
href="https://github.com/mjmlio/mjml/commit/d53d73df61d07a22926c3d73b7b38dc1701aa99d"><code>d53d73d</code></a>
v4.15.1</li>
<li><a
href="https://github.com/mjmlio/mjml/commit/af922bd11c16f4182057077a8a060b7a7f7cc4e3"><code>af922bd</code></a>
v4.15.0</li>
<li>See full diff in <a
href="https://github.com/mjmlio/mjml/commits/v4.15.3/packages/mjml">compare
view</a></li>
</ul>
</details>
<br />

Updates `nodemailer` from 6.9.7 to 6.9.11
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/nodemailer/nodemailer/releases">nodemailer's
releases</a>.</em></p>
<blockquote>
<h2>v6.9.11</h2>
<h2><a
href="https://github.com/nodemailer/nodemailer/compare/v6.9.10...v6.9.11">6.9.11</a>
(2024-02-29)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> Ensure that Content-type is the bottom
header (<a
href="https://github.com/nodemailer/nodemailer/commit/c7cf97e5ecc83f8eee773359951df995c9945446">c7cf97e</a>)</li>
</ul>
<h2>v6.9.10</h2>
<h2><a
href="https://github.com/nodemailer/nodemailer/compare/v6.9.9...v6.9.10">6.9.10</a>
(2024-02-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>data-uri:</strong> Do not use regular expressions for
parsing data URI schemes (<a
href="https://github.com/nodemailer/nodemailer/commit/12e65e975d80efe6bafe6de4590829b3b5ebb492">12e65e9</a>)</li>
<li><strong>data-uri:</strong> Moved all data-uri regexes to use the
non-regex parseDataUri method (<a
href="https://github.com/nodemailer/nodemailer/commit/edd5dfe5ce9b725f8b8ae2830797f65b2a2b0a33">edd5dfe</a>)</li>
</ul>
<h2>v6.9.9</h2>
<h2><a
href="https://github.com/nodemailer/nodemailer/compare/v6.9.8...v6.9.9">6.9.9</a>
(2024-02-01)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> Fix issues described in
GHSA-9h6g-pr28-7cqp. Do not use eternal matching pattern if only a few
occurences are expected (<a
href="https://github.com/nodemailer/nodemailer/commit/dd8f5e8a4ddc99992e31df76bcff9c590035cd4a">dd8f5e8</a>)</li>
<li><strong>tests:</strong> Use native node test runner, added code
coverage support, removed grunt (<a
href="https://redirect.github.com/nodemailer/nodemailer/issues/1604">#1604</a>)
(<a
href="https://github.com/nodemailer/nodemailer/commit/be45c1b299d012358d69247019391a02734d70af">be45c1b</a>)</li>
</ul>
<h2>v6.9.8</h2>
<h2><a
href="https://github.com/nodemailer/nodemailer/compare/v6.9.7...v6.9.8">6.9.8</a>
(2023-12-30)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>punycode:</strong> do not use native punycode module (<a
href="https://github.com/nodemailer/nodemailer/commit/b4d0e0c7cc4b15bc4d9e287f91d1bcaca87508b0">b4d0e0c</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/nodemailer/nodemailer/blob/master/CHANGELOG.md">nodemailer's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/nodemailer/nodemailer/compare/v6.9.10...v6.9.11">6.9.11</a>
(2024-02-29)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>headers:</strong> Ensure that Content-type is the bottom
header (<a
href="https://github.com/nodemailer/nodemailer/commit/c7cf97e5ecc83f8eee773359951df995c9945446">c7cf97e</a>)</li>
</ul>
<h2><a
href="https://github.com/nodemailer/nodemailer/compare/v6.9.9...v6.9.10">6.9.10</a>
(2024-02-22)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>data-uri:</strong> Do not use regular expressions for
parsing data URI schemes (<a
href="https://github.com/nodemailer/nodemailer/commit/12e65e975d80efe6bafe6de4590829b3b5ebb492">12e65e9</a>)</li>
<li><strong>data-uri:</strong> Moved all data-uri regexes to use the
non-regex parseDataUri method (<a
href="https://github.com/nodemailer/nodemailer/commit/edd5dfe5ce9b725f8b8ae2830797f65b2a2b0a33">edd5dfe</a>)</li>
</ul>
<h2><a
href="https://github.com/nodemailer/nodemailer/compare/v6.9.8...v6.9.9">6.9.9</a>
(2024-02-01)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> Fix issues described in
GHSA-9h6g-pr28-7cqp. Do not use eternal matching pattern if only a few
occurences are expected (<a
href="https://github.com/nodemailer/nodemailer/commit/dd8f5e8a4ddc99992e31df76bcff9c590035cd4a">dd8f5e8</a>)</li>
<li><strong>tests:</strong> Use native node test runner, added code
coverage support, removed grunt (<a
href="https://redirect.github.com/nodemailer/nodemailer/issues/1604">#1604</a>)
(<a
href="https://github.com/nodemailer/nodemailer/commit/be45c1b299d012358d69247019391a02734d70af">be45c1b</a>)</li>
</ul>
<h2><a
href="https://github.com/nodemailer/nodemailer/compare/v6.9.7...v6.9.8">6.9.8</a>
(2023-12-30)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>punycode:</strong> do not use native punycode module (<a
href="https://github.com/nodemailer/nodemailer/commit/b4d0e0c7cc4b15bc4d9e287f91d1bcaca87508b0">b4d0e0c</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/nodemailer/nodemailer/commit/2002282035a0c11435c7f0cfb3f8318f3c718837"><code>2002282</code></a>
chore(master): release 6.9.11 [skip-ci] (<a
href="https://redirect.github.com/nodemailer/nodemailer/issues/1629">#1629</a>)</li>
<li><a
href="https://github.com/nodemailer/nodemailer/commit/c7cf97e5ecc83f8eee773359951df995c9945446"><code>c7cf97e</code></a>
fix(headers): Ensure that Content-type is the bottom header</li>
<li><a
href="https://github.com/nodemailer/nodemailer/commit/ade59e05dc011280e1789988bf03eb0b34e34ad7"><code>ade59e0</code></a>
chore(master): release 6.9.10 [skip-ci] (<a
href="https://redirect.github.com/nodemailer/nodemailer/issues/1627">#1627</a>)</li>
<li><a
href="https://github.com/nodemailer/nodemailer/commit/edd5dfe5ce9b725f8b8ae2830797f65b2a2b0a33"><code>edd5dfe</code></a>
fix(data-uri): Moved all data-uri regexes to use the non-regex
parseDataUri m...</li>
<li><a
href="https://github.com/nodemailer/nodemailer/commit/db772496d72c61f78cd663a346320eee34e92fef"><code>db77249</code></a>
Merge branch 'master' of github.com:nodemailer/nodemailer</li>
<li><a
href="https://github.com/nodemailer/nodemailer/commit/12e65e975d80efe6bafe6de4590829b3b5ebb492"><code>12e65e9</code></a>
fix(data-uri): Do not use regular expressions for parsing data URI
schemes</li>
<li><a
href="https://github.com/nodemailer/nodemailer/commit/5a2e10f454e3a02e0ee48d6a7be04e21cafa76ca"><code>5a2e10f</code></a>
chore(master): release 6.9.9 [skip-ci] (<a
href="https://redirect.github.com/nodemailer/nodemailer/issues/1606">#1606</a>)</li>
<li><a
href="https://github.com/nodemailer/nodemailer/commit/dd8f5e8a4ddc99992e31df76bcff9c590035cd4a"><code>dd8f5e8</code></a>
fix(security): Fix issues described in GHSA-9h6g-pr28-7cqp. Do not use
eterna...</li>
<li><a
href="https://github.com/nodemailer/nodemailer/commit/2c2b46ae4c0d29d76c2b0e7758b03ea10345831e"><code>2c2b46a</code></a>
chore: do not use caret in version specifier</li>
<li><a
href="https://github.com/nodemailer/nodemailer/commit/be45c1b299d012358d69247019391a02734d70af"><code>be45c1b</code></a>
fix(tests): Use native node test runner, added code coverage support,
removed...</li>
<li>Additional commits viewable in <a
href="https://github.com/nodemailer/nodemailer/compare/v6.9.7...v6.9.11">compare
view</a></li>
</ul>
</details>
<br />


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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
G-Rath pushed a commit to ackama/serverless-aws-template that referenced this pull request Mar 17, 2024
Bumps the npm_and_yarn group group with 2 updates:
[@slack/webhook](https://github.com/slackapi/node-slack-sdk) and
[axios](https://github.com/axios/axios).

Updates `@slack/webhook` from 6.0.0 to 7.0.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/slackapi/node-slack-sdk/releases"><code>@​slack/webhook</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@​slack/webhook</code><a
href="https://github.com/7"><code>@​7</code></a>.0.2</h2>
<p>Bumps axios to 1.6.3 to address a security vulnerability.</p>
<h2><code>@​slack/webhook</code><a
href="https://github.com/7"><code>@​7</code></a>.0.1</h2>
<h2>What's Changed</h2>
<p>a74e35b feat: upgrade axios to resolve CVE-2023-45857 (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1682">#1682</a>)</p>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/enza252"><code>@​enza252</code></a> made
their first contribution in <a
href="https://redirect.github.com/slackapi/node-slack-sdk/pull/1682">slackapi/node-slack-sdk#1682</a></li>
</ul>
<h2><code>@​slack/webhook</code><a
href="https://github.com/7"><code>@​7</code></a>.0.0</h2>
<h1>What's Changed</h1>
<p>85c07d9 Set minimum node version to 18 (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1666">#1666</a>)
0ba6dc2 Add metadata to incoming webhooks parameters (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1617">#1617</a>)</p>
<h1>Breaking Changes</h1>
<p>While this release is a new major version, the only &quot;breaking
change&quot; is that we dropped support for node versions below v18 (at
the time of this release, v16 and lower have reached their end of life).
No APIs from this package were changed.</p>
<h2><code>@​slack/webhook</code><a
href="https://github.com/6"><code>@​6</code></a>.1.0</h2>
<ul>
<li>Fix <a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1378">#1378</a>:
Expose axios timeout parameter for webhooks (via <a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1394">#1394</a>)
- thanks <a
href="https://github.com/xuhas"><code>@​xuhas</code></a>!</li>
<li>Fix <a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1368">#1368</a>:
NPM Audit fix: <a
href="https://github.com/advisories/GHSA-cph5-m8f7-6c5x">https://github.com/advisories/GHSA-cph5-m8f7-6c5x</a>
- thanks <a
href="https://github.com/xmariopereira"><code>@​xmariopereira</code></a>!</li>
</ul>
<p>See the full list of issues/pull requests of this release <a
href="https://github.com/slackapi/node-slack-sdk/milestone/8?closed=1">here</a>.</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/slackapi/node-slack-sdk/commit/3faa5b6c777c5ceeb624c7e7942ed20498659628"><code>3faa5b6</code></a>
webhook: Bumping axios to 1.6.3 to resolve security vulnerability (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1712">#1712</a>)</li>
<li><a
href="https://github.com/slackapi/node-slack-sdk/commit/457ce384e7fc32b353398c93bc49a62d4642caef"><code>457ce38</code></a>
Upgrade Axios web-api to 1.6.3 (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1710">#1710</a>)</li>
<li><a
href="https://github.com/slackapi/node-slack-sdk/commit/b6dadd94301c1df870b327911aded53a6d1bfd0b"><code>b6dadd9</code></a>
Publish <code>@slack/types@2.11.0</code> (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1708">#1708</a>)</li>
<li><a
href="https://github.com/slackapi/node-slack-sdk/commit/0a4426842337fbbc62a3a280c2f258da0e2dc209"><code>0a44268</code></a>
Add <code>code</code> property to <code>RichTextStyleable</code> (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1707">#1707</a>)</li>
<li><a
href="https://github.com/slackapi/node-slack-sdk/commit/4f393719e76236d8d3eb9e5961e6837045e445b4"><code>4f39371</code></a>
Add support for functions.* (complete) methods (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1702">#1702</a>)</li>
<li><a
href="https://github.com/slackapi/node-slack-sdk/commit/b18a32b68a6714ec197ac9dfffe693915327b9cb"><code>b18a32b</code></a>
Publish <code>@slack/rtm-api@6.2.0</code> (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1697">#1697</a>)</li>
<li><a
href="https://github.com/slackapi/node-slack-sdk/commit/62e45706d544abf09757befed2f4cbb338d56bdf"><code>62e4570</code></a>
rtm-api: add support for custom webClient (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1696">#1696</a>)</li>
<li><a
href="https://github.com/slackapi/node-slack-sdk/commit/1312f6222497ca58af6788ea32744d7fd85964ce"><code>1312f62</code></a>
Publish <code>@slack/types@2.10.0</code> (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1691">#1691</a>)</li>
<li><a
href="https://github.com/slackapi/node-slack-sdk/commit/41f771ea35da50425ec93b50878959ca035026f2"><code>41f771e</code></a>
Add new <code>file_input</code> block kit element. (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1689">#1689</a>)</li>
<li><a
href="https://github.com/slackapi/node-slack-sdk/commit/7089a4725d06cbadadbb543d66713b31ef0a64aa"><code>7089a47</code></a>
Add support for apps.manifest.* endpoints (<a
href="https://redirect.github.com/slackapi/node-slack-sdk/issues/1690">#1690</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/slackapi/node-slack-sdk/compare/@slack/webhook@6.0.0...@slack/webhook@7.0.2">compare
view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by <a
href="https://www.npmjs.com/~filmaj">filmaj</a>, a new releaser for
<code>@​slack/webhook</code> since your current version.</p>
</details>
<br />

Updates `axios` from 0.21.4 to 1.6.8
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.8</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](axios/axios#6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](axios/axios#6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](axios/axios#6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](axios/axios#6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](axios/axios#6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](axios/axios#6243) )">Miroslav
Petrov</a></li>
</ul>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.7...v1.6.8">1.6.8</a>
(2024-03-15)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](axios/axios#6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](axios/axios#6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](axios/axios#6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](axios/axios#6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](axios/axios#6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](axios/axios#6243) )">Miroslav
Petrov</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/ab3f0f9a94853c821cb00f1112788ecdd3ae7ed1"><code>ab3f0f9</code></a>
chore(release): v1.6.8 (<a
href="https://redirect.github.com/axios/axios/issues/6303">#6303</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb"><code>2656612</code></a>
fix(AxiosHeaders): fix AxiosHeaders conversion to an object during
config mer...</li>
<li><a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1"><code>7320430</code></a>
fix(import): use named export for EventEmitter;</li>
<li><a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27"><code>8786e0f</code></a>
fix(vulnerability): update follow-redirects to 1.15.6 (<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d844227411263fab39d447442879112f8b0c8de5"><code>d844227</code></a>
chore: update and bump deps (<a
href="https://redirect.github.com/axios/axios/issues/6238">#6238</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/caa06252015003990958d7db96f63aa646bc58e8"><code>caa0625</code></a>
docs: update README responseEncoding types (<a
href="https://redirect.github.com/axios/axios/issues/6194">#6194</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/41c4584a41fad1d94cf86331667deff5a0b75044"><code>41c4584</code></a>
docs: Update README.md to point to current axios version in CDN links
(<a
href="https://redirect.github.com/axios/axios/issues/6196">#6196</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/bf6974f16af6c72985f094a98d874c5a6adcdc83"><code>bf6974f</code></a>
chore(ci): add npm tag action; (<a
href="https://redirect.github.com/axios/axios/issues/6231">#6231</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v0.21.4...v1.6.8">compare
view</a></li>
</ul>
</details>
<br />


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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/ackama/serverless-aws-template/network/alerts).

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
realbrodiwhite added a commit to realbrodiwhite/royalgames-client that referenced this pull request Mar 21, 2024
Bumps [axios](https://github.com/axios/axios) from 1.3.3 to 1.6.8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.8</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](axios/axios#6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](axios/axios#6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](axios/axios#6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](axios/axios#6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](axios/axios#6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](axios/axios#6243) )">Miroslav
Petrov</a></li>
</ul>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.7...v1.6.8">1.6.8</a>
(2024-03-15)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](axios/axios#6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](axios/axios#6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](axios/axios#6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](axios/axios#6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](axios/axios#6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](axios/axios#6243) )">Miroslav
Petrov</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/ab3f0f9a94853c821cb00f1112788ecdd3ae7ed1"><code>ab3f0f9</code></a>
chore(release): v1.6.8 (<a
href="https://redirect.github.com/axios/axios/issues/6303">#6303</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb"><code>2656612</code></a>
fix(AxiosHeaders): fix AxiosHeaders conversion to an object during
config mer...</li>
<li><a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1"><code>7320430</code></a>
fix(import): use named export for EventEmitter;</li>
<li><a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27"><code>8786e0f</code></a>
fix(vulnerability): update follow-redirects to 1.15.6 (<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d844227411263fab39d447442879112f8b0c8de5"><code>d844227</code></a>
chore: update and bump deps (<a
href="https://redirect.github.com/axios/axios/issues/6238">#6238</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/caa06252015003990958d7db96f63aa646bc58e8"><code>caa0625</code></a>
docs: update README responseEncoding types (<a
href="https://redirect.github.com/axios/axios/issues/6194">#6194</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/41c4584a41fad1d94cf86331667deff5a0b75044"><code>41c4584</code></a>
docs: Update README.md to point to current axios version in CDN links
(<a
href="https://redirect.github.com/axios/axios/issues/6196">#6196</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/bf6974f16af6c72985f094a98d874c5a6adcdc83"><code>bf6974f</code></a>
chore(ci): add npm tag action; (<a
href="https://redirect.github.com/axios/axios/issues/6231">#6231</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.3.3...v1.6.8">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.3.3&new-version=1.6.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>
github-merge-queue bot pushed a commit to Kitware/CDash that referenced this pull request Mar 21, 2024
Bumps [axios](https://github.com/axios/axios) from 1.6.3 to 1.6.8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.8</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](axios/axios#6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](axios/axios#6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](axios/axios#6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](axios/axios#6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](axios/axios#6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](axios/axios#6243) )">Miroslav
Petrov</a></li>
</ul>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.7...v1.6.8">1.6.8</a>
(2024-03-15)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](axios/axios#6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](axios/axios#6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](axios/axios#6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](axios/axios#6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](axios/axios#6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](axios/axios#6243) )">Miroslav
Petrov</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/ab3f0f9a94853c821cb00f1112788ecdd3ae7ed1"><code>ab3f0f9</code></a>
chore(release): v1.6.8 (<a
href="https://redirect.github.com/axios/axios/issues/6303">#6303</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb"><code>2656612</code></a>
fix(AxiosHeaders): fix AxiosHeaders conversion to an object during
config mer...</li>
<li><a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1"><code>7320430</code></a>
fix(import): use named export for EventEmitter;</li>
<li><a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27"><code>8786e0f</code></a>
fix(vulnerability): update follow-redirects to 1.15.6 (<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d844227411263fab39d447442879112f8b0c8de5"><code>d844227</code></a>
chore: update and bump deps (<a
href="https://redirect.github.com/axios/axios/issues/6238">#6238</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/caa06252015003990958d7db96f63aa646bc58e8"><code>caa0625</code></a>
docs: update README responseEncoding types (<a
href="https://redirect.github.com/axios/axios/issues/6194">#6194</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/41c4584a41fad1d94cf86331667deff5a0b75044"><code>41c4584</code></a>
docs: Update README.md to point to current axios version in CDN links
(<a
href="https://redirect.github.com/axios/axios/issues/6196">#6196</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/bf6974f16af6c72985f094a98d874c5a6adcdc83"><code>bf6974f</code></a>
chore(ci): add npm tag action; (<a
href="https://redirect.github.com/axios/axios/issues/6231">#6231</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.6.3...v1.6.8">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: William Allen <16820599+williamjallen@users.noreply.github.com>
crimsonstrife added a commit to crimsonstrife/laravel-portfolio that referenced this pull request Mar 22, 2024
Bumps [axios](https://github.com/axios/axios) from 1.5.1 to 1.6.8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.8</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](axios/axios#6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](axios/axios#6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](axios/axios#6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](axios/axios#6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](axios/axios#6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](axios/axios#6243) )">Miroslav
Petrov</a></li>
</ul>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.7...v1.6.8">1.6.8</a>
(2024-03-15)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](axios/axios#6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](axios/axios#6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](axios/axios#6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](axios/axios#6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](axios/axios#6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](axios/axios#6243) )">Miroslav
Petrov</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/ab3f0f9a94853c821cb00f1112788ecdd3ae7ed1"><code>ab3f0f9</code></a>
chore(release): v1.6.8 (<a
href="https://redirect.github.com/axios/axios/issues/6303">#6303</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb"><code>2656612</code></a>
fix(AxiosHeaders): fix AxiosHeaders conversion to an object during
config mer...</li>
<li><a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1"><code>7320430</code></a>
fix(import): use named export for EventEmitter;</li>
<li><a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27"><code>8786e0f</code></a>
fix(vulnerability): update follow-redirects to 1.15.6 (<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d844227411263fab39d447442879112f8b0c8de5"><code>d844227</code></a>
chore: update and bump deps (<a
href="https://redirect.github.com/axios/axios/issues/6238">#6238</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/caa06252015003990958d7db96f63aa646bc58e8"><code>caa0625</code></a>
docs: update README responseEncoding types (<a
href="https://redirect.github.com/axios/axios/issues/6194">#6194</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/41c4584a41fad1d94cf86331667deff5a0b75044"><code>41c4584</code></a>
docs: Update README.md to point to current axios version in CDN links
(<a
href="https://redirect.github.com/axios/axios/issues/6196">#6196</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/bf6974f16af6c72985f094a98d874c5a6adcdc83"><code>bf6974f</code></a>
chore(ci): add npm tag action; (<a
href="https://redirect.github.com/axios/axios/issues/6231">#6231</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.5.1...v1.6.8">compare
view</a></li>
</ul>
</details>
<br />


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

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>
zhexu14 pushed a commit to dcs-liberation/dcs_liberation that referenced this pull request Apr 10, 2024
Bumps [axios](https://github.com/axios/axios) from 0.25.0 to 1.6.8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.8</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](axios/axios#6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](axios/axios#6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](axios/axios#6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](axios/axios#6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](axios/axios#6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](axios/axios#6243) )">Miroslav
Petrov</a></li>
</ul>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.7...v1.6.8">1.6.8</a>
(2024-03-15)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](axios/axios#6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](axios/axios#6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](axios/axios#6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](axios/axios#6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](axios/axios#6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](axios/axios#6243) )">Miroslav
Petrov</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/ab3f0f9a94853c821cb00f1112788ecdd3ae7ed1"><code>ab3f0f9</code></a>
chore(release): v1.6.8 (<a
href="https://redirect.github.com/axios/axios/issues/6303">#6303</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb"><code>2656612</code></a>
fix(AxiosHeaders): fix AxiosHeaders conversion to an object during
config mer...</li>
<li><a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1"><code>7320430</code></a>
fix(import): use named export for EventEmitter;</li>
<li><a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27"><code>8786e0f</code></a>
fix(vulnerability): update follow-redirects to 1.15.6 (<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d844227411263fab39d447442879112f8b0c8de5"><code>d844227</code></a>
chore: update and bump deps (<a
href="https://redirect.github.com/axios/axios/issues/6238">#6238</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/caa06252015003990958d7db96f63aa646bc58e8"><code>caa0625</code></a>
docs: update README responseEncoding types (<a
href="https://redirect.github.com/axios/axios/issues/6194">#6194</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/41c4584a41fad1d94cf86331667deff5a0b75044"><code>41c4584</code></a>
docs: Update README.md to point to current axios version in CDN links
(<a
href="https://redirect.github.com/axios/axios/issues/6196">#6196</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/bf6974f16af6c72985f094a98d874c5a6adcdc83"><code>bf6974f</code></a>
chore(ci): add npm tag action; (<a
href="https://redirect.github.com/axios/axios/issues/6231">#6231</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v0.25.0...v1.6.8">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=0.25.0&new-version=1.6.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/dcs-liberation/dcs_liberation/network/alerts).

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dirkbolte pushed a commit to wiremock/wiremock-state-extension that referenced this pull request Apr 11, 2024
#125)

Bumps [axios](https://github.com/axios/axios) from 0.27.2 to 1.6.8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.8</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](axios/axios#6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](axios/axios#6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](axios/axios#6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](axios/axios#6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](axios/axios#6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](axios/axios#6243) )">Miroslav
Petrov</a></li>
</ul>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.7...v1.6.8">1.6.8</a>
(2024-03-15)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](axios/axios#6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](axios/axios#6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](axios/axios#6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](axios/axios#6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](axios/axios#6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](axios/axios#6243) )">Miroslav
Petrov</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](axios/axios#6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](axios/axios#6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](axios/axios#5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](axios/axios#5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/ab3f0f9a94853c821cb00f1112788ecdd3ae7ed1"><code>ab3f0f9</code></a>
chore(release): v1.6.8 (<a
href="https://redirect.github.com/axios/axios/issues/6303">#6303</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb"><code>2656612</code></a>
fix(AxiosHeaders): fix AxiosHeaders conversion to an object during
config mer...</li>
<li><a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1"><code>7320430</code></a>
fix(import): use named export for EventEmitter;</li>
<li><a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27"><code>8786e0f</code></a>
fix(vulnerability): update follow-redirects to 1.15.6 (<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d844227411263fab39d447442879112f8b0c8de5"><code>d844227</code></a>
chore: update and bump deps (<a
href="https://redirect.github.com/axios/axios/issues/6238">#6238</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/caa06252015003990958d7db96f63aa646bc58e8"><code>caa0625</code></a>
docs: update README responseEncoding types (<a
href="https://redirect.github.com/axios/axios/issues/6194">#6194</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/41c4584a41fad1d94cf86331667deff5a0b75044"><code>41c4584</code></a>
docs: Update README.md to point to current axios version in CDN links
(<a
href="https://redirect.github.com/axios/axios/issues/6196">#6196</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/bf6974f16af6c72985f094a98d874c5a6adcdc83"><code>bf6974f</code></a>
chore(ci): add npm tag action; (<a
href="https://redirect.github.com/axios/axios/issues/6231">#6231</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v0.27.2...v1.6.8">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=0.27.2&new-version=1.6.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the
[Security Alerts
page](https://github.com/wiremock/wiremock-state-extension/network/alerts).

</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Yehonal pushed a commit to Drassil/nestjs-yalc that referenced this pull request Apr 12, 2024
… updates (#48)

Bumps the npm_and_yarn group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [class-validator](https://github.com/typestack/class-validator) |
`0.13.2` | `0.14.0` |
| [mysql2](https://github.com/sidorares/node-mysql2) | `3.1.2` | `3.9.4`
|
| [typeorm](https://github.com/typeorm/typeorm) | `0.3.12` | `0.3.13` |
| [graphql](https://github.com/graphql/graphql-js) | `16.6.0` | `16.8.1`
|
| [axios](https://github.com/axios/axios) | `1.5.1` | `1.6.8` |
| [@nestjs/axios](https://github.com/nestjs/axios) | `1.0.1` | `3.0.2` |
| [mssql](https://github.com/tediousjs/node-mssql) | `6.4.1` | `9.3.2` |
|
[@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse)
| `7.20.10` | `7.24.1` |
|
[apollo-server-core](https://github.com/apollographql/apollo-server/tree/HEAD/packages/apollo-server-core)
| `3.11.1` | `3.13.0` |
| [es5-ext](https://github.com/medikoo/es5-ext) | `0.10.62` | `0.10.64`
|
|
[http-cache-semantics](https://github.com/kornelski/http-cache-semantics)
| `4.1.0` | `4.1.1` |
| [ip](https://github.com/indutny/node-ip) | `2.0.0` | `2.0.1` |
| [sqlite3](https://github.com/TryGhost/node-sqlite3) | `5.1.4` |
`5.1.7` |
| [tar](https://github.com/isaacs/node-tar) | `6.1.13` | `6.2.1` |

Bumps the npm_and_yarn group with 4 updates in the
/examples/skeleton-app directory:
[semver](https://github.com/npm/node-semver),
[@babel/traverse](https://github.com/babel/babel/tree/HEAD/packages/babel-traverse),
[webpack](https://github.com/webpack/webpack) and
[@nestjs/cli](https://github.com/nestjs/nest-cli).

Updates `class-validator` from 0.13.2 to 0.14.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/typestack/class-validator/blob/develop/CHANGELOG.md">class-validator's
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/typestack/class-validator/compare/v0.13.2...v0.14.0">0.14.0</a>
(2022-12-09)</h3>
<h3>Added</h3>
<ul>
<li>add <code>@IsTimeZone</code> decorator to check if given string is
valid IANA time zone</li>
<li>add <code>@IsISO4217CurrencyCode</code> decorator to check if the
string is an ISO 4217 currency code</li>
<li>add <code>@IsStrongPassword</code> decorator to check if given
password matches specific complexity criteria</li>
<li>add <code>@IsBase58</code> decorator to check if a string is base58
encoded</li>
<li>add <code>@IsTaxId</code> decorator to check if a given string is a
valid tax ID in a given locale</li>
<li>add support for passing function as date generator in
<code>@MinDate</code> and <code>@MaxDate</code> decorators</li>
<li>add option to print constraint error message instead of constraint
type in validation error</li>
<li>improve decorator metadata lookup performance</li>
<li>return possible values in error message for <code>@IsEnum</code>
decorator</li>
</ul>
<h3>Fixed</h3>
<ul>
<li>re-added <code>@types/validator</code> as dependency</li>
<li>fix error generation when using <code>@NestedValidation</code></li>
<li>pass validation options correctly to validator in
<code>@IsDateString</code> decorator</li>
<li>support passing <code>Symbol</code> as parameter in error message
generation</li>
<li>specify supported locales for <code>@IsAlphanumeric</code>
decorator</li>
<li>correctly assign decorator name in metadata instead of loosing
it</li>
<li>fix various spelling errors in documentation</li>
<li>fix various spelling errors and inconsistencies in JSDoc for
decorators</li>
</ul>
<h3>Changed</h3>
<ul>
<li>enable <code>forbidUnknownValues</code> option by default</li>
<li>remove documentation about deprecated schema based validation and
added warning</li>
<li>update warning message logged about missing decorator metadata</li>
<li>update <code>libphonenumber-js</code> to <code>^1.10.14</code> from
<code>^1.9.43</code></li>
<li>update various dev-dependencies</li>
</ul>
<h3>BREAKING CHANGES</h3>
<p><strong><code>forbidUnknownValues</code> option is enabled by
default</strong></p>
<p>From this release the <code>forbidUnknownValues</code> is enabled by
default. This is the desired behavior for majority of
use-cases, but this change may break validation for some. The two
scenarios that results in failed validation:</p>
<ul>
<li>when attempting to validate a class instance without metadata for
it</li>
<li>when using group validation and the specified validation group
results in zero validation applied</li>
</ul>
<p>The old behavior can be restored via specifying
<code>forbidUnknownValues: false</code> option when calling the validate
functions.</p>
<p>For more details see [PR <a
href="https://redirect.github.com/typestack/class-validator/issues/1798">#1798</a>](<a
href="https://redirect.github.com/typestack/class-validator/pull/1798">typestack/class-validator#1798</a>)
and <a
href="https://redirect.github.com/typestack/class-validator/issues/1422#issuecomment-1317953863">#1422
(comment)</a>.</p>
<p><strong><code>@NestedValidation</code> decorator correctly assigns
validation errors</strong></p>
<p>Until now the errors from a nested validation in some cases were
incorrectly assigned</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/typestack/class-validator/commit/5f0d424c164672ec981e24d6e634354803abf25f"><code>5f0d424</code></a>
merge: release 0.14.0 (<a
href="https://redirect.github.com/typestack/class-validator/issues/1841">#1841</a>)</li>
<li><a
href="https://github.com/typestack/class-validator/commit/e3d070836556b73d8396c34a360c4744c9d8363c"><code>e3d0708</code></a>
build: bump version to 0.14.0</li>
<li><a
href="https://github.com/typestack/class-validator/commit/ad7689055d0b92da9d6f4787cd91ec4d5392a9f1"><code>ad76890</code></a>
docs: add changelog for 0.14.0</li>
<li><a
href="https://github.com/typestack/class-validator/commit/9a775c59247f00f2ad911686d335fd8e1f9864be"><code>9a775c5</code></a>
build(deps-dev): bump <code>@​types/node</code> from 18.11.11 to
18.11.12 (<a
href="https://redirect.github.com/typestack/class-validator/issues/1840">#1840</a>)</li>
<li><a
href="https://github.com/typestack/class-validator/commit/53bc9f6fcefea77f17cb8e900178f25ec18b6cbc"><code>53bc9f6</code></a>
build(deps-dev): bump <code>@​typescript-eslint/eslint-plugin</code> (<a
href="https://redirect.github.com/typestack/class-validator/issues/1837">#1837</a>)</li>
<li><a
href="https://github.com/typestack/class-validator/commit/d9b40721b8911be84ae0a9e40962c6244149c7f4"><code>d9b4072</code></a>
build(deps-dev): bump <code>@​typescript-eslint/parser</code> from
5.45.1 to 5.46.0 (<a
href="https://redirect.github.com/typestack/class-validator/issues/1838">#1838</a>)</li>
<li><a
href="https://github.com/typestack/class-validator/commit/f993e9e44eb6a8cedc8ac076cee9b71760d1829d"><code>f993e9e</code></a>
build(deps-dev): bump typescript from 4.9.3 to 4.9.4 (<a
href="https://redirect.github.com/typestack/class-validator/issues/1835">#1835</a>)</li>
<li><a
href="https://github.com/typestack/class-validator/commit/ad1a41d39dee051c3a43bbd357ee0c1553b54055"><code>ad1a41d</code></a>
build(deps-dev): bump <code>@​rollup/plugin-commonjs</code> from 23.0.3
to 23.0.4 (<a
href="https://redirect.github.com/typestack/class-validator/issues/1836">#1836</a>)</li>
<li><a
href="https://github.com/typestack/class-validator/commit/42b4f7f5a34c118db14c03b6466afb5427678718"><code>42b4f7f</code></a>
build(deps-dev): bump prettier from 2.8.0 to 2.8.1 (<a
href="https://redirect.github.com/typestack/class-validator/issues/1834">#1834</a>)</li>
<li><a
href="https://github.com/typestack/class-validator/commit/0c986d4e74c498876c728c58e1b30169dccec496"><code>0c986d4</code></a>
build(deps-dev): bump <code>@​types/node</code> from 18.11.10 to
18.11.11 (<a
href="https://redirect.github.com/typestack/class-validator/issues/1833">#1833</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/typestack/class-validator/compare/v0.13.2...v0.14.0">compare
view</a></li>
</ul>
</details>
<br />

Updates `mysql2` from 3.1.2 to 3.9.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sidorares/node-mysql2/releases">mysql2's
releases</a>.</em></p>
<blockquote>
<h2>v3.9.4</h2>
<h2><a
href="https://github.com/sidorares/node-mysql2/compare/v3.9.3...v3.9.4">3.9.4</a>
(2024-04-09)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>SSL:</strong> separate each certificate into an individual
item <a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2542">#2542</a>
(<a
href="https://github.com/sidorares/node-mysql2/commit/63f1055c631e665179cad686afd3e4f1d5c162b2">63f1055</a>)</li>
<li><strong>security:</strong> improve supportBigNumbers and
bigNumberStrings sanitization (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2572">#2572</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/74abf9ef94d76114d9a09415e28b496522a94805">74abf9e</a>)
<ul>
<li>Fixes a potential RCE attack vulnerability reported by Vsevolod
Kokorin (Slonser) of Solidlab</li>
</ul>
</li>
<li><strong>security:</strong> improve results object creation (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2574">#2574</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/4a964a3910a4b8de008696c554ab1b492e9b4691">4a964a3</a>)
<ul>
<li>Fixes a potential Prototype Pollution attack vulnerability reported
by Vsevolod Kokorin (Slonser) of Solidlab</li>
</ul>
</li>
<li><strong>docs:</strong> improve the contribution guidelines (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2552">#2552</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/8a818ce0f30654eba854759e6409c0ac856fc448">8a818ce</a>)</li>
</ul>
<h2>v3.9.3</h2>
<h2><a
href="https://github.com/sidorares/node-mysql2/compare/v3.9.2...v3.9.3">3.9.3</a>
(2024-03-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> improve cache key formation (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2424">#2424</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/0d54b0ca6498c823098426038162ef10df02c818">0d54b0c</a>)
<ul>
<li>Fixes a potential parser cache poisoning attack vulnerability
reported by Vsevolod Kokorin (Slonser) of Solidlab</li>
</ul>
</li>
<li>update Amazon RDS SSL CA cert (<a
href="https://redirect.github.com/sidorares/node-mysql2/pull/2131">#2131</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/d9dccfd837d701f377574b85a05586be89015460">d9dccfd</a>)</li>
</ul>
<h2>v3.9.2</h2>
<h2><a
href="https://github.com/sidorares/node-mysql2/compare/v3.9.1...v3.9.2">3.9.2</a>
(2024-02-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>stream:</strong> premature close when it is paused (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2416">#2416</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/7c6bc642addb3e6fee1b1fdc84f83a72ff11ca4a">7c6bc64</a>)</li>
<li><strong>types:</strong> expose TypeCast types (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2425">#2425</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/336a7f1259c63d2dfe070fe400b141e89255844e">336a7f1</a>)</li>
</ul>
<h2>v3.9.1</h2>
<h2><a
href="https://github.com/sidorares/node-mysql2/compare/v3.9.0...v3.9.1">3.9.1</a>
(2024-01-29)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> support encoding for string type cast (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2407">#2407</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/1dc201144daceab0b12193ada0f13dbb25e917f6">1dc2011</a>)</li>
</ul>
<h2>v3.9.0</h2>
<h2><a
href="https://github.com/sidorares/node-mysql2/compare/v3.8.0...v3.9.0">3.9.0</a>
(2024-01-26)</h2>
<h3>Features</h3>
<ul>
<li>introduce typeCast for <code>execute</code> method (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2398">#2398</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/baaa92a228d32012f7da07826674f7a736e3791d">baaa92a</a>)</li>
</ul>
<h2>v3.8.0</h2>
<h2><a
href="https://github.com/sidorares/node-mysql2/compare/v3.7.1...v3.8.0">3.8.0</a>
(2024-01-23)</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sidorares/node-mysql2/blob/master/Changelog.md">mysql2's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/sidorares/node-mysql2/compare/v3.9.3...v3.9.4">3.9.4</a>
(2024-04-09)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>docs:</strong> improve the contribution guidelines (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2552">#2552</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/8a818ce0f30654eba854759e6409c0ac856fc448">8a818ce</a>)</li>
<li><strong>security:</strong> improve results object creation (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2574">#2574</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/4a964a3910a4b8de008696c554ab1b492e9b4691">4a964a3</a>)</li>
<li><strong>security:</strong> improve supportBigNumbers and
bigNumberStrings sanitization (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2572">#2572</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/74abf9ef94d76114d9a09415e28b496522a94805">74abf9e</a>)</li>
</ul>
<h2><a
href="https://github.com/sidorares/node-mysql2/compare/v3.9.2...v3.9.3">3.9.3</a>
(2024-03-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>security:</strong> improve cache key formation (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2424">#2424</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/0d54b0ca6498c823098426038162ef10df02c818">0d54b0c</a>)
<ul>
<li>Fixes a potential parser cache poisoning attack vulnerability
reported by Vsevolod Kokorin (Slonser) of Solidlab</li>
</ul>
</li>
<li>update Amazon RDS SSL CA cert (<a
href="https://redirect.github.com/sidorares/node-mysql2/pull/2131">#2131</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/d9dccfd837d701f377574b85a05586be89015460">d9dccfd</a>)</li>
</ul>
<h2><a
href="https://github.com/sidorares/node-mysql2/compare/v3.9.1...v3.9.2">3.9.2</a>
(2024-02-26)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>stream:</strong> premature close when it is paused (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2416">#2416</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/7c6bc642addb3e6fee1b1fdc84f83a72ff11ca4a">7c6bc64</a>)</li>
<li><strong>types:</strong> expose TypeCast types (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2425">#2425</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/336a7f1259c63d2dfe070fe400b141e89255844e">336a7f1</a>)</li>
</ul>
<h2><a
href="https://github.com/sidorares/node-mysql2/compare/v3.9.0...v3.9.1">3.9.1</a>
(2024-01-29)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>types:</strong> support encoding for string type cast (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2407">#2407</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/1dc201144daceab0b12193ada0f13dbb25e917f6">1dc2011</a>)</li>
</ul>
<h2><a
href="https://github.com/sidorares/node-mysql2/compare/v3.8.0...v3.9.0">3.9.0</a>
(2024-01-26)</h2>
<h3>Features</h3>
<ul>
<li>introduce typeCast for <code>execute</code> method (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2398">#2398</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/baaa92a228d32012f7da07826674f7a736e3791d">baaa92a</a>)</li>
</ul>
<h2><a
href="https://github.com/sidorares/node-mysql2/compare/v3.7.1...v3.8.0">3.8.0</a>
(2024-01-23)</h2>
<h3>Features</h3>
<ul>
<li><strong>perf:</strong> cache iconv decoder (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2391">#2391</a>)
(<a
href="https://github.com/sidorares/node-mysql2/commit/b95b3dbe4bb34e36d0d1be6948e4d8a169d28eed">b95b3db</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/sidorares/node-mysql2/commit/cf3fa60842e7e359db5b1d676f93a22ad6fea082"><code>cf3fa60</code></a>
chore(master): release 3.9.4 (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2566">#2566</a>)</li>
<li><a
href="https://github.com/sidorares/node-mysql2/commit/4a964a3910a4b8de008696c554ab1b492e9b4691"><code>4a964a3</code></a>
fix(security): improve results object creation (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2574">#2574</a>)</li>
<li><a
href="https://github.com/sidorares/node-mysql2/commit/71115d88b26da9a5e3f5e5288c10a402b52025af"><code>71115d8</code></a>
ci: improve parser tests (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2573">#2573</a>)</li>
<li><a
href="https://github.com/sidorares/node-mysql2/commit/74abf9ef94d76114d9a09415e28b496522a94805"><code>74abf9e</code></a>
fix(security): improve supportBigNumbers and bigNumberStrings
sanitization (#...</li>
<li><a
href="https://github.com/sidorares/node-mysql2/commit/8a818ce0f30654eba854759e6409c0ac856fc448"><code>8a818ce</code></a>
fix(docs): improve the contribution guidelines (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2552">#2552</a>)</li>
<li><a
href="https://github.com/sidorares/node-mysql2/commit/0f08c7c4c1297e7737ec38b8289a28e20a9b6d0f"><code>0f08c7c</code></a>
build(deps-dev): bump <code>@​docusaurus/tsconfig</code> in /website (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2563">#2563</a>)</li>
<li><a
href="https://github.com/sidorares/node-mysql2/commit/165c4d6ec7117d22948387ad82265143fa061bf7"><code>165c4d6</code></a>
build(deps-dev): bump <code>@​docusaurus/eslint-plugin</code> in
/website (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2564">#2564</a>)</li>
<li><a
href="https://github.com/sidorares/node-mysql2/commit/9b5ed7b202a0d1f2cc132045477753ca1bfba6ec"><code>9b5ed7b</code></a>
build(deps): bump <code>@​docusaurus/preset-classic</code> in /website
(<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2562">#2562</a>)</li>
<li><a
href="https://github.com/sidorares/node-mysql2/commit/096db64179a1d38ed73f2c0c86fe6339a22a5245"><code>096db64</code></a>
build(deps-dev): bump typescript from 5.4.3 to 5.4.4 (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2561">#2561</a>)</li>
<li><a
href="https://github.com/sidorares/node-mysql2/commit/b91fd1611e73c081ba787bf567e8d95142dc91c7"><code>b91fd16</code></a>
build(deps-dev): bump tsx from 4.7.1 to 4.7.2 in /website (<a
href="https://redirect.github.com/sidorares/node-mysql2/issues/2557">#2557</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/sidorares/node-mysql2/compare/v3.1.2...v3.9.4">compare
view</a></li>
</ul>
</details>
<br />

Updates `typeorm` from 0.3.12 to 0.3.13
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/typeorm/typeorm/releases">typeorm's
releases</a>.</em></p>
<blockquote>
<h2>0.3.13</h2>
<h3>Bug Fixes</h3>
<ul>
<li>firstCapital=true not working in camelCase() function (<a
href="https://github.com/typeorm/typeorm/commit/f1330ad6e23bea65a16b4f1c4199f10f3fa7282b">f1330ad</a>)</li>
<li>handles &quot;query&quot; relation loading strategy for
TreeRepositories (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9680">#9680</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/a11809e1b20cc77fd2767b8bab2500a0c7e20d23">a11809e</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9673">#9673</a></li>
<li>improve EntityNotFound error message in QueryBuilder.findOneOrFail
(<a
href="https://redirect.github.com/typeorm/typeorm/issues/9872">#9872</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/f7f68178640120d8c1e92b8c9be0eeaa8262b4f3">f7f6817</a>)</li>
<li>loading tables with fk in sqlite query runner (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9875">#9875</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/4997da054b5cfafdbdf374b3e554e5c4e0590da7">4997da0</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9266">#9266</a></li>
<li>prevent foreign key support during migration batch under sqlite (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9775">#9775</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/197cc05e90c0182357d85aa1ce7ae45de99d9d98">197cc05</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9770">#9770</a></li>
<li>proper default value on generating migration when default value is a
function calling [Postgres] (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9830">#9830</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/bebba05388a40a9f278a450d4a988865c158abb7">bebba05</a>)</li>
<li>react-native doesn't properly work in ESM projects because of
circular dependency (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9765">#9765</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/099fcd9b104bc930faea08f97ee3d5610118e0c4">099fcd9</a>)</li>
<li>resolve issues for mssql migration when simple-enum was changed (<a
href="https://github.com/typeorm/typeorm/commit/cb154d4ca36cda251fcb9eb05a29b7758ae813cf">cb154d4</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/7785">#7785</a>
<a
href="https://redirect.github.com/typeorm/typeorm/issues/9457">#9457</a>
<a
href="https://redirect.github.com/typeorm/typeorm/issues/7785">#7785</a>
<a
href="https://redirect.github.com/typeorm/typeorm/issues/9457">#9457</a></li>
<li>resolves issue with mssql column recreation (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9773">#9773</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/07221a364682b567533c93130efb4f5189e009a9">07221a3</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9399">#9399</a></li>
<li>transform values for FindOperators <a
href="https://redirect.github.com/typeorm/typeorm/issues/9381">#9381</a>
(<a
href="https://redirect.github.com/typeorm/typeorm/issues/9777">#9777</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/de1228deace974eca3e9dd3956208ebe4cd9347f">de1228d</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9816">#9816</a></li>
<li>use forward slashes when normalizing path (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9768">#9768</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/58fc08840a4a64ca1935391f4709a784c3f0b373">58fc088</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9766">#9766</a></li>
<li>use object create if entity skip constructor is set (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9831">#9831</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/a8689795dad796338e2a291a6a2fda89b00ef243">a868979</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li>add support for json datatype for sqlite (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9744">#9744</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/4ac8c00117417ae622368aabe36d0fd5c676bd00">4ac8c00</a>)</li>
<li>add support for STI on EntitySchema (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9834">#9834</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/bc306fb5a2c4dc02d04632af2b2f6c697a684356">bc306fb</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9833">#9833</a></li>
<li>allow type FindOptionsOrderValue for order by object property (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9895">#9895</a>)
(<a
href="https://redirect.github.com/typeorm/typeorm/issues/9896">#9896</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/0814970a9cc2c958199c9d74d1ef313de43dab50">0814970</a>)</li>
<li>Broadcast identifier for removed related entities (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9913">#9913</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/f530811b0da2863711db3467e55bf815c66b4b4b">f530811</a>)</li>
<li>leftJoinAndMapOne and innerJoinAndMapOne map result to entity (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9354">#9354</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/947ffc34324c1d692496804e43dafa6302efc1db">947ffc3</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/typeorm/typeorm/blob/master/CHANGELOG.md">typeorm's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/typeorm/typeorm/compare/0.3.12...0.3.13">0.3.13</a>
(2023-04-06)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>firstCapital=true not working in camelCase() function (<a
href="https://github.com/typeorm/typeorm/commit/f1330ad6e23bea65a16b4f1c4199f10f3fa7282b">f1330ad</a>)</li>
<li>handles &quot;query&quot; relation loading strategy for
TreeRepositories (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9680">#9680</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/a11809e1b20cc77fd2767b8bab2500a0c7e20d23">a11809e</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9673">#9673</a></li>
<li>improve EntityNotFound error message in QueryBuilder.findOneOrFail
(<a
href="https://redirect.github.com/typeorm/typeorm/issues/9872">#9872</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/f7f68178640120d8c1e92b8c9be0eeaa8262b4f3">f7f6817</a>)</li>
<li>loading tables with fk in sqlite query runner (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9875">#9875</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/4997da054b5cfafdbdf374b3e554e5c4e0590da7">4997da0</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9266">#9266</a></li>
<li>prevent foreign key support during migration batch under sqlite (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9775">#9775</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/197cc05e90c0182357d85aa1ce7ae45de99d9d98">197cc05</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9770">#9770</a></li>
<li>proper default value on generating migration when default value is a
function calling [Postgres] (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9830">#9830</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/bebba05388a40a9f278a450d4a988865c158abb7">bebba05</a>)</li>
<li>react-native doesn't properly work in ESM projects because of
circular dependency (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9765">#9765</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/099fcd9b104bc930faea08f97ee3d5610118e0c4">099fcd9</a>)</li>
<li>resolve issues for mssql migration when simple-enum was changed (<a
href="https://github.com/typeorm/typeorm/commit/cb154d4ca36cda251fcb9eb05a29b7758ae813cf">cb154d4</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/7785">#7785</a>
<a
href="https://redirect.github.com/typeorm/typeorm/issues/9457">#9457</a>
<a
href="https://redirect.github.com/typeorm/typeorm/issues/7785">#7785</a>
<a
href="https://redirect.github.com/typeorm/typeorm/issues/9457">#9457</a></li>
<li>resolves issue with mssql column recreation (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9773">#9773</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/07221a364682b567533c93130efb4f5189e009a9">07221a3</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9399">#9399</a></li>
<li>transform values for FindOperators <a
href="https://redirect.github.com/typeorm/typeorm/issues/9381">#9381</a>
(<a
href="https://redirect.github.com/typeorm/typeorm/issues/9777">#9777</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/de1228deace974eca3e9dd3956208ebe4cd9347f">de1228d</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9816">#9816</a></li>
<li>use forward slashes when normalizing path (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9768">#9768</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/58fc08840a4a64ca1935391f4709a784c3f0b373">58fc088</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9766">#9766</a></li>
<li>use object create if entity skip constructor is set (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9831">#9831</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/a8689795dad796338e2a291a6a2fda89b00ef243">a868979</a>)</li>
</ul>
<h3>Features</h3>
<ul>
<li>add support for json datatype for sqlite (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9744">#9744</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/4ac8c00117417ae622368aabe36d0fd5c676bd00">4ac8c00</a>)</li>
<li>add support for STI on EntitySchema (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9834">#9834</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/bc306fb5a2c4dc02d04632af2b2f6c697a684356">bc306fb</a>),
closes <a
href="https://redirect.github.com/typeorm/typeorm/issues/9833">#9833</a></li>
<li>allow type FindOptionsOrderValue for order by object property (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9895">#9895</a>)
(<a
href="https://redirect.github.com/typeorm/typeorm/issues/9896">#9896</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/0814970a9cc2c958199c9d74d1ef313de43dab50">0814970</a>)</li>
<li>Broadcast identifier for removed related entities (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9913">#9913</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/f530811b0da2863711db3467e55bf815c66b4b4b">f530811</a>)</li>
<li>leftJoinAndMapOne and innerJoinAndMapOne map result to entity (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9354">#9354</a>)
(<a
href="https://github.com/typeorm/typeorm/commit/947ffc34324c1d692496804e43dafa6302efc1db">947ffc3</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/typeorm/typeorm/commit/b3dc65683b9b1db7bfc963a1b51e3ef389c66b0c"><code>b3dc656</code></a>
version bump</li>
<li><a
href="https://github.com/typeorm/typeorm/commit/f1330ad6e23bea65a16b4f1c4199f10f3fa7282b"><code>f1330ad</code></a>
fix: firstCapital=true not working in camelCase() function</li>
<li><a
href="https://github.com/typeorm/typeorm/commit/a11809e1b20cc77fd2767b8bab2500a0c7e20d23"><code>a11809e</code></a>
fix: handles &quot;query&quot; relation loading strategy for
TreeRepositories (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9680">#9680</a>)</li>
<li><a
href="https://github.com/typeorm/typeorm/commit/947ffc34324c1d692496804e43dafa6302efc1db"><code>947ffc3</code></a>
feat: leftJoinAndMapOne and innerJoinAndMapOne map result to entity (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9354">#9354</a>)</li>
<li><a
href="https://github.com/typeorm/typeorm/commit/de1228deace974eca3e9dd3956208ebe4cd9347f"><code>de1228d</code></a>
fix: transform values for FindOperators <a
href="https://redirect.github.com/typeorm/typeorm/issues/9381">#9381</a>
(<a
href="https://redirect.github.com/typeorm/typeorm/issues/9777">#9777</a>)</li>
<li><a
href="https://github.com/typeorm/typeorm/commit/197cc05e90c0182357d85aa1ce7ae45de99d9d98"><code>197cc05</code></a>
fix: prevent foreign key support during migration batch under sqlite (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9775">#9775</a>)</li>
<li><a
href="https://github.com/typeorm/typeorm/commit/4ac8c00117417ae622368aabe36d0fd5c676bd00"><code>4ac8c00</code></a>
feat: add support for json datatype for sqlite (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9744">#9744</a>)</li>
<li><a
href="https://github.com/typeorm/typeorm/commit/a8689795dad796338e2a291a6a2fda89b00ef243"><code>a868979</code></a>
fix: use object create if entity skip constructor is set (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9831">#9831</a>)</li>
<li><a
href="https://github.com/typeorm/typeorm/commit/bc306fb5a2c4dc02d04632af2b2f6c697a684356"><code>bc306fb</code></a>
feat: add support for STI on EntitySchema (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9834">#9834</a>)</li>
<li><a
href="https://github.com/typeorm/typeorm/commit/97280fc82532a649b18a0cb65934fbe95d4fc446"><code>97280fc</code></a>
docs: update migrations docs (<a
href="https://redirect.github.com/typeorm/typeorm/issues/9828">#9828</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/typeorm/typeorm/compare/0.3.12...0.3.13">compare
view</a></li>
</ul>
</details>
<br />

Updates `graphql` from 16.6.0 to 16.8.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/graphql/graphql-js/releases">graphql's
releases</a>.</em></p>
<blockquote>
<h2>v16.8.1 (2023-09-19)</h2>
<h4>Bug Fix 🐞</h4>
<ul>
<li><a
href="https://redirect.github.com/graphql/graphql-js/pull/3967">#3967</a>
OverlappingFieldsCanBeMergedRule: Fix performance degradation (<a
href="https://github.com/AaronMoat"><code>@​AaronMoat</code></a>)</li>
</ul>
<h4>Committers: 1</h4>
<ul>
<li>Aaron Moat(<a
href="https://github.com/AaronMoat"><code>@​AaronMoat</code></a>)</li>
</ul>
<h2>v16.8.0 (2023-08-14)</h2>
<h4>New Feature 🚀</h4>
<ul>
<li><a
href="https://redirect.github.com/graphql/graphql-js/pull/3950">#3950</a>
Support fourfold nested lists (<a
href="https://github.com/gschulze"><code>@​gschulze</code></a>)</li>
</ul>
<h4>Committers: 1</h4>
<ul>
<li>Gunnar Schulze(<a
href="https://github.com/gschulze"><code>@​gschulze</code></a>)</li>
</ul>
<h2>v16.7.1 (2023-06-22)</h2>
<p>:loudspeaker: Big shout out to <a
href="https://github.com/phryneas"><code>@​phryneas</code></a>, who
managed to reproduce this issue and come up with this fix.</p>
<h4>Bug Fix 🐞</h4>
<ul>
<li><a
href="https://redirect.github.com/graphql/graphql-js/pull/3923">#3923</a>
instanceOf: workaround bundler issue with <code>process.env</code> (<a
href="https://github.com/IvanGoncharov"><code>@​IvanGoncharov</code></a>)</li>
</ul>
<h4>Committers: 1</h4>
<ul>
<li>Ivan Goncharov(<a
href="https://github.com/IvanGoncharov"><code>@​IvanGoncharov</code></a>)</li>
</ul>
<h2>v16.7.0 (2023-06-21)</h2>
<h4>New Feature 🚀</h4>
<ul>
<li><a
href="https://redirect.github.com/graphql/graphql-js/pull/3887">#3887</a>
check &quot;globalThis.process&quot; before accessing it (<a
href="https://github.com/kettanaito"><code>@​kettanaito</code></a>)</li>
</ul>
<h4>Bug Fix 🐞</h4>
<ul>
<li><a
href="https://redirect.github.com/graphql/graphql-js/pull/3707">#3707</a>
Fix crash in node when mixing sync/async resolvers (backport of <a
href="https://redirect.github.com/graphql/graphql-js/issues/3706">#3706</a>)
(<a
href="https://github.com/chrskrchr"><code>@​chrskrchr</code></a>)</li>
<li><a
href="https://redirect.github.com/graphql/graphql-js/pull/3838">#3838</a>
Fix/invalid error propagation custom scalars (backport for 16.x.x) (<a
href="https://github.com/stenreijers"><code>@​stenreijers</code></a>)</li>
</ul>
<h4>Committers: 3</h4>
<ul>
<li>Artem Zakharchenko(<a
href="https://github.com/kettanaito"><code>@​kettanaito</code></a>)</li>
<li>Chris Karcher(<a
href="https://github.com/chrskrchr"><code>@​chrskrchr</code></a>)</li>
<li>Sten Reijers(<a
href="https://github.com/stenreijers"><code>@​stenreijers</code></a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/graphql/graphql-js/commit/8a95335f545024c09abfa0f07cc326f73a0e466f"><code>8a95335</code></a>
16.8.1</li>
<li><a
href="https://github.com/graphql/graphql-js/commit/8f4c64eb6a7112a929ffeef00caa67529b3f2fcf"><code>8f4c64e</code></a>
OverlappingFieldsCanBeMergedRule: Fix performance degradation (<a
href="https://redirect.github.com/graphql/graphql-js/issues/3967">#3967</a>)</li>
<li><a
href="https://github.com/graphql/graphql-js/commit/e4f759dba1a9b19c8a189b803657ee4abe0efe11"><code>e4f759d</code></a>
16.8.0</li>
<li><a
href="https://github.com/graphql/graphql-js/commit/bec1b497fdfba69937b958e80676b585124bf0c5"><code>bec1b49</code></a>
Support fourfold nested lists (<a
href="https://redirect.github.com/graphql/graphql-js/issues/3950">#3950</a>)</li>
<li><a
href="https://github.com/graphql/graphql-js/commit/bf6a9f0e1cc8721de6675fb7bff470137635266f"><code>bf6a9f0</code></a>
16.7.1</li>
<li><a
href="https://github.com/graphql/graphql-js/commit/a08aaeea584a326c7d1a40cbcbd1b28b64c4e08c"><code>a08aaee</code></a>
instanceOf: workaround bundler issue with <code>process.env</code> (<a
href="https://redirect.github.com/graphql/graphql-js/issues/3923">#3923</a>)</li>
<li><a
href="https://github.com/graphql/graphql-js/commit/1519fda27376bcdd26b433aecfb9e7b485da71f8"><code>1519fda</code></a>
16.7.0</li>
<li><a
href="https://github.com/graphql/graphql-js/commit/84bb146e644e78ba75faf0ba173de9b4434807c5"><code>84bb146</code></a>
check &quot;globalThis.process&quot; before accessing it (<a
href="https://redirect.github.com/graphql/graphql-js/issues/3887">#3887</a>)</li>
<li><a
href="https://github.com/graphql/graphql-js/commit/076972e9c1944c9fe43a42046ed9d8be08d974dc"><code>076972e</code></a>
Fix/invalid error propagation custom scalars (backport for 16.x.x) (<a
href="https://redirect.github.com/graphql/graphql-js/issues/3838">#3838</a>)</li>
<li><a
href="https://github.com/graphql/graphql-js/commit/4a82557ae6d3b3c6cd72bcd528254296ecf7e9e8"><code>4a82557</code></a>
Fix crash in node when mixing sync/async resolvers (backport of <a
href="https://redirect.github.com/graphql/graphql-js/issues/3706">#3706</a>)
(<a
href="https://redirect.github.com/graphql/graphql-js/issues/3707">#3707</a>)</li>
<li>See full diff in <a
href="https://github.com/graphql/graphql-js/compare/v16.6.0...v16.8.1">compare
view</a></li>
</ul>
</details>
<br />

Updates `axios` from 1.5.1 to 1.6.8
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/releases">axios's
releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.8</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](https://github.com/axios/axios/issues/6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](https://github.com/axios/axios/issues/6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](https://github.com/axios/axios/issues/6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](https://github.com/axios/axios/issues/6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](https://github.com/axios/axios/issues/6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](https://github.com/axios/axios/issues/6243) )">Miroslav
Petrov</a></li>
</ul>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](https://github.com/axios/axios/issues/6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](https://github.com/axios/axios/issues/6186)
)">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](https://github.com/axios/axios/issues/5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](https://github.com/axios/axios/issues/5778) )">Zao
Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a
href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>)
(<a
href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.7...v1.6.8">1.6.8</a>
(2024-03-15)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an
object during config merging (<a
href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>)
(<a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6
(<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)
(<a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/jasonsaayman"
title="+4572/-3446 ([#6238](https://github.com/axios/axios/issues/6238)
)">Jay</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-0
([#6231](https://github.com/axios/axios/issues/6231) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Creaous"
title="+9/-9 ([#6300](https://github.com/axios/axios/issues/6300)
)">Mitchell</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/mannoeu"
title="+2/-2 ([#6196](https://github.com/axios/axios/issues/6196)
)">Emmanuel</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ljkeller"
title="+3/-0 ([#6194](https://github.com/axios/axios/issues/6194)
)">Lucas Keller</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/ADITYA-176"
title="+1/-1 ()">Aditya Mogili</a></li>
<li><!-- raw HTML omitted --> <a
href="https://github.com/petrovmiroslav" title="+1/-1
([#6243](https://github.com/axios/axios/issues/6243) )">Miroslav
Petrov</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a>
(2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects;
(<a
href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>)
(<a
href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a
href="https://github.com/DigitalBrainJS" title="+30/-26
([#6203](https://github.com/axios/axios/issues/6203) )">Dmitriy
Mozgovoy</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zh-lx"
title="+0/-3 ([#6186](https://github.com/axios/axios/issues/6186)
)">zhoulixiang</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a>
(2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a
href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>)
(<a
href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a
href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>)
(<a
href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/ikonst"
title="+91/-8 ([#5987](https://github.com/axios/axios/issues/5987)
)">Ilya Priven</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/zaosoula"
title="+6/-6 ([#5778](https://github.com/axios/axios/issues/5778) )">Zao
Soula</a></li>
</ul>
<h2><a
href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a>
(2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish
action; (<a
href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>)
(<a
href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/axios/axios/commit/ab3f0f9a94853c821cb00f1112788ecdd3ae7ed1"><code>ab3f0f9</code></a>
chore(release): v1.6.8 (<a
href="https://redirect.github.com/axios/axios/issues/6303">#6303</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb"><code>2656612</code></a>
fix(AxiosHeaders): fix AxiosHeaders conversion to an object during
config mer...</li>
<li><a
href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1"><code>7320430</code></a>
fix(import): use named export for EventEmitter;</li>
<li><a
href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27"><code>8786e0f</code></a>
fix(vulnerability): update follow-redirects to 1.15.6 (<a
href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/d844227411263fab39d447442879112f8b0c8de5"><code>d844227</code></a>
chore: update and bump deps (<a
href="https://redirect.github.com/axios/axios/issues/6238">#6238</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/caa06252015003990958d7db96f63aa646bc58e8"><code>caa0625</code></a>
docs: update README responseEncoding types (<a
href="https://redirect.github.com/axios/axios/issues/6194">#6194</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/41c4584a41fad1d94cf86331667deff5a0b75044"><code>41c4584</code></a>
docs: Update README.md to point to current axios version in CDN links
(<a
href="https://redirect.github.com/axios/axios/issues/6196">#6196</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/bf6974f16af6c72985f094a98d874c5a6adcdc83"><code>bf6974f</code></a>
chore(ci): add npm tag action; (<a
href="https://redirect.github.com/axios/axios/issues/6231">#6231</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a>
chore(release): v1.6.7 (<a
href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a
href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a>
chore: remove unnecessary check (<a
href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/axios/axios/compare/v1.5.1...v1.6.8">compare
view</a></li>
</ul>
</details>
<br />

Updates `@nestjs/axios` from 1.0.1 to 3.0.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/nestjs/axios/releases"><code>@​nestjs/axios</code>'s
releases</a>.</em></p>
<blockquote>
<h2>Release 3.0.2</h2>
<ul>
<li>Merge pull request <a
href="https://redirect.github.com/nestjs/axios/issues/1016">#1016</a>
from nestjs/renovate/nest-monorepo (a3f98bf)</li>
<li>Merge pull request <a
href="https://redirect.github.com/nestjs/axios/issues/910">#910</a> from
nestjs/renovate/cimg-node-21.x (c8be5e5)</li>
<li>chore(deps): update nest monorepo to v10.3.2 (c8c5f81)</li>
<li>chore: remove reflect-metadata from peer deps (71341b1)</li>
<li>chore(deps): update typescript-eslint monorepo to v6.21.0
(47977ed)</li>
<li>chore(deps): update dependency lint-staged to v15.2.2 (c019cd0)</li>
<li>chore(deps): update dependency prettier to v3.2.5 (6fb30e4)</li>
<li>chore(deps): update dependency husky to v9.0.10 (c289ef1)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to
v20.11.16 (a1c0256)</li>
<li>chore(deps): update dependency <code>@​types/jest</code> to v29.5.12
(ae6c6ae)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to
v20.11.15 (c43eb41)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to
v20.11.14 (e326c14)</li>
<li>chore(deps): update dependency lint-staged to v15.2.1 (cc3ebe7)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to
v20.11.13 (e5f5930)</li>
<li>chore(deps): update typescript-eslint monorepo to v6.20.0
(b81b772)</li>
<li>chore(deps): update dependency husky to v9.0.7 (920e5e5)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to
v20.11.10 (29365c6)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to v20.11.9
(91d18cb)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to v20.11.8
(3fbca54)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to v20.11.7
(225b32d)</li>
<li>chore(deps): update dependency husky to v9.0.6 (3c3f7b0)</li>
<li>chore(deps): update dependency axios to v1.6.7 (377383f)</li>
<li>chore(deps): update dependency husky to v9.0.5 (173bb71)</li>
<li>chore(deps): update commitlint monorepo to v18.6.0 (e1f2d93)</li>
<li>chore(deps): update dependency husky to v9 (ea27483)</li>
<li>chore(deps): update dependency axios to v1.6.6 (2d2aa25)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to v20.11.6
(2b31fa0)</li>
<li>chore(deps): update nest monorepo to v10.3.1 (4f95abc)</li>
<li>chore(deps): update dependency release-it to v17.0.3 (3d51f86)</li>
<li>chore(deps): update typescript-eslint monorepo to v6.19.1
(af62d45)</li>
<li>chore(deps): update commitlint monorepo to v18.5.0 (363a683)</li>
<li>chore(deps): update dependency ts-jest to v29.1.2 (82e681d)</li>
<li>chore(deps): update dependency prettier to v3.2.4 (068b64c)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to v20.11.5
(caaeb94)</li>
<li>chore(deps): update dependency prettier to v3.2.3 (4308521)</li>
<li>chore(deps): update node.js to v21 (019c12f)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to v20.11.4
(39e6508)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to v20.11.3
(1c3e17a)</li>
<li>chore(deps): update typescript-eslint monorepo to v6.19.0
(1178c3e)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to v20.11.2
(1cd8779)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to v20.11.1
(96fdd73)</li>
<li>chore(deps): update dependency prettier to v3.2.2 (a6f70c1)</li>
<li>chore(deps): update dependency prettier to v3.2.1 (51f62fc)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to v20.11.0
(8514b40)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to v20.10.8
(72983e6)</li>
<li>chore(deps): update typescript-eslint monorepo to v6.18.1
(9a53e67)</li>
<li>chore(deps): update dependency <code>@​types/node</code> to v20.10.7
(5c60db2)</li>
<li>chore(deps): update typescript-eslint monorepo to v6.18.0
(de6de0d)</li>
<li>chore(deps): update dependency axios to v1.6.5 (08a3268)</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/nestjs/axios/commits/3.0.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `mssql` from 6.4.1 to 9.3.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/tediousjs/node-mssql/releases">mssql's
releases</a>.</em></p>
<blockquote>
<h2>v9.3.2</h2>
<h2><a
href="https://github.com/tediousjs/node-mssql/compare/v9.3.1...v9.3.2">9.3.2</a>
(2023-09-06)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>msnodesqlv8 connection string uses correct instance name (<a
href="https://github.com/tediousjs/node-mssql/commit/eb3e4d00d9ef243d33d546e71bffc95948f77617">eb3e4d0</a>)</li>
</ul>
<h2>v9.3.0</h2>
<h1><a
href="https://github.com/tediousjs/node-mssql/compare/v9.2.0...v9.3.0">9.3.0</a>
(2023-09-04)</h1>
<h3>Features</h3>
<ul>
<li>add AAD authentication support to connection strings (<a
href="https://github.com/tediousjs/node-mssql/commit/59aea21a1cf192d15f16c037f1f2914e4d7926d5">59aea21</a>)</li>
</ul>
<h2>v9.2.1</h2>
<h2><a
href="https://github.com/tediousjs/node-mssql/compare/v9.2.0...v9.2.1">9.2.1</a>
(2023-09-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>msnodesqlv8 connection string uses correct instance name (<a
href="https://github.com/tediousjs/node-mssql/commit/eb3e4d00d9ef243d33d546e71bffc95948f77617">eb3e4d0</a>)</li>
</ul>
<h2>v9.2.0</h2>
<h1><a
href="https://github.com/tediousjs/node-mssql/compare/v9.1.3...v9.2.0">9.2.0</a>
(2023-08-28)</h1>
<h3>Features</h3>
<ul>
<li>use <code>@​tediousjs/connection-string</code> to build msnodesqlv8
connection string (<a
href="https://github.com/tediousjs/node-mssql/commit/71357e2a45927695c3c3ebb7ed4a42d868976c75">71357e2</a>)</li>
</ul>
<h2>v9.1.3</h2>
<h2><a
href="https://github.com/tediousjs/node-mssql/compare/v9.1.2...v9.1.3">9.1.3</a>
(2023-08-08)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>quote sqlv8 values (<a
href="https://github.com/tediousjs/node-mssql/commit/75b74f6d5d38b06fe8a6352bb50443609085ad4d">75b74f6</a>)</li>
</ul>
<h2>v9.1.2</h2>
<h2>What's Changed</h2>
<ul>
<li>Fix README header for 8.x to 9.x upgrades by <a
href="https://github.com/jordanjennings"><code>@​jordanjennings</code></a>
in <a
href="https://redirect.github.com/tediousjs/node-mssql/pull/1464">tediousjs/node-mssql#1464</a></li>
<li>Fix README to show node 12 no longer supported with 9.x by <a
href="https://github.com/jordanjennings"><code>@​jordanjennings</code></a>
in <a
href="https://redirect.github.com/tediousjs/node-mssql/pull/1465">tediousjs/node-mssql#1465</a></li>
<li>Bump xml2js and <code>@​azure/keyvault-keys</code> by <a
href="https://github.com/dependabot"><code>@​dependabot</code></a> in <a
href="https://redirect.github.com/tediousjs/node-mssql/pull/1485">tediousjs/node-mssql#1485</a></li>
<li>Add automated release workflows by <a
href="https://github.com/dhensby"><code>@​dhensby</code></a> in <a
href="https://redirect.github.com/tediousjs/node-mssql/pull/1502">tediousjs/node-mssql#1502</a></li>
<li>chore(ci): prevent dependabot pushes triggering appveyor events by
<a href="https://github.com/dhensby"><code>@​dhensby</code></a> in <a
href="https://redirect.github.com/tediousjs/node-mssql/pull/1508">tediousjs/node-mssql#1508</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/tediousjs/node-mssql/blob/master/CHANGELOG.txt">mssql's
changelog</a>.</em></p>
<blockquote>
<h2>v9.3.2 (2023-09-06)</h2>
<p>[fix] Fix bug with msnodesqlv8 connection strings ((<a
href="https://redirect.github.com/tediousjs/node-mssql/issues/1525">#1525</a>)[https://redirect.github.com/tediousjs/node-mssql/pull/1525])</p>
<h2>v9.3.1 (2023-09-05)</h2>
<p>Revoked - contained breaking changes</p>
<h2>v9.3.0 (2023-09-04)</h2>
<p>[new] Add AAD connection support to connection strings ((<a
href="https://redirect.github.com/tediousjs/node-mssql/issues/1461">#1461</a>)[https://redirect.github.com/tediousjs/node-mssql/pull/1461])</p>
<h2>v9.2.1 (2023-09-05)</h2>
<p>[fix] Fix bug with msnodesqlv8 connection strings ((<a
href="https://redirect.github.com/tediousjs/node-mssql/issues/1525">#1525</a>)[https://redirect.github.com/tediousjs/node-mssql/pull/1525])</p>
<h2>v9.2.0 (2023-08-28)</h2>
<p>[new] Use <code>@​tediousjs/connection-string</code> library to build
msnodesqlv8 connection strings ((<a
href="https://redirect.github.com/tediousjs/node-mssql/issues/1525">#1525</a>)[https://redirect.github.com/tediousjs/node-mssql/pull/1525])</p>
<h2>v9.1.3 (2023-08-08)</h2>
<p>[fix] Escape values that are added to the msnodesqlv8 connection
string that we construct ((<a
href="https://redirect.github.com/tediousjs/node-mssql/issues/1479">#1479</a>)[https://redirect.github.com/tediousjs/node-mssql/pull/1479])</p>
<h2>v9.1.2 (2023-08-01)</h2>
<p>[fix] Support more named instance formats (<a
href="https://redirect.github.com/tediousjs/node-mssql/pull/1520">#1520</a>)
[refactor] Stop using deprecated regex symbols (<a
href="https://redirect.github.com/tediousjs/node-mssql/pull/1520">#1520</a>)</p>
<h2>v9.1.1 (2023-01-19)</h2>
<p>[revert] Add support for AAD authentication via connection string
((<a
href="https://redirect.github.com/tediousjs/node-mssql/issues/1436">#1436</a>)[https://redirect.github.com/tediousjs/node-mssql/pull/1436])</p>
<h2>v9.1.0 (2023-01-17)</h2>
<p>[new] Add support for AAD authentication via connection string ((<a
href="https://redirect.github.com/tediousjs/node-mssql/issues/1436">#1436</a>)[https://redirect.github.com/tediousjs/node-mssql/pull/1436])
[docs] Update express example ((<a
href="https://redirect.github.com/tediousjs/node-mssql/issues/1433">#1433</a>)[https://redirect.github.com/tediousjs/node-mssql/pull/1433])</p>
<h2>v9.0.1 (2022-08-18)</h2>
<p>[fix] fix regression in requestTimout option not accepting
<code>0</code> as a value (<a
href="https://redirect.github.com/tediousjs/node-mssql/pull/1421">#1421</a>)</p>
<h2>v9.0.0 (2022-08-10)</h2>
<p>[change] Upgrade tedious to v15 (<a
href="https://redirect.github.com/tediousjs/node-mssql/pull/1417">#1417</a>)
[removed] Removed NodeJS 10 &amp; 12 support (<a
href="https://redirect.github.com/tediousjs/node-mssql/pull/1417">#1417</a>)</p>
<h2>v8.1.4 (2022-08-18)</h2>
<p>[fix] fix regression in requestTimout option not accepting
<code>0</code> as a value (<a
href="https://redirect.github.com/tediousjs/node-mssql/pull/1421">#1421</a>)</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/tediousjs/node-mssql/commit/cb6f8e227b1113d9bc8a9e08775445873fea63b8"><code>cb6f8e2</code></a>
fix: force patch release</li>
<li><a
href="https://github.com/tediousjs/node-mssql/commit/8a677c83d5e5fd3bbec82d5060d8b2d9cb1eec68"><code>8a677c8</code></a>
Merge pull request <a
href="https://redirect.github.com/tediousjs/node-mssql/issues/1546">#1546</a>
from tediousjs/revert-1518-dependabot/npm_and_yarn/t...</li>
<li><a
href="https://github.com/tediousjs/node-mssql/commit/86d327614397b93c21b85e7c82c44dbefdccf8f5"><code>86d3276</code></a>
Revert &quot;chore(deps): bump tedious from 15.0.1 to 16.4.0&quot;</li>
<li><a
href="https://github.com/tediousjs/node-mssql/commit/31bdaca73ca8eca30f85e0f98135eb814b90ae67"><code>31bdaca</code></a>
Merge branch '9.3.x'</li>
<li><a
href="https://github.com/tediousjs/node-mssql/commit/a702724e4dc3b07788f5f561cae26b6fa40ddeaf"><code>a702724</code></a>
Merge remote-tracking branch 'origin/9.2.x' into 9.x</li>
<li><a
href="https://github.com/tediousjs/node-mssql/commit/53fc9ea20be6b2a5b225ad3ef70cd9e8177d7e35"><code>53fc9ea</code></a>
Merge pull request <a
href="https://redirect.github.com/tediousjs/node-mssql/issues/1543">#1543</a>
from partik-mis/1542-fix</li>
<li><a
href="https://github.com/tediousjs/node-mssql/commit/ff05cceb83f2f0c33bfaff6df5410eefa615337b"><code>ff05cce</code></a>
docs: update changelog</li>
<li><a
href="https://github.com/tediousjs/node-mssql/commit/eb3e4d00d9ef243d33d546e71bffc95948f77617"><code>eb3e4d0</code></a>
fix: msnodesqlv8 connection string uses correct instance name</li>
<li><a
href="https://github.com/tediousjs/node-mssql/commit/1e124375323108994029158587031a7bd7076e0e"><code>1e12437</code></a>
Merge pull request <a
href="https://redirect.github.com/tediousjs/node-mssql/issues/1518">#1518</a>
from tediousjs/dependabot/npm_and_yarn/tedious-16.4.0</li>
<li><a
href="https://github.com/tediousjs/node-mssql/commit/b5cf976c10ff509a610410383325b70c731c00bf"><code>b5cf976</code></a>
Merge pull request <a
href="https://redirect.github.com/tediousjs/node-mssql/issues/1461">#1461</a>
from Shin-Aska/feature/aad-integration-conn-string</li>
<li>Additional commits viewable in <a
href="https://github.com/tediousjs/node-mssql/compare/v6.4.1...v9.3.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `jsonwebtoken` from 8.5.1 to 9.0.0
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/auth0/node-jsonwebtoken/blob/master/CHANGELOG.md">jsonwebtoken's
changelog</a>.</em></p>
<blockquote>
<h2>9.0.0 - 2022-12-21</h2>
<p><strong>Breaking changes: See <a
href="https://github.com/auth0/node-jsonwebtoken/wiki/Migration-Notes:-v8-to-v9">Migration
from v8 to v9</a></strong></p>
<h3>Breaking changes</h3>
<ul>
<li>Removed support for Node versions 11 and below.</li>
<li>The verify() function no longer accepts unsigned tokens by default.
([834503079514b72264fd13023a3b8d648afd6a16]<a
href="https://github.com/auth0/node-jsonwebtoken/commit/834503079514b72264fd13023a3b8d648afd6a16">https://github.com/auth0/node-jsonwebtoken/commit/834503079514b72264fd13023a3b8d648afd6a16</a>)</li>
<li>RSA key size must be 2048 bits or greater.
([ecdf6cc6073ea13a7e71df5fad043550f08d0fa6]<a
href="https://github.com/auth0/node-jsonwebtoken/commit/ecdf6cc6073ea13a7e71df5fad043550f08d0fa6">https://github.com/auth0/node-jsonwebtoken/commit/ecdf6cc6073ea13a7e71df5fad043550f08d0fa6</a>)</li>
<li>Key types must be valid for the signing / verification
algorithm</li>
</ul>
<h3>Security fixes</h3>
<ul>
<li>security: fixes <code>Arbitrary File Write via verify
function</code> - CVE-2022-23529</li>
<li>security: fixes <code>Insecure default algorithm in jwt.verify()
could lead to signature validation bypass</code> - CVE-2022-23540</li>
<li>security: fixes <code>Insecure implementation of key retrieval
function could lead to Forgeable Public/Private Tokens from RSA to
HMAC</code> - CVE-2022-23541</li>
<li>security: fixes <code>Unrestricted key type could lead to legacy
keys usage</code> - CVE-2022-23539</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/auth0/node-jsonwebtoken/commit/e1fa9dcc12054a8681db4e6373da1b30cf7016e3"><code>e1fa9dc</code></a>
Merge pull request from GHSA-8cf7-32gw-wr33</li>
<li><a
href="https://github.com/auth0/node-jsonwebtoken/commit/5eaedbf2b01676d952336e73b4d2efba847d2d1b"><code>5eaedb…
mergify bot pushed a commit to aws/aws-cdk that referenced this pull request Apr 26, 2024
Bumps [axios](https://github.com/axios/axios) from 0.27.2 to 1.6.8.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/releases">axios's releases</a>.</em></p>
<blockquote>
<h2>Release v1.6.8</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an object during config merging (<a href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>) (<a href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6 (<a href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>) (<a href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li> <a href="https://github.com/jasonsaayman" title="+4572/-3446 ([#6238](axios/axios#6238) )">Jay</a></li>
<li> <a href="https://github.com/DigitalBrainJS" title="+30/-0 ([#6231](axios/axios#6231) )">Dmitriy Mozgovoy</a></li>
<li> <a href="https://github.com/Creaous" title="+9/-9 ([#6300](axios/axios#6300) )">Mitchell</a></li>
<li> <a href="https://github.com/mannoeu" title="+2/-2 ([#6196](axios/axios#6196) )">Emmanuel</a></li>
<li> <a href="https://github.com/ljkeller" title="+3/-0 ([#6194](axios/axios#6194) )">Lucas Keller</a></li>
<li> <a href="https://github.com/ADITYA-176" title="+1/-1 ()">Aditya Mogili</a></li>
<li> <a href="https://github.com/petrovmiroslav" title="+1/-1 ([#6243](axios/axios#6243) )">Miroslav Petrov</a></li>
</ul>
<h2>Release v1.6.7</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects; (<a href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>) (<a href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li> <a href="https://github.com/DigitalBrainJS" title="+30/-26 ([#6203](axios/axios#6203) )">Dmitriy Mozgovoy</a></li>
<li> <a href="https://github.com/zh-lx" title="+0/-3 ([#6186](axios/axios#6186) )">zhoulixiang</a></li>
</ul>
<h2>Release v1.6.6</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>) (<a href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>) (<a href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li> <a href="https://github.com/ikonst" title="+91/-8 ([#5987](axios/axios#5987) )">Ilya Priven</a></li>
<li> <a href="https://github.com/zaosoula" title="+6/-6 ([#5778](axios/axios#5778) )">Zao Soula</a></li>
</ul>
<h2>Release v1.6.5</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish action; (<a href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>) (<a href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
<li><strong>dns:</strong> fixed lookup error handling; (<a href="https://redirect.github.com/axios/axios/issues/6175">#6175</a>) (<a href="https://github.com/axios/axios/commit/f4f2b039dd38eb4829e8583caede4ed6d2dd59be">f4f2b03</a>)</li>
</ul>
<h3>Contributors to this release</h3>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's changelog</a>.</em></p>
<blockquote>
<h2><a href="https://github.com/axios/axios/compare/v1.6.7...v1.6.8">1.6.8</a> (2024-03-15)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>AxiosHeaders:</strong> fix AxiosHeaders conversion to an object during config merging (<a href="https://redirect.github.com/axios/axios/issues/6243">#6243</a>) (<a href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb">2656612</a>)</li>
<li><strong>import:</strong> use named export for EventEmitter; (<a href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1">7320430</a>)</li>
<li><strong>vulnerability:</strong> update follow-redirects to 1.15.6 (<a href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>) (<a href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27">8786e0f</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li> <a href="https://github.com/jasonsaayman" title="+4572/-3446 ([#6238](axios/axios#6238) )">Jay</a></li>
<li> <a href="https://github.com/DigitalBrainJS" title="+30/-0 ([#6231](axios/axios#6231) )">Dmitriy Mozgovoy</a></li>
<li> <a href="https://github.com/Creaous" title="+9/-9 ([#6300](axios/axios#6300) )">Mitchell</a></li>
<li> <a href="https://github.com/mannoeu" title="+2/-2 ([#6196](axios/axios#6196) )">Emmanuel</a></li>
<li> <a href="https://github.com/ljkeller" title="+3/-0 ([#6194](axios/axios#6194) )">Lucas Keller</a></li>
<li> <a href="https://github.com/ADITYA-176" title="+1/-1 ()">Aditya Mogili</a></li>
<li> <a href="https://github.com/petrovmiroslav" title="+1/-1 ([#6243](axios/axios#6243) )">Miroslav Petrov</a></li>
</ul>
<h2><a href="https://github.com/axios/axios/compare/v1.6.6...v1.6.7">1.6.7</a> (2024-01-25)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>capture async stack only for rejections with native error objects; (<a href="https://redirect.github.com/axios/axios/issues/6203">#6203</a>) (<a href="https://github.com/axios/axios/commit/1a08f90f402336e4d00e9ee82f211c6adb1640b0">1a08f90</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li> <a href="https://github.com/DigitalBrainJS" title="+30/-26 ([#6203](axios/axios#6203) )">Dmitriy Mozgovoy</a></li>
<li> <a href="https://github.com/zh-lx" title="+0/-3 ([#6186](axios/axios#6186) )">zhoulixiang</a></li>
</ul>
<h2><a href="https://github.com/axios/axios/compare/v1.6.5...v1.6.6">1.6.6</a> (2024-01-24)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>fixed missed dispatchBeforeRedirect argument (<a href="https://redirect.github.com/axios/axios/issues/5778">#5778</a>) (<a href="https://github.com/axios/axios/commit/a1938ff073fcb0f89011f001dfbc1fa1dc995e39">a1938ff</a>)</li>
<li>wrap errors to improve async stack trace (<a href="https://redirect.github.com/axios/axios/issues/5987">#5987</a>) (<a href="https://github.com/axios/axios/commit/123f354b920f154a209ea99f76b7b2ef3d9ebbab">123f354</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li> <a href="https://github.com/ikonst" title="+91/-8 ([#5987](axios/axios#5987) )">Ilya Priven</a></li>
<li> <a href="https://github.com/zaosoula" title="+6/-6 ([#5778](axios/axios#5778) )">Zao Soula</a></li>
</ul>
<h2><a href="https://github.com/axios/axios/compare/v1.6.4...v1.6.5">1.6.5</a> (2024-01-05)</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong>ci:</strong> refactor notify action as a job of publish action; (<a href="https://redirect.github.com/axios/axios/issues/6176">#6176</a>) (<a href="https://github.com/axios/axios/commit/0736f95ce8776366dc9ca569f49ba505feb6373c">0736f95</a>)</li>
</ul>

</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/axios/axios/commit/ab3f0f9a94853c821cb00f1112788ecdd3ae7ed1"><code>ab3f0f9</code></a> chore(release): v1.6.8 (<a href="https://redirect.github.com/axios/axios/issues/6303">#6303</a>)</li>
<li><a href="https://github.com/axios/axios/commit/2656612bc10fe2757e9832b708ed773ab340b5cb"><code>2656612</code></a> fix(AxiosHeaders): fix AxiosHeaders conversion to an object during config mer...</li>
<li><a href="https://github.com/axios/axios/commit/7320430aef2e1ba2b89488a0eaf42681165498b1"><code>7320430</code></a> fix(import): use named export for EventEmitter;</li>
<li><a href="https://github.com/axios/axios/commit/8786e0ff55a8c68d4ca989801ad26df924042e27"><code>8786e0f</code></a> fix(vulnerability): update follow-redirects to 1.15.6 (<a href="https://redirect.github.com/axios/axios/issues/6300">#6300</a>)</li>
<li><a href="https://github.com/axios/axios/commit/d844227411263fab39d447442879112f8b0c8de5"><code>d844227</code></a> chore: update and bump deps (<a href="https://redirect.github.com/axios/axios/issues/6238">#6238</a>)</li>
<li><a href="https://github.com/axios/axios/commit/caa06252015003990958d7db96f63aa646bc58e8"><code>caa0625</code></a> docs: update README responseEncoding types (<a href="https://redirect.github.com/axios/axios/issues/6194">#6194</a>)</li>
<li><a href="https://github.com/axios/axios/commit/41c4584a41fad1d94cf86331667deff5a0b75044"><code>41c4584</code></a> docs: Update README.md to point to current axios version in CDN links (<a href="https://redirect.github.com/axios/axios/issues/6196">#6196</a>)</li>
<li><a href="https://github.com/axios/axios/commit/bf6974f16af6c72985f094a98d874c5a6adcdc83"><code>bf6974f</code></a> chore(ci): add npm tag action; (<a href="https://redirect.github.com/axios/axios/issues/6231">#6231</a>)</li>
<li><a href="https://github.com/axios/axios/commit/a52e4d9af51205959ef924f87bcf90c605e08a1e"><code>a52e4d9</code></a> chore(release): v1.6.7 (<a href="https://redirect.github.com/axios/axios/issues/6204">#6204</a>)</li>
<li><a href="https://github.com/axios/axios/commit/2b69888dd5601bbc872452ccd24010219fb6e41a"><code>2b69888</code></a> chore: remove unnecessary check (<a href="https://redirect.github.com/axios/axios/issues/6186">#6186</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/axios/axios/compare/v0.27.2...v1.6.8">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=0.27.2&new-version=1.6.8)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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

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

---

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

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/aws/aws-cdk/network/alerts).

</details>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Improve axios stack traces
4 participants