Skip to content

Commit

Permalink
Merge branch 'v2' of github.com:jagi/meteor-astronomy into v2
Browse files Browse the repository at this point in the history
  • Loading branch information
lukejagodzinski committed May 20, 2019
2 parents 843afc4 + 1dc8d1c commit 38a94a1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# [2.7.1](/releases/tag/2.7.1) (2019-01-05)
- Fix #671 by introducing several logging flags:
```js
import { config } from "meteor/jagi:astronomy";

config.logs.deprecation = false; // Turn off deprecation warnings.
config.logs.nonExistingField = false; // Turn off warnings about non existing fields.
config.logs.classDuplicate = false; // Turn off class duplication warnings.
config.logs.typeDuplicate = false; // Turn off type duplication warnings.
```

# [2.7.0](/releases/tag/2.7.0) (2018-12-27)
- Fix issue #694
You can limit list of modified fields from the `getModified` and `getModifiedValues` methods to only include fields that will actually be saved using the `save({ fields: [/* list of fields */] })` option.
Expand Down

0 comments on commit 38a94a1

Please sign in to comment.