Bring the change log up to date.
diff --git a/spec/src/main/asciidoc/ELSpec.adoc b/spec/src/main/asciidoc/ELSpec.adoc
index 4efe55b..95a9f1d 100644
--- a/spec/src/main/asciidoc/ELSpec.adoc
+++ b/spec/src/main/asciidoc/ELSpec.adoc
@@ -2954,6 +2954,8 @@
=== Changes between 5.0 and 4.0
+* The EL API requires Java 11 as a minimum.
+
* https://github.com/eclipse-ee4j/el-ri/issues/43[#43]
The `BeanELResolver` is updated to also consider default method
implementations when looking for property getters, property setters and
@@ -2970,7 +2972,7 @@
* https://github.com/eclipse-ee4j/el-ri/issues/117[#117]
Remove the deprecated, mis-spelt method
- `MethodExpression#isParmetersProvided()` from the API
+ `MethodExpression.isParmetersProvided()` from the API
* https://github.com/eclipse-ee4j/el-ri/issues/154[#154]
Add the `MethodReference` class to provide access to details of the method to
@@ -2989,6 +2991,15 @@
`getFeatureDescriptors()` since it has been deprecated so that custom
`ELResolver` implementations do not need to implement the method.
+* https://github.com/eclipse-ee4j/el-ri/issues/168[#168]
+ Explicitly document that `ELResolver.getType()` must return null if either the
+ ELResolver or the resolved property is read-only. This changes the documented
+ behaviour of the `StaticFieldELResolver`.
+
+* Explicitly state that specifications that depend on this specification may
+ define further packages, in additional to `java/lang.*` that are imported by
+ default into the EL environment.
+
=== Changes between 4.0 and JSR 341
* The API has moved from the `javax.el` package to the `jakarta.el`