|
2121 | 2121 | "markerClass": "io.github.vdaburon.jmeterplugins.har.HarConvertorInstaller", |
2122 | 2122 | "installerClass": "io.github.vdaburon.jmeterplugins.har.HarConvertorInstaller", |
2123 | 2123 | "versions": { |
2124 | | - "3.2": { |
| 2124 | + "3.2": { |
2125 | 2125 | "changes": "Remove the header Content-length because the length is computed by JMeter when the request is created. POST or PUT could have query string and body with content so add query string to the path. Set Content Encoding to UFT-8 for POST or PUT method and request Content-Type:application/json. Add body data content in record.xml for PUT and PATCH methods. encode value for x-www-form-urlencoded when value contains space, equal, slash or plus characters.", |
2126 | 2126 | "downloadUrl": "https://github.com/vdaburon/har-convertor-jmeter-plugin/releases/download/v3.2/har-convertor-jmeter-plugin-3.2-jar-with-dependencies.jar" |
2127 | 2127 | }, |
2128 | | - "5.0": { |
| 2128 | + "5.0": { |
2129 | 2129 | "changes": "Add an external csv file with transaction information for JMeter Transaction Controller Name. Add compatibility with HAR generated with LoadRunner Web Recorder Chrome Extension. Correct Filter Include first filter and Filter Exclude second filter", |
2130 | 2130 | "downloadUrl": "https://github.com/vdaburon/har-convertor-jmeter-plugin/releases/download/v5.0/har-convertor-jmeter-plugin-5.0-jar-with-dependencies.jar" |
2131 | 2131 | }, |
2132 | | - "5.1": { |
| 2132 | + "5.1": { |
2133 | 2133 | "changes": "Compatible with har generated by browsermob-proxy tool.", |
2134 | 2134 | "downloadUrl": "https://github.com/vdaburon/har-convertor-jmeter-plugin/releases/download/v5.1/har-convertor-jmeter-plugin-5.1-jar-with-dependencies.jar" |
2135 | 2135 | }, |
2136 | | - "5.2": { |
| 2136 | + "5.2": { |
2137 | 2137 | "changes": "Correct extract parameters for mime type 'form-urlencoded' ended with charset likes 'application/x-www-form-urlencoded; charset=xxx'", |
2138 | 2138 | "downloadUrl": "https://github.com/vdaburon/har-convertor-jmeter-plugin/releases/download/v5.2/har-convertor-jmeter-plugin-5.2-jar-with-dependencies.jar" |
2139 | 2139 | }, |
2140 | | - "6.0": { |
| 2140 | + "6.0": { |
2141 | 2141 | "changes": "Add View Result Tree to view the recording xml file", |
2142 | 2142 | "downloadUrl": "https://github.com/vdaburon/har-convertor-jmeter-plugin/releases/download/v6.0/har-convertor-jmeter-plugin-6.0-jar-with-dependencies.jar" |
2143 | 2143 | }, |
2144 | | - "6.1": { |
| 2144 | + "6.1": { |
2145 | 2145 | "changes": "Correct a NullPointerException when creating the Recording XML file.", |
2146 | 2146 | "downloadUrl": "https://github.com/vdaburon/har-convertor-jmeter-plugin/releases/download/v6.1/har-convertor-jmeter-plugin-6.1-jar-with-dependencies.jar" |
2147 | 2147 | }, |
2148 | | - "7.0": { |
| 2148 | + "7.0": { |
2149 | 2149 | "changes": "Add manage the websocket connection and messages with 'WebSocket Samplers by Peter Doornbosch', add checkbox for boolean parameter 'ws_with_pdoornbosch' .", |
2150 | 2150 | "downloadUrl": "https://github.com/vdaburon/har-convertor-jmeter-plugin/releases/download/v7.0/har-convertor-jmeter-plugin-7.0-jar-with-dependencies.jar" |
2151 | 2151 | }, |
2152 | | - "7.1": { |
| 2152 | + "7.1": { |
2153 | 2153 | "changes": "Remove request headers from HTTP/2, these headers start with ':' likes ':authority' or ':scheme', don't create HttpSampler for url 'data:'", |
2154 | 2154 | "downloadUrl": "https://github.com/vdaburon/har-convertor-jmeter-plugin/releases/download/v7.1/har-convertor-jmeter-plugin-7.1-jar-with-dependencies.jar" |
2155 | 2155 | }, |
2156 | | - "8.0": { |
| 2156 | + "8.0": { |
2157 | 2157 | "changes": "Add new parameter 'remove_headers' remove a list of http headers (comma separator, case insensitive), e.g:'User-Agent,Pragma'", |
2158 | 2158 | "downloadUrl": "https://github.com/vdaburon/har-convertor-jmeter-plugin/releases/download/v8.0/har-convertor-jmeter-plugin-8.0-jar-with-dependencies.jar" |
| 2159 | + }, |
| 2160 | + "9.1": { |
| 2161 | + "changes": "Add new parameter 'jackson_parser_string_max' to change default Jackson String length size (default integer size 20000000) for processing very large JSON, need jackson libraries>=2.16.1 to avoid conflict with JMeter and Saxon-HE>=12.3 for better performance", |
| 2162 | + "downloadUrl": "https://github.com/vdaburon/har-convertor-jmeter-plugin/releases/download/v9.1/har-convertor-jmeter-plugin-9.1-jar-with-dependencies.jar", |
| 2163 | + "libs": { |
| 2164 | + "jackson-core>=2.16.1": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-core/2.16.1/jackson-core-2.16.1.jar", |
| 2165 | + "jackson-annotations>=2.16.1": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.16.1/jackson-annotations-2.16.1.jar", |
| 2166 | + "jackson-databind>=2.16.1": "https://repo1.maven.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.16.1/jackson-databind-2.16.1.jar", |
| 2167 | + "Saxon-HE>=12.3": "https://repo1.maven.org/maven2/net/sf/saxon/Saxon-HE/12.3/Saxon-HE-12.3.jar" |
| 2168 | + } |
2159 | 2169 | } |
2160 | 2170 | } |
2161 | | - }, |
| 2171 | + }, |
2162 | 2172 | { |
2163 | 2173 | "id": "vdn-pacing-jmeter-plugin", |
2164 | 2174 | "name": "vdn@github - pacing-jmeter-plugin", |
|
0 commit comments