Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.4.2] - 2020-10-06
## [0.4.3] - 2020-10-08
### Fixed
- ReflectiveType.invoke now makes the method accessible before trying to invoke it.

## [0.4.2] - 2020-10-06 (yanked)
### Added
- The new system property `appmap.debug.http` to show some debugging when handling
requests for `/_appmap/record`.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories {
mavenCentral()
}

version = '0.4.2'
version = '0.4.3'

dependencies {
implementation 'org.yaml:snakeyaml:1.25'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ protected Method getMethod(String name, Class<?>... parameterTypes) {

protected Object invoke(Method method, Object... parameters) {
try {
method.setAccessible(true);
return method.invoke(self, parameters);
}
catch (InvocationTargetException e) {
Expand Down