Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency com.eed3si9n:sbt-buildinfo to v0.13.1 #763

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 3, 2024

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.0.0-M2

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 https://github.com/sbt/sbt-buildinfo/pull/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 https://github.com/sbt/sbt-buildinfo/pull/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 Nov 3, 2024
@renovate renovate bot changed the title Update dependency com.eed3si9n:sbt-buildinfo to v0.13.0 Update dependency com.eed3si9n:sbt-buildinfo to v0.13.1 Nov 9, 2024
@renovate renovate bot force-pushed the renovate/com.eed3si9n-sbt-buildinfo-0.x branch from 9819326 to e263000 Compare November 9, 2024 12:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants