Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency mongoose to v5 #7

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 5, 2018

This PR contains the following updates:

Package Type Update Change References
mongoose dependencies major ^4.7.7 -> ^5.0.0 homepage, source

Release Notes

Automattic/mongoose

v5.4.2

Compare Source

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

  • fix(document): ensure Document#updateOne() returns a query but still calls hooks #​7366
  • fix(query): allow explicitly projecting out populated paths that are automatically projected in #​7383
  • fix(document): support setting flattenMaps option for toObject() and toJSON() at schema level #​7274
  • fix(query): handle merging objectids with .where() #​7360
  • fix(schema): copy .base when cloning #​7377
  • docs: remove links to plugins.mongoosejs.com in favor of plugins.mongoosejs.io #​7364

v5.4.1

Compare Source

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

  • fix(document): ensure doc array defaults get casted #​7337
  • fix(document): make save() not crash if nested doc has a property 'get' #​7316
  • fix(schema): allow using Schema.Types.Map as well as Map to declare a map type #​7305
  • fix(map): make set after init mark correct path as modified #​7321
  • fix(mongoose): don't recompile model if same collection and schema passed in to mongoose.model() #​5767
  • fix(schema): improve error message when type is invalid #​7303
  • fix(schema): add populated to reserved property names #​7317
  • fix(model): don't run built-in middleware on custom methods and ensure timestamp hooks don't run if children don't have timestamps set #​7342
  • docs(schematypes): clarify that you can add arbitrary options to a SchemaType #​7340
  • docs(mongoose): clarify that passing same name+schema to mongoose.model() returns the model #​5767
  • docs(index): add useNewUrlParser to example #​7368 JIBIN-P
  • docs(connection): add useNewUrlParser to examples #​7362 JIBIN-P
  • docs(discriminators): add back missing example from 'recursive embedded discriminators section' #​7349
  • docs(schema): improve docs for string and boolean cast() #​7351

v5.4.0

Compare Source

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

  • feat(schematype): add SchemaType.get(), custom getters across all instances of a schematype #​6912
  • feat(schematype): add SchemaType.cast(), configure casting for individual schematypes #​7045
  • feat(schematype): add SchemaType.checkRequired(), configure what values pass required check for a schematype #​7186 #​7150
  • feat(model): add Model.findOneAndReplace() #​7162
  • feat(model): add Model.events emitter that emits all error's that occur with a given model #​7125
  • feat(populate): add count option to populate virtuals, support returning # of populated docs instead of docs themselves #​4469
  • feat(aggregate): add .catch() helper to make aggregations full thenables #​7267
  • feat(query): add hooks for deleteOne() and deleteMany() #​7195
  • feat(document): add hooks for updateOne() #​7133
  • feat(query): add Query#map() for synchronously transforming results before post middleware runs #​7142
  • feat(schema): support passing an array of objects or schemas to Schema constructor #​7218
  • feat(populate): add clone option to ensure multiple docs don't share the same populated doc #​3258
  • feat(query): add Query#maxTimeMS() helper #​7254
  • fix(query): deprecate broken Aggregate#addCursorFlag() #​7120
  • docs(populate): fix incorrect example #​7335 zcfan
  • docs(middleware): add findOneAndDelete to middleware list #​7327 danielkesselberg

v5.3.16

Compare Source

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

  • fix(document): handle __proto__ in queries #​7290
  • fix(document): use Array.isArray() instead of checking constructor name for arrays #​7290
  • docs(populate): add section about what happens when no document matches #​7279
  • fix(mongoose): avoid crash on import mongoose, {Schema} from 'mongoose' #​5648

v5.3.15

Compare Source

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

  • fix(query): handle orFail() with findOneAndUpdate() and findOneAndDelete() #​7297 #​7280
  • fix(document): make save() succeed if strict: false with a collection property #​7276
  • fix(document): add flattenMaps option for toObject() #​7274
  • docs(document): document flattenMaps option #​7274
  • fix(populate): support populating individual subdoc path in document array #​7273
  • fix(populate): ensure model option overrides refPath #​7273
  • fix(map): don't call subdoc setters on init #​7272
  • fix(document): use internal get() helper instead of lodash.get to support null projection param #​7271
  • fix(document): continue running validateSync() for all elements in doc array after first error #​6746

