Skip to content

Commit

Permalink
Release 0.42.1
Browse files Browse the repository at this point in the history
- Upgrade graal
- Upgrade Spring

Signed-off-by: Gopal S Akshintala <[email protected]>
  • Loading branch information
overfullstack committed Nov 27, 2024
1 parent 952a11f commit 31f7e0c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ pm.environment.set("$quantity", _.random(1, 10)); // lodash doesn't need `requir
image::node_modules.png[]
* If `node_modules` is ignored on your git repo, you can force-add to check in using the command `git add -f <path>/node_modules`
* If `node_modules` is ignored on your git repo, you can force-add to check in using the command `git add -all -f <path>/node_modules`
====

CAUTION: The recommendation is not to add too much code in Pre-req and Tests scripts, as it is not intuitive to troubleshoot. Use it for simple operations like set environment variables and use Post-Hooks JVM code for any non-trivial operations.
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
* ************************************************************************************************
*/
const val GROUP_ID = "com.salesforce.revoman"
const val VERSION = "0.42.0"
const val VERSION = "0.42.1"
const val ARTIFACT_ID = "revoman"
const val STAGING_PROFILE_ID = "1ea0a23e61ba7d"
3 changes: 1 addition & 2 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
{
"matchPackageNames": [
"org.graalvm.sdk:graal-sdk",
"org.graalvm.js:js",
"org.springframework:spring-beans"
"org.graalvm.js:js"
],
"enabled": false
}
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/com/salesforce/revoman/input/FileUtils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ fun bufferFile(file: File): BufferedSource = file.source().buffer()

fun readFileToString(file: File): String = bufferFile(file).readUtf8()

fun writeToFileInResources(fileRelativePath: String, content: String) =
FileSystem.RESOURCES.write(fileRelativePath.toPath()) { writeUtf8(content) }
fun writeToFileInTheModule(fileRelativePath: String, content: String) =
FileSystem.SYSTEM.write(fileRelativePath.toPath()) { writeUtf8(content) }

0 comments on commit 31f7e0c

Please sign in to comment.