Merge pull request #11201 from StorytellerCZ/mongo-decimal-update

This commit is contained in:
Filipe Névola
2020-11-12 15:54:35 -04:00
committed by GitHub
3 changed files with 7 additions and 5 deletions

View File

@@ -61,6 +61,8 @@ N/A
* `facebook-oauth@1.7.3`
- is now using Facebook GraphAPI v8. [#11160](https://github.com/meteor/meteor/pull/11160)
* `mongo-decimal` package npm dependency `decimal.js` has been updated to v10.2.1
## v1.11.1, 2020-09-16
### Breaking changes

View File

@@ -2,9 +2,9 @@
"lockfileVersion": 1,
"dependencies": {
"decimal.js": {
"version": "10.0.2",
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.0.2.tgz",
"integrity": "sha512-qL5tUTXAWjB5cSBfm0V2a4jO5FaDLumCfwc/0f7WaTOT3WU8pIeq2HHrd98eXHtbey4qFWlaPzfml1JWIoO9TQ=="
"version": "10.2.1",
"resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz",
"integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw=="
}
}
}

View File

@@ -1,10 +1,10 @@
Package.describe({
summary: "JS simulation of MongoDB Decimal128 type",
version: '0.1.1'
version: '0.1.2'
});
Npm.depends({
"decimal.js": "10.0.2"
"decimal.js": "10.2.1"
});
Package.onUse(function (api) {