v5.3.14

Compare Source

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

  • docs(api): use openUri() instead of legacy open() #​7277 artemjackson
  • fix(document): don't mark date underneath single nested as modified if setting to string #​7264
  • fix(update): set timestamps on subdocs if not using $set with no overwrite #​7261
  • fix(document): use symbol instead of __parent so user code doesn't conflict #​7230
  • fix(mongoose): allow using mongoose.model() without context, like import {model} from 'mongoose' #​3768

v5.3.13

Compare Source

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

  • fix: bump mongodb driver -> 3.1.10 #​7266
  • fix(populate): support setting a model as a ref #​7253
  • docs(schematype): add ref() function to document what is a valid ref path in a schematype #​7253
  • fix(array): clean modified subpaths when calling splice() #​7249
  • docs(compatibility): don't show Mongoose 4.11 as compatible with MongoDB 3.6 re: MongoDB's official compatibility table #​7248 a-harrison
  • fix(document): report correct validation error if doc array set to primitive #​7242
  • fix(mongoose): print warning when including server-side lib with jest jsdom environment #​7240

v5.3.12

Compare Source

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

  • docs(compatibility): don't show Mongoose 4.11 as compatible with MongoDB 3.6 re: MongoDB's official compatibility table #​7238 a-harrison
  • fix(populate): use instanceof rather than class name for comparison #​7237 ivanseidel
  • docs(api): make options show up as a nested list #​7232
  • fix(document): don't mark array as modified on init if doc array has default #​7227
  • docs(api): link to bulk write result object in bulkWrite() docs #​7225

v5.3.11

Compare Source

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

  • fix(model): make parent pointers non-enumerable so they don't crash JSON.stringify() #​7220
  • fix(document): allow saving docs with nested props with '.' using checkKeys: false #​7144
  • docs(lambda): use async/await with lambda example #​7019

v5.3.10

Compare Source

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

  • fix(discriminator): support reusing a schema for multiple discriminators #​7200
  • fix(cursor): handle lean(false) correctly with query cursors #​7197
  • fix(document): avoid manual populate if ref not set #​7193
  • fix(schema): handle schema without .base for browser build #​7170
  • docs: add further reading section

v5.3.9

Compare Source

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

  • fix: upgrade bson dep -> 1.1.0 to match mongodb-core #​7213 NewEraCracker
  • docs(api): fix broken anchor link #​7210 gfranco93
  • fix: don't set parent timestamps because a child has timestamps set to false #​7203 #​7202 lineus
  • fix(document): run setter only once when doing .set() underneath a single nested subdoc #​7196
  • fix(document): surface errors in subdoc pre validate #​7187
  • fix(query): run default functions after hydrating the loaded document #​7182
  • fix(query): handle strictQuery: 'throw' with nested path correctly #​7178
  • fix(update): update timestamps on replaceOne() #​7152
  • docs(transactions): add example of aborting a transaction #​7113

v5.3.8

Compare Source

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

  • fix: bump mongodb driver -> 3.1.8 to fix connecting to +srv uri with no credentials #​7191 #​6881 lineus
  • fix(document): sets defaults correctly in child docs with projection #​7159
  • fix(mongoose): handle setting custom type on a separate mongoose global #​7158
  • fix: add unnecessary files to npmignore #​7157
  • fix(model): set session when creating new subdoc #​7104

v5.3.7

Compare Source

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

  • fix(browser): fix buffer usage in browser build #​7184 #​7173 lineus
  • fix(document): make depopulate() work on populate virtuals and unpopulated docs #​7180 #​6075 lineus
  • fix(document): only pass properties as 2nd arg to custom validator if propsParameter set #​7145
  • docs(schematypes): add note about nested paths with type getting converted to mixed #​7143
  • fix(update): run update validators on nested doc when $set on an array #​7135
  • fix(update): copy exact errors from array subdoc validation into top-level update validator error #​7135

v5.3.6

Compare Source

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

  • fix(cursor): fix undefined transforms error

v5.3.5

Compare Source

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

  • fix(model): make sure versionKey on replaceOne() always gets set at top level to prevent cast errors #​7138
  • fix(cursor): handle non-boolean lean option in eachAsync() #​7137
  • fix(update): correct cast update that overwrites a map #​7111
  • fix(schema): handle arrays of mixed correctly #​7109
  • fix(query): use correct path when getting schema for child timestamp update #​7106
  • fix(document): make $session() propagate sessions to child docs #​7104
  • fix(document): handle user setting schema.options.strict = 'throw' #​7103
  • fix(types): use core Node.js buffer prototype instead of safe-buffer because safe-buffer is broken for Node.js 4.x #​7102
  • fix(document): handle setting single doc with refPath to document #​7070
  • fix(model): handle array filters when updating timestamps for subdocs #​7032

v5.3.4

Compare Source

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

  • fix(schema): make add() and remove() return the schema instance #​7131 lineus
  • fix(query): don't require passing model to cast() #​7118
  • fix: support useFindAndModify as a connection-level option #​7110 lineus
  • fix(populate): handle plus path projection with virtual populate #​7050
  • fix(schema): allow using ObjectId type as schema path type #​7049
  • docs(schematypes): elaborate on how schematypes relate to types #​7049
  • docs(deprecations): add note about gridstore deprecation #​6922
  • docs(guide): add storeSubdocValidationError option to guide #​6802

v5.3.3

Compare Source

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

  • fix(document): enable storing mongoose validation error in MongoDB by removing $isValidatorError property #​7127
  • docs(api): clarify that aggregate triggers aggregate middleware #​7126 lineus
  • fix(connection): handle Model.init() when an index exists on schema + autoCreate == true #​7122 jesstelford
  • docs(middleware): explain how to switch between document and query hooks for remove() #​7093
  • docs(api): clean up encoding issues in SchemaType.prototype.validate docs #​7091
  • docs(schema): add schema types to api docs and update links on schematypes page #​7080 #​7076 lineus
  • docs(model): expand model constructor docs with examples and fields param #​7077
  • docs(aggregate): remove incorrect description of noCursorTimeout and add description of aggregate options #​7056
  • docs: re-add array type to API docs #​7027
  • docs(connections): add note about members.host errors due to bad host names in replica set #​7006

v5.3.2

Compare Source

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

  • fix(query): make sure to return correct result from orFail() #​7101 #​7099 gsandorx
  • fix(schema): handle { timestamps: false } correctly #​7088 #​7074 lineus
  • docs: fix markdown in options.useCreateIndex documentation #​7085 Cyral
  • docs(schema): correct field name in timestamps example #​7082 kizmo04
  • docs(migrating_to_5): correct markdown syntax #​7078 gwuah
  • fix(connection): add useFindAndModify option in connect #​7059 NormanPerrin
  • fix(document): dont mark single nested path as modified if setting to the same value #​7048
  • fix(populate): use WeakMap to track lean populate models rather than leanPopulateSymbol #​7026
  • fix(mongoose): avoid unhandled rejection when mongoose.connect() errors with a callback #​6997
  • fix(mongoose): isolate Schema.Types between custom Mongoose instances #​6933

v5.3.1

Compare Source

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

  • fix(document): handle __proto__ in queries #​7290
  • fix(document): use Array.isArray() instead of checking constructor name for arrays #​7290
  • docs(populate): add section about what happens when no document matches #​7279
  • fix(mongoose): avoid crash on import mongoose, {Schema} from 'mongoose' #​5648

v5.3.0

