Skip to content

Commit 5a8f92f

Browse files
fix(deps): update dependency com.squareup:kotlinpoet to v1.16.0 (#1227)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.squareup:kotlinpoet](https://togithub.com/square/kotlinpoet) | `1.15.3` -> `1.16.0` | [![age](https://developer.mend.io/api/mc/badges/age/maven/com.squareup:kotlinpoet/1.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/com.squareup:kotlinpoet/1.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/com.squareup:kotlinpoet/1.15.3/1.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/com.squareup:kotlinpoet/1.15.3/1.16.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>square/kotlinpoet (com.squareup:kotlinpoet)</summary> ### [`v1.16.0`](https://togithub.com/square/kotlinpoet/compare/1.15.3...1.16.0) [Compare Source](https://togithub.com/square/kotlinpoet/compare/1.15.3...1.16.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/typesafegithub/github-workflows-kt). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMzUuMCIsInVwZGF0ZWRJblZlciI6IjM3LjEzNS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Piotr Krzeminski <[email protected]>
1 parent fda6994 commit 5a8f92f

File tree

156 files changed

+3694
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

156 files changed

+3694
-2
lines changed

action-binding-generator/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ group = rootProject.group
1212
version = rootProject.version
1313

1414
dependencies {
15-
implementation("com.squareup:kotlinpoet:1.15.3")
15+
implementation("com.squareup:kotlinpoet:1.16.0")
1616
implementation("com.charleskorn.kaml:kaml:0.57.0")
1717
implementation(projects.sharedInternal)
1818

action-binding-generator/src/test/kotlin/io/github/typesafegithub/workflows/actionbindinggenerator/bindingsfromunittests/ActionWithDeprecatedInputAndNameClashV2.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ import kotlin.collections.toTypedArray
2424
* Description
2525
*
2626
* [Action on GitHub](https://github.com/john-smith/action-with-deprecated-input-and-name-clash)
27+
*
28+
* @param fooBar Foo bar - new
29+
* @param _customInputs Type-unsafe map where you can put any inputs that are not yet supported by
30+
* the binding
31+
* @param _customVersion Allows overriding action's version, for example to use a specific minor
32+
* version, or a newer version that the binding doesn't yet know about
2733
*/
2834
public data class ActionWithDeprecatedInputAndNameClashV2 private constructor(
2935
/**

action-binding-generator/src/test/kotlin/io/github/typesafegithub/workflows/actionbindinggenerator/bindingsfromunittests/ActionWithInputsSharingTypeV3.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,11 @@ import kotlin.collections.toTypedArray
2525
* This is a test description that should be put in the KDoc comment for a class
2626
*
2727
* [Action on GitHub](https://github.com/john-smith/action-with-inputs-sharing-type)
28+
*
29+
* @param _customInputs Type-unsafe map where you can put any inputs that are not yet supported by
30+
* the binding
31+
* @param _customVersion Allows overriding action's version, for example to use a specific minor
32+
* version, or a newer version that the binding doesn't yet know about
2833
*/
2934
public data class ActionWithInputsSharingTypeV3 private constructor(
3035
public val fooOne: ActionWithInputsSharingTypeV3.Foo,

action-binding-generator/src/test/kotlin/io/github/typesafegithub/workflows/actionbindinggenerator/bindingsfromunittests/ActionWithNoInputsV3.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ import kotlin.collections.Map
2222
* Description
2323
*
2424
* [Action on GitHub](https://github.com/john-smith/action-with-no-inputs)
25+
*
26+
* @param _customInputs Type-unsafe map where you can put any inputs that are not yet supported by
27+
* the binding
28+
* @param _customVersion Allows overriding action's version, for example to use a specific minor
29+
* version, or a newer version that the binding doesn't yet know about
2530
*/
2631
public data class ActionWithNoInputsV3 private constructor(
2732
/**

action-binding-generator/src/test/kotlin/io/github/typesafegithub/workflows/actionbindinggenerator/bindingsfromunittests/ActionWithNonStringInputsV3.kt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,20 @@ import kotlin.collections.toTypedArray
2828
* This is a test description that should be put in the KDoc comment for a class
2929
*
3030
* [Action on GitHub](https://github.com/john-smith/action-with-non-string-inputs)
31+
*
32+
* @param fooBar Short description
33+
* @param bazGoo First boolean input!
34+
* @param binKin Boolean and nullable
35+
* @param intPint Integer
36+
* @param floPint Float
37+
* @param booZoo List of strings
38+
* @param finBin Enumeration
39+
* @param gooZen Integer with special value
40+
* @param bahEnum Enum with custom naming
41+
* @param _customInputs Type-unsafe map where you can put any inputs that are not yet supported by
42+
* the binding
43+
* @param _customVersion Allows overriding action's version, for example to use a specific minor
44+
* version, or a newer version that the binding doesn't yet know about
3145
*/
3246
public data class ActionWithNonStringInputsV3 private constructor(
3347
/**

action-binding-generator/src/test/kotlin/io/github/typesafegithub/workflows/actionbindinggenerator/bindingsfromunittests/ActionWithOutputsV3.kt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ import kotlin.collections.toTypedArray
2424
* This is a test description that should be put in the KDoc comment for a class
2525
*
2626
* [Action on GitHub](https://github.com/john-smith/action-with-outputs)
27+
*
28+
* @param fooBar Short description
29+
* @param _customInputs Type-unsafe map where you can put any inputs that are not yet supported by
30+
* the binding
31+
* @param _customVersion Allows overriding action's version, for example to use a specific minor
32+
* version, or a newer version that the binding doesn't yet know about
2733
*/
2834
public data class ActionWithOutputsV3 private constructor(
2935
/**

action-binding-generator/src/test/kotlin/io/github/typesafegithub/workflows/actionbindinggenerator/bindingsfromunittests/ActionWithSomeOptionalInputsV3.kt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,16 @@ import kotlin.collections.toTypedArray
2424
* This is a test description that should be put in the KDoc comment for a class
2525
*
2626
* [Action on GitHub](https://github.com/john-smith/action-with-some-optional-inputs)
27+
*
28+
* @param fooBar Required is default, default is set
29+
* @param bazGoo Required is default, default is null
30+
* @param zooDar Required is false, default is set
31+
* @param cooPoo Required is false, default is default
32+
* @param package Required is true, default is default
33+
* @param _customInputs Type-unsafe map where you can put any inputs that are not yet supported by
34+
* the binding
35+
* @param _customVersion Allows overriding action's version, for example to use a specific minor
36+
* version, or a newer version that the binding doesn't yet know about
2737
*/
2838
public data class ActionWithSomeOptionalInputsV3 private constructor(
2939
/**

action-binding-generator/src/test/kotlin/io/github/typesafegithub/workflows/actionbindinggenerator/bindingsfromunittests/DeprecatedActionV2.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ import kotlin.collections.Map
2424
* Description
2525
*
2626
* [Action on GitHub](https://github.com/john-smith/deprecated-action)
27+
*
28+
* @param _customInputs Type-unsafe map where you can put any inputs that are not yet supported by
29+
* the binding
30+
* @param _customVersion Allows overriding action's version, for example to use a specific minor
31+
* version, or a newer version that the binding doesn't yet know about
2732
*/
2833
@Deprecated(
2934
message = "This action has a newer major version: DeprecatedActionV3",

action-binding-generator/src/test/kotlin/io/github/typesafegithub/workflows/actionbindinggenerator/bindingsfromunittests/SimpleActionWithListsV3.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ import kotlin.collections.toTypedArray
2626
* This is a test description that should be put in the KDoc comment for a class
2727
*
2828
* [Action on GitHub](https://github.com/john-smith/simple-action-with-lists)
29+
*
30+
* @param listStrings List of strings
31+
* @param listInts List of integers
32+
* @param listEnums List of enums
33+
* @param listIntSpecial List of integer with special values
34+
* @param _customInputs Type-unsafe map where you can put any inputs that are not yet supported by
35+
* the binding
36+
* @param _customVersion Allows overriding action's version, for example to use a specific minor
37+
* version, or a newer version that the binding doesn't yet know about
2938
*/
3039
public data class SimpleActionWithListsV3 private constructor(
3140
/**

action-binding-generator/src/test/kotlin/io/github/typesafegithub/workflows/actionbindinggenerator/bindingsfromunittests/SimpleActionWithRequiredStringInputsV3.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@ import kotlin.collections.toTypedArray
2727
* This is a test description that should be put in the KDoc comment for a class
2828
*
2929
* [Action on GitHub](https://github.com/john-smith/simple-action-with-required-string-inputs)
30+
*
31+
* @param fooBar Short description
32+
* @param bazGoo Just another input
33+
* with multiline description
34+
* @param _customInputs Type-unsafe map where you can put any inputs that are not yet supported by
35+
* the binding
36+
* @param _customVersion Allows overriding action's version, for example to use a specific minor
37+
* version, or a newer version that the binding doesn't yet know about
3038
*/
3139
public data class SimpleActionWithRequiredStringInputsV3 private constructor(
3240
/**

0 commit comments

Comments
 (0)