Releases: ioki-mobility/LokaliseGradlePlugin
Releases · ioki-mobility/LokaliseGradlePlugin
2.2.0
What's Changed
- Fix empty javadoc by @StefMa in #56
- Sign artifacts on release only by @StefMa in #60
- Better performance for the upload task by @StefMa in #63
- Make
poll
optional in upload by @juschmitt in #67 - Add
downloadFiles
functionality toLokaliseApi
by @juschmitt in #73 - Fix for optional upload poll by @StefMa in #75
- Bump kotlinVersion from 1.9.21 to 1.9.23
- Bump org.gradle.toolchains.foojay-resolver-convention from 0.7.0 to 0.8.0
- Bump actions/cache from 3 to 4
- Bump Gradle Wrapper from 8.5 to 8.7
- Bump kotlinxCoroutinesVersion from 1.7.3 to 1.8.0
- Bump org.jetbrains.dokka from 1.9.10 to 1.9.20
- Bump com.ioki:lokalise-api from 0.0.2 to 0.0.3
New Contributors
- @juschmitt made their first contribution in #67
Full Changelog: 2.1.0...2.2.0
2.1.0
Breaking changes
We don't publish this plugin to jitpack anymore.
Use maven central instead.
What's Changed
- Remove wrapper upgrade plugin by @StefMa in #50
- Bump kotlinVersion from 1.9.10 to 1.9.20 by @dependabot in #49
- Bump kotlinVersion from 1.9.20 to 1.9.21 by @dependabot in #51
- Bump Gradle Wrapper from 8.4 to 8.5 by @iokibot in #52
- Maven central by @StefMa in #54
New Contributors
Full Changelog: 2.0.0...2.1.0
2.0.0
What's Changed
- Bump org.gradle.wrapper-upgrade from 0.11.3 to 0.11.4 by @dependabot in #47
- Bump Gradle Wrapper from 8.3 to 8.4 by @github-actions in #48
- Use lokalise api instead of lokalise cli by @StefMa in #46
Breaking Changes
As we replace the lokalise cli with the lokalise api #46 we have to change the extension API.
- The
arguments
are replaced byparams
.
lokalise {
uploadStringsConfig {
translationsFilesToUpload.set(filesToUpload)
- arguments(
- "--replace-modified",
- "--cleanup-mode",
- ...
- )
+ params = mapOf(
+ "replace_modified" to true,
+ "cleanup_mode" to true,
+ ...
+ )
}
}
- The
params
type is now aMap
. What values to put in can be found in the lokalise API documentation:
Upload a File, Download Files. - Since we have a transitive dependency to kmp-lokalise-api that is also hosted on JitPack you might have to adjust your Gradle repository declaration:
repositories {
maven(url = "https://jitpack.io") {
content {
- includeGroup("com.github.ioki-mobility.LokaliseGradlePlugin")
+ includeGroupByRegex("com.github.ioki-mobility.*")
}
}
}
Full Changelog: 1.1.0...2.0.0
1.1.0
Maintanance release
What's Changed
- Bump org.jetbrains.kotlin:kotlin-test from 1.8.21 to 1.8.22 by @dependabot in #29
- Bump org.jetbrains.kotlin.jvm from 1.8.21 to 1.8.22 by @dependabot in #30
- Bump Gradle Wrapper from 8.1.1 to 8.2 by @github-actions in #31
- Bump org.gradle.wrapper-upgrade from 0.11.1 to 0.11.2 by @dependabot in #32
- Bump org.gradle.toolchains.foojay-resolver-convention from 0.5.0 to 0.6.0 by @dependabot in #33
- Bump Gradle Wrapper from 8.2 to 8.2.1 by @github-actions in #36
- Bump org.jetbrains.kotlin:kotlin-test from 1.8.22 to 1.9.0 by @dependabot in #34
- Bump org.jetbrains.kotlin.jvm from 1.8.22 to 1.9.0 by @dependabot in #35
- Update Gradle version catalog by @StefMa in #38
- Bump Gradle Wrapper from 8.2.1 to 8.3 by @github-actions in #39
- Bump org.gradle.toolchains.foojay-resolver-convention from 0.6.0 to 0.7.0 by @dependabot in #40
- Bump kotlinVersion from 1.9.0 to 1.9.10 by @dependabot in #41
- Bump actions/checkout from 3 to 4 by @dependabot in #42
- Bump org.gradle.wrapper-upgrade from 0.11.2 to 0.11.3 by @dependabot in #44
- Bump mikepenz/action-junit-report from 3 to 4 by @dependabot in #43
Full Changelog: 1.0.0...1.1.0