summaryrefslogtreecommitdiff
path: root/release-notes.md
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-07-31 21:54:46 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-07-31 21:54:46 -0400
commit17acf248b66861217d48826e77f24cc311b4a22e (patch)
tree0ad4e6b6957be4313b986c1cd7a8e81ca45da4bb /release-notes.md
parente40de15de0985e21a417ae6bd18ad5d9631b6f98 (diff)
downloadSMAPI-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.md8
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: