Skip to content

Commit 733cf7c

Browse files
committed
Release 2.8.3
1 parent ee3ef24 commit 733cf7c

File tree

4 files changed

+20
-9
lines changed

4 files changed

+20
-9
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [2.8.3] - 2022-07-16
4+
5+
### Improvements
6+
- Support virtualized ARM64 macOS
7+
- A switch to generate auxiliary events by async-profiler or FlightRecorder in jfrsync mode
8+
9+
### Bug fixes
10+
- Could not recreate perf_events after the first failure
11+
- Handle different versions of Zing properly
12+
- Do not call System.loadLibrary, when libasyncProfiler is preloaded
13+
314
## [2.8.2] - 2022-07-13
415

516
### Bug fixes

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PROFILER_VERSION=2.8.2
1+
PROFILER_VERSION=2.8.3
22

33
PACKAGE_NAME=async-profiler-$(PROFILER_VERSION)-$(OS_TAG)-$(ARCH_TAG)
44
PACKAGE_DIR=/tmp/$(PACKAGE_NAME)

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ to learn about all features.
1818

1919
## Download
2020

21-
Current release (2.8.2):
21+
Current release (2.8.3):
2222

23-
- Linux x64 (glibc): [async-profiler-2.8.2-linux-x64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.8.2/async-profiler-2.8.2-linux-x64.tar.gz)
24-
- Linux x64 (musl): [async-profiler-2.8.2-linux-musl-x64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.8.2/async-profiler-2.8.2-linux-musl-x64.tar.gz)
25-
- Linux arm64: [async-profiler-2.8.2-linux-arm64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.8.2/async-profiler-2.8.2-linux-arm64.tar.gz)
26-
- macOS x64/arm64: [async-profiler-2.8.2-macos.zip](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.8.2/async-profiler-2.8.2-macos.zip)
27-
- Converters between profile formats: [converter.jar](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.8.2/converter.jar)
23+
- Linux x64 (glibc): [async-profiler-2.8.3-linux-x64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.8.3/async-profiler-2.8.3-linux-x64.tar.gz)
24+
- Linux x64 (musl): [async-profiler-2.8.3-linux-musl-x64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.8.3/async-profiler-2.8.3-linux-musl-x64.tar.gz)
25+
- Linux arm64: [async-profiler-2.8.3-linux-arm64.tar.gz](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.8.3/async-profiler-2.8.3-linux-arm64.tar.gz)
26+
- macOS x64/arm64: [async-profiler-2.8.3-macos.zip](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.8.3/async-profiler-2.8.3-macos.zip)
27+
- Converters between profile formats: [converter.jar](https://github.com/jvm-profiling-tools/async-profiler/releases/download/v2.8.3/converter.jar)
2828
(JFR to Flame Graph, JFR to FlameScope, collapsed stacks to Flame Graph)
2929

3030
[Previous releases](https://github.com/jvm-profiling-tools/async-profiler/releases)
@@ -250,7 +250,7 @@ $ java -agentpath:/path/to/libasyncProfiler.so=start,event=cpu,file=profile.html
250250

251251
Agent library is configured through the JVMTI argument interface.
252252
The format of the arguments string is described
253-
[in the source code](https://github.com/jvm-profiling-tools/async-profiler/blob/v2.8.2/src/arguments.cpp#L52).
253+
[in the source code](https://github.com/jvm-profiling-tools/async-profiler/blob/v2.8.3/src/arguments.cpp#L52).
254254
The `profiler.sh` script actually converts command line arguments to that format.
255255

256256
For instance, `-e wall` is converted to `event=wall`, `-f profile.html`

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>tools.profiler</groupId>
55
<artifactId>async-profiler</artifactId>
6-
<version>2.8.2</version>
6+
<version>2.8.3</version>
77
<packaging>jar</packaging>
88

99
<name>async-profiler</name>

0 commit comments

Comments
 (0)