Gatling 3.1.1 is out!

Hi there,

We’re very excited to announce that we’ve just released Gatling 3.1.1.

You might wonder what happened with 3.1.0. It’s sadly dead as we detected and were reported several regressions before the release announcement but after the binaries made it to maven central.

Please check the announcement on our website: https://gatling.io/2019/04/16/new-releases-gatling-3-1-1-gatling-frontline-1-7-0/

We hope you’ll like it!

Cheers,

Stéphane for the Gatling Team

Hi Stephane,

Thank you for releasing a new version of my favourite tool - this is awesome as usual!

I would like to report a minor issue. I have run into this issue after migration to 3.1.0.1 - I think that “assertions” feature doesn’t work well. I have the following scenario:

setUp(
  tapsSimulationScn.inject(injectProfileTaps()),
  backgroundTaps.inject(injectProfileTaps())
)
  .throttle(
    reachRps(10) in (10 seconds),
    holdFor(durationMagnifier minute)
  )
  .protocols(jmsConfig)
  .maxDuration(1 + durationMagnifier minutes)
  .assertions(
    details("MeasureLatency").responseTime.mean.lte(1000))

In the end of the run test fails with exception (see below), html report is not generated. Though, if I remove "assertions" from scneario then everything works as expected 
The only difference in simualtion.log is the first line which is presented is assertions are enabled:

Hi Maria,

Thanks for your kind words.
Are you sure you’re using 3.1.1 and not 3.1.0 or 3.1.0.1?

Oh, right. My fault, I am using 3.1.0.1 - it is the latest available in Maven repo https://mvnrepository.com/artifact/io.gatling.highcharts/gatling-charts-highcharts
I will wait for 3.1.0 and try again to enable assertions

No, this issue is the reason why 3.1.0 is dead and we’ve released 3.1.1 that fixes it!

Hi,

Thanks for this but a bit confused. The latest version I see on maven repo is 3.1.0.1 and no version 3.1.1.

Thanks

Where are you looking?!
https://search.maven.org/search?q=a:gatling-core
https://search.maven.org/artifact/io.gatling.highcharts/gatling-charts-highcharts/3.1.1/jar

Ok thanks, I was looking here;

https://mvnrepository.com/artifact/io.gatling.highcharts/gatling-charts-highcharts

mvnrepository is a legacy third party index and it frequently lags behind.
You should stick to the official index.

I think that mvnrepository.com wasn’t updated yet, so some people (like me) could load an old version by mistake. I entered 3.1.1 in pom file and Maven loaded it for me. Charts and Assertions work well in 3.1.1. Thank you!