Skip to content

chore(deps): update dependency com.eed3si9n:sbt-buildinfo to v0.13.1#104

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/com.eed3si9n-sbt-buildinfo-0.x
Open

chore(deps): update dependency com.eed3si9n:sbt-buildinfo to v0.13.1#104
renovate[bot] wants to merge 1 commit intomainfrom
renovate/com.eed3si9n-sbt-buildinfo-0.x

Conversation

@renovate
Copy link

@renovate renovate bot commented May 1, 2025

This PR contains the following updates:

Package Type Update New value References Sourcegraph
com.eed3si9n:sbt-buildinfo plugin minor 0.13.1 source code search for "com.eed3si9n:sbt-buildinfo"

Test plan: CI should pass with updated dependencies. No review required: this is an automated dependency update PR.


Release Notes

sbt/sbt-buildinfo (com.eed3si9n:sbt-buildinfo)

v0.13.1: 0.13.1

Compare Source

sbt-buildinfo 0.13.1 is cross published to:

sbt Version Published
1.x
2.x

about sbt-buildinfo

sbt-buildinfo is an sbt plugin to generate Scala source from your build definitions.

bug fixes

behind the scene

Full Changelog: sbt/sbt-buildinfo@v0.13.0...v0.13.1

v0.13.0: 0.13.0

Compare Source

sbt-buildinfo 0.13.0 is cross published to:

sbt Version Published
1.x
2.0.0-M2

sbt 2.x migration

updates

Full Changelog: sbt/sbt-buildinfo@v0.12.0...v0.13.0

v0.12.0: 0.12.0

Compare Source

updates

behind the scene

new contributors

Full Changelog: sbt/sbt-buildinfo@v0.11.0...v0.12.0

v0.11.0: 0.11.0

Compare Source

Changes with compatibility implications

sbt-buildinfo 0.11.0 removes import scala.Predef._ from the generated code to fix the compatibility with new Scala 3 syntax.
If import scala.Predef._ is needed, use BuildInfoOption.ImportScalaPredef:

buildInfoOptions += BuildInfoOption.ImportScalaPredef

This was contributed by @​martingd in #​180

Java renderers

sbt-buildinfo 0.11.0 introduces two flavors to Java renders.

buildInfoRenderFactory := JavaSingletonRenderer.apply

This generates Java source code using singleton pattern:

package hello;

/** This file was generated by sbt-buildinfo. */
public final class BuildInfo {
  private BuildInfo() {}

  public static final BuildInfo instance = new BuildInfo();
  /** The value is "helloworld". */
  public final String name = "helloworld";
}
buildInfoRenderFactory := JavaStaticFieldsRenderer.apply

This generates Java source code using static fields:

package hello;

/** This file was generated by sbt-buildinfo. */
public final class BuildInfo {
  private BuildInfo() {}

  /** The value is "helloworld". */
  public static final String name = "helloworld";
}

These were contributed by @​arixmkii in #​167

What's Changed

New Contributors

Full Changelog: sbt/sbt-buildinfo@v0.10.0...v0.11.0


Configuration

📅 Schedule: Branch creation - "on the 1st through 7th day of the month" in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the bot label May 1, 2025
@renovate renovate bot force-pushed the renovate/com.eed3si9n-sbt-buildinfo-0.x branch from 0bcf696 to d256ad2 Compare December 18, 2025 11:14
@renovate renovate bot force-pushed the renovate/com.eed3si9n-sbt-buildinfo-0.x branch from d256ad2 to cb69968 Compare December 18, 2025 11:24
@renovate renovate bot force-pushed the renovate/com.eed3si9n-sbt-buildinfo-0.x branch from cb69968 to dc99cbf Compare December 18, 2025 11:30
@renovate renovate bot force-pushed the renovate/com.eed3si9n-sbt-buildinfo-0.x branch from dc99cbf to 3830fea Compare December 18, 2025 11:36
@renovate renovate bot force-pushed the renovate/com.eed3si9n-sbt-buildinfo-0.x branch from 3830fea to 7a5b601 Compare December 18, 2025 11:40
@renovate renovate bot force-pushed the renovate/com.eed3si9n-sbt-buildinfo-0.x branch from 7a5b601 to 6da192e Compare December 18, 2025 11:48
@renovate renovate bot force-pushed the renovate/com.eed3si9n-sbt-buildinfo-0.x branch from 6da192e to 07f660a Compare December 18, 2025 11:53
@renovate renovate bot force-pushed the renovate/com.eed3si9n-sbt-buildinfo-0.x branch from 07f660a to b502798 Compare December 18, 2025 11:58
@renovate renovate bot force-pushed the renovate/com.eed3si9n-sbt-buildinfo-0.x branch from b502798 to 3db0983 Compare December 18, 2025 12:08
@renovate renovate bot force-pushed the renovate/com.eed3si9n-sbt-buildinfo-0.x branch from 3db0983 to 61f1d16 Compare February 2, 2026 15:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

0 participants