Skip to content
Open
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 packagedef
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
.ЗависитОт("annotations", "1.4.0")
.ЗависитОт("asserts", "1.6.1")
.ЗависитОт("autumn", "4.3.12")
.ЗависитОт("autumn-cli", "1.2.0")
.ЗависитОт("autumn-cli", "1.3.0")
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

🧩 Analysis chain

🌐 Web query:

autumn-cli 1.3.0 release notes changelog

💡 Result:

No release notes or changelog for autumn-cli version 1.3.0 were found. The official GitHub repository https://github.com/autumn-library/autumn-cli (a 1C Enterprise CLI library built on the Autumn framework) has 5 releases with the latest being v1.2.0 on 2025-05-31. The parent Autumn framework repo https://github.com/autumn-library/autumn has detailed release notes for recent versions up to v4.3.12, but none match autumn-cli 1.3.0 exactly. No other projects named autumn-cli have a 1.3.0 release with published notes. It's possible the version refers to an unreleased or internal build, or the docs site https://autumn-library.github.io/autumn-cli may have additional info not indexed in search results.

Citations:


🏁 Script executed:

#!/bin/bash
# Description: Check autumn-cli releases and verify version 1.3.0 exists

# Fetch release information for autumn-cli from GitHub
gh release list --repo oscript-library/autumn-cli --limit 10

# Get release notes for version 1.3.0 if it exists
gh release view v1.3.0 --repo oscript-library/autumn-cli 2>/dev/null || \
gh release view 1.3.0 --repo oscript-library/autumn-cli 2>/dev/null || \
echo "Version 1.3.0 not found in releases"

Repository: Stivo182/BenchmarkOneScript

Length of output: 107


Version 1.3.0 does not exist in autumn-cli releases — this dependency cannot be satisfied.

The latest released version of autumn-cli is 1.2.0 (released 2025-05-31). Version 1.3.0 is not found in the official GitHub releases for autumn-cli. Revert to version 1.2.0 or confirm if 1.3.0 is an internal/unreleased build that needs to be available in your package repository.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@packagedef` at line 26, The dependency declaration .ЗависитОт("autumn-cli",
"1.3.0") references a non-existent release; change the version to the latest
public release .ЗависитОт("autumn-cli", "1.2.0") or, if 1.3.0 is an
internal/unreleased build, update the package repository and dependency source
to point to that internal artifact instead of leaving "1.3.0" in the
declaration.

.ЗависитОт("coloratos", "0.3.0")
.ЗависитОт("fluent", "0.6.1")
.ЗависитОт("lambdas", "0.3.3")
Expand Down
Loading