Browse Source

v3.0.6: update manager, support find() override

v3 v3.0.6
AJ ONeal 5 years ago
parent
commit
5e1c02e4ad
  1. 3
      greenlock.js
  2. 8
      package-lock.json
  3. 4
      package.json

3
greenlock.js

@ -511,6 +511,9 @@ G._defaults = function(opts) {
if ('function' === typeof opts.notify) {
defaults.notify = opts.notify;
}
if ('function' === typeof opts.find) {
defaults.find = opts.find;
}
if (!defaults._maintainerPackage) {
defaults._maintainerPackage = pkg.name;

8
package-lock.json

@ -1,6 +1,6 @@
{
"name": "@root/greenlock",
"version": "3.0.4",
"version": "3.0.6",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -90,9 +90,9 @@
"dev": true
},
"greenlock-manager-fs": {
"version": "0.6.2",
"resolved": "https://registry.npmjs.org/greenlock-manager-fs/-/greenlock-manager-fs-0.6.2.tgz",
"integrity": "sha512-hfQvrOsbSBffAe4dcZL2Aju4XQi3ePlGvwHcxOnIpqdxR8o/5ePNYAyvqwPFPt5iryHvRr7aMrPaA2CO2u3X6g==",
"version": "0.6.4",
"resolved": "https://registry.npmjs.org/greenlock-manager-fs/-/greenlock-manager-fs-0.6.4.tgz",
"integrity": "sha512-IUnnp+rkmKmq0qb3BuuufSg1jmd05hBxlTotgN769EtQCjXJO3Qj8Z7OEo7v0yrSv1oWrUPxXsA9kN1Q2TxkNw==",
"requires": {
"@root/mkdirp": "^1.0.0",
"safe-replace": "^1.1.0"

4
package.json

@ -1,6 +1,6 @@
{
"name": "@root/greenlock",
"version": "3.0.5",
"version": "3.0.6",
"description": "The easiest Let's Encrypt client for Node.js and Browsers",
"homepage": "https://rootprojects.org/greenlock/",
"main": "greenlock.js",
@ -42,7 +42,7 @@
"@root/request": "^1.3.10",
"acme-http-01-standalone": "^3.0.5",
"cert-info": "^1.5.1",
"greenlock-manager-fs": "^0.6.2",
"greenlock-manager-fs": "^0.6.4",
"greenlock-store-fs": "^3.2.0",
"safe-replace": "^1.1.0"
},

Loading…
Cancel
Save