Skip to content
This repository has been archived by the owner on Aug 12, 2023. It is now read-only.

Update dependency mongoose to v5.10.9 #316

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 20, 2019

This PR contains the following updates:

Package Type Update Change
mongoose (source) dependencies minor 5.8.1 -> 5.10.9

Release Notes

Automattic/mongoose

v5.10.9

Compare Source

===================

  • fix(update): strip out unused array filters to avoid "filter was not used in the update" error #​9468
  • fix(mongoose): allow setting autoCreate as a global option to be consistent with autoIndex #​9466

v5.10.8

Compare Source

===================

  • fix(schema): handle setting nested paths underneath single nested subdocs #​9459
  • fix(schema+index): allow calling mongoose.model() with schema from a different Mongoose module instance #​9449
  • fix(transaction): fix saving new documents w/ arrays in transactions #​9457 PenguinToast
  • fix(document): track reason on cast errors that occur while init-ing a document #​9448
  • fix(model): make createCollection() not throw error when collection already exists to be consistent with v5.9 #​9447
  • docs(connections): add SSL connections docs #​9443
  • docs(query_casting): fix typo #​9458 craig-davis

v5.10.7

Compare Source

===================

  • fix(schema): set correct path and schema on nested primitive arrays #​9429
  • fix(document): pass document to required validator so required can use arrow functions #​9435 AbdelrahmanHafez
  • fix(document): handle required when schema has property named isSelected #​9438
  • fix(timestamps): allow using timestamps when schema has a property named 'set' #​9428
  • fix(schema): make Schema#clone() use parent Mongoose instance's Schema constructor #​9426

v5.10.6

Compare Source

===================

  • fix(populate): handle options.perDocumentLimit option same as perDocumentLimit when calling populate() #​9418
  • fix(document): invalidate path if default function throws an error #​9408
  • fix: ensure subdocument defaults run after initial values are set when initing #​9408
  • docs(faq+queries): add more detail about duplicate queries, including an faq entry #​9386
  • docs: replace var with let and const in docs and test files #​9414 jmadankumar
  • docs(model+query): document using array of strings as projection #​9413
  • docs(middleware): add missing backtick #​9425 tphobe9312

v5.10.5

Compare Source

===================

  • fix: bump mongodb -> 3.6.2 #​9411 AbdelrahmanHafez
  • fix(query+aggregate+cursor): support async iteration over a cursor instance as opposed to a Query or Aggregate instance #​9403
  • fix(document): respect child schema minimize if toObject() is called without an explicit minimize #​9405
  • docs(guide): use const instead of var #​9394 nainardev
  • docs(query): link to lean, findOneAndUpdate, query casting tutorials from query docs #​9410

v5.10.4

Compare Source

===================

  • fix(document): allow setting nested path to instance of model #​9392
  • fix: handle findOneAndRemove() with orFail() #​9381
  • fix(schema): support setting _id option to false after instantiating schema #​9390
  • docs(document): fix formatting on getChanges() #​9376

v5.10.3

Compare Source

===================

  • fix: upgrade mongodb -> 3.6.1 #​9380 lamhieu-vk
  • fix(populate): allow populating paths underneath subdocument maps #​9359
  • fix(update): handle casting map paths when map is underneath a single nested subdoc #​9298
  • fix(discriminator): avoid removing nested path if both base and discriminator schema have the same nested path #​9362
  • fix(schema): support Schema#add() with schematype instances with different paths #​9370
  • docs(api): fix typo in Query#get() example #​9372 elainewlin

v5.10.2

Compare Source

===================

  • fix(model): avoid uncaught error if insertMany() fails due to server selection error #​9355
  • fix(aggregate): automatically convert accumulator function options to strings #​9364
  • fix(document): handle pull() on a document array when _id is an alias #​9319
  • fix(queryhelpers): avoid path collision error when projecting in discriminator key with `.This PR contains the following updates:
Package Type Update Change
mongoose (source) dependencies minor 5.8.1 -> 5.10.9

#​9361

  • fix: fix typo in error message thrown by unimplemented createIndex #​9367 timhaley94
  • docs(plugins): note that plugins should be applied before you call mongoose.model() #​7723

v5.10.1

Compare Source

===================

  • fix(mongoose): fix .then() is not a function error when calling mongoose.connect() multiple times #​9358 #​9335 #​9331
  • fix: allow calling create() after bulkWrite() by clearing internal casting context #​9350
  • fix(model): dont wipe out changes made while save() is in-flight #​9327
  • fix(populate): skip checking refPath if the path to populate is undefined #​9340
  • fix(document): allow accessing document values from function default on array #​9351
  • fix(model): skip applying init hook if called with schema.pre(..., { document: false }) #​9316
  • fix(populate): support retainNullValues when setting _id to false for subdocument #​9337 #​9336 FelixRe0
  • docs: update connect example to avoid deprecation warnings #​9332 moander

v5.10.0

Compare Source

===================

  • feat: upgrade to MongoDB driver 3.6 for full MongoDB 4.4 support
  • feat(connection): add Connection#transaction() helper that handles resetting Mongoose document state if the transaction fails #​8380
  • feat(connection): make transaction() helper reset array atomics after failed transaction
  • feat(schema+model): add optimisticConcurrency option to use OCC for save() #​9001 #​5424
  • feat(aggregate): add Aggregate#search() for Atlas Text Search #​9115
  • feat(mongoose): add support for setting setDefaultsOnInsert as a global option #​9036 AbdelrahmanHafez
  • feat(mongoose): add support for setting returnOriginal as a global option #​9189 #​9183 AbdelrahmanHafez
  • feat(mongoose): allow global option mongoose.set('strictQuery', true) #​9016 AbdelrahmanHafez
  • feat(document): add Document#getChanges #​9097 AbdelrahmanHafez
  • feat(document): support defaults option to disable adding defaults to a single document #​8271
  • feat(SingleNestedPath+DocumentArray): add static set() function for global options, support setting _id globally #​8883
  • feat(query): handle casting $or when each clause contains a different discriminator key #​9018
  • feat(query): add overwriteDiscriminatorKey option that allows changing the discriminator key in findOneAndUpdate(), updateOne(), etc. #​6087
  • fix(connection): make calling mongoose.connect() while already connected a no-op #​9203
  • feat(connection): add getClient() and setClient() function for interacting with a connection's underlying MongoClient instance #​9164
  • feat(document+populate): add parent() function that allows you to get the parent document for populated docs #​8092
  • feat(document): add useProjection option to toObject() and toJSON() for hiding deselected fields on newly created documents #​9118

v5.9.29

Compare Source

===================

  • fix(document): support setting nested path to itself when it has nested subpaths #​9313
  • fix(model): make syncIndexes() report error if it can't create an index #​9303
  • fix: handle auth error when Atlas username is incorrect #​9300

v5.9.28

Compare Source

===================

  • fix(connection): consistently stop buffering when "reconnected" is emitted #​9295
  • fix(error): ensure name and message show up on individual ValidatorErrors when calling JSON.stringify() on a ValidationError #​9296
  • fix(document): keeps manually populated paths when setting a nested path to itself #​9293
  • fix(document): allow saving after setting document array to itself #​9266
  • fix(schema): handle match schema validator with /g flag #​9287
  • docs(guide): refactor transactions examples to async/await #​9204

v5.9.27

Compare Source

===================

  • fix: upgrade mongodb driver -> 3.5.10 AbdelrahmanHafez
  • docs(transactions): make transactions docs use async/await for readability #​9204

v5.9.26

Compare Source

===================

  • fix(document): allow unsetting boolean field by setting the field to undefined #​9275
  • fix(document): throw error when overwriting a single nested subdoc changes an immutable path within the subdoc #​9281
  • fix(timestamps): apply timestamps to bulkWrite() updates when not using $set #​9268
  • fix(browser): upgrade babel to v7 to work around an issue with extends Error #​9273
  • fix: make subdocument's invalidate() methods have the same return value as top-level document #​9271
  • docs(model): make create() docs use async/await, and add another warning about how create() with options requires array syntax #​9280
  • docs(connections): clarify that Mongoose can emit 'connected' when reconnecting after losing connectivity #​9240
  • docs(populate): clarify that you can't filter based on foreign document properties when populating #​9279
  • docs(document+model): clarify how validateModifiedOnly option works #​9263
  • docs: remove extra poolSize option in comment #​9270 shahvicky
  • docs: point bulkWrite() link to mongoose docs instead of localhost #​9284

v5.9.25

Compare Source

===================

  • fix(discriminator): allow passing a compiled model's schema as a parameter to discriminator() #​9238
  • fix(connection): throw more readable error when querying db before initial connection when bufferCommands = false #​9239
  • fix(indexes): don't unnecessarily drop text indexes when running syncIndexes() #​9225
  • fix: make Boolean _castNullish respect omitUndefined #​9242 ehpc
  • fix(populate): populate single nested discriminator underneath doc array when populated docs have different model but same id #​9244
  • docs(mongoose): correct formatting typo #​9247 JNa0

v5.9.24

Compare Source

===================

  • fix(connection): respect connection-level bufferCommands option if mongoose.connect() is called after mongoose.model() #​9179
  • fix(document): clear out priorDoc after overwriting single nested subdoc so changes after overwrite get persisted correctly #​9208
  • fix(connection): dont overwrite user-specified bufferMaxEntries when setting bufferCommands #​9218
  • fix(model): allow passing projection to Model.hydrate() #​9209
  • fix(schema+document): support adding null to schema boolean's convertToFalse set #​9223
  • docs(model): make find and findOne() examples use async/await and clarify find({}) is find all #​9210

v5.9.23

Compare Source

===================

  • fix(model): fix syncIndexes() error when db index has a collation but Mongoose index does not #​9224 clhuang
  • fix(array): only cast array to proper depth if it contains an non-array value #​9217 #​9215 cyrilgandon
  • docs(schematype): document the transform option #​9211
  • docs(mongoose): fix typo #​9212 JNa0

v5.9.22

Compare Source

===================

  • fix(schema): treat { type: mongoose.Schema.Types.Array } as equivalent to { type: Array } #​9194
  • fix: revert fix for #​9107 to avoid issues when calling connect() multiple times #​9167
  • fix(update): respect storeSubdocValidationError option with update validators #​9172
  • fix: upgrade to safe-buffer 5.2 #​9198
  • docs: add a note about SSL validation to migration guide #​9147
  • docs(schemas): fix inconsistent header #​9196 samtsai15

v5.9.21

Compare Source

===================

  • fix: propagate typeKey option to implicitly created schemas from typePojoToMixed #​9185 joaoritter
  • fix(populate): handle embedded discriminator refPath with multiple documents #​9153
  • fix(populate): handle deselected foreign field with perDocumentLimit and multiple documents #​9175
  • fix(document): disallow transform functions that return promises #​9176 #​9163 AbdelrahmanHafez
  • fix(document): use strict equality when checking mixed paths for modifications #​9165
  • docs: add target="_blank" to all edit links #​9058

v5.9.20

Compare Source

===================

  • fix(populate): handle populating primitive array under document array discriminator #​9148
  • fix(connection): make sure to close previous connection when calling openUri() on an already open connection #​9107
  • fix(model): fix conflicting $setOnInsert default values with update values in bulkWrite #​9160 #​9157 AbdelrahmanHafez
  • docs(validation): add note about validateBeforeSave and invalidate #​9144 dandv
  • docs: specify the array field syntax for invalidate #​9137 dandv
  • docs: fix several typos and broken references #​9024 AbdelrahmanHafez
  • docs: fix minor typo #​9143 dandv

v5.9.19

Compare Source

===================

  • fix: upgrade mongodb driver -> 3.5.9 #​9124 AbdelrahmanHafez
  • fix: copy required validator on single nested subdoc correctly when calling Schema#clone() #​8819
  • fix(discriminator): handle tiedValue when casting update on nested paths #​9108
  • fix(model): allow empty arrays for bulkWrite #​9132 #​9131 AbdelrahmanHafez
  • fix(schema): correctly set partialFilterExpression for nested schema indexes #​9091
  • fix(castArrayFilters): handle casting on all fields of array filter #​9122 lafeuil
  • fix(update): handle nested path createdAt when overwriting parent path #​9105
  • docs(subdocs): add some notes on the difference between single nested subdocs and nested paths #​9085
  • docs(subdocs): improve docs on typePojoToMixed #​9085
  • docs: add note about connections in globalSetup with Jest #​9063
  • docs: add schema and how to set default sub-schema to schematype options #​9111 dfle
  • docs(index): use const instead of var in examples #​9125 dmcgrouther
  • docs: corrected markdown typo #​9117

v5.9.18

Compare Source

===================

  • fix: improve atlas error in the event of incorrect password #​9095
  • docs: add edit link for all docs pages #​9058
  • fix(document): allow accessing $locals when initializing document #​9099 #​9098 AbdelrahmanHafez
  • fix(query): make setDefaultsOnInsert a mongoose option so it doesn't end up in debug output #​9086
  • docs(connection+index): add serverSelectionTimeoutMS and heartbeatFrequencyMS to connect() and openUri() options #​9071
  • docs(geojson): add notes about geojson 2dsphere indexes #​9044
  • docs: make active page bold in navbar #​9062
  • docs: correct a typo in a code snippet #​9089 Elvis-Sarfo

v5.9.17

Compare Source

===================

v5.9.16

Compare Source

===================

  • perf(error): convert errors to classes extending Error for lower CPU overhead #​9021 zbjornson
  • fix(query): throw CastError if filter $and, $or, $nor contain non-object values #​8948
  • fix(bulkwrite): cast filter & update to schema after applying timestamps #​9030 AbdelrahmanHafez
  • fix(document): don't overwrite defaults with undefined keys in nested documents #​9039 vitorhnn
  • fix(discriminator): remove discriminator schema nested paths pulled from base schema underneath a mixed path in discriminator schema #​9042
  • fix(model): make syncIndexes() not drop index if all user-specified collation options are the same #​8994
  • fix(document): make internal $__.scope property a symbol instead to work around a bug with fast-safe-stringify #​8955
  • docs: model.findByIdAndUpdate() 'new' param fix #​9026 dandv

v5.9.15

Compare Source

===================

  • fix(schema): treat creating dotted path with no parent as creating a nested path #​9020
  • fix(documentarray): make sure you can call unshift() after map() #​9012 philippejer
  • fix(model): cast bulkwrite according to discriminator schema if discriminator key is present #​8982 AbdelrahmanHafez
  • fix(schema): remove db from reserved keywords #​8940
  • fix(populate): treat populating a doc array that doesn't have a ref as a no-op #​8946
  • fix(timestamps): set createdAt and updatedAt on doubly nested subdocs when upserting #​8894
  • fix(model): allow POJOs as schemas for model.discriminator(...) #​8991 AbdelrahmanHafez
  • fix(model): report insertedDocs on insertMany() errors #​8938
  • fix(model): ensure consistent writeErrors property on insertMany error with ordered: false, even if only one op failed #​8938
  • docs: add anchor tag to strictQuery and strict #​9014 AbdelrahmanHafez
  • docs(faq): remove faq ipv6 #​9004
  • docs: add note about throwing error only after validation and fix broken reference to api/CastError #​8993 AbdelrahmanHafez
  • docs: fix typos in documents.pug #​9005 dandv

v5.9.14

Compare Source

===================

v5.9.13

Compare Source

===================

  • fix(schema): mark correct path as modified when setting a path underneath a nested array of documents #​8926
  • fix(query): Query#select({ field: false }) should not overwrite schema selection options #​8929 #​8923
  • fix(update): handle immutable properties are ignored in bulk upserts #​8952 philippejer
  • docs(browser): add back sample webpack config #​8890
  • docs(faq): fix broken reference in limit vs perDocumentLimit #​8937

v5.9.12

Compare Source

===================

  • fix(document): report cast error on array elements with array index instead of just being a cast error for the whole array #​8888
  • fix(connection): throw more helpful error in case of IP whitelisting issue with Atlas #​8846
  • fix(schema): throw error on schema with reserved key with type of object #​8869 AbdelrahmanHafez
  • fix(connection): inherit config for useDB from default connection #​8267 AbdelrahmanHafez
  • fix(query): set mongodb options for distinct() #​8906 clhuang
  • fix(schema): allow adding descending indexes on schema #​8895 AbdelrahmanHafez
  • fix(document): set defaults if setting nested path to empty object with minimize: false #​8829
  • fix(populate): check discriminator existence before accessing schema in getModelsMapForPopulate #​8837 AbdelrahmanHafez
  • docs: fix broken references to Mongoose#Document API, and prefer mongoose.model(...) over Document#model(...) #​8914 AbdelrahmanHafez
  • docs(model): adds options.limit to Model.insertMany(...) #​8864 AbdelrahmanHafez
  • docs: add flattenMaps and aliases to Document#toObject() #​8901 AbdelrahmanHafez
  • docs(model): add options.overwrite to findOneAndUpdate #​8865 AbdelrahmanHafez
  • docs(populate+faq): separate limit-vs-perDocumentLimit into its own section, add FAQ for populate and limit #​8917 AbdelrahmanHafez

v5.9.11

Compare Source

===================

v5.9.10

Compare Source

===================

v5.9.9

Compare Source

==================

  • fix(model): make Model.bulkWrite accept strict option #​8782 #​8788 AbdelrahmanHafez
  • fix(virtual): make populated virtual getter return value when it is passed in #​8775 #​8774 makinde
  • fix(document): handle validating document array whose docs contain maps and nested paths #​8767
  • fix(document): skip discriminator key when overwriting a document #​8765
  • fix(populate): support clone option with lean #​8761 #​8760
  • docs(transactions): use endSession() in all transactions examples #​8741
  • docs(queries): expand streaming section to include async iterators, cursor timeouts, and sesssion idle timeouts #​8720
  • docs(model+query+findoneandupdate): add docs for returnOriginal option #​8766
  • docs(model): fix punctuation #​8788 dandv
  • docs: fix typos #​8780 #​8799 dandv

v5.9.7

Compare Source

==================

  • fix(map): avoid infinite loop when setting a map of documents to a document copied using spread operator #​8722
  • fix(query): clean stack trace for filter cast errors so they include the calling file #​8691
  • fix(model): make bulkWrite updates error if strict and upsert are set and filter contains a non-schema path #​8698
  • fix(cast): make internal castToNumber() allow undefined #​8725 p3x-robot

v5.9.6

Compare Source

==================

  • fix(document): allow saving document with nested document array after setting nestedArr.0 #​8689
  • docs(connections): expand section about multiple connections to describe patterns for exporting schemas #​8679
  • docs(populate): add note about execPopulate() to "populate an existing document" section #​8671 #​8275
  • docs: fix broken links #​8690 AbdelrahmanHafez
  • docs(guide): fix typos #​8704 MateRyze
  • docs(guide): fix minor typo #​8683 pkellz

v5.9.5

Compare Source

==================

  • fix: upgrade mongodb driver -> 3.5.5 #​8667 #​8664 AbdelrahmanHafez
  • fix(connection): emit "disconnected" after losing connectivity to every member of a replica set with useUnifiedTopology: true #​8643
  • fix(array): allow calling slice() after push() #​8668 #​8655 AbdelrahmanHafez
  • fix(map): avoid marking map as modified if setting key to the same value #​8652
  • fix(updateValidators): don't run Mixed update validator on dotted path underneath mixed type #​8659
  • fix(populate): ensure top-level limit applies if one document being populated has more than limit results #​8657
  • fix(populate): throw error if both limit and perDocumentLimit are set #​8661 #​8658 AbdelrahmanHafez
  • docs(findOneAndUpdate): add a section about the rawResult option #​8662
  • docs(guide): add section about loadClass() #​8623
  • docs(query): improve Query#populate() example to clarify that sort doesn't affect the original result's order #​8647

v5.9.4

Compare Source

==================

  • fix(document): allow new Model(doc) to set immutable properties when doc is a mongoose document #​8642
  • fix(array): make sure you can call unshift() after slice() #​8482
  • fix(schema): propagate typePojoToMixed to implicitly created arrays #​8627
  • fix(schema): also propagate typePojoToMixed option to schemas implicitly created because of typePojoToMixed #​8627
  • fix(model): support passing background option to syncIndexes() #​8645
  • docs(schema): add a section about the _id path in schemas #​8625
  • docs(virtualtype+populate): document using match with virtual populate #​8616
  • docs(guide): fix typo #​8648 sauzy34

v5.9.3

Compare Source

==================

  • fix: upgrade mongodb driver -> 3.5.4 #​8620
  • fix(document): set subpath defaults when overwriting single nested subdoc #​8603
  • fix(document): make calling validate() with single nested subpath only validate that single nested subpath #​8626
  • fix(browser): make mongoose.model() return a class in the browser to allow hydrating populated data in the browser #​8605
  • fix(model): make syncIndexes() and cleanIndexes() drop compound indexes with _id that aren't in the schema #​8559
  • docs(connection+index): add warnings to explain that bufferMaxEntries does nothing with useUnifiedTopology #​8604
  • docs(document+model+query): add options.timestamps parameter docs to findOneAndUpdate() and findByIdAndUpdate() #​8619
  • docs: fix out of date links to tumblr #​8599

v5.9.2

Compare Source

===================

  • fix(document): support setting nested path to itself when it has nested subpaths #​9313
  • fix(model): make syncIndexes() report error if it can't create an index #​9303
  • fix: handle auth error when Atlas username is incorrect #​9300

v5.9.1

Compare Source

===================

  • fix: upgrade mongodb driver -> 3.5.9 #​9124 AbdelrahmanHafez
  • fix: copy required validator on single nested subdoc correctly when calling Schema#clone() #​8819
  • fix(discriminator): handle tiedValue when casting update on nested paths #​9108
  • fix(model): allow empty arrays for bulkWrite #​9132 #​9131 AbdelrahmanHafez
  • fix(schema): correctly set partialFilterExpression for nested schema indexes #​9091
  • fix(castArrayFilters): handle casting on all fields of array filter #​9122 lafeuil
  • fix(update): handle nested path createdAt when overwriting parent path #​9105
  • docs(subdocs): add some notes on the difference between single nested subdocs and nested paths #​9085
  • docs(subdocs): improve docs on typePojoToMixed #​9085
  • docs: add note about connections in globalSetup with Jest #​9063
  • docs: add schema and how to set default sub-schema to schematype options #​9111 dfle
  • docs(index): use const instead of var in examples #​9125 dmcgrouther
  • docs: corrected markdown typo #​9117

v5.9.0

Compare Source

==================

  • fix: upgrade to MongoDB driver 3.5 #​8520 #​8563
  • feat(schematype): support setting default options for schema type (trim on all strings, etc.) #​8487
  • feat(populate): add perDocumentLimit option that limits per document in find() result, rather than across all documents #​7318
  • feat(schematype): enable setting transform option on individual schematypes #​8403
  • feat(timestamps): allow setting currentTime option for setting custom function to get the current time #​3957
  • feat(connection): add Connection#watch() to watch for changes on an entire database #​8425
  • feat(document): add Document#$op property to make it easier to tell what operation is running in middleware #​8439
  • feat(populate): support limit as top-level populate option #​8445

v5.8.13

Compare Source

===================

  • fix(populate): use safe get to avoid crash if schematype doesn't have options #​8586

v5.8.12

Compare Source

===================

  • fix(query): correctly cast dbref $id with $elemMatch #​8577
  • fix(populate): handle populating when some embedded discriminator schemas have refPath but none of the subdocs have refPath #​8553
  • docs: add useUnifiedTopology to homepage example #​8558 AbdelrahmanHafez
  • refactor(utils): moving promiseOrCallback to helpers/promiseOrCallback #​8573 hugosenari

v5.8.11

[Compa


Renovate configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

♻️ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by WhiteSource Renovate. View repository job log here.

@codecov-io
Copy link

codecov-io commented Dec 20, 2019

Codecov Report

❗ No coverage uploaded for pull request base (master@349cfdf). Click here to learn what that means.
The diff coverage is n/a.

Impacted file tree graph

@@            Coverage Diff            @@
##             master     #316   +/-   ##
=========================================
  Coverage          ?   10.07%           
=========================================
  Files             ?      117           
  Lines             ?     1588           
  Branches          ?      143           
=========================================
  Hits              ?      160           
  Misses            ?     1313           
  Partials          ?      115           
Impacted Files Coverage Δ
src/app/errors/index.js 0.00% <0.00%> (ø)
src/traders/get-trader.js 0.00% <0.00%> (ø)
src/relayers/get-relayer-by-slug.js 0.00% <0.00%> (ø)
src/relayers/search-relayers.js 0.00% <0.00%> (ø)
src/model/address-metric.js 0.00% <0.00%> (ø)
src/metrics/get-network-metrics.js 0.00% <0.00%> (ø)
src/app/initialise.js 0.00% <0.00%> (ø)
src/app/middleware/metric-granularity.js 0.00% <0.00%> (ø)
src/tokens/get-token-prices.js 0.00% <0.00%> (ø)
src/app/routes/v1/util/transform-fill.js 100.00% <0.00%> (ø)
... and 107 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 349cfdf...fe6e740. Read the comment docs.

@renovate renovate bot force-pushed the renovate/mongoose-5.x branch from 947bf0c to 7917d16 Compare December 23, 2019 19:02
@renovate renovate bot changed the title Update dependency mongoose to v5.8.2 Update dependency mongoose to v5.8.3 Dec 23, 2019
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch 4 times, most recently from dd7bf35 to 2d6d865 Compare December 28, 2019 12:27
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch from 2d6d865 to f4be1d5 Compare January 2, 2020 21:45
@renovate renovate bot changed the title Update dependency mongoose to v5.8.3 Update dependency mongoose to v5.8.4 Jan 2, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch from f4be1d5 to b9879f4 Compare January 6, 2020 19:52
@renovate renovate bot changed the title Update dependency mongoose to v5.8.4 Update dependency mongoose to v5.8.5 Jan 6, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch from b9879f4 to 09f7426 Compare January 8, 2020 19:57
@renovate renovate bot changed the title Update dependency mongoose to v5.8.5 Update dependency mongoose to v5.8.6 Jan 8, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch 2 times, most recently from c240b9e to 0ba435c Compare January 10, 2020 22:13
@renovate renovate bot changed the title Update dependency mongoose to v5.8.6 Update dependency mongoose to v5.8.7 Jan 10, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch 3 times, most recently from b7f6a0c to 57dabcf Compare January 17, 2020 21:48
@renovate renovate bot changed the title Update dependency mongoose to v5.8.7 Update dependency mongoose to v5.8.9 Jan 17, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch 3 times, most recently from 4403cab to 397c212 Compare January 27, 2020 18:04
@renovate renovate bot changed the title Update dependency mongoose to v5.8.9 Update dependency mongoose to v5.8.10 Jan 27, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch 2 times, most recently from 8ee6208 to e57ef35 Compare January 31, 2020 22:14
@renovate renovate bot changed the title Update dependency mongoose to v5.8.10 Update dependency mongoose to v5.8.11 Jan 31, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch 3 times, most recently from 7a99c4b to 5c800e9 Compare February 2, 2020 21:53
@renovate renovate bot changed the title Update dependency mongoose to v5.10.2 Update dependency mongoose to v5.10.3 Sep 3, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch 2 times, most recently from 857bd00 to 3eecd2b Compare September 9, 2020 16:08
@renovate renovate bot changed the title Update dependency mongoose to v5.10.3 Update dependency mongoose to v5.10.4 Sep 9, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch from 3eecd2b to 84d5c80 Compare September 11, 2020 17:34
@renovate renovate bot changed the title Update dependency mongoose to v5.10.4 Update dependency mongoose to v5.10.5 Sep 11, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch 2 times, most recently from 8ee0818 to 6fbc897 Compare September 18, 2020 20:50
@renovate renovate bot changed the title Update dependency mongoose to v5.10.5 Update dependency mongoose to v5.10.6 Sep 18, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch from 6fbc897 to a4fb356 Compare September 24, 2020 21:29
@renovate renovate bot changed the title Update dependency mongoose to v5.10.6 Update dependency mongoose to v5.10.7 Sep 24, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch 2 times, most recently from ef92113 to eea7415 Compare October 4, 2020 10:23
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch from eea7415 to e85d10f Compare October 5, 2020 21:44
@renovate renovate bot changed the title Update dependency mongoose to v5.10.7 Update dependency mongoose to v5.10.8 Oct 5, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch from e85d10f to 4ec2583 Compare October 9, 2020 16:52
@renovate renovate bot changed the title Update dependency mongoose to v5.10.8 Update dependency mongoose to v5.10.9 Oct 9, 2020
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch from 4ec2583 to b42bd3d Compare October 20, 2020 15:44
@codecov-io
Copy link

codecov-io commented Oct 20, 2020

Codecov Report

Merging #316 into master will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@          Coverage Diff           @@
##           master    #316   +/-   ##
======================================
  Coverage    7.69%   7.69%           
======================================
  Files         154     154           
  Lines        2326    2326           
  Branches      197     197           
======================================
  Hits          179     179           
  Misses       1977    1977           
  Partials      170     170           

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 9791995...177d9bc. Read the comment docs.

@renovate renovate bot force-pushed the renovate/mongoose-5.x branch 9 times, most recently from 177d9bc to 7cb17cb Compare October 23, 2020 12:54
@renovate renovate bot force-pushed the renovate/mongoose-5.x branch from 7cb17cb to 0570411 Compare October 23, 2020 13:53
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants