This commit is contained in:
Vitalii Goma 2017-01-30 15:20:20 +03:00
parent cdfc766557
commit 0b27f4a0b6
9 changed files with 17 additions and 12 deletions

View File

@ -1,3 +1,8 @@
1.0.6 / 2017-01-30
==================
* Фикс: Проброс ошибки метода получения сертификатов по цепочке промисов
1.0.5 / 2017-01-24
==================

View File

@ -442,7 +442,7 @@ webpackJsonpCryptoPro([1],[
resolve(signature);
});
});
}, reject);
});
}
@ -487,7 +487,7 @@ webpackJsonpCryptoPro([1],[
resolve(signature);
});
});
}, reject);
});
}

File diff suppressed because one or more lines are too long

View File

@ -1491,7 +1491,7 @@ webpackJsonpCryptoPro([2],[
}
resolve(signature);
});
}, reject);
});
}
@ -1534,7 +1534,7 @@ webpackJsonpCryptoPro([2],[
}
resolve(signature);
});
}, reject);
});
}

File diff suppressed because one or more lines are too long

2
npm-shrinkwrap.json generated
View File

@ -1,6 +1,6 @@
{
"name": "crypto-pro",
"version": "1.0.5",
"version": "1.0.6",
"dependencies": {
"acorn": {
"version": "3.3.0",

View File

@ -1,6 +1,6 @@
{
"name": "crypto-pro",
"version": "1.0.5",
"version": "1.0.6",
"description": "API для взаимодействия с КриптоПро",
"main": "src/index.js",
"scripts": {

View File

@ -436,7 +436,7 @@ function signData(hash, dataBase64, signType) {
resolve(signature);
});
});
}, reject);
});
}
@ -481,7 +481,7 @@ function signDataXML(hash, dataXML) {
resolve(signature);
});
});
}, reject);
});
}

View File

@ -415,7 +415,7 @@ function signData(hash, dataBase64, signType) {
}
resolve(signature);
});
}, reject);
});
}
@ -458,7 +458,7 @@ function signDataXML(hash, dataXML) {
}
resolve(signature);
});
}, reject);
});
}