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

Lines changed: 10 additions & 0 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 7 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/axios.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/esm/axios.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/node/axios.cjs

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/env/data.js

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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)