diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-07-31 21:54:46 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-07-31 21:54:46 -0400 |
commit | 17acf248b66861217d48826e77f24cc311b4a22e (patch) | |
tree | 0ad4e6b6957be4313b986c1cd7a8e81ca45da4bb /release-notes.md | |
parent | e40de15de0985e21a417ae6bd18ad5d9631b6f98 (diff) | |
download | SMAPI-17acf248b66861217d48826e77f24cc311b4a22e.tar.gz SMAPI-17acf248b66861217d48826e77f24cc311b4a22e.tar.bz2 SMAPI-17acf248b66861217d48826e77f24cc311b4a22e.zip |
prevent mods from accessing SMAPI internals using its own reflection helper (#334)
Diffstat (limited to 'release-notes.md')
-rw-r--r-- | release-notes.md | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/release-notes.md b/release-notes.md index 75b9bbd1..bb7b7dfa 100644 --- a/release-notes.md +++ b/release-notes.md @@ -17,10 +17,12 @@ For mod developers: * Added support for optional dependencies. * Added support for string versions (like `"1.0-alpha"`) in `manifest.json`. * Added `IEquatable<ISemanticVersion>` to `ISemanticVersion`. -* Removed all deprecated code. -* Removed support for mods with no `Name`, `Version`, or `UniqueID` in their manifest. -* Removed support for mods with a non-unique `UniqueID` value in their manifest. * Removed the TrainerMod `save` and `load` commands. +* **Breaking changes:** + * Removed all deprecated code. + * Removed support for mods with no `Name`, `Version`, or `UniqueID` in their manifest. + * Removed support for mods with a non-unique `UniqueID` value in their manifest. + * Mods can no longer access SMAPI internals using the reflection helper, to discourage fragile mods. ## 1.15.2 For players: |