Skip to content

Commit

Permalink
Releasing v0.27.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonsaayman committed Apr 27, 2022
1 parent b9e9fb4 commit bc733fe
Show file tree
Hide file tree
Showing 10 changed files with 45 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog

### 0.27.2 (April 27, 2022)

Fixes and Functionality:
- Fixed FormData posting in browser environment by reverting #3785 ([#4640](https://github.com/axios/axios/pull/4640))
- Enhanced protocol parsing implementation ([#4639](https://github.com/axios/axios/pull/4639))
- Fixed bundle size

### 0.27.1 (April 26, 2022)

Fixes and Functionality:
Expand Down
2 changes: 1 addition & 1 deletion Gruntfile.js
Expand Up @@ -104,6 +104,6 @@ module.exports = function(grunt) {
});

grunt.registerTask('test', 'Run the jasmine and mocha tests', ['eslint', 'mochaTest', 'karma:single']);
grunt.registerTask('build', 'Run webpack and bundle the source', ['clean', 'webpack']);
grunt.registerTask('build', 'Run webpack and bundle the source', ['clean', 'webpack', 'usebanner']);
grunt.registerTask('version', 'Sync version info for a release', ['usebanner', 'package2bower', 'package2env']);
};
2 changes: 1 addition & 1 deletion bower.json
@@ -1,7 +1,7 @@
{
"name": "axios",
"main": "./dist/axios.js",
"version": "0.27.1",
"version": "0.27.2",
"homepage": "https://axios-http.com",
"authors": [
"Matt Zabriskie"
Expand Down
29 changes: 26 additions & 3 deletions dist/axios.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/axios.map

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion dist/axios.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/axios.min.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/env/data.js
@@ -1,3 +1,3 @@
module.exports = {
"version": "0.27.1"
"version": "0.27.2"
};
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
@@ -1,13 +1,14 @@
{
"name": "axios",
"version": "0.27.1",
"version": "0.27.2",
"description": "Promise based HTTP client for the browser and node.js",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "grunt test && dtslint",
"start": "node ./sandbox/server.js",
"build": "grunt version && npm test && NODE_ENV=production grunt build",
"preversion": "grunt version && npm test",
"build": "NODE_ENV=production grunt build",
"examples": "node ./examples/server.js",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"fix": "eslint --fix lib/**/*.js"
Expand Down

0 comments on commit bc733fe

Please sign in to comment.