move to async profiler 4.2 #41
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request removes experimental converters for "hotcold" and "pprof" formats, simplifies output types, and updates dependencies. The main impact is the removal of support for "hotcold" and "nflx" output types, as well as the associated converter implementations. Additionally, there are minor improvements to string padding logic and a dependency update.
Removal of experimental converters and output types:
jfr2hotcoldflameandjfr2pprofexperimental converter implementations, removing support for hot/cold flame graphs and pprof conversion (src/main/java/io/github/dpsoft/ap/converters/experimental/hotcold/jfr2hotcoldflame.java,src/main/java/io/github/dpsoft/ap/converters/experimental/pprof/jfr2pprof.java) [1] [2].experimentalpackage-info and related import statements, fully cleaning up unused experimental code (src/main/java/io/github/dpsoft/ap/converters/experimental/package-info.java,src/main/java/io/github/dpsoft/ap/util/ProfilerExecutor.java) [1] [2].Simplification of output types and logic:
HOT_COLDandNFLXoutput types from theOutputenum and related logic inCommand.java, so these formats are no longer available as output options (src/main/java/io/github/dpsoft/ap/command/Command.java) [1] [2].Dependency and code improvements:
me.bechberger.ap-loader.versionproperty inpom.xmlto a newer version, ensuring compatibility with recent changes.Functions.javato use modern Java features for cleaner code (src/main/java/io/github/dpsoft/ap/functions/Functions.java).