Commit 2518b47
chore(deps): update dependency axios and glob (#1987)
This PR contains the following updates:
| Package | Change |
[Age](https://docs.renovatebot.com/merge-confidence/) |
[Confidence](https://docs.renovatebot.com/merge-confidence/) |
|---|---|---|---|
| [axios](https://axios-http.com)
([source](https://redirect.github.com/axios/axios)) | [`1.12.2` →
`1.13.5`](https://renovatebot.com/diffs/npm/axios/1.12.2/1.13.5) |

|

|
### GitHub Vulnerability Alerts
####
[CVE-2026-25639](https://redirect.github.com/axios/axios/security/advisories/GHSA-43fc-jf86-j433)
# Denial of Service via **proto** Key in mergeConfig
### Summary
The `mergeConfig` function in axios crashes with a TypeError when
processing configuration objects containing `__proto__` as an own
property. An attacker can trigger this by providing a malicious
configuration object created via `JSON.parse()`, causing complete denial
of service.
### Details
The vulnerability exists in `lib/core/mergeConfig.js` at lines 98-101:
```javascript
utils.forEach(Object.keys({ ...config1, ...config2 }), function computeConfigValue(prop) {
const merge = mergeMap[prop] || mergeDeepProperties;
const configValue = merge(config1[prop], config2[prop], prop);
(utils.isUndefined(configValue) && merge !== mergeDirectKeys) || (config[prop] = configValue);
});
```
When `prop` is `'__proto__'`:
1. `JSON.parse('{"__proto__": {...}}')` creates an object with
`__proto__` as an own enumerable property
2. `Object.keys()` includes `'__proto__'` in the iteration
3. `mergeMap['__proto__']` performs prototype chain lookup, returning
`Object.prototype` (truthy object)
4. The expression `mergeMap[prop] || mergeDeepProperties` evaluates to
`Object.prototype`
5. `Object.prototype(...)` throws `TypeError: merge is not a function`
The `mergeConfig` function is called by:
- `Axios._request()` at `lib/core/Axios.js:75`
- `Axios.getUri()` at `lib/core/Axios.js:201`
- All HTTP method shortcuts (`get`, `post`, etc.) at
`lib/core/Axios.js:211,224`
### PoC
```javascript
import axios from "axios";
const maliciousConfig = JSON.parse('{"__proto__": {"x": 1}}');
await axios.get("https://httpbin.org/get", maliciousConfig);
```
**Reproduction steps:**
1. Clone axios repository or `npm install axios`
2. Create file `poc.mjs` with the code above
3. Run: `node poc.mjs`
4. Observe the TypeError crash
**Verified output (axios 1.13.4):**
```
TypeError: merge is not a function
at computeConfigValue (lib/core/mergeConfig.js:100:25)
at Object.forEach (lib/utils.js:280:10)
at mergeConfig (lib/core/mergeConfig.js:98:9)
```
**Control tests performed:**
| Test | Config | Result |
|------|--------|--------|
| Normal config | `{"timeout": 5000}` | SUCCESS |
| Malicious config | `JSON.parse('{"__proto__": {"x": 1}}')` | **CRASH**
|
| Nested object | `{"headers": {"X-Test": "value"}}` | SUCCESS |
**Attack scenario:**
An application that accepts user input, parses it with `JSON.parse()`,
and passes it to axios configuration will crash when receiving the
payload `{"__proto__": {"x": 1}}`.
### Impact
**Denial of Service** - Any application using axios that processes
user-controlled JSON and passes it to axios configuration methods is
vulnerable. The application will crash when processing the malicious
payload.
Affected environments:
- Node.js servers using axios for HTTP requests
- Any backend that passes parsed JSON to axios configuration
This is NOT prototype pollution - the application crashes before any
assignment occurs.
---
### Release Notes
<details>
<summary>axios/axios (axios)</summary>
###
[`v1.13.5`](https://redirect.github.com/axios/axios/releases/tag/v1.13.5)
[Compare
Source](https://redirect.github.com/axios/axios/compare/v1.13.4...v1.13.5)
#### Release 1.13.5
##### Highlights
- **Security:** Fixed a potential **Denial of Service** issue involving
the `__proto__` key in `mergeConfig`. (PR
[#​7369](https://redirect.github.com/axios/axios/pull/7369))
- **Bug fix:** Resolved an issue where `AxiosError` could be missing the
`status` field on and after **v1.13.3**. (PR
[#​7368](https://redirect.github.com/axios/axios/pull/7368))
##### Changes
##### Security
- Fix Denial of Service via `__proto__` key in `mergeConfig`. (PR
[#​7369](https://redirect.github.com/axios/axios/pull/7369))
##### Fixes
- Fix/5657. (PR
[#​7313](https://redirect.github.com/axios/axios/pull/7313))
- Ensure `status` is present in `AxiosError` on and after v1.13.3. (PR
[#​7368](https://redirect.github.com/axios/axios/pull/7368))
##### Features / Improvements
- Add input validation to `isAbsoluteURL`. (PR
[#​7326](https://redirect.github.com/axios/axios/pull/7326))
- Refactor: bump minor package versions. (PR
[#​7356](https://redirect.github.com/axios/axios/pull/7356))
##### Documentation
- Clarify object-check comment. (PR
[#​7323](https://redirect.github.com/axios/axios/pull/7323))
- Fix deprecated `Buffer` constructor usage and README formatting. (PR
[#​7371](https://redirect.github.com/axios/axios/pull/7371))
##### CI / Maintenance
- Chore: fix issues with YAML. (PR
[#​7355](https://redirect.github.com/axios/axios/pull/7355))
- CI: update workflow YAMLs. (PR
[#​7372](https://redirect.github.com/axios/axios/pull/7372))
- CI: fix run condition. (PR
[#​7373](https://redirect.github.com/axios/axios/pull/7373))
- Dev deps: bump `karma-sourcemap-loader` from 0.3.8 to 0.4.0. (PR
[#​7360](https://redirect.github.com/axios/axios/pull/7360))
- Chore(release): prepare release 1.13.5. (PR
[#​7379](https://redirect.github.com/axios/axios/pull/7379))
##### New Contributors
- [@​sachin11063](https://redirect.github.com/sachin11063) (first
contribution — PR
[#​7323](https://redirect.github.com/axios/axios/pull/7323))
- [@​asmitha-16](https://redirect.github.com/asmitha-16) (first
contribution — PR
[#​7326](https://redirect.github.com/axios/axios/pull/7326))
**Full Changelog:**
<axios/axios@v1.13.4...v1.13.5>
###
[`v1.13.4`](https://redirect.github.com/axios/axios/releases/tag/v1.13.4)
[Compare
Source](https://redirect.github.com/axios/axios/compare/v1.13.3...v1.13.4)
#### Overview
The release addresses issues discovered in v1.13.3 and includes
significant CI/CD improvements.
**Full Changelog**:
[v1.13.3...v1.13.4](https://redirect.github.com/axios/axios/compare/v1.13.3...v1.13.4)
#### What's New in v1.13.4
##### Bug Fixes
- **fix: issues with version 1.13.3**
([#​7352](https://redirect.github.com/axios/axios/issues/7352))
([ee90dfc](https://redirect.github.com/axios/axios/commit/ee90dfc28abffbb61e24974b2bd3139a4a40ac76))
- Fixed issues discovered in v1.13.3 release
- Cleaned up interceptor test files
- Improved workflow configurations
##### Infrastructure & CI/CD
- **refactor: ci and build**
([#​7340](https://redirect.github.com/axios/axios/issues/7340))
([8ff6c19](https://redirect.github.com/axios/axios/commit/8ff6c19e2d764e8706e6a32b9f17a230dfe96e0c))
- Major refactoring of CI/CD workflows
- Consolidated workflow files for better maintainability
- Added mise configuration for the development environment
- Improved sponsor block update automation
- Enhanced issue and PR templates
- Added automatic release notes generation
- Implemented workflow cancellation for concurrent runs
- **chore: codegen and some updates to workflows**
([76cf77b](https://redirect.github.com/axios/axios/commit/76cf77b))
- Code generation improvements
- Workflow optimisations
#### Migration Notes
##### Breaking Changes
None in this release.
##### Deprecations
None in this release.
#### Contributors
Thank you to all contributors who made this release possible! Special
thanks to:
- [jasonsaayman](https://redirect.github.com/jasonsaayman) - Release
management and CI/CD improvements
###
[`v1.13.3`](https://redirect.github.com/axios/axios/blob/HEAD/CHANGELOG.md#1133-2026-01-20)
[Compare
Source](https://redirect.github.com/axios/axios/compare/v1.13.2...v1.13.3)
##### Bug Fixes
- **http2:** Use port 443 for HTTPS connections by default.
([#​7256](https://redirect.github.com/axios/axios/issues/7256))
([d7e6065](https://redirect.github.com/axios/axios/commit/d7e60653460480ffacecf85383012ca1baa6263e))
- **interceptor:** handle the error in the same interceptor
([#​6269](https://redirect.github.com/axios/axios/issues/6269))
([5945e40](https://redirect.github.com/axios/axios/commit/5945e40bb171d4ac4fc195df276cf952244f0f89))
- main field in package.json should correspond to cjs artifacts
([#​5756](https://redirect.github.com/axios/axios/issues/5756))
([7373fbf](https://redirect.github.com/axios/axios/commit/7373fbff24cd92ce650d99ff6f7fe08c2e2a0a04))
- **package.json:** add 'bun' package.json 'exports' condition. Load the
Node.js build in Bun instead of the browser build
([#​5754](https://redirect.github.com/axios/axios/issues/5754))
([b89217e](https://redirect.github.com/axios/axios/commit/b89217e3e91de17a3d55e2b8f39ceb0e9d8aeda8))
- silentJSONParsing=false should throw on invalid JSON
([#​7253](https://redirect.github.com/axios/axios/issues/7253))
([#​7257](https://redirect.github.com/axios/axios/issues/7257))
([7d19335](https://redirect.github.com/axios/axios/commit/7d19335e43d6754a1a9a66e424f7f7da259895bf))
- turn AxiosError into a native error
([#​5394](https://redirect.github.com/axios/axios/issues/5394))
([#​5558](https://redirect.github.com/axios/axios/issues/5558))
([1c6a86d](https://redirect.github.com/axios/axios/commit/1c6a86dd2c0623ee1af043a8491dbc96d40e883b))
- **types:** add handlers to AxiosInterceptorManager interface
([#​5551](https://redirect.github.com/axios/axios/issues/5551))
([8d1271b](https://redirect.github.com/axios/axios/commit/8d1271b49fc226ed7defd07cd577bd69a55bb13a))
- **types:** restore AxiosError.cause type from unknown to Error
([#​7327](https://redirect.github.com/axios/axios/issues/7327))
([d8233d9](https://redirect.github.com/axios/axios/commit/d8233d9e8e9a64bfba9bbe01d475ba417510b82b))
- unclear error message is thrown when specifying an empty proxy
authorization
([#​6314](https://redirect.github.com/axios/axios/issues/6314))
([6ef867e](https://redirect.github.com/axios/axios/commit/6ef867e684adf7fb2343e3b29a79078a3c76dc29))
##### Features
- add `undefined` as a value in AxiosRequestConfig
([#​5560](https://redirect.github.com/axios/axios/issues/5560))
([095033c](https://redirect.github.com/axios/axios/commit/095033c626895ecdcda2288050b63dcf948db3bd))
- add automatic minor and patch upgrades to dependabot
([#​6053](https://redirect.github.com/axios/axios/issues/6053))
([65a7584](https://redirect.github.com/axios/axios/commit/65a7584eda6164980ddb8cf5372f0afa2a04c1ed))
- add Node.js coverage script using c8 (closes
[#​7289](https://redirect.github.com/axios/axios/issues/7289))
([#​7294](https://redirect.github.com/axios/axios/issues/7294))
([ec9d94e](https://redirect.github.com/axios/axios/commit/ec9d94e9f88da13e9219acadf65061fb38ce080a))
- added copilot instructions
([3f83143](https://redirect.github.com/axios/axios/commit/3f83143bfe617eec17f9d7dcf8bafafeeae74c26))
- compatibility with frozen prototypes
([#​6265](https://redirect.github.com/axios/axios/issues/6265))
([860e033](https://redirect.github.com/axios/axios/commit/860e03396a536e9b926dacb6570732489c9d7012))
- enhance pipeFileToResponse with error handling
([#​7169](https://redirect.github.com/axios/axios/issues/7169))
([88d7884](https://redirect.github.com/axios/axios/commit/88d78842541610692a04282233933d078a8a2552))
- **types:** Intellisense for string literals in a widened union
([#​6134](https://redirect.github.com/axios/axios/issues/6134))
([f73474d](https://redirect.github.com/axios/axios/commit/f73474d02c5aa957b2daeecee65508557fd3c6e5)),
closes
[/github.com/microsoft/TypeScript/issues/33471#issuecomment-1376364329](https://redirect.github.com//github.com/microsoft/TypeScript/issues/33471/issues/issuecomment-1376364329)
##### Reverts
- Revert "fix: silentJSONParsing=false should throw on invalid JSON
([#​7253](https://redirect.github.com/axios/axios/issues/7253))
([#​7](https://redirect.github.com/axios/axios/issues/7)…"
([#​7298](https://redirect.github.com/axios/axios/issues/7298))
([a4230f5](https://redirect.github.com/axios/axios/commit/a4230f5581b3f58b6ff531b6dbac377a4fd7942a)),
closes
[#​7253](https://redirect.github.com/axios/axios/issues/7253)
[#​7](https://redirect.github.com/axios/axios/issues/7)
[#​7298](https://redirect.github.com/axios/axios/issues/7298)
- **deps:** bump peter-evans/create-pull-request from 7 to 8 in the
github-actions group
([#​7334](https://redirect.github.com/axios/axios/issues/7334))
([2d6ad5e](https://redirect.github.com/axios/axios/commit/2d6ad5e48bd29b0b2b5e7e95fb473df98301543a))
##### Contributors to this release
- <img
src="https://avatars.githubusercontent.com/u/175160345?v=4&s=18"
alt="avatar" width="18"/> [Ashvin
Tiwari](https://redirect.github.com/ashvin2005 "+1752/-4 (#​7218
#​7218 )")
- <img
src="https://avatars.githubusercontent.com/u/71729144?v=4&s=18"
alt="avatar" width="18"/> [Nikunj
Mochi](https://redirect.github.com/mochinikunj "+940/-12 (#​7294
#​7294 )")
- <img
src="https://avatars.githubusercontent.com/u/128113546?v=4&s=18"
alt="avatar" width="18"/> [Anchal
Singh](https://redirect.github.com/imanchalsingh "+544/-102
(#​7169 #​7185 )")
- <img
src="https://avatars.githubusercontent.com/u/4814473?v=4&s=18"
alt="avatar" width="18"/>
[jasonsaayman](https://redirect.github.com/jasonsaayman "+317/-73
(#​7334 #​7298 )")
- <img
src="https://avatars.githubusercontent.com/u/377911?v=4&s=18"
alt="avatar" width="18"/> [Julian Dax](https://redirect.github.com/brodo
"+99/-120 (#​5558 )")
- <img
src="https://avatars.githubusercontent.com/u/184285082?v=4&s=18"
alt="avatar" width="18"/> [Akash Dhar
Dubey](https://redirect.github.com/AKASHDHARDUBEY "+167/-0 (#​7287
#​7288 )")
- <img
src="https://avatars.githubusercontent.com/u/145687605?v=4&s=18"
alt="avatar" width="18"/>
[Madhumita](https://redirect.github.com/madhumitaaa "+20/-68
(#​7198 )")
- <img
src="https://avatars.githubusercontent.com/u/24915252?v=4&s=18"
alt="avatar" width="18"/> [Tackoil](https://redirect.github.com/Tackoil
"+80/-2 (#​6269 )")
- <img
src="https://avatars.githubusercontent.com/u/145078271?v=4&s=18"
alt="avatar" width="18"/> [Justin
Dhillon](https://redirect.github.com/justindhillon "+41/-41
(#​6324 #​6315 )")
- <img
src="https://avatars.githubusercontent.com/u/184138832?v=4&s=18"
alt="avatar" width="18"/> [Rudransh](https://redirect.github.com/Rudrxxx
"+71/-2 (#​7257 )")
- <img
src="https://avatars.githubusercontent.com/u/146366930?v=4&s=18"
alt="avatar" width="18"/>
[WuMingDao](https://redirect.github.com/WuMingDao "+36/-36 (#​7215
)")
- <img
src="https://avatars.githubusercontent.com/u/46827243?v=4&s=18"
alt="avatar" width="18"/>
[codenomnom](https://redirect.github.com/codenomnom "+70/-0
(#​7201 #​7201 )")
- <img
src="https://avatars.githubusercontent.com/u/189698992?v=4&s=18"
alt="avatar" width="18"/> [Nandan
Acharya](https://redirect.github.com/Nandann018-ux "+60/-10
(#​7272 )")
- <img
src="https://avatars.githubusercontent.com/u/7225168?v=4&s=18"
alt="avatar" width="18"/> [Eric
Dubé](https://redirect.github.com/KernelDeimos "+22/-40 (#​7042
)")
- <img
src="https://avatars.githubusercontent.com/u/915045?v=4&s=18"
alt="avatar" width="18"/> [Tibor
Pilz](https://redirect.github.com/tiborpilz "+40/-4 (#​5551 )")
- <img
src="https://avatars.githubusercontent.com/u/23138717?v=4&s=18"
alt="avatar" width="18"/> [Gabriel
Quaresma](https://redirect.github.com/joaoGabriel55 "+31/-4
(#​6314 )")
- <img
src="https://avatars.githubusercontent.com/u/21505?v=4&s=18"
alt="avatar" width="18"/> [Turadg
Aleahmad](https://redirect.github.com/turadg "+23/-6 (#​6265 )")
- <img
src="https://avatars.githubusercontent.com/u/4273631?v=4&s=18"
alt="avatar" width="18"/>
[JohnTitor](https://redirect.github.com/kiritosan "+14/-14 (#​6155
)")
- <img
src="https://avatars.githubusercontent.com/u/39668736?v=4&s=18"
alt="avatar" width="18"/> [rohit
miryala](https://redirect.github.com/rohitmiryala "+22/-0 (#​7250
)")
- <img
src="https://avatars.githubusercontent.com/u/30316250?v=4&s=18"
alt="avatar" width="18"/> [Wilson
Mun](https://redirect.github.com/wmundev "+20/-0 (#​6053 )")
- <img
src="https://avatars.githubusercontent.com/u/184506226?v=4&s=18"
alt="avatar" width="18"/>
[techcodie](https://redirect.github.com/techcodie "+7/-7 (#​7236
)")
- <img
src="https://avatars.githubusercontent.com/u/187598667?v=4&s=18"
alt="avatar" width="18"/> [Ved
Vadnere](https://redirect.github.com/Archis009 "+5/-6 (#​7283 )")
- <img
src="https://avatars.githubusercontent.com/u/115612815?v=4&s=18"
alt="avatar" width="18"/>
[svihpinc](https://redirect.github.com/svihpinc "+5/-3 (#​6134 )")
- <img
src="https://avatars.githubusercontent.com/u/123884782?v=4&s=18"
alt="avatar" width="18"/> [SANDESH
LENDVE](https://redirect.github.com/mrsandy1965 "+3/-3 (#​7246 )")
- <img
src="https://avatars.githubusercontent.com/u/12529395?v=4&s=18"
alt="avatar" width="18"/> [Lubos](https://redirect.github.com/mrlubos
"+5/-1 (#​7312 )")
- <img
src="https://avatars.githubusercontent.com/u/709451?v=4&s=18"
alt="avatar" width="18"/> [Jarred
Sumner](https://redirect.github.com/Jarred-Sumner "+5/-1 (#​5754
)")
- <img
src="https://avatars.githubusercontent.com/u/17907922?v=4&s=18"
alt="avatar" width="18"/> [Adam
Hines](https://redirect.github.com/thebanjomatic "+2/-1 (#​5756
)")
- <img
src="https://avatars.githubusercontent.com/u/177472603?v=4&s=18"
alt="avatar" width="18"/> [Subhan Kumar
Rai](https://redirect.github.com/Subhan030 "+2/-1 (#​7256 )")
- <img
src="https://avatars.githubusercontent.com/u/6473925?v=4&s=18"
alt="avatar" width="18"/> [Joseph
Frazier](https://redirect.github.com/josephfrazier "+1/-1 (#​7311
)")
- <img
src="https://avatars.githubusercontent.com/u/184906930?v=4&s=18"
alt="avatar" width="18"/> [KT0803](https://redirect.github.com/KT0803
"+0/-2 (#​7229 )")
- <img
src="https://avatars.githubusercontent.com/u/6703955?v=4&s=18"
alt="avatar" width="18"/>
[Albie](https://redirect.github.com/AlbertoSadoc "+1/-1 (#​5560
)")
- <img
src="https://avatars.githubusercontent.com/u/9452325?v=4&s=18"
alt="avatar" width="18"/> [Jake
Hayes](https://redirect.github.com/thejayhaykid "+1/-0 (#​5999 )")
###
[`v1.13.2`](https://redirect.github.com/axios/axios/blob/HEAD/CHANGELOG.md#1132-2025-11-04)
[Compare
Source](https://redirect.github.com/axios/axios/compare/v1.13.1...v1.13.2)
##### Bug Fixes
- **http:** fix 'socket hang up' bug for keep-alive requests when using
timeouts;
([#​7206](https://redirect.github.com/axios/axios/issues/7206))
([8d37233](https://redirect.github.com/axios/axios/commit/8d372335f5c50ecd01e8615f2468a9eb19703117))
- **http:** use default export for http2 module to support stubs;
([#​7196](https://redirect.github.com/axios/axios/issues/7196))
([0588880](https://redirect.github.com/axios/axios/commit/0588880ac7ddba7594ef179930493884b7e90bf5))
##### Performance Improvements
- **http:** fix early loop exit;
([#​7202](https://redirect.github.com/axios/axios/issues/7202))
([12c314b](https://redirect.github.com/axios/axios/commit/12c314b603e7852a157e93e47edb626a471ba6c5))
##### Contributors to this release
- <img
src="https://avatars.githubusercontent.com/u/12586868?v=4&s=18"
alt="avatar" width="18"/> [Dmitriy
Mozgovoy](https://redirect.github.com/DigitalBrainJS "+28/-9
(#​7206 #​7202 )")
- <img
src="https://avatars.githubusercontent.com/u/1174718?v=4&s=18"
alt="avatar" width="18"/> [Kasper Isager
Dalsgarð](https://redirect.github.com/kasperisager "+9/-9 (#​7196
)")
###
[`v1.13.1`](https://redirect.github.com/axios/axios/blob/HEAD/CHANGELOG.md#1131-2025-10-28)
[Compare
Source](https://redirect.github.com/axios/axios/compare/v1.13.0...v1.13.1)
##### Bug Fixes
- **http:** fixed a regression that caused the data stream to be
interrupted for responses with non-OK HTTP statuses;
([#​7193](https://redirect.github.com/axios/axios/issues/7193))
([bcd5581](https://redirect.github.com/axios/axios/commit/bcd5581d208cd372055afdcb2fd10b68ca40613c))
##### Contributors to this release
- <img
src="https://avatars.githubusercontent.com/u/128113546?v=4&s=18"
alt="avatar" width="18"/> [Anchal
Singh](https://redirect.github.com/imanchalsingh "+220/-111
(#​7173 )")
- <img
src="https://avatars.githubusercontent.com/u/12586868?v=4&s=18"
alt="avatar" width="18"/> [Dmitriy
Mozgovoy](https://redirect.github.com/DigitalBrainJS "+18/-1
(#​7193 )")
###
[`v1.13.0`](https://redirect.github.com/axios/axios/blob/HEAD/CHANGELOG.md#1130-2025-10-27)
[Compare
Source](https://redirect.github.com/axios/axios/compare/v1.12.2...v1.13.0)
##### Bug Fixes
- **fetch:** prevent TypeError when config.env is undefined
([#​7155](https://redirect.github.com/axios/axios/issues/7155))
([015faec](https://redirect.github.com/axios/axios/commit/015faeca9f26db76f9562760f04bb9f8229f4db1))
- resolve issue
[#​7131](https://redirect.github.com/axios/axios/issues/7131)
(added spacing in mergeConfig.js)
([#​7133](https://redirect.github.com/axios/axios/issues/7133))
([9b9ec98](https://redirect.github.com/axios/axios/commit/9b9ec98548d93e9f2204deea10a5f1528bf3ce62))
##### Features
- **http:** add HTTP2 support;
([#​7150](https://redirect.github.com/axios/axios/issues/7150))
([d676df7](https://redirect.github.com/axios/axios/commit/d676df772244726533ca320f42e967f5af056bac))
##### Contributors to this release
- <img
src="https://avatars.githubusercontent.com/u/12586868?v=4&s=18"
alt="avatar" width="18"/> [Dmitriy
Mozgovoy](https://redirect.github.com/DigitalBrainJS "+794/-180
(#​7186 #​7150 #​7039 )")
- <img
src="https://avatars.githubusercontent.com/u/189505037?v=4&s=18"
alt="avatar" width="18"/> [Noritaka
Kobayashi](https://redirect.github.com/noritaka1166 "+24/-509
(#​7032 )")
- <img
src="https://avatars.githubusercontent.com/u/195581631?v=4&s=18"
alt="avatar" width="18"/>
[Aviraj2929](https://redirect.github.com/Aviraj2929 "+211/-93
(#​7136 #​7135 #​7134 #​7112 )")
- <img
src="https://avatars.githubusercontent.com/u/181717941?v=4&s=18"
alt="avatar" width="18"/> [prasoon
patel](https://redirect.github.com/Prasoon52 "+167/-6 (#​7099 )")
- <img
src="https://avatars.githubusercontent.com/u/141911040?v=4&s=18"
alt="avatar" width="18"/> [Samyak
Dandge](https://redirect.github.com/Samy-in "+134/-0 (#​7171 )")
- <img
src="https://avatars.githubusercontent.com/u/128113546?v=4&s=18"
alt="avatar" width="18"/> [Anchal
Singh](https://redirect.github.com/imanchalsingh "+53/-56 (#​7170
)")
- <img
src="https://avatars.githubusercontent.com/u/146073621?v=4&s=18"
alt="avatar" width="18"/> [Rahul
Kumar](https://redirect.github.com/jaiyankargupta "+28/-28 (#​7073
)")
- <img
src="https://avatars.githubusercontent.com/u/148716794?v=4&s=18"
alt="avatar" width="18"/> [Amit
Verma](https://redirect.github.com/Amitverma0509 "+24/-13 (#​7129
)")
- <img
src="https://avatars.githubusercontent.com/u/141427581?v=4&s=18"
alt="avatar" width="18"/>
[Abhishek3880](https://redirect.github.com/abhishekmaniy "+23/-4
(#​7119 #​7117 #​7116 #​7115 )")
- <img
src="https://avatars.githubusercontent.com/u/91522146?v=4&s=18"
alt="avatar" width="18"/> [Dhvani
Maktuporia](https://redirect.github.com/Dhvani365 "+14/-5 (#​7175
)")
- <img
src="https://avatars.githubusercontent.com/u/41838423?v=4&s=18"
alt="avatar" width="18"/> [Usama
Ayoub](https://redirect.github.com/sam3690 "+4/-4 (#​7133 )")
- <img
src="https://avatars.githubusercontent.com/u/79366821?v=4&s=18"
alt="avatar" width="18"/>
[ikuy1203](https://redirect.github.com/ikuy1203 "+3/-3 (#​7166 )")
- <img
src="https://avatars.githubusercontent.com/u/74639234?v=4&s=18"
alt="avatar" width="18"/> [Nikhil Simon
Toppo](https://redirect.github.com/Kirito-Excalibur "+1/-1 (#​7172
)")
- <img
src="https://avatars.githubusercontent.com/u/200562195?v=4&s=18"
alt="avatar" width="18"/> [Jane
Wangari](https://redirect.github.com/Wangarijane "+1/-1 (#​7155
)")
- <img
src="https://avatars.githubusercontent.com/u/78318848?v=4&s=18"
alt="avatar" width="18"/> [Supakorn
Ieamgomol](https://redirect.github.com/Supakornn "+1/-1 (#​7065
)")
- <img
src="https://avatars.githubusercontent.com/u/134518?v=4&s=18"
alt="avatar" width="18"/> [Kian-Meng
Ang](https://redirect.github.com/kianmeng "+1/-1 (#​7046 )")
- <img
src="https://avatars.githubusercontent.com/u/13148112?v=4&s=18"
alt="avatar" width="18"/> [UTSUMI
Keiji](https://redirect.github.com/k-utsumi "+1/-1 (#​7037 )")
####
[1.12.2](https://redirect.github.com/axios/axios/compare/v1.12.1...v1.12.2)
(2025-09-14)
##### Bug Fixes
- **fetch:** use current global fetch instead of cached one when env
fetch is not specified to keep MSW support;
([#​7030](https://redirect.github.com/axios/axios/issues/7030))
([cf78825](https://redirect.github.com/axios/axios/commit/cf78825e1229b60d1629ad0bbc8a752ff43c3f53))
##### Contributors to this release
- <img
src="https://avatars.githubusercontent.com/u/12586868?v=4&s=18"
alt="avatar" width="18"/> [Dmitriy
Mozgovoy](https://redirect.github.com/DigitalBrainJS "+247/-16
(#​7030 #​7022 #​7024 )")
- <img
src="https://avatars.githubusercontent.com/u/189505037?v=4&s=18"
alt="avatar" width="18"/> [Noritaka
Kobayashi](https://redirect.github.com/noritaka1166 "+2/-6 (#​7028
#​7029 )")
####
[1.12.1](https://redirect.github.com/axios/axios/compare/v1.12.0...v1.12.1)
(2025-09-12)
##### Bug Fixes
- **types:** fixed env config types;
([#​7020](https://redirect.github.com/axios/axios/issues/7020))
([b5f26b7](https://redirect.github.com/axios/axios/commit/b5f26b75bdd9afa95016fb67d0cab15fc74cbf05))
##### Contributors to this release
- <img
src="https://avatars.githubusercontent.com/u/12586868?v=4&s=18"
alt="avatar" width="18"/> [Dmitriy
Mozgovoy](https://redirect.github.com/DigitalBrainJS "+10/-4
(#​7020 )")
</details>
---
### Configuration
📅 **Schedule**: Branch creation - "" (UTC), Automerge - At any time (no
schedule defined).
🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.
♻ **Rebasing**: Whenever PR is behind base branch, or you tick the
rebase/retry checkbox.
🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.
---
- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box
---
This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/splunk/addonfactory-ucc-generator).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi45Ny4wIiwidXBkYXRlZEluVmVyIjoiNDMuMjIuMCIsInRhcmdldEJyYW5jaCI6ImRldmVsb3AiLCJsYWJlbHMiOltdfQ==-->
---------
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: kkedziak-splunk <kkedziak@splunk.com>1 parent b2d5c44 commit 2518b47
2 files changed
+55
-68
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
51 | 51 | | |
52 | 52 | | |
53 | 53 | | |
54 | | - | |
| 54 | + | |
55 | 55 | | |
56 | 56 | | |
57 | 57 | | |
| |||
92 | 92 | | |
93 | 93 | | |
94 | 94 | | |
95 | | - | |
96 | 95 | | |
97 | 96 | | |
98 | 97 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3944 | 3944 | | |
3945 | 3945 | | |
3946 | 3946 | | |
3947 | | - | |
3948 | | - | |
3949 | | - | |
3950 | | - | |
3951 | | - | |
3952 | | - | |
3953 | | - | |
3954 | 3947 | | |
3955 | 3948 | | |
3956 | 3949 | | |
| |||
5012 | 5005 | | |
5013 | 5006 | | |
5014 | 5007 | | |
5015 | | - | |
| 5008 | + | |
5016 | 5009 | | |
5017 | 5010 | | |
5018 | 5011 | | |
| |||
5028 | 5021 | | |
5029 | 5022 | | |
5030 | 5023 | | |
5031 | | - | |
5032 | | - | |
5033 | | - | |
| 5024 | + | |
| 5025 | + | |
| 5026 | + | |
5034 | 5027 | | |
5035 | | - | |
5036 | | - | |
| 5028 | + | |
| 5029 | + | |
5037 | 5030 | | |
5038 | 5031 | | |
5039 | 5032 | | |
| |||
5228 | 5221 | | |
5229 | 5222 | | |
5230 | 5223 | | |
| 5224 | + | |
| 5225 | + | |
| 5226 | + | |
| 5227 | + | |
| 5228 | + | |
5231 | 5229 | | |
5232 | 5230 | | |
5233 | 5231 | | |
| |||
5290 | 5288 | | |
5291 | 5289 | | |
5292 | 5290 | | |
| 5291 | + | |
| 5292 | + | |
| 5293 | + | |
| 5294 | + | |
| 5295 | + | |
| 5296 | + | |
| 5297 | + | |
5293 | 5298 | | |
5294 | 5299 | | |
5295 | 5300 | | |
| |||
5722 | 5727 | | |
5723 | 5728 | | |
5724 | 5729 | | |
5725 | | - | |
| 5730 | + | |
5726 | 5731 | | |
5727 | 5732 | | |
5728 | 5733 | | |
| |||
6384 | 6389 | | |
6385 | 6390 | | |
6386 | 6391 | | |
6387 | | - | |
| 6392 | + | |
6388 | 6393 | | |
6389 | 6394 | | |
6390 | 6395 | | |
| |||
6724 | 6729 | | |
6725 | 6730 | | |
6726 | 6731 | | |
6727 | | - | |
| 6732 | + | |
6728 | 6733 | | |
6729 | 6734 | | |
6730 | 6735 | | |
| |||
7392 | 7397 | | |
7393 | 7398 | | |
7394 | 7399 | | |
7395 | | - | |
| 7400 | + | |
7396 | 7401 | | |
7397 | | - | |
| 7402 | + | |
7398 | 7403 | | |
7399 | 7404 | | |
7400 | 7405 | | |
| |||
7412 | 7417 | | |
7413 | 7418 | | |
7414 | 7419 | | |
7415 | | - | |
| 7420 | + | |
7416 | 7421 | | |
7417 | 7422 | | |
7418 | 7423 | | |
7419 | 7424 | | |
7420 | 7425 | | |
7421 | 7426 | | |
7422 | 7427 | | |
7423 | | - | |
7424 | | - | |
7425 | | - | |
7426 | | - | |
| 7428 | + | |
| 7429 | + | |
| 7430 | + | |
| 7431 | + | |
7427 | 7432 | | |
7428 | 7433 | | |
7429 | 7434 | | |
| |||
7509 | 7514 | | |
7510 | 7515 | | |
7511 | 7516 | | |
7512 | | - | |
| 7517 | + | |
7513 | 7518 | | |
7514 | 7519 | | |
7515 | 7520 | | |
| |||
7574 | 7579 | | |
7575 | 7580 | | |
7576 | 7581 | | |
7577 | | - | |
7578 | | - | |
7579 | | - | |
7580 | | - | |
7581 | | - | |
7582 | | - | |
7583 | | - | |
7584 | | - | |
7585 | | - | |
7586 | | - | |
7587 | | - | |
7588 | | - | |
7589 | 7582 | | |
7590 | 7583 | | |
7591 | 7584 | | |
| |||
7610 | 7603 | | |
7611 | 7604 | | |
7612 | 7605 | | |
7613 | | - | |
7614 | | - | |
7615 | | - | |
7616 | | - | |
| 7606 | + | |
| 7607 | + | |
| 7608 | + | |
| 7609 | + | |
7617 | 7610 | | |
7618 | | - | |
7619 | | - | |
7620 | | - | |
7621 | | - | |
7622 | | - | |
7623 | | - | |
| 7611 | + | |
| 7612 | + | |
| 7613 | + | |
7624 | 7614 | | |
7625 | 7615 | | |
7626 | 7616 | | |
| |||
8571 | 8561 | | |
8572 | 8562 | | |
8573 | 8563 | | |
8574 | | - | |
8575 | | - | |
8576 | | - | |
8577 | | - | |
8578 | | - | |
8579 | | - | |
8580 | | - | |
8581 | 8564 | | |
8582 | 8565 | | |
8583 | 8566 | | |
| |||
10297 | 10280 | | |
10298 | 10281 | | |
10299 | 10282 | | |
10300 | | - | |
| 10283 | + | |
10301 | 10284 | | |
10302 | 10285 | | |
10303 | 10286 | | |
10304 | 10287 | | |
10305 | | - | |
| 10288 | + | |
10306 | 10289 | | |
10307 | 10290 | | |
10308 | 10291 | | |
| |||
10327 | 10310 | | |
10328 | 10311 | | |
10329 | 10312 | | |
10330 | | - | |
| 10313 | + | |
10331 | 10314 | | |
10332 | 10315 | | |
10333 | 10316 | | |
| |||
10341 | 10324 | | |
10342 | 10325 | | |
10343 | 10326 | | |
10344 | | - | |
10345 | | - | |
10346 | | - | |
10347 | | - | |
| 10327 | + | |
| 10328 | + | |
| 10329 | + | |
| 10330 | + | |
10348 | 10331 | | |
10349 | | - | |
| 10332 | + | |
10350 | 10333 | | |
10351 | 10334 | | |
10352 | 10335 | | |
| |||
10393 | 10376 | | |
10394 | 10377 | | |
10395 | 10378 | | |
| 10379 | + | |
| 10380 | + | |
| 10381 | + | |
| 10382 | + | |
| 10383 | + | |
10396 | 10384 | | |
10397 | 10385 | | |
10398 | 10386 | | |
| |||
10995 | 10983 | | |
10996 | 10984 | | |
10997 | 10985 | | |
10998 | | - | |
10999 | | - | |
11000 | | - | |
11001 | | - | |
| 10986 | + | |
| 10987 | + | |
| 10988 | + | |
| 10989 | + | |
11002 | 10990 | | |
11003 | 10991 | | |
11004 | 10992 | | |
| |||
11330 | 11318 | | |
11331 | 11319 | | |
11332 | 11320 | | |
11333 | | - | |
| 11321 | + | |
11334 | 11322 | | |
11335 | 11323 | | |
11336 | 11324 | | |
| |||
0 commit comments