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
8 changes: 4 additions & 4 deletions packagedef
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
.ВключитьФайл("LICENSE")
.ЗависитОт("cpuinfo", "1.4.0")
.ЗависитОт("delegate", "1.0.0")
.ЗависитОт("annotations", "1.3.1")
.ЗависитОт("asserts", "1.5.0")
.ЗависитОт("annotations", "1.4.0")
.ЗависитОт("asserts", "1.6.1")
.ЗависитОт("autumn", "4.3.11")
.ЗависитОт("autumn-cli", "1.2.0")
.ЗависитОт("coloratos", "0.3.0")
.ЗависитОт("fluent", "0.6.1")
.ЗависитОт("lambdas", "0.3.2")
.ЗависитОт("xml-parser", "0.1.1")
.ЗависитОт("lambdas", "0.3.3")
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

Verify the lambdas 0.3.3 version exists and check for security advisories.

Please verify that version 0.3.3 of the lambdas package exists and has no known vulnerabilities.


🏁 Script executed:

#!/bin/bash
# Description: Verify lambdas version 0.3.3 exists

# Check oscript-library for lambdas package
echo "Checking for lambdas package version 0.3.3..."
gh api repos/oscript-library/lambdas/releases --jq '.[] | select(.tag_name | contains("0.3.3")) | {tag_name, published_at, body}'

# Alternative: Check tags
gh api repos/oscript-library/lambdas/tags --jq '.[] | select(.name | contains("0.3.3")) | .name'

Length of output: 45



---

🏁 Script executed:

```shell
#!/bin/bash
# Try to list all repos in oscript-library to find lambdas
gh repo list oscript-library --limit 200 | grep -i lambda

Length of output: 117



---

🏁 Script executed:

```shell
#!/bin/bash
# Get all releases and tags for lambdas repository
echo "=== Releases ===" 
gh api repos/oscript-library/lambdas/releases --paginate --jq '.[] | {tag_name, published_at, draft, prerelease}'

echo ""
echo "=== Tags ===" 
gh api repos/oscript-library/lambdas/tags --paginate --jq '.[] | .name'

Length of output: 37


lambdas version 0.3.3 does not exist in the repository.

The oscript-library/lambdas repository only contains a single tag: v0.1.0. The version 0.3.3 referenced in the dependency update does not exist, making this an invalid version specification.

🤖 Prompt for AI Agents
In packagedef around line 28, the dependency entry .ЗависитОт("lambdas",
"0.3.3") references a non‑existent version; replace "0.3.3" with the actual
available tag (e.g., "v0.1.0") or the correct version string from the
oscript-library/lambdas repo, or remove the dependency if it’s not needed, then
run the dependency validation to ensure the new version exists.

.ЗависитОт("xml-parser", "0.2.0")
.ЗависитОт("logos", "1.7.1")
.ЗависитОт("fs", "1.2.0")
.ЗависитОт("tempfiles", "1.1.1")
Expand Down
Loading