mongodb 3.0.3 → 3.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/HISTORY.md CHANGED
@@ -1,3 +1,23 @@
1
+ <a name="3.0.4"></a>
2
+ ## [3.0.4](https://github.com/mongodb/node-mongodb-native/compare/v3.0.2...v3.0.4) (2018-03-05)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * **collection:** fix error when calling remove with no args ([#1657](https://github.com/mongodb/node-mongodb-native/issues/1657)) ([4c9b0f8](https://github.com/mongodb/node-mongodb-native/commit/4c9b0f8))
8
+ * **executeOperation:** don't mutate options passed to commands ([934a43a](https://github.com/mongodb/node-mongodb-native/commit/934a43a))
9
+ * **jsdoc:** mark db.collection callback as optional + typo fix ([#1658](https://github.com/mongodb/node-mongodb-native/issues/1658)) ([c519b9b](https://github.com/mongodb/node-mongodb-native/commit/c519b9b))
10
+ * **sessions:** move active session tracking to topology base ([#1665](https://github.com/mongodb/node-mongodb-native/issues/1665)) ([b1f296f](https://github.com/mongodb/node-mongodb-native/commit/b1f296f))
11
+ * **utils:** fixes executeOperation to clean up sessions ([04e6ef6](https://github.com/mongodb/node-mongodb-native/commit/04e6ef6))
12
+
13
+
14
+ ### Features
15
+
16
+ * **default-db:** use dbName from uri if none provided ([23b1938](https://github.com/mongodb/node-mongodb-native/commit/23b1938))
17
+ * **mongodb-core:** update to mongodb-core 3.0.4 ([1fdbaa5](https://github.com/mongodb/node-mongodb-native/commit/1fdbaa5))
18
+
19
+
20
+
1
21
  <a name="3.0.3"></a>
2
22
  ## [3.0.3](https://github.com/mongodb/node-mongodb-native/compare/v3.0.2...v3.0.3) (2018-02-23)
3
23
 
package/lib/collection.js CHANGED
@@ -937,7 +937,7 @@ define.classMethod('replaceOne', { callback: true, promise: true });
937
937
  /**
938
938
  * Update multiple documents on MongoDB
939
939
  * @method
940
- * @param {object} filter The Filter used to select the document to update
940
+ * @param {object} filter The Filter used to select the documents to update
941
941
  * @param {object} update The update operations to be applied to the document
942
942
  * @param {object} [options=null] Optional settings.
943
943
  * @param {boolean} [options.upsert=false] Update operation is an upsert.
@@ -348,7 +348,7 @@ define.classMethod('close', { callback: true, promise: true });
348
348
  * You can control these behaviors with the options noListener and returnNonCachedInstance.
349
349
  *
350
350
  * @method
351
- * @param {string} name The name of the database we want to use.
351
+ * @param {string} dbName The name of the database we want to use.
352
352
  * @param {object} [options=null] Optional settings.
353
353
  * @param {boolean} [options.noListener=false] Do not make the db an event listener to the original connection.
354
354
  * @param {boolean} [options.returnNonCachedInstance=false] Control if you want to return a cached instance or have a new one created
@@ -357,6 +357,11 @@ define.classMethod('close', { callback: true, promise: true });
357
357
  MongoClient.prototype.db = function(dbName, options) {
358
358
  options = options || {};
359
359
 
360
+ // Default to db from connection string if not provided
361
+ if (!dbName) {
362
+ dbName = this.s.options.dbName;
363
+ }
364
+
360
365
  // Copy the options and add out internal override of the not shared flag
361
366
  var finalOptions = Object.assign({}, this.s.options, options);
362
367
 
package/lib/utils.js CHANGED
@@ -390,23 +390,37 @@ const executeOperation = (topology, operation, args, options) => {
390
390
  }
391
391
  }
392
392
 
393
- // Execute using callback
394
- if (typeof callback === 'function') {
395
- callback = args.pop();
396
- args.push((err, result) => {
393
+ const makeExecuteCallback = (resolve, reject) =>
394
+ function executeCallback(err, result) {
397
395
  if (session && !options.returnsCursor) {
398
396
  session.endSession(() => {
399
397
  delete opOptions.session;
400
- if (err) return callback(err, null);
401
- return resultMutator ? callback(null, resultMutator(result)) : callback(null, result);
398
+ if (err) return reject(err);
399
+ if (resultMutator) return resolve(resultMutator(result));
400
+ resolve(result);
402
401
  });
403
402
  } else {
404
- if (err) return callback(err, null);
405
- return resultMutator ? callback(null, resultMutator(result)) : callback(null, result);
403
+ if (err) return reject(err);
404
+ if (resultMutator) return resolve(resultMutator(result));
405
+ resolve(result);
406
406
  }
407
- });
407
+ };
408
408
 
409
- return operation.apply(null, args);
409
+ // Execute using callback
410
+ if (typeof callback === 'function') {
411
+ callback = args.pop();
412
+ const handler = makeExecuteCallback(
413
+ result => callback(null, result),
414
+ err => callback(err, null)
415
+ );
416
+ args.push(handler);
417
+
418
+ try {
419
+ return operation.apply(null, args);
420
+ } catch (e) {
421
+ handler(e);
422
+ throw e;
423
+ }
410
424
  }
411
425
 
412
426
  // Return a Promise
@@ -415,22 +429,14 @@ const executeOperation = (topology, operation, args, options) => {
415
429
  }
416
430
 
417
431
  return new Promise(function(resolve, reject) {
418
- args[args.length - 1] = (err, r) => {
419
- if (session && !options.returnsCursor) {
420
- session.endSession(() => {
421
- delete opOptions.session;
422
- if (err) return reject(err);
423
- if (resultMutator) return resolve(resultMutator(r));
424
- resolve(r);
425
- });
426
- } else {
427
- if (err) return reject(err);
428
- if (resultMutator) return resolve(resultMutator(r));
429
- resolve(r);
430
- }
431
- };
432
+ const handler = makeExecuteCallback(resolve, reject);
433
+ args[args.length - 1] = handler;
432
434
 
433
- operation.apply(null, args);
435
+ try {
436
+ return operation.apply(null, args);
437
+ } catch (e) {
438
+ handler(e);
439
+ }
434
440
  });
435
441
  };
436
442
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mongodb",
3
- "version": "3.0.3",
3
+ "version": "3.0.4",
4
4
  "description": "The official MongoDB driver for Node.js",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -13,7 +13,7 @@
13
13
  "official"
14
14
  ],
15
15
  "dependencies": {
16
- "mongodb-core": "3.0.3"
16
+ "mongodb-core": "3.0.4"
17
17
  },
18
18
  "devDependencies": {
19
19
  "betterbenchmarks": "^0.1.0",
package/yarn.lock CHANGED
@@ -33,9 +33,9 @@ acorn@^3.0.4:
33
33
  version "3.3.0"
34
34
  resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a"
35
35
 
36
- acorn@^5.4.0:
37
- version "5.4.1"
38
- resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.4.1.tgz#fdc58d9d17f4a4e98d102ded826a9b9759125102"
36
+ acorn@^5.5.0:
37
+ version "5.5.0"
38
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.5.0.tgz#1abb587fbf051f94e3de20e6b26ef910b1828298"
39
39
 
40
40
  add-stream@^1.0.0:
41
41
  version "1.0.0"
@@ -117,9 +117,9 @@ ansi-styles@^2.2.1:
117
117
  version "2.2.1"
118
118
  resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
119
119
 
120
- ansi-styles@^3.2.0:
121
- version "3.2.0"
122
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.0.tgz#c159b8d5be0f9e5a6f346dab94f16ce022161b88"
120
+ ansi-styles@^3.2.1:
121
+ version "3.2.1"
122
+ resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
123
123
  dependencies:
124
124
  color-convert "^1.9.0"
125
125
 
@@ -166,7 +166,7 @@ array-uniq@^1.0.1:
166
166
  version "1.0.3"
167
167
  resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
168
168
 
169
- arrify@^1.0.0:
169
+ arrify@^1.0.0, arrify@^1.0.1:
170
170
  version "1.0.1"
171
171
  resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
172
172
 
@@ -422,8 +422,8 @@ browser-stdout@1.3.0:
422
422
  resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.0.tgz#f351d32969d32fa5d7a5567154263d928ae3bd1f"
423
423
 
424
424
  bson@^1.0.1, bson@^1.0.4, bson@~1.0.4:
425
- version "1.0.4"
426
- resolved "https://registry.yarnpkg.com/bson/-/bson-1.0.4.tgz#93c10d39eaa5b58415cbc4052f3e53e562b0b72c"
425
+ version "1.0.5"
426
+ resolved "https://registry.yarnpkg.com/bson/-/bson-1.0.5.tgz#34563b73ff1fde9387c1b9fb5afd845ecc4ba623"
427
427
 
428
428
  buffer-crc32@~0.2.3:
429
429
  version "0.2.13"
@@ -462,6 +462,14 @@ camelcase-keys@^2.0.0:
462
462
  camelcase "^2.0.0"
463
463
  map-obj "^1.0.0"
464
464
 
465
+ camelcase-keys@^4.0.0:
466
+ version "4.2.0"
467
+ resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-4.2.0.tgz#a2aa5fb1af688758259c32c141426d78923b9b77"
468
+ dependencies:
469
+ camelcase "^4.1.0"
470
+ map-obj "^2.0.0"
471
+ quick-lru "^1.0.0"
472
+
465
473
  camelcase@^1.0.2:
466
474
  version "1.2.1"
467
475
  resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-1.2.1.tgz#9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"
@@ -526,12 +534,12 @@ chalk@^1.1.1, chalk@^1.1.3:
526
534
  supports-color "^2.0.0"
527
535
 
528
536
  chalk@^2.0.0, chalk@^2.1.0:
529
- version "2.3.1"
530
- resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.1.tgz#523fe2678aec7b04e8041909292fe8b17059b796"
537
+ version "2.3.2"
538
+ resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.3.2.tgz#250dc96b07491bfd601e648d66ddf5f60c7a5c65"
531
539
  dependencies:
532
- ansi-styles "^3.2.0"
540
+ ansi-styles "^3.2.1"
533
541
  escape-string-regexp "^1.0.5"
534
- supports-color "^5.2.0"
542
+ supports-color "^5.3.0"
535
543
 
536
544
  chardet@^0.4.0:
537
545
  version "0.4.2"
@@ -658,8 +666,8 @@ concat-map@0.0.1:
658
666
  resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
659
667
 
660
668
  concat-stream@^1.6.0:
661
- version "1.6.0"
662
- resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.0.tgz#0aac662fd52be78964d5532f694784e70110acf7"
669
+ version "1.6.1"
670
+ resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.1.tgz#261b8f518301f1d834e36342b9fea095d2620a26"
663
671
  dependencies:
664
672
  inherits "^2.0.3"
665
673
  readable-stream "^2.2.2"
@@ -680,70 +688,70 @@ content-disposition@^0.5.2:
680
688
  version "0.5.2"
681
689
  resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
682
690
 
683
- conventional-changelog-angular@^1.6.5:
684
- version "1.6.5"
685
- resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.6.5.tgz#936249e897501affdffc6043da45cab59d6f0907"
691
+ conventional-changelog-angular@^1.6.6:
692
+ version "1.6.6"
693
+ resolved "https://registry.yarnpkg.com/conventional-changelog-angular/-/conventional-changelog-angular-1.6.6.tgz#b27f2b315c16d0a1f23eb181309d0e6a4698ea0f"
686
694
  dependencies:
687
695
  compare-func "^1.3.1"
688
- q "^1.4.1"
696
+ q "^1.5.1"
689
697
 
690
- conventional-changelog-atom@^0.2.3:
691
- version "0.2.3"
692
- resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-0.2.3.tgz#117d024e5cf9e28dcbd0575981105395be1bca74"
698
+ conventional-changelog-atom@^0.2.4:
699
+ version "0.2.4"
700
+ resolved "https://registry.yarnpkg.com/conventional-changelog-atom/-/conventional-changelog-atom-0.2.4.tgz#4917759947f4db86073f9d3838a2d54302d5843d"
693
701
  dependencies:
694
- q "^1.4.1"
702
+ q "^1.5.1"
695
703
 
696
704
  conventional-changelog-cli@^1.3.5:
697
- version "1.3.14"
698
- resolved "https://registry.yarnpkg.com/conventional-changelog-cli/-/conventional-changelog-cli-1.3.14.tgz#2560f640929baf97bb65457f77a12a57d5322852"
705
+ version "1.3.16"
706
+ resolved "https://registry.yarnpkg.com/conventional-changelog-cli/-/conventional-changelog-cli-1.3.16.tgz#69acdcc4b68b4d123c5945868dffe394960cea9d"
699
707
  dependencies:
700
708
  add-stream "^1.0.0"
701
- conventional-changelog "^1.1.16"
702
- lodash "^4.1.0"
703
- meow "^3.7.0"
709
+ conventional-changelog "^1.1.18"
710
+ lodash "^4.2.1"
711
+ meow "^4.0.0"
704
712
  tempfile "^1.1.1"
705
713
 
706
- conventional-changelog-codemirror@^0.3.3:
707
- version "0.3.3"
708
- resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.3.3.tgz#e1ec78e77e7fe26a2bd18e32f02523527916a07b"
714
+ conventional-changelog-codemirror@^0.3.4:
715
+ version "0.3.4"
716
+ resolved "https://registry.yarnpkg.com/conventional-changelog-codemirror/-/conventional-changelog-codemirror-0.3.4.tgz#debc43991d487d7964e65087fbbe034044bd51fb"
709
717
  dependencies:
710
- q "^1.4.1"
718
+ q "^1.5.1"
711
719
 
712
- conventional-changelog-core@^2.0.4:
713
- version "2.0.4"
714
- resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-2.0.4.tgz#bbc476109c6b28ba6328b0b417f5ab5bfc7ca28a"
720
+ conventional-changelog-core@^2.0.5:
721
+ version "2.0.5"
722
+ resolved "https://registry.yarnpkg.com/conventional-changelog-core/-/conventional-changelog-core-2.0.5.tgz#45b6347c4c6512e1f163f7ff55c9f5bcb88fd990"
715
723
  dependencies:
716
- conventional-changelog-writer "^3.0.3"
717
- conventional-commits-parser "^2.1.4"
718
- dateformat "^1.0.12"
724
+ conventional-changelog-writer "^3.0.4"
725
+ conventional-commits-parser "^2.1.5"
726
+ dateformat "^3.0.0"
719
727
  get-pkg-repo "^1.0.0"
720
- git-raw-commits "^1.3.3"
728
+ git-raw-commits "^1.3.4"
721
729
  git-remote-origin-url "^2.0.0"
722
- git-semver-tags "^1.3.3"
723
- lodash "^4.0.0"
730
+ git-semver-tags "^1.3.4"
731
+ lodash "^4.2.1"
724
732
  normalize-package-data "^2.3.5"
725
- q "^1.4.1"
733
+ q "^1.5.1"
726
734
  read-pkg "^1.1.0"
727
735
  read-pkg-up "^1.0.1"
728
736
  through2 "^2.0.0"
729
737
 
730
- conventional-changelog-ember@^0.3.5:
731
- version "0.3.5"
732
- resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.3.5.tgz#db9a23f01103c6a0446ed2077ed5c87656d0571a"
738
+ conventional-changelog-ember@^0.3.6:
739
+ version "0.3.6"
740
+ resolved "https://registry.yarnpkg.com/conventional-changelog-ember/-/conventional-changelog-ember-0.3.6.tgz#f3825d7434168f3d9211b5532dc1d5769532b668"
733
741
  dependencies:
734
- q "^1.4.1"
742
+ q "^1.5.1"
735
743
 
736
- conventional-changelog-eslint@^1.0.3:
737
- version "1.0.3"
738
- resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-1.0.3.tgz#023002a3f776266c501e4d4def7b0bb24130f29d"
744
+ conventional-changelog-eslint@^1.0.5:
745
+ version "1.0.5"
746
+ resolved "https://registry.yarnpkg.com/conventional-changelog-eslint/-/conventional-changelog-eslint-1.0.5.tgz#8bae05ebbf574e6506caf7b37dc51ca21b74d220"
739
747
  dependencies:
740
- q "^1.4.1"
748
+ q "^1.5.1"
741
749
 
742
- conventional-changelog-express@^0.3.3:
743
- version "0.3.3"
744
- resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-0.3.3.tgz#25aef42a30b5457f97681a94f2ac9b0ee515484a"
750
+ conventional-changelog-express@^0.3.4:
751
+ version "0.3.4"
752
+ resolved "https://registry.yarnpkg.com/conventional-changelog-express/-/conventional-changelog-express-0.3.4.tgz#812a9cf778677e12f978ac9c40d85297c0bfcca9"
745
753
  dependencies:
746
- q "^1.4.1"
754
+ q "^1.5.1"
747
755
 
748
756
  conventional-changelog-jquery@^0.1.0:
749
757
  version "0.1.0"
@@ -757,63 +765,63 @@ conventional-changelog-jscs@^0.1.0:
757
765
  dependencies:
758
766
  q "^1.4.1"
759
767
 
760
- conventional-changelog-jshint@^0.3.3:
761
- version "0.3.3"
762
- resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-0.3.3.tgz#28b6fe4d41fb945f38c6c31cd195fe37594f0007"
768
+ conventional-changelog-jshint@^0.3.4:
769
+ version "0.3.4"
770
+ resolved "https://registry.yarnpkg.com/conventional-changelog-jshint/-/conventional-changelog-jshint-0.3.4.tgz#b2de33cd0870d9af804ac6a4fded0ee25b69c9bb"
763
771
  dependencies:
764
772
  compare-func "^1.3.1"
765
- q "^1.4.1"
773
+ q "^1.5.1"
766
774
 
767
- conventional-changelog-preset-loader@^1.1.5:
768
- version "1.1.5"
769
- resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-1.1.5.tgz#d5af525d7ad81179d9b54137284d74d665997fa7"
775
+ conventional-changelog-preset-loader@^1.1.6:
776
+ version "1.1.6"
777
+ resolved "https://registry.yarnpkg.com/conventional-changelog-preset-loader/-/conventional-changelog-preset-loader-1.1.6.tgz#b29af6332f9313857be36427623c9016bfeeaf33"
770
778
 
771
- conventional-changelog-writer@^3.0.3:
772
- version "3.0.3"
773
- resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-3.0.3.tgz#2faa65739370769639fff1c0008722162936d46c"
779
+ conventional-changelog-writer@^3.0.4:
780
+ version "3.0.4"
781
+ resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-3.0.4.tgz#705b46a8b8277bd7fd79cad8032095b5d803864c"
774
782
  dependencies:
775
783
  compare-func "^1.3.1"
776
- conventional-commits-filter "^1.1.4"
777
- dateformat "^1.0.11"
784
+ conventional-commits-filter "^1.1.5"
785
+ dateformat "^3.0.0"
778
786
  handlebars "^4.0.2"
779
787
  json-stringify-safe "^5.0.1"
780
- lodash "^4.0.0"
781
- meow "^3.3.0"
782
- semver "^5.0.1"
788
+ lodash "^4.2.1"
789
+ meow "^4.0.0"
790
+ semver "^5.5.0"
783
791
  split "^1.0.0"
784
792
  through2 "^2.0.0"
785
793
 
786
- conventional-changelog@^1.1.16:
787
- version "1.1.16"
788
- resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.16.tgz#fa78386c831f5b1ae45f60391ef015c2a4a400b9"
789
- dependencies:
790
- conventional-changelog-angular "^1.6.5"
791
- conventional-changelog-atom "^0.2.3"
792
- conventional-changelog-codemirror "^0.3.3"
793
- conventional-changelog-core "^2.0.4"
794
- conventional-changelog-ember "^0.3.5"
795
- conventional-changelog-eslint "^1.0.3"
796
- conventional-changelog-express "^0.3.3"
794
+ conventional-changelog@^1.1.18:
795
+ version "1.1.18"
796
+ resolved "https://registry.yarnpkg.com/conventional-changelog/-/conventional-changelog-1.1.18.tgz#ffe28798e4ddef5f6e2f74398e8248bcb233360b"
797
+ dependencies:
798
+ conventional-changelog-angular "^1.6.6"
799
+ conventional-changelog-atom "^0.2.4"
800
+ conventional-changelog-codemirror "^0.3.4"
801
+ conventional-changelog-core "^2.0.5"
802
+ conventional-changelog-ember "^0.3.6"
803
+ conventional-changelog-eslint "^1.0.5"
804
+ conventional-changelog-express "^0.3.4"
797
805
  conventional-changelog-jquery "^0.1.0"
798
806
  conventional-changelog-jscs "^0.1.0"
799
- conventional-changelog-jshint "^0.3.3"
800
- conventional-changelog-preset-loader "^1.1.5"
807
+ conventional-changelog-jshint "^0.3.4"
808
+ conventional-changelog-preset-loader "^1.1.6"
801
809
 
802
- conventional-commits-filter@^1.1.4:
803
- version "1.1.4"
804
- resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-1.1.4.tgz#8b5be3979c372e4f7440180d5c655a94ac5a134a"
810
+ conventional-commits-filter@^1.1.5:
811
+ version "1.1.5"
812
+ resolved "https://registry.yarnpkg.com/conventional-commits-filter/-/conventional-commits-filter-1.1.5.tgz#77aac065e3de9c1a74b801e8e25c9affb3184f65"
805
813
  dependencies:
806
814
  is-subset "^0.1.1"
807
815
  modify-values "^1.0.0"
808
816
 
809
- conventional-commits-parser@^2.1.4:
810
- version "2.1.4"
811
- resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.1.4.tgz#86d2c21029268d99543c4ebda37d76fe5c44d8d1"
817
+ conventional-commits-parser@^2.1.5:
818
+ version "2.1.5"
819
+ resolved "https://registry.yarnpkg.com/conventional-commits-parser/-/conventional-commits-parser-2.1.5.tgz#9ac3a4ab221c0c3c9e9dd2c09ae01e6d1e1dabe0"
812
820
  dependencies:
813
821
  JSONStream "^1.0.4"
814
822
  is-text-path "^1.0.0"
815
823
  lodash "^4.2.1"
816
- meow "^3.3.0"
824
+ meow "^4.0.0"
817
825
  split2 "^2.0.0"
818
826
  through2 "^2.0.0"
819
827
  trim-off-newlines "^1.0.0"
@@ -891,12 +899,9 @@ dashdash@^1.12.0:
891
899
  dependencies:
892
900
  assert-plus "^1.0.0"
893
901
 
894
- dateformat@^1.0.11, dateformat@^1.0.12:
895
- version "1.0.12"
896
- resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-1.0.12.tgz#9f124b67594c937ff706932e4a642cca8dbbfee9"
897
- dependencies:
898
- get-stdin "^4.0.1"
899
- meow "^3.3.0"
902
+ dateformat@^3.0.0:
903
+ version "3.0.3"
904
+ resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-3.0.3.tgz#a6e37499a4d9a9cf85ef5872044d62901c9889ae"
900
905
 
901
906
  debug@2.6.8:
902
907
  version "2.6.8"
@@ -916,7 +921,14 @@ debug@^3.0.1, debug@^3.1.0:
916
921
  dependencies:
917
922
  ms "2.0.0"
918
923
 
919
- decamelize@^1.0.0, decamelize@^1.1.1, decamelize@^1.1.2:
924
+ decamelize-keys@^1.0.0:
925
+ version "1.1.0"
926
+ resolved "https://registry.yarnpkg.com/decamelize-keys/-/decamelize-keys-1.1.0.tgz#d171a87933252807eb3cb61dc1c1445d078df2d9"
927
+ dependencies:
928
+ decamelize "^1.1.0"
929
+ map-obj "^1.0.0"
930
+
931
+ decamelize@^1.0.0, decamelize@^1.1.0, decamelize@^1.1.1, decamelize@^1.1.2:
920
932
  version "1.2.0"
921
933
  resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
922
934
 
@@ -1015,8 +1027,8 @@ diff@3.2.0:
1015
1027
  resolved "https://registry.yarnpkg.com/diff/-/diff-3.2.0.tgz#c9ce393a4b7cbd0b058a725c93df299027868ff9"
1016
1028
 
1017
1029
  diff@^3.1.0:
1018
- version "3.4.0"
1019
- resolved "https://registry.yarnpkg.com/diff/-/diff-3.4.0.tgz#b1d85507daf3964828de54b37d0d73ba67dda56c"
1030
+ version "3.5.0"
1031
+ resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
1020
1032
 
1021
1033
  docopt@^0.6.2:
1022
1034
  version "0.6.2"
@@ -1121,13 +1133,13 @@ entities@^1.1.1, entities@~1.1.1:
1121
1133
  version "1.1.1"
1122
1134
  resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.1.tgz#6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"
1123
1135
 
1124
- errno@^0.1.4:
1136
+ errno@~0.1.7:
1125
1137
  version "0.1.7"
1126
1138
  resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.7.tgz#4684d71779ad39af177e3f007996f7c67c852618"
1127
1139
  dependencies:
1128
1140
  prr "~1.0.1"
1129
1141
 
1130
- error-ex@^1.2.0:
1142
+ error-ex@^1.2.0, error-ex@^1.3.1:
1131
1143
  version "1.3.1"
1132
1144
  resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.1.tgz#f855a86ce61adc4e8621c3cda21e7a7612c3a8dc"
1133
1145
  dependencies:
@@ -1171,8 +1183,8 @@ eslint-visitor-keys@^1.0.0:
1171
1183
  resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
1172
1184
 
1173
1185
  eslint@^4.5.0:
1174
- version "4.18.1"
1175
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.18.1.tgz#b9138440cb1e98b2f44a0d578c6ecf8eae6150b0"
1186
+ version "4.18.2"
1187
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.18.2.tgz#0f81267ad1012e7d2051e186a9004cc2267b8d45"
1176
1188
  dependencies:
1177
1189
  ajv "^5.3.0"
1178
1190
  babel-code-frame "^6.22.0"
@@ -1209,14 +1221,14 @@ eslint@^4.5.0:
1209
1221
  semver "^5.3.0"
1210
1222
  strip-ansi "^4.0.0"
1211
1223
  strip-json-comments "~2.0.1"
1212
- table "^4.0.1"
1224
+ table "4.0.2"
1213
1225
  text-table "~0.2.0"
1214
1226
 
1215
1227
  espree@^3.5.2:
1216
- version "3.5.3"
1217
- resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.3.tgz#931e0af64e7fbbed26b050a29daad1fc64799fa6"
1228
+ version "3.5.4"
1229
+ resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7"
1218
1230
  dependencies:
1219
- acorn "^5.4.0"
1231
+ acorn "^5.5.0"
1220
1232
  acorn-jsx "^3.0.0"
1221
1233
 
1222
1234
  esprima@2.7.x, esprima@^2.6.0, esprima@^2.7.1:
@@ -1234,11 +1246,10 @@ esquery@^1.0.0:
1234
1246
  estraverse "^4.0.0"
1235
1247
 
1236
1248
  esrecurse@^4.1.0:
1237
- version "4.2.0"
1238
- resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.0.tgz#fa9568d98d3823f9a41d91e902dcab9ea6e5b163"
1249
+ version "4.2.1"
1250
+ resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.2.1.tgz#007a3b9fdbc2b3bb87e4879ea19c92fdbd3942cf"
1239
1251
  dependencies:
1240
1252
  estraverse "^4.1.0"
1241
- object-assign "^4.0.1"
1242
1253
 
1243
1254
  estraverse@^1.9.1:
1244
1255
  version "1.9.3"
@@ -1310,8 +1321,8 @@ extsprintf@^1.2.0:
1310
1321
  resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
1311
1322
 
1312
1323
  fast-deep-equal@^1.0.0:
1313
- version "1.0.0"
1314
- resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.0.0.tgz#96256a3bc975595eb36d82e9929d060d893439ff"
1324
+ version "1.1.0"
1325
+ resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614"
1315
1326
 
1316
1327
  fast-diff@^1.1.1:
1317
1328
  version "1.1.2"
@@ -1543,13 +1554,13 @@ getpass@^0.1.1:
1543
1554
  dependencies:
1544
1555
  assert-plus "^1.0.0"
1545
1556
 
1546
- git-raw-commits@^1.3.3:
1547
- version "1.3.3"
1548
- resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-1.3.3.tgz#464f9aa14c4e78235e98654f0da467f3702590f9"
1557
+ git-raw-commits@^1.3.4:
1558
+ version "1.3.4"
1559
+ resolved "https://registry.yarnpkg.com/git-raw-commits/-/git-raw-commits-1.3.4.tgz#442c3df5985b4f5689e9e43597f5194736aac001"
1549
1560
  dependencies:
1550
1561
  dargs "^4.0.1"
1551
1562
  lodash.template "^4.0.2"
1552
- meow "^3.3.0"
1563
+ meow "^4.0.0"
1553
1564
  split2 "^2.0.0"
1554
1565
  through2 "^2.0.0"
1555
1566
 
@@ -1560,12 +1571,12 @@ git-remote-origin-url@^2.0.0:
1560
1571
  gitconfiglocal "^1.0.0"
1561
1572
  pify "^2.3.0"
1562
1573
 
1563
- git-semver-tags@^1.3.3:
1564
- version "1.3.3"
1565
- resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.3.3.tgz#0b0416c43285adfdc93a8038ea25502a09319245"
1574
+ git-semver-tags@^1.3.4:
1575
+ version "1.3.4"
1576
+ resolved "https://registry.yarnpkg.com/git-semver-tags/-/git-semver-tags-1.3.4.tgz#2ceb2a355c6d7514c123c35e297067d08caf3a92"
1566
1577
  dependencies:
1567
- meow "^3.3.0"
1568
- semver "^5.0.1"
1578
+ meow "^4.0.0"
1579
+ semver "^5.5.0"
1569
1580
 
1570
1581
  gitconfiglocal@^1.0.0:
1571
1582
  version "1.0.0"
@@ -1700,8 +1711,8 @@ has-flag@^3.0.0:
1700
1711
  resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
1701
1712
 
1702
1713
  has-symbol-support-x@^1.4.1:
1703
- version "1.4.1"
1704
- resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.1.tgz#66ec2e377e0c7d7ccedb07a3a84d77510ff1bc4c"
1714
+ version "1.4.2"
1715
+ resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455"
1705
1716
 
1706
1717
  has-to-string-tag-x@^1.2.0:
1707
1718
  version "1.4.1"
@@ -1803,6 +1814,10 @@ indent-string@^2.1.0:
1803
1814
  dependencies:
1804
1815
  repeating "^2.0.0"
1805
1816
 
1817
+ indent-string@^3.0.0:
1818
+ version "3.2.0"
1819
+ resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-3.2.0.tgz#4a5fd6d27cc332f37e5419a504dbb837105c9289"
1820
+
1806
1821
  inflight@^1.0.4:
1807
1822
  version "1.0.6"
1808
1823
  resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
@@ -2019,8 +2034,8 @@ js-yaml@3.6.1:
2019
2034
  esprima "^2.6.0"
2020
2035
 
2021
2036
  js-yaml@3.x, js-yaml@^3.9.1:
2022
- version "3.10.0"
2023
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
2037
+ version "3.11.0"
2038
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.11.0.tgz#597c1a8bd57152f26d622ce4117851a51f5ebaef"
2024
2039
  dependencies:
2025
2040
  argparse "^1.0.7"
2026
2041
  esprima "^4.0.0"
@@ -2056,6 +2071,10 @@ jsesc@^1.3.0:
2056
2071
  version "1.3.0"
2057
2072
  resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
2058
2073
 
2074
+ json-parse-better-errors@^1.0.1:
2075
+ version "1.0.1"
2076
+ resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.1.tgz#50183cd1b2d25275de069e9e71b467ac9eab973a"
2077
+
2059
2078
  json-schema-traverse@^0.3.0:
2060
2079
  version "0.3.1"
2061
2080
  resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340"
@@ -2195,6 +2214,15 @@ load-json-file@^2.0.0:
2195
2214
  pify "^2.0.0"
2196
2215
  strip-bom "^3.0.0"
2197
2216
 
2217
+ load-json-file@^4.0.0:
2218
+ version "4.0.0"
2219
+ resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b"
2220
+ dependencies:
2221
+ graceful-fs "^4.1.2"
2222
+ parse-json "^4.0.0"
2223
+ pify "^3.0.0"
2224
+ strip-bom "^3.0.0"
2225
+
2198
2226
  locate-path@^2.0.0:
2199
2227
  version "2.0.0"
2200
2228
  resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
@@ -2346,7 +2374,7 @@ lodash.transform@^4.6.0:
2346
2374
  version "4.6.0"
2347
2375
  resolved "https://registry.yarnpkg.com/lodash.transform/-/lodash.transform-4.6.0.tgz#12306422f63324aed8483d3f38332b5f670547a0"
2348
2376
 
2349
- lodash@^4.0.0, lodash@^4.1.0, lodash@^4.12.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1:
2377
+ lodash@^4.0.0, lodash@^4.12.0, lodash@^4.14.0, lodash@^4.17.4, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1:
2350
2378
  version "4.17.5"
2351
2379
  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.5.tgz#99a92d65c0272debe8c96b6057bc8fbfa3bed511"
2352
2380
 
@@ -2396,13 +2424,17 @@ map-obj@^1.0.0, map-obj@^1.0.1:
2396
2424
  version "1.0.1"
2397
2425
  resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
2398
2426
 
2427
+ map-obj@^2.0.0:
2428
+ version "2.0.0"
2429
+ resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-2.0.0.tgz#a65cd29087a92598b8791257a523e021222ac1f9"
2430
+
2399
2431
  map-stream@~0.1.0:
2400
2432
  version "0.1.0"
2401
2433
  resolved "https://registry.yarnpkg.com/map-stream/-/map-stream-0.1.0.tgz#e56aa94c4c8055a16404a0674b78f215f7c8e194"
2402
2434
 
2403
2435
  marked@~0.3.6:
2404
- version "0.3.16"
2405
- resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.16.tgz#2f188b7dfcfa6540fe9940adaf0f3b791c9a5cba"
2436
+ version "0.3.17"
2437
+ resolved "https://registry.yarnpkg.com/marked/-/marked-0.3.17.tgz#607f06668b3c6b1246b28f13da76116ac1aa2d2b"
2406
2438
 
2407
2439
  mem@^1.1.0:
2408
2440
  version "1.1.0"
@@ -2410,7 +2442,7 @@ mem@^1.1.0:
2410
2442
  dependencies:
2411
2443
  mimic-fn "^1.0.0"
2412
2444
 
2413
- meow@^3.3.0, meow@^3.7.0:
2445
+ meow@^3.3.0:
2414
2446
  version "3.7.0"
2415
2447
  resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
2416
2448
  dependencies:
@@ -2425,6 +2457,20 @@ meow@^3.3.0, meow@^3.7.0:
2425
2457
  redent "^1.0.0"
2426
2458
  trim-newlines "^1.0.0"
2427
2459
 
2460
+ meow@^4.0.0:
2461
+ version "4.0.0"
2462
+ resolved "https://registry.yarnpkg.com/meow/-/meow-4.0.0.tgz#fd5855dd008db5b92c552082db1c307cba20b29d"
2463
+ dependencies:
2464
+ camelcase-keys "^4.0.0"
2465
+ decamelize-keys "^1.0.0"
2466
+ loud-rejection "^1.0.0"
2467
+ minimist "^1.1.3"
2468
+ minimist-options "^3.0.1"
2469
+ normalize-package-data "^2.3.4"
2470
+ read-pkg-up "^3.0.0"
2471
+ redent "^2.0.0"
2472
+ trim-newlines "^2.0.0"
2473
+
2428
2474
  metamocha@^1.2.5:
2429
2475
  version "1.3.1"
2430
2476
  resolved "https://registry.yarnpkg.com/metamocha/-/metamocha-1.3.1.tgz#770256ed177c7e4023aef0d12be814650582296f"
@@ -2455,6 +2501,13 @@ mimic-response@^1.0.0:
2455
2501
  dependencies:
2456
2502
  brace-expansion "^1.1.7"
2457
2503
 
2504
+ minimist-options@^3.0.1:
2505
+ version "3.0.2"
2506
+ resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954"
2507
+ dependencies:
2508
+ arrify "^1.0.1"
2509
+ is-plain-obj "^1.1.0"
2510
+
2458
2511
  minimist@0.0.8:
2459
2512
  version "0.0.8"
2460
2513
  resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d"
@@ -2495,19 +2548,19 @@ modify-values@^1.0.0:
2495
2548
  resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.0.tgz#e2b6cdeb9ce19f99317a53722f3dbf5df5eaaab2"
2496
2549
 
2497
2550
  moment@^2.10.6:
2498
- version "2.20.1"
2499
- resolved "https://registry.yarnpkg.com/moment/-/moment-2.20.1.tgz#d6eb1a46cbcc14a2b2f9434112c1ff8907f313fd"
2551
+ version "2.21.0"
2552
+ resolved "https://registry.yarnpkg.com/moment/-/moment-2.21.0.tgz#2a114b51d2a6ec9e6d83cf803f838a878d8a023a"
2500
2553
 
2501
- mongodb-core@2.1.18:
2502
- version "2.1.18"
2503
- resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.1.18.tgz#4c46139bdf3a1f032ded91db49f38eec01659050"
2554
+ mongodb-core@2.1.19:
2555
+ version "2.1.19"
2556
+ resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-2.1.19.tgz#00fbd5e5a3573763b9171cfd844e60a8f2a3a18b"
2504
2557
  dependencies:
2505
2558
  bson "~1.0.4"
2506
2559
  require_optional "~1.0.0"
2507
2560
 
2508
- mongodb-core@^3.0.0-rc0, mongodb-core@mongodb-js/mongodb-core#d7804edc753f0d60a4f9719bd73d0312a2e50d95:
2509
- version "3.0.2"
2510
- resolved "https://codeload.github.com/mongodb-js/mongodb-core/tar.gz/d7804edc753f0d60a4f9719bd73d0312a2e50d95"
2561
+ mongodb-core@3.0.4, mongodb-core@^3.0.0-rc0:
2562
+ version "3.0.4"
2563
+ resolved "https://registry.yarnpkg.com/mongodb-core/-/mongodb-core-3.0.4.tgz#a3fdf466e697a2f1df87e458e5e2df1c26cc654b"
2511
2564
  dependencies:
2512
2565
  bson "~1.0.4"
2513
2566
  require_optional "^1.0.1"
@@ -2597,11 +2650,11 @@ mongodb-version-manager@^1.0.7:
2597
2650
  untildify "^3.0.2"
2598
2651
 
2599
2652
  mongodb@^2.0.39:
2600
- version "2.2.34"
2601
- resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.34.tgz#a34f59bbeb61754aec432de72c3fe21526a44c1a"
2653
+ version "2.2.35"
2654
+ resolved "https://registry.yarnpkg.com/mongodb/-/mongodb-2.2.35.tgz#cd1b5af8a9463e3f9a787fa5b3d05565579730f9"
2602
2655
  dependencies:
2603
2656
  es6-promise "3.2.1"
2604
- mongodb-core "2.1.18"
2657
+ mongodb-core "2.1.19"
2605
2658
  readable-stream "2.2.7"
2606
2659
 
2607
2660
  ms@2.0.0:
@@ -2625,8 +2678,8 @@ natural-compare@^1.4.0:
2625
2678
  resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
2626
2679
 
2627
2680
  nise@^1.2.0:
2628
- version "1.2.5"
2629
- resolved "https://registry.yarnpkg.com/nise/-/nise-1.2.5.tgz#a143371b65014b6807d3a6e6b4556063f3a53363"
2681
+ version "1.3.0"
2682
+ resolved "https://registry.yarnpkg.com/nise/-/nise-1.3.0.tgz#7d6d506e64a0e37959495157f30a799c0436df72"
2630
2683
  dependencies:
2631
2684
  "@sinonjs/formatio" "^2.0.0"
2632
2685
  just-extend "^1.1.27"
@@ -2814,6 +2867,13 @@ parse-json@^2.2.0:
2814
2867
  dependencies:
2815
2868
  error-ex "^1.2.0"
2816
2869
 
2870
+ parse-json@^4.0.0:
2871
+ version "4.0.0"
2872
+ resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
2873
+ dependencies:
2874
+ error-ex "^1.3.1"
2875
+ json-parse-better-errors "^1.0.1"
2876
+
2817
2877
  path-exists@^2.0.0:
2818
2878
  version "2.1.0"
2819
2879
  resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
@@ -2856,6 +2916,12 @@ path-type@^2.0.0:
2856
2916
  dependencies:
2857
2917
  pify "^2.0.0"
2858
2918
 
2919
+ path-type@^3.0.0:
2920
+ version "3.0.0"
2921
+ resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
2922
+ dependencies:
2923
+ pify "^3.0.0"
2924
+
2859
2925
  pathval@^1.0.0:
2860
2926
  version "1.1.0"
2861
2927
  resolved "https://registry.yarnpkg.com/pathval/-/pathval-1.1.0.tgz#b942e6d4bde653005ef6b71361def8727d0645e0"
@@ -2905,8 +2971,8 @@ prepend-http@^1.0.1:
2905
2971
  resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
2906
2972
 
2907
2973
  prettier@^1.5.3:
2908
- version "1.10.2"
2909
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.10.2.tgz#1af8356d1842276a99a5b5529c82dd9e9ad3cc93"
2974
+ version "1.11.1"
2975
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.11.1.tgz#61e43fc4cd44e68f2b0dfc2c38cd4bb0fccdcc75"
2910
2976
 
2911
2977
  private@^0.1.7:
2912
2978
  version "0.1.8"
@@ -2940,7 +3006,7 @@ punycode@^1.4.1:
2940
3006
  version "1.4.1"
2941
3007
  resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
2942
3008
 
2943
- q@^1.4.1:
3009
+ q@^1.4.1, q@^1.5.1:
2944
3010
  version "1.5.1"
2945
3011
  resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
2946
3012
 
@@ -2952,6 +3018,10 @@ qs@~6.5.1:
2952
3018
  version "6.5.1"
2953
3019
  resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.1.tgz#349cdf6eef89ec45c12d7d5eb3fc0c870343a6d8"
2954
3020
 
3021
+ quick-lru@^1.0.0:
3022
+ version "1.1.0"
3023
+ resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8"
3024
+
2955
3025
  raf@^3.1.0:
2956
3026
  version "3.4.0"
2957
3027
  resolved "https://registry.yarnpkg.com/raf/-/raf-3.4.0.tgz#a28876881b4bc2ca9117d4138163ddb80f781575"
@@ -2972,6 +3042,13 @@ read-pkg-up@^2.0.0:
2972
3042
  find-up "^2.0.0"
2973
3043
  read-pkg "^2.0.0"
2974
3044
 
3045
+ read-pkg-up@^3.0.0:
3046
+ version "3.0.0"
3047
+ resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07"
3048
+ dependencies:
3049
+ find-up "^2.0.0"
3050
+ read-pkg "^3.0.0"
3051
+
2975
3052
  read-pkg@^1.0.0, read-pkg@^1.1.0:
2976
3053
  version "1.1.0"
2977
3054
  resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
@@ -2988,6 +3065,14 @@ read-pkg@^2.0.0:
2988
3065
  normalize-package-data "^2.3.2"
2989
3066
  path-type "^2.0.0"
2990
3067
 
3068
+ read-pkg@^3.0.0:
3069
+ version "3.0.0"
3070
+ resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389"
3071
+ dependencies:
3072
+ load-json-file "^4.0.0"
3073
+ normalize-package-data "^2.3.2"
3074
+ path-type "^3.0.0"
3075
+
2991
3076
  readable-stream@2.2.7:
2992
3077
  version "2.2.7"
2993
3078
  resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.2.7.tgz#07057acbe2467b22042d36f98c5ad507054e95b1"
@@ -3010,8 +3095,8 @@ readable-stream@2.2.7:
3010
3095
  string_decoder "~0.10.x"
3011
3096
 
3012
3097
  readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2:
3013
- version "2.3.4"
3014
- resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.4.tgz#c946c3f47fa7d8eabc0b6150f4a12f69a4574071"
3098
+ version "2.3.5"
3099
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.5.tgz#b4f85003a938cbb6ecbce2a124fb1012bd1a838d"
3015
3100
  dependencies:
3016
3101
  core-util-is "~1.0.0"
3017
3102
  inherits "~2.0.3"
@@ -3028,6 +3113,13 @@ redent@^1.0.0:
3028
3113
  indent-string "^2.1.0"
3029
3114
  strip-indent "^1.0.1"
3030
3115
 
3116
+ redent@^2.0.0:
3117
+ version "2.0.0"
3118
+ resolved "https://registry.yarnpkg.com/redent/-/redent-2.0.0.tgz#c1b2007b42d57eb1389079b3c8333639d5e1ccaa"
3119
+ dependencies:
3120
+ indent-string "^3.0.0"
3121
+ strip-indent "^2.0.0"
3122
+
3031
3123
  regenerator-runtime@^0.10.5:
3032
3124
  version "0.10.5"
3033
3125
  resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.10.5.tgz#336c3efc1220adcedda2c9fab67b5a7955a33658"
@@ -3187,7 +3279,7 @@ seek-bzip@^1.0.5:
3187
3279
  dependencies:
3188
3280
  commander "~2.8.1"
3189
3281
 
3190
- "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1:
3282
+ "semver@2 || 3 || 4 || 5", semver@^5.0.1, semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0:
3191
3283
  version "5.5.0"
3192
3284
  resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
3193
3285
 
@@ -3218,8 +3310,8 @@ signal-exit@^3.0.0, signal-exit@^3.0.2:
3218
3310
  resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
3219
3311
 
3220
3312
  sinon@^4.3.0:
3221
- version "4.4.0"
3222
- resolved "https://registry.yarnpkg.com/sinon/-/sinon-4.4.0.tgz#5bdbe9c96c6a2904d2fddde6316c1c9b7dc70ebe"
3313
+ version "4.4.2"
3314
+ resolved "https://registry.yarnpkg.com/sinon/-/sinon-4.4.2.tgz#c4c41d4bd346e1d33594daec2d5df0548334fc65"
3223
3315
  dependencies:
3224
3316
  "@sinonjs/formatio" "^2.0.0"
3225
3317
  diff "^3.1.0"
@@ -3297,19 +3389,27 @@ source-map@~0.2.0:
3297
3389
  dependencies:
3298
3390
  amdefine ">=0.0.4"
3299
3391
 
3300
- spdx-correct@~1.0.0:
3301
- version "1.0.2"
3302
- resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-1.0.2.tgz#4b3073d933ff51f3912f03ac5519498a4150db40"
3392
+ spdx-correct@^3.0.0:
3393
+ version "3.0.0"
3394
+ resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.0.0.tgz#05a5b4d7153a195bc92c3c425b69f3b2a9524c82"
3303
3395
  dependencies:
3304
- spdx-license-ids "^1.0.2"
3396
+ spdx-expression-parse "^3.0.0"
3397
+ spdx-license-ids "^3.0.0"
3305
3398
 
3306
- spdx-expression-parse@~1.0.0:
3307
- version "1.0.4"
3308
- resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-1.0.4.tgz#9bdf2f20e1f40ed447fbe273266191fced51626c"
3399
+ spdx-exceptions@^2.1.0:
3400
+ version "2.1.0"
3401
+ resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.1.0.tgz#2c7ae61056c714a5b9b9b2b2af7d311ef5c78fe9"
3402
+
3403
+ spdx-expression-parse@^3.0.0:
3404
+ version "3.0.0"
3405
+ resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz#99e119b7a5da00e05491c9fa338b7904823b41d0"
3406
+ dependencies:
3407
+ spdx-exceptions "^2.1.0"
3408
+ spdx-license-ids "^3.0.0"
3309
3409
 
3310
- spdx-license-ids@^1.0.2:
3311
- version "1.2.2"
3312
- resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-1.2.2.tgz#c9df7a3424594ade6bd11900d596696dc06bac57"
3410
+ spdx-license-ids@^3.0.0:
3411
+ version "3.0.0"
3412
+ resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.0.tgz#7a7cd28470cc6d3a1cfe6d66886f6bc430d3ac87"
3313
3413
 
3314
3414
  split2@^2.0.0:
3315
3415
  version "2.2.0"
@@ -3420,6 +3520,10 @@ strip-indent@^1.0.1:
3420
3520
  dependencies:
3421
3521
  get-stdin "^4.0.1"
3422
3522
 
3523
+ strip-indent@^2.0.0:
3524
+ version "2.0.0"
3525
+ resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68"
3526
+
3423
3527
  strip-json-comments@~2.0.1:
3424
3528
  version "2.0.1"
3425
3529
  resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a"
@@ -3446,12 +3550,23 @@ supports-color@^3.1.0:
3446
3550
  dependencies:
3447
3551
  has-flag "^1.0.0"
3448
3552
 
3449
- supports-color@^5.1.0, supports-color@^5.2.0:
3450
- version "5.2.0"
3451
- resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.2.0.tgz#b0d5333b1184dd3666cbe5aa0b45c5ac7ac17a4a"
3553
+ supports-color@^5.1.0, supports-color@^5.3.0:
3554
+ version "5.3.0"
3555
+ resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.3.0.tgz#5b24ac15db80fa927cf5227a4a33fd3c4c7676c0"
3452
3556
  dependencies:
3453
3557
  has-flag "^3.0.0"
3454
3558
 
3559
+ table@4.0.2:
3560
+ version "4.0.2"
3561
+ resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36"
3562
+ dependencies:
3563
+ ajv "^5.2.3"
3564
+ ajv-keywords "^2.1.0"
3565
+ chalk "^2.1.0"
3566
+ lodash "^4.17.4"
3567
+ slice-ansi "1.0.0"
3568
+ string-width "^2.1.1"
3569
+
3455
3570
  table@^3.7.4:
3456
3571
  version "3.8.3"
3457
3572
  resolved "https://registry.yarnpkg.com/table/-/table-3.8.3.tgz#2bbc542f0fda9861a755d3947fefd8b3f513855f"
@@ -3463,17 +3578,6 @@ table@^3.7.4:
3463
3578
  slice-ansi "0.0.4"
3464
3579
  string-width "^2.0.0"
3465
3580
 
3466
- table@^4.0.1:
3467
- version "4.0.2"
3468
- resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36"
3469
- dependencies:
3470
- ajv "^5.2.3"
3471
- ajv-keywords "^2.1.0"
3472
- chalk "^2.1.0"
3473
- lodash "^4.17.4"
3474
- slice-ansi "1.0.0"
3475
- string-width "^2.1.1"
3476
-
3477
3581
  taffydb@2.6.2:
3478
3582
  version "2.6.2"
3479
3583
  resolved "https://registry.yarnpkg.com/taffydb/-/taffydb-2.6.2.tgz#7cbcb64b5a141b6a2efc2c5d2c67b4e150b2a268"
@@ -3553,8 +3657,8 @@ to-fast-properties@^1.0.3:
3553
3657
  resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47"
3554
3658
 
3555
3659
  tough-cookie@~2.3.0, tough-cookie@~2.3.3:
3556
- version "2.3.3"
3557
- resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.3.tgz#0b618a5565b6dea90bf3425d04d55edc475a7561"
3660
+ version "2.3.4"
3661
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.3.4.tgz#ec60cee38ac675063ffc97a5c18970578ee83655"
3558
3662
  dependencies:
3559
3663
  punycode "^1.4.1"
3560
3664
 
@@ -3562,6 +3666,10 @@ trim-newlines@^1.0.0:
3562
3666
  version "1.0.0"
3563
3667
  resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
3564
3668
 
3669
+ trim-newlines@^2.0.0:
3670
+ version "2.0.0"
3671
+ resolved "https://registry.yarnpkg.com/trim-newlines/-/trim-newlines-2.0.0.tgz#b403d0b91be50c331dfc4b82eeceb22c3de16d20"
3672
+
3565
3673
  trim-off-newlines@^1.0.0:
3566
3674
  version "1.0.1"
3567
3675
  resolved "https://registry.yarnpkg.com/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz#9f9ba9d9efa8764c387698bcbfeb2c848f11adb3"
@@ -3669,11 +3777,11 @@ uuid@^3.0.0, uuid@^3.1.0:
3669
3777
  resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.2.1.tgz#12c528bb9d58d0b9265d9a2f6f0fe8be17ff1f14"
3670
3778
 
3671
3779
  validate-npm-package-license@^3.0.1:
3672
- version "3.0.1"
3673
- resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz#2804babe712ad3379459acfbe24746ab2c303fbc"
3780
+ version "3.0.3"
3781
+ resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.3.tgz#81643bcbef1bdfecd4623793dc4648948ba98338"
3674
3782
  dependencies:
3675
- spdx-correct "~1.0.0"
3676
- spdx-expression-parse "~1.0.0"
3783
+ spdx-correct "^3.0.0"
3784
+ spdx-expression-parse "^3.0.0"
3677
3785
 
3678
3786
  verror@1.10.0:
3679
3787
  version "1.10.0"
@@ -3716,11 +3824,11 @@ wordwrap@~0.0.2:
3716
3824
  resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-0.0.3.tgz#a3d5da6cd5c0bc0008d37234bbaf1bed63059107"
3717
3825
 
3718
3826
  worker-farm@^1.5.0:
3719
- version "1.5.2"
3720
- resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.2.tgz#32b312e5dc3d5d45d79ef44acc2587491cd729ae"
3827
+ version "1.5.4"
3828
+ resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.5.4.tgz#4debbe46b40edefcc717ebde74a90b1ae1e909a1"
3721
3829
  dependencies:
3722
- errno "^0.1.4"
3723
- xtend "^4.0.1"
3830
+ errno "~0.1.7"
3831
+ xtend "~4.0.1"
3724
3832
 
3725
3833
  wrap-ansi@^2.0.0:
3726
3834
  version "2.1.0"
@@ -3743,7 +3851,7 @@ xmlcreate@^1.0.1:
3743
3851
  version "1.0.2"
3744
3852
  resolved "https://registry.yarnpkg.com/xmlcreate/-/xmlcreate-1.0.2.tgz#fa6bf762a60a413fb3dd8f4b03c5b269238d308f"
3745
3853
 
3746
- "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1:
3854
+ "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@~4.0.1:
3747
3855
  version "4.0.1"
3748
3856
  resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
3749
3857