Releases: getgauge/gauge-java
Releases · getgauge/gauge-java
Gauge Java v0.7.11
Gauge Java v0.7.10
#485 - Deprecate datastore factory. Add specific data stores.
Old usage
DataStoreFactory.getScenarioDataStore().put("element-id", "455678")
DataStoreFactory.getScenarioDataStore().get("element-id", "455678")
New Usage
// Adding value
ScenarioDataStore.put("element-id", "455678");
// Fetching Value
String elementId = (String) ScenarioDataStore.get("element-id");
Gauge Java v0.7.9
Gauge Java v0.7.8
Gauge Java v0.7.7
Features
None
Bug Fixes
- #433 - use singleThreadExecutor instead of custom executor
- #422 - Get tmp dir using mktemp
- #421 - add support to scan steps from external references, fixes #236
- #419 - launcher gets classpath from maven/gradle, #236
- #413 - Use arguments file to avoid long classpaths. #402
- #407 - Use arguments file to avoid long classpath. #402
- #406 - Using class to calculate span if methods does not exists. #391
- #403 - use -cp flag instead of env var
Gauge Java v0.7.6
Gauge Java v0.7.5
Gauge Java v0.7.4
Enhancements
- Remove platform-specific artifacts. The release artifacts are platform-agnostic now. #324
- Write screenshots to file getgauge/html-report#213
- Use gRPC for communicating with gauge getgauge/gauge#134
Bug Fixes
gauge-java 0.7.3
gauge-java 0.7.2
Bug Fixes
- #257 - [JDK-12] : Compilation error in java project
- #254 - Custom Screenshot Grabber fails to take screenshot (Java)
- #243 - Duplicate step StepImplementation file created
- #221 - Getting duplicate step implementation even no duplicates are found
- #149 - Warnings about illegal access operation occurred
Miscellaneous
- #255 - Refactoring doesn't return proper step implementation parameters
- #252 - Added a test for step with common slash
- #251 - A method signature refactored to match with the actual test
- #249 - Update StepImpl.java
- #245 - gauge install java is not install gauge java plugin
Thanks @osandadeshan for contributing to this release!