Skip to content

Commit

Permalink
Relaese 5.0.1 (#433)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterRao authored and fengmk2 committed Apr 13, 2018
1 parent 8494fbd commit fdbd822
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 8 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,25 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="5.0.1"></a>
## [5.0.1](https://github.com/aliyun/oss-nodejs-sdk/compare/v5.0.0...v5.0.1) (2018-04-10)


### Bug Fixes

* **browser:** use dist file for build tools ([#430](https://github.com/aliyun/oss-nodejs-sdk/issues/430)) ([8494fbd](https://github.com/aliyun/oss-nodejs-sdk/commit/8494fbd))

* sign method fix && ci support node 9 ([f82bf8f3c](https://github.com/ali-sdk/ali-oss/commit/f82bf8f3c))

### Docs
* add node and browser compatibility desc ([f5de168e](https://github.com/ali-sdk/ali-oss/commit/f5de168e))


<a name="5.0.0"></a>
# [5.0.0](https://github.com/aliyun/oss-nodejs-sdk/compare/v4.14.1...v5.0.0) (2018-04-03)

### Bug Fixes
Node >= 8 is required.


<a name="4.14.1"></a>
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
"package.json"
],
"main": "dist/aliyun-oss-sdk.js",
"version": "5.0.0"
"version": "5.0.1"
}
8 changes: 5 additions & 3 deletions dist/aliyun-oss-sdk.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Aliyun OSS SDK for JavaScript v5.0.0
// Aliyun OSS SDK for JavaScript v5.0.1
// Copyright Aliyun.com, Inc. or its affiliates. All Rights Reserved.
// License at https://github.com/ali-sdk/ali-oss/blob/master/LICENSE
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.OSS = f()}})(function(){var define,module,exports;return (function(){function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s}return e})()({1:[function(require,module,exports){
Expand Down Expand Up @@ -2006,7 +2006,7 @@ proto._deleteFileSafe = function (filepath) {
},{"../common/callback":7,"../common/signUtils":9,"babel-runtime/core-js/object/keys":22,"babel-runtime/regenerator":32,"copy-to":42,"debug":153,"fs":35,"is-type-of":163,"mime":241,"path":168,"url":201,"utility":242}],5:[function(require,module,exports){
"use strict";

exports.version = "5.0.0";
exports.version = "5.0.1";

},{}],6:[function(require,module,exports){
'use strict';
Expand Down Expand Up @@ -2514,8 +2514,10 @@ exports.buildCanonicalizedResource = function buildCanonicalizedResource(resourc
canonicalizedResource += separatorString + parameters.join('&');
} else if (parameters) {
var compareFunc = function compareFunc(entry1, entry2) {
if (entry1[0] >= entry2[0]) {
if (entry1[0] > entry2[0]) {
return 1;
} else if (entry1[0] < entry2[0]) {
return -1;
}
return 0;
};
Expand Down
4 changes: 2 additions & 2 deletions dist/aliyun-oss-sdk.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/browser/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
exports.version="5.0.0"
exports.version="5.0.1"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ali-oss",
"version": "5.0.0",
"version": "5.0.1",
"description": "aliyun oss(object storage service) node client",
"main": "lib/client.js",
"files": [
Expand Down

0 comments on commit fdbd822

Please sign in to comment.