Compare Source

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

  • feat(mongoose): support mongoose.set('debug', WritableStream) so you can pipe debug to stderr, file, or network #​7018
  • feat(query): add useNestedStrict option #​6973 #​5144 lineus
  • feat(query): add getPopulatedPaths helper to Query.prototype #​6970 #​6677 lineus
  • feat(model): add createCollection() helper to make transactions easier #​6948 #​6711 Fonger
  • feat(schema): add ability to do schema.add(otherSchema) to merge hooks, virtuals, etc. #​6897
  • feat(query): add orFail() helper that throws an error if no documents match filter #​6841
  • feat(mongoose): support global toObject and toJSON #​6815
  • feat(connection): add deleteModel() to remove a model from a connection #​6813
  • feat(mongoose): add top-level mongoose.ObjectId, mongoose.Decimal128 for easier schema declarations #​6760
  • feat(aggregate+query): support for/await/of (async iterators) #​6737
  • feat(mongoose): add global now() function that you can stub for testing timestamps #​6728
  • feat(schema): support schema.pre(RegExp, fn) and schema.post(RegExp, fn) #​6680
  • docs(query): add better docs for the mongooseOptions() function #​6677
  • feat(mongoose): add support for global strict object #​6858
  • feat(schema+mongoose): add autoCreate option to automatically create collections #​6489
  • feat(update): update timestamps on nested subdocs when using $set #​4412
  • feat(query+schema): add query remove hook and ability to switch between query remove and document remove middleware #​3054

v5.2.18

Compare Source

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

  • docs(migrating_to_5): add note about overwriting filter properties #​7030
  • fix(query): correctly handle select('+c') if c is not in schema #​7017
  • fix(document): check path exists before checking for required #​6974
  • fix(document): retain user-defined key order on initial set with nested docs #​6944
  • fix(populate): handle multiple localFields + foreignFields using localField: function() {} syntax #​5704

v5.2.17

Compare Source

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

  • docs(guide): clarify that Mongoose only increments versionKey on save() and add a workaround for findOneAndUpdate() #​7038
  • fix(model): correctly handle createIndex option to ensureIndexes() #​7036 #​6922 lineus
  • docs(migrating_to_5): add a note about changing debug output from stderr to stdout #​7034 #​7018 lineus
  • fix(query): add setUpdate() to allow overwriting update without changing op #​7024 #​7012 lineus
  • fix(update): find top-level version key even if there are `This PR contains the following updates:
Package Type Update Change References
mongoose dependencies major ^4.7.7 -> ^5.0.0 homepage, source

operators in the update #​7003

  • docs(model+query): explain which operators count() supports that countDocuments() doesn't #​6911

v5.2.16

Compare Source

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

  • fix(index): use dynamic require only when needed for better webpack support #​7014 #​7010 jaydp17
  • fix(map): handle arrays of mixed maps #​6995
  • fix(populate): leave justOne as null if populating underneath a Mixed type #​6985
  • fix(populate): add justOne option to allow overriding any bugs with justOne #​6985
  • fix(query): add option to skip adding timestamps to an update #​6980
  • docs(model+schematype): improve docs about background indexes and init() #​6966
  • fix: bump mongodb -> 3.1.6 to allow connecting to srv url without credentials #​6955 #​6881 lineus
  • fix(connection): allow specifying useCreateIndex at the connection level, overrides global-level #​6922
  • fix(schema): throw a helpful error if setting ref to an invalid value #​6915

v5.2.15

Compare Source

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

  • fix(populate): handle virtual justOne correctly if it isn't set #​6988
  • fix(populate): consistently use lowercase model instead of Model so double-populating works with existing docs #​6978
  • fix(model): allow calling Model.init() again after calling dropDatabase() #​6967
  • fix(populate): find correct justOne when double-populating underneath an array #​6798
  • docs(webpack): make webpack docs use es2015 preset for correct libs and use acorn to test output is valid ES5 #​6740
  • fix(populate): add selectPopulatedPaths option to opt out of auto-adding populate()-ed fields to select() #​6546
  • fix(model): set timestamps on bulkWrite insertOne and replaceOne #​5708

v5.2.14

Compare Source

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

  • docs: fix wording on promise docs to not imply queries only return promises #​6983 #​6982 lineus
  • fix(map): throw TypeError if keys are not string #​6956
  • fix(document): ensure you can validate() a child doc #​6931
  • fix(populate): avoid cast error if refPath points to localFields with 2 different types #​6870
  • fix(populate): handle populating already-populated paths #​6839
  • fix(schematype): make ObjectIds handle refPaths when checking required #​6714
  • fix(model): set timestamps on bulkWrite() updates #​5708

v5.2.13

Compare Source

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

  • fix(map): throw TypeError if keys are not string #​6968 Fonger
  • fix(update): make array op casting work with strict:false and {} #​6962 #​6952 lineus
  • fix(document): add doc.deleteOne(), doc.updateOne(), doc.replaceOne() re: deprecation warnings #​6959 #​6940 lineus
  • docs(faq+schematypes): add note about map keys needing to be strings #​6957 #​6956 lineus
  • fix(schematype): remove unused if statement #​6950 #​6949 cacothi
  • docs: add /docs/deprecations.html for dealing with MongoDB driver deprecation warnings #​6922
  • fix(populate): handle refPath where first element in array has no refPath #​6913
  • fix(mongoose): allow setting useCreateIndex option after creating a model but before initial connection succeeds #​6890
  • fix(updateValidators): ensure $pull validators always get an array #​6889

v5.2.12

Compare Source

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

  • fix(document): disallow setting constructor and prototype if strict mode false

v5.2.11

Compare Source

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

  • fix(document): disallow setting proto if strict mode false
  • fix(document): run document middleware on docs embedded in maps #​6945 #​6938 Fonger
  • fix(query): make castForQuery return a CastError #​6943 #​6927 lineus
  • fix(query): use correct this scope when casting query with legacy 2dsphere pairs defined in schema #​6939 #​6937 Fonger
  • fix(document): avoid crash when calling get() on deeply nested subdocs #​6929 #​6925 jakemccloskey
  • fix(plugins): make saveSubdocs execute child post save hooks after the actual save #​6926
  • docs: add dbName to api docs for .connect() #​6923 p722
  • fix(populate): convert to array when schema specifies array, even if doc doesn't have an array #​6908
  • fix(populate): handle justOne virtual populate underneath array #​6867
  • fix(model): dont set versionKey on upsert if it is already $set #​5973

v5.2.10

Compare Source

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

  • fix: bump mongodb driver -> 3.1.4 #​6920 #​6903 #​6884 #​6799 #​6741 Fonger
  • fix(model): track session option for save() as the document's $session() #​6909
  • fix(query): add Query.getOptions() helper #​6907 Fonger
  • fix(document): ensure array atomics get cleared after save() #​6900
  • fix(aggregate): add missing redact and readConcern helpers #​6895 Fonger
  • fix: add global option mongoose.set('useCreateIndex', true) to avoid ensureIndex deprecation warning #​6890
  • fix(query): use projection option to avoid deprecation warnings #​6888 #​6880 Fonger
  • fix(query): use findOneAndReplace() internally if using overwrite: true with findOneAndUpdate() #​6888 Fonger
  • fix(document): ensure required cache gets cleared correctly between subsequent saves #​6892
  • fix(aggregate): support session chaining correctly #​6886 #​6885 Fonger
  • fix(query): use projection instead of fields internally for find() and findOne() to avoid deprecation warning #​6880
  • fix(populate): add getters option to opt in to calling getters on populate #​6844

v5.2.9

Compare Source

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

v5.2.8

Compare Source

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

  • docs: update execPopulate() code example #​6851 WJakub
  • fix(document): allow passing callback to execPopulate() #​6851
  • fix(populate): populate with undefined fields without error #​6848 #​6845 Fonger
  • docs(migrating_to_5): Add objectIdGetter option docs #​6842 jwalton
  • chore: run lint in parallel and only on Node.js v10 #​6836 Fonger
  • fix(populate): throw helpful error if refPath excluded in query #​6834
  • docs(migrating_to_5): add note about removing runSettersOnQuery #​6832
  • fix: use safe-buffer to avoid buffer deprecation errors in Node.js 10 #​6829 Fonger
  • docs(query): fix broken links #​6828 yaynick
  • docs(defaults): clarify that defaults only run on undefined #​6827
  • chore: fix flakey tests #​6824 Fonger
  • docs: fix custom inspect function deprecation warning in Node.js 10 #​6821 yelworc
  • fix(document): ensure subdocs get set to init state after save() so validators can run again #​6818
  • fix(query): make sure embedded query casting always throws a CastError #​6803
  • fix(document): ensure required function only gets called once when validating #​6801
  • docs(connections): note that you must specify port if using useNewUrlParser: true #​6789
  • fix(populate): support options.match in virtual populate schema definition #​6787
  • fix(update): strip out virtuals from updates if strict: 'throw' rather than returning an error #​6731

v5.2.7

Compare Source

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

  • fix(model): check expireAfterSeconds option when diffing indexes in syncIndexes() #​6820 #​6819 christopherhex
  • chore: fix some common test flakes in travis #​6816 Fonger
  • chore: bump eslint and webpack to avoid bad versions of eslint-scope #​6814
  • test(model): add delay to session tests to improve pass rate #​6811 Fonger
  • fix(model): support options in deleteMany #​6810 Fonger
  • fix(query): don't use $each when pushing an array into an array #​6809 lineus
  • chore: bump mquery so eslint isn't a prod dependency #​6800
  • fix(populate): correctly get schema type when calling populate() on already populated path #​6798
  • fix(populate): propagate readConcern options in populate from parent query #​6792 #​6785 Fonger
  • docs(connection): add description of useNewUrlParser option #​6789
  • fix(query): make select('+path') a no-op if no select prop in schema #​6785
  • docs(schematype+validation): document using function syntax for custom validator message #​6772
  • fix(update): throw CastError if updating with $inc: null #​6770
  • fix(connection): throw helpful error when calling createConnection(undefined) #​6763

v5.2.6

Compare Source

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

  • fix(document): don't double-call deeply nested custom getters when using get() #​6779 #​6637
  • fix(query): upgrade mquery for readConcern() helper #​6777
  • docs(schematypes): clean up typos #​6773 sajadtorkamani
  • refactor(browser): fix webpack warnings #​6771 #​6705
  • fix(populate): make error reported when no localField specified catchable #​6767
  • docs(connection): use correct form in createConnection example #​6766 lineus
  • fix(connection): throw helpful error when using legacy mongoose.connect() syntax #​6756
  • fix(document): handle overwriting $session in execPopulate() #​6754
  • fix(query): propagate top-level session down to populate() #​6754
  • fix(aggregate): add session() helper for consistency with query api #​6752
  • fix(map): avoid infinite recursion when update overwrites a map #​6750
  • fix(model): be consistent about passing noop callback to mongoose.model() init() as well as db.model() #​6707

v5.2.5

Compare Source

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

  • fix(boolean): expose convertToTrue and convertToFalse for custom boolean casting #​6758
  • docs(schematypes): add note about what values are converted to booleans #​6758
  • fix(document): fix(document): report castError when setting single nested doc to array #​6753
  • docs: prefix mongoose.Schema call with new operator #​6751 sajadtorkamani
  • docs(query): add examples and links to schema writeConcern option for writeConcern helpers #​6748
  • docs(middleware): clarify that init middleware is sync #​6747
  • perf(model): create error rather than modifying stack for source map perf #​6735
  • fix(model): throw helpful error when passing object to aggregate() #​6732
  • fix(model): pass Model instance as context to applyGetters when calling getters for virtual populate #​6726 lineus
  • fix(documentarray): remove isNew and save listeners on CastError because otherwise they never get removed #​6723
  • docs(model+query): clarify when to use countDocuments() vs estimatedDocumentCount() #​6713
  • fix(populate): correctly set virtual nestedSchemaPath when calling populate() multiple times #​6644
  • docs(connections): add note about the family option for IPv4 vs IPv6 and add port to example URIs #​6566

v5.2.4

Compare Source

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

  • docs: Model.insertMany rawResult option in api docs #​6724 lineus
  • docs: fix typo on migrating to 5 guide #​6722 iagowp
  • docs: update doc about keepalive #​6719 #​6718 simllll
  • fix: ensure debug mode doesn't crash with sessions #​6712
  • fix(document): report castError when setting single nested doc to primitive value #​6710
  • fix(connection): throw helpful error if using new db.model(foo)(bar) #​6698
  • fix(model): throw readable error with better stack trace when non-cb passed to $wrapCallback() #​6640

v5.2.3

Compare Source

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

  • fix(populate): if a getter is defined on the localField, use it when populating #​6702 #​6618 lineus
  • docs(schema): add example of nested aliases [#​

Renovate configuration

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

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

♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "rebase!".

🔕 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 Renovate Bot. View repository job log here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant