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 sbt-buildinfo to 0.13.1 #1288

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
// release management
addSbtPlugin("com.github.sbt" % "sbt-github-actions" % "0.24.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

πŸ’‘ Codebase verification

Version 0.13.1 exists but hasn't been released yet

The PR is updating to version 0.13.1, which exists as a tag (v0.13.1) in the repository but hasn't been officially released yet. The latest official release is still 0.13.0. It's recommended to wait for the official release before updating.

  • The tag v0.13.1 was created recently (commit 07337b5)
  • The latest GitHub release is still v0.13.0
  • Using an unreleased version could lead to potential issues
πŸ”— Analysis chain

LGTM! Safe patch update for sbt-buildinfo.

The update from 0.13.0 to 0.13.1 is a patch version increment, indicating only backwards compatible bug fixes. This is a safe change that shouldn't impact the build process.

Let's verify this is the latest stable version:

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Verify the latest version of sbt-buildinfo
# Expected: Should show 0.13.1 as the latest stable version

# Check the latest release tag
gh release list --repo sbt/sbt-buildinfo --limit 1

Length of output: 95


Script:

#!/bin/bash
# Let's verify if there are any newer releases or tags that might not be marked as releases
gh api repos/sbt/sbt-buildinfo/tags --jq '.[0:3] | .[] | {name, commit: .commit.sha}'

# Also check if there are any recent commits that might indicate a newer version
gh api repos/sbt/sbt-buildinfo/commits --jq '.[0:3] | .[] | {sha: .sha, date: .commit.author.date, message: .commit.message}'

Length of output: 867

addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.2")
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.1.0")
addSbtPlugin("com.github.sbt" % "sbt-unidoc" % "0.5.0")
Expand Down