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
6 changes: 3 additions & 3 deletions packagedef
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
.ВключитьФайл("appsettings.json")
.ВключитьФайл("README.md")
.ВключитьФайл("LICENSE")
.ЗависитОт("autumn", "4.3.11")
.ЗависитОт("autumn", "4.3.12")
Copy link

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

🏁 Script executed:

#!/bin/bash
# Verify autumn 4.3.12 release exists
echo "=== Checking autumn releases and tags ==="
curl -s "https://api.github.com/repos/oscript-library/autumn/releases" | jq -r '.[].tag_name' | grep -E "^v?4\.3\.12$|^4\.3\.12$" || echo "Not found in releases"

curl -s "https://api.github.com/repos/oscript-library/autumn/tags" | jq -r '.[].name' | grep -E "^v?4\.3\.12$|^4\.3\.12$" || echo "Not found in tags"

echo ""
echo "=== Recent autumn versions for context ==="
curl -s "https://api.github.com/repos/oscript-library/autumn/releases" | jq -r '.[0:5] | .[].tag_name'
curl -s "https://api.github.com/repos/oscript-library/autumn/tags" | jq -r '.[0:5] | .[].name'

Repository: Stivo182/oscript-httpbin

Length of output: 228


The autumn version 4.3.12 does not exist in the official repository.

The GitHub repository for autumn only contains versions up to v3.0.0 (recent versions: v3.0.0, v2.3.1, v2.3.0, v2.2.0, v2.1.0). Version 4.3.12 cannot be resolved. Update to an existing version or verify the version string is correct.

🤖 Prompt for AI Agents
In `@packagedef` at line 14, The dependency declaration .ЗависитОт("autumn",
"4.3.12") references a non-existent version; update the second argument to a
valid released version (e.g., "3.0.0" or another tag present in the autumn repo)
or confirm the intended version string, so replace "4.3.12" with the correct
version in the .ЗависитОт("autumn", "<correct-version>") call.

.ЗависитОт("autumn-cli", "1.2.0")
.ЗависитОт("winow", "0.11.2")
.ЗависитОт("compressor", "1.0.2")
.ЗависитОт("compressor", "1.1.0")
.ЗависитОт("1connector", "2.3.3")
.ЗависитОт("packageinfo", "1.1.1")
.ЗависитОт("fs", "1.2.0")
.ЗависитОт("logos", "1.7.1")
.ЗависитОт("configor", "0.10.0")
.ЗависитОт("configor", "0.11.0")
.РазработкаЗависитОт("1testrunner")
.РазработкаЗависитОт("asserts")
.РазработкаЗависитОт("coverage")
Expand Down
Loading