Skip to content
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 build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ dependencies {
exclude("org.antlr", "antlr-runtime")
}
api("io.github.1c-syntax", "utils", "0.6.8")
api("io.github.1c-syntax", "mdclasses", "0.17.0")
api("io.github.1c-syntax", "mdclasses", "0.17.1")
Copy link
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Check Maven Central for mdclasses 0.17.1
curl -s "https://search.maven.org/solrsearch/select?q=g:io.github.1c-syntax+AND+a:mdclasses&rows=100&wt=json" | jq -r '.response.docs[] | .v' | sort -V | tail -20

Repository: 1c-syntax/bsl-language-server

Length of output: 77


🌐 Web query:

mdclasses 0.17.1 release notes changelog github.com/1c-syntax

💡 Result:

I couldn't find any release notes or a GitHub release for mdclasses v0.17.1. The latest published version I can locate is 0.17.0 (Javadoc listing). [1][2]

  • Current Javadoc / latest version shows 0.17.0. [1]
  • 1c-syntax GitHub organization (mdclasses repo listed) — no visible v0.17.1 release found from search. [2]

Do you want me to search the mdclasses repository tags/releases page or open a specific URL to look for a v0.17.1 tag?


🏁 Script executed:

#!/bin/bash
# Get the actual mdclasses version from the file
rg "mdclasses" -A 0 -B 0 | head -5

Repository: 1c-syntax/bsl-language-server

Length of output: 715


🏁 Script executed:

#!/bin/bash
# Direct Maven Central query for the specific artifact
echo "=== Checking Maven Central directly ==="
curl -s "https://repo1.maven.org/maven2/io/github/1c-syntax/mdclasses/maven-metadata.xml" 2>/dev/null | grep -oP '<version>\K[^<]+' | tail -20

Repository: 1c-syntax/bsl-language-server

Length of output: 288


🌐 Web query:

mdclasses releases site:github.com/1c-syntax/mdclasses 0.17.1

💡 Result:

No — there is no v0.17.1 release. The repository's latest release is v0.17.0 (released Dec 10, 2025). [1][2]

Sources:

  • GitHub releases for 1c-syntax/mdclasses (shows v0.17.0 as latest). [1]
  • mdclasses Javadoc / artifact metadata (current version 0.17.0). [2]

Version 0.17.1 exists in Maven Central, but no public release notes are available.

The version is published to Maven Central and ready for use. However, there are no release notes or changelog on the GitHub releases page for 0.17.1—only a changelog for 0.17.0 (Dec 10, 2025). Before merging, confirm with the maintainers what bug fixes or changes are included in this patch bump, or wait for a public release announcement.

🤖 Prompt for AI Agents
In build.gradle.kts around line 91, the dependency is bumped to mdclasses 0.17.1
but there are no public release notes for that version; either revert the
version back to the last documented release (0.17.0) or pause this change and
add a TODO/comment noting we must confirm with the mdclasses maintainers what
changes/fixes 0.17.1 contains before merging—contact the maintainers for release
notes or wait for a public announcement and update the version once confirmed.

api("io.github.1c-syntax", "bsl-common-library", "0.9.0")
api("io.github.1c-syntax", "supportconf", "0.15.0")

Expand Down
Loading