Skip to content

Commit 1b29f4e

Browse files
committed
chore: release v1.1.2
1 parent 1315e22 commit 1b29f4e

16 files changed

+34
-26
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -207,4 +207,14 @@
207207

208208
### Contributors to this release
209209

210+
- [Jason Saayman](https://github.com/jasonsaayman)
211+
212+
## [1.1.2] - 2022-10-07
213+
214+
### Fixed
215+
216+
- Fixed broken exports for UMD builds.
217+
218+
### Contributors to this release
219+
210220
- [Jason Saayman](https://github.com/jasonsaayman)

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "axios",
33
"main": "./dist/axios.js",
4-
"version": "1.1.1",
4+
"version": "1.1.2",
55
"homepage": "https://axios-http.com",
66
"authors": [
77
"Matt Zabriskie"

dist/axios.js

+7-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/node/axios.cjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Axios v1.1.1 Copyright (c) 2022 Matt Zabriskie and contributors
1+
// Axios v1.1.2 Copyright (c) 2022 Matt Zabriskie and contributors
22
'use strict';
33

44
const FormData$1 = require('form-data');
@@ -1313,7 +1313,7 @@ function buildFullPath(baseURL, requestedURL) {
13131313
return requestedURL;
13141314
}
13151315

1316-
const VERSION = "1.1.1";
1316+
const VERSION = "1.1.2";
13171317

13181318
/**
13191319
* A `CanceledError` is an object that is thrown when an operation is canceled.

dist/node/axios.cjs.map

+1-1
Large diffs are not rendered by default.

lib/env/data.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = "1.1.1";
1+
export const VERSION = "1.1.2";

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "axios",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Promise based HTTP client for the browser and node.js",
55
"main": "index.js",
66
"exports": {

rollup.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default async () => {
5656
file: `dist/${outputFileName}`,
5757
name,
5858
format: "umd",
59-
exports: "named",
59+
exports: "default",
6060
banner
6161
}
6262
}),

0 commit comments

Comments
 (0)