Release v3.0.1#103
Merged
Merged
Conversation
* MOB-45005: Initial migration to Jetty 12 * MOB-45005: Update dependencies and change default to shared thread pool * MOB-45005: The pre-processors are removed in the result * MOB-45005: Better calculation of bytes sent * MOB-45005: Appropriate property getter mechanism * MOB-45005: Lower the jetty debug level to INFO * MOB-45005: Remove unused code * MOB-45005: Fallback to UTF-8 on encoding error * MOB-45005: Improve logic * MOB-45005: Set correct logging level for some messages. * MOB-45005: Fix pom * MOB-45005: Use more performant atomic version * MOB-45005: Catch Illegal and Unsupported Charset Exceptions * MOB-45005: Clean and Improvements * MOB-45005: Clean and Improvements on HTTP2 Async Controller * MOB-45005: Fix parent sample metrics * MOB-45005: Fixes and improvements * MOB-45005: Update jetty to 12.1.6 * MOB-45005: Fix typo introduced on 2.0.3 version. * MOB-45005: Improvements in protocol error detection * MOB-45005: Improvements in Happy Eyeballs algorithm, and tests * MOB-45005: Improvements * Fix transport on HTTP/1 to maxMultiplex 1 * Add embedded resources inherit parent props.
* Rebrand and increment version * UI/UX improvements
* Rebrand and increment version * UI/UX improvements * Proxy Recording Enabled by Default * Change recording as default and menu option added * Properties prefixed with HTTP2Sampler and httpJettyClient are now legacy prefixes. * Checkstyle and fix in a test on windows * Migrate HTTP Request to BZM HTTP Sampler * Show BlazeMeter HTTP on Recorder * Support for ACR HTTP Recorder * Update new properties flags with the new prefix
* MOB-48482: Remove unnecessary copy dependencies due to fat jar * MOB-48482: Setup build pipeline * MOB-48482: Setup JMeter compatibility tests
Update README and screenshots for multi-protocol HTTP sampler
Add documentation for JMeter HTTP to BZM HTTP converter
Configure POM for automated Maven Central release
# Conflicts: # pom.xml # src/main/java/com/blazemeter/jmeter/http2/gui/BlazeMeterHttpMenuCommand.java # src/main/java8/com/blazemeter/jmeter/http2/Installer.java # src/main/resources/META-INF/services/org.apache.jmeter.gui.action.Command # src/main/resources/META-INF/services/org.apache.jmeter.gui.plugin.MenuCreator
Baraujo25
approved these changes
May 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 introduces a comprehensive Maven Central release automation and improves the project's Maven configuration for publishing, cross-platform compatibility, and developer experience. It also includes minor code cleanups and refactoring for maintainability.
Release automation and Maven Central publishing:
.github/workflows/release.yml) to automate the release process, including version bumping, testing, publishing artifacts to Maven Central, and updating the GitHub release..github/settings.xml) for Sonatype/Maven Central credentials and GPG signing configuration..github/maven-central-deploy.sh) to handle GPG key import and Maven deployment for releases.Maven project configuration improvements:
pom.xmlwith project metadata (name, description, license, SCM, developers), enables source and javadoc JAR generation, configures GPG signing, and adds the Sonatype Central publishing plugin. [1] [2]src/main/java8) with Java 8 and main sources with Java 17, using thebuild-helper-maven-pluginfor IDE compatibility.Plugin code and refactoring:
Installer.javaclass tosrc/main/java8, centralizing Java version checks inPluginJavaRequirementsand simplifying headless GUI detection. [1] [2] [3] [4]BlazeMeterHttpMenuCommandby removing unnecessary inheritance, adjusting method annotations, and clarifying SPI registration comments. [1] [2] [3] [4] [5]Bug fix:
deepCopySampleResultby not redundantly copying sampler data, which avoids potential issues with BlazeMeter HTTP's handling of the raw field.