diff --git a/CHANGELOG.md b/CHANGELOG.md
index 54e5d8e..d06400b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## [1.12.2](https://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://github.com/axios/axios/issues/7030)) ([cf78825](https://github.com/axios/axios/commit/cf78825e1229b60d1629ad0bbc8a752ff43c3f53))
+
+### Contributors to this release
+
+-
[Dmitriy Mozgovoy](https://github.com/DigitalBrainJS "+247/-16 (#7030 #7022 #7024 )")
+-
[Noritaka Kobayashi](https://github.com/noritaka1166 "+2/-6 (#7028 #7029 )")
+
## [1.12.1](https://github.com/axios/axios/compare/v1.12.0...v1.12.1) (2025-09-12)
diff --git a/bower.json b/bower.json
index 81e3a60..f280b33 100644
--- a/bower.json
+++ b/bower.json
@@ -1,7 +1,7 @@
{
"name": "axios",
"main": "./dist/axios.js",
- "version": "1.12.1",
+ "version": "1.12.2",
"homepage": "https://axios-http.com",
"authors": [
"Matt Zabriskie"
diff --git a/lib/env/data.js b/lib/env/data.js
index 2202a3e..89b13ce 100644
--- a/lib/env/data.js
+++ b/lib/env/data.js
@@ -1 +1 @@
-export const VERSION = "1.12.1";
\ No newline at end of file
+export const VERSION = "1.12.2";
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
index 5d1a17c..c895ad3 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "axios",
- "version": "1.12.1",
+ "version": "1.12.2",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "axios",
- "version": "1.12.1",
+ "version": "1.12.2",
"license": "MIT",
"dependencies": {
"follow-redirects": "^1.15.6",
diff --git a/package.json b/package.json
index 06ad8ff..abc314e 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "axios",
- "version": "1.12.1",
+ "version": "1.12.2",
"description": "Promise based HTTP client for the browser and node.js",
"main": "index.js",
"exports": {
@@ -174,8 +174,8 @@
],
"contributors": [
"Matt Zabriskie (https://github.com/mzabriskie)",
- "Nick Uraltsev (https://github.com/nickuraltsev)",
"Dmitriy Mozgovoy (https://github.com/DigitalBrainJS)",
+ "Nick Uraltsev (https://github.com/nickuraltsev)",
"Jay (https://github.com/jasonsaayman)",
"Emily Morehouse (https://github.com/emilyemorehouse)",
"Rubén Norte (https://github.com/rubennorte)",
@@ -231,4 +231,4 @@
"@commitlint/config-conventional"
]
}
-}
+}
\ No newline at end of file