Skip to content

Commit

Permalink
feat: bump gatling 3.7.5 version (#68)
Browse files Browse the repository at this point in the history
* feat: bump gatling 3.7.5 version

Co-authored-by: i.akhaltsev <[email protected]>
  • Loading branch information
jigarkhwar and i.akhaltsev authored Feb 15, 2022
1 parent 954a8f9 commit adb0d98
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
runner.dialect = "scala213"
version = 3.0.8
version = 3.4.0
binPack.parentConstructors = true
maxColumn = 128
includeCurlyBraceInSelectChains = false
Expand Down
6 changes: 3 additions & 3 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ object Dependencies {
"io.gatling" % "gatling-core",
"io.gatling" % "gatling-http",
"io.gatling" % "gatling-redis",
).map(_ % "3.7.4" % Provided)
).map(_ % "3.7.5" % Provided)

lazy val fastUUID = Seq(
"com.eatthepath" % "fast-uuid" % "0.2.0" % Provided,
Expand All @@ -17,8 +17,8 @@ object Dependencies {
).map(_ % "3.7.4" % Test)

lazy val json4s: Seq[ModuleID] = Seq(
"org.json4s" %% "json4s-native" % "4.0.2",
"org.json4s" %% "json4s-jackson" % "4.0.2",
"org.json4s" %% "json4s-native" % "4.0.4",
"org.json4s" %% "json4s-jackson" % "4.0.4",
)

lazy val pureConfig: Seq[ModuleID] = Seq(
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# suppress inspection "UnusedProperty"
sbt.version=1.6.1
sbt.version=1.6.2
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ object SeparatedValuesFeeder {
* @return
* a new feeder
* @example
* {{{
* {{{
* val sourceString = "v21;v22;v23"
* val separatedValuesFeeder: FeederBuilderBase[String] =
* SeparatedValuesFeeder("someValues", sourceString, ';') // this will return Vector(Map(someValues -> v21), Map(someValues -> v22), Map(someValues -> v23))
* }}}
* }}}
*/
def apply(paramName: String, source: String, separator: Char): IndexedSeq[Record[String]] = {

Expand All @@ -50,11 +50,11 @@ object SeparatedValuesFeeder {
* @return
* a new feeder
* @example
* {{{
* {{{
* val sourceSeq = Seq("1,two", "3,4")
* val separatedValuesFeeder: FeederBuilderBase[String] =
* SeparatedValuesFeeder.csv("someValues", sourceSeq) // this will return Vector(Map(someValues -> 1), Map(someValues -> two), Map(someValues -> 3), Map(someValues -> 4))
* }}}
* }}}
*/
def apply(paramName: String, source: Seq[String], separator: Char)(implicit
configuration: GatlingConfiguration,
Expand All @@ -78,7 +78,7 @@ object SeparatedValuesFeeder {
* @return
* a new feeder
* @example
* {{{
* {{{
* val vaultFeeder: FeederBuilderBase[String] = Vector(
* Map(
* "HOSTS" -> "host11,host12",
Expand All @@ -92,7 +92,7 @@ object SeparatedValuesFeeder {
* val mapFee: FeederBuilderBase[String] = SeparatedValuesFeeder(None, vaultFeeder.readRecords, ',')
* val separatedValuesFeeder: FeederBuilderBase[String] =
* SeparatedValuesFeeder("prefix", sourceSeq, ',') // this will return Vector(Map(HOSTS -> host11), Map(HOSTS -> host12), Map(USERS -> user11), Map(HOSTS -> host21), Map(HOSTS -> host22), Map(USERS -> user21), Map(USERS -> user22), Map(USERS -> user23))
* }}}
* }}}
*/
def apply(paramPrefix: Option[String], source: Seq[Map[String, Any]], separator: Char)(implicit
configuration: GatlingConfiguration,
Expand Down

0 comments on commit adb0d98

Please sign in to comment.