Skip to content

Commit

Permalink
Introduce gwen.logLevel.deprecations to control how deprecations are …
Browse files Browse the repository at this point in the history
…reported
  • Loading branch information
bjuric committed Sep 18, 2024
1 parent bedf46b commit 7ad3bde
Show file tree
Hide file tree
Showing 5 changed files with 72 additions and 55 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
3.74.0
======
19 September 2024
- Update Gwen core from v3.62.0 to v[3.63.0](https://github.com/gwen-interpreter/gwen/releases/tag/v3.63.0)
- Introduce `gwen.logLevel.deprecations` to control how deprecations are reported.
- Supported values include:
- `warn` to log deprecations as warnings (default)
- `error` to raise and report deprecations as errors
- `none` to suppress logging or reporting of deprecation messages (no operation)

3.73.0
======
18 September 2024
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
enablePlugins(GitVersioning)

// gwen core & web versions
val gwenVersion = "3.62.0"
val gwenWebVersion = "3.73.0"
val gwenVersion = "3.63.0"
val gwenWebVersion = "3.74.0"

git.baseVersion := gwenWebVersion
git.useGitDescribe := true
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/init/gwen.conf
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,9 @@ gwen {
}
mode = "declarative" # declarative|imperative
}
logLevel {
deprecations = "warn" # warn|error|none
}
mask {
char = "*"
}
Expand Down
Loading

0 comments on commit 7ad3bde

Please sign in to comment.