-
Notifications
You must be signed in to change notification settings - Fork 2
build(deps): Bump autumn-cli 1.1.0 → 1.2.0, winow 0.9.4 → 0.11.0 #9
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| Описание.Имя("httpbin") | ||
| Описание.Имя("httpbin") | ||
| .Версия("1.3.0") | ||
| .Автор("Dmitry Ivanov") | ||
| .АдресАвтора("https://github.com/Stivo182") | ||
|
|
@@ -11,8 +11,8 @@ | |
| .ВключитьФайл("autumn-properties.json") | ||
| .ВключитьФайл("README.md") | ||
| .ВключитьФайл("LICENSE") | ||
| .ЗависитОт("winow", "0.9.4") | ||
| .ЗависитОт("autumn-cli", "1.1.0") | ||
| .ЗависитОт("winow", "0.11.0") | ||
| .ЗависитОт("autumn-cli", "1.2.0") | ||
|
Comment on lines
+14
to
+15
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chainVerify dependency versions exist and check for breaking changes. The dependency updates look reasonable, but ensure the specified versions exist and are compatible with this package. Run the following script to verify the versions and check for any compatibility issues: 🏁 Script executed: #!/bin/bash
# Check if the specified versions exist in the repositories
echo "Checking winow 0.11.0..."
curl -s "https://hub.oscript.io/api/v1/packages/winow" | jq '.versions[] | select(.version == "0.11.0")'
echo "Checking autumn-cli 1.2.0..."
curl -s "https://hub.oscript.io/api/v1/packages/autumn-cli" | jq '.versions[] | select(.version == "1.2.0")'
# Check GitHub releases
echo "Checking winow releases..."
gh api repos/oscript-library/winow/releases --jq '.[] | select(.tag_name | contains("0.11.0")) | {tag_name, published_at, body}'
echo "Checking autumn-cli releases..."
gh api repos/oscript-library/autumn-cli/releases --jq '.[] | select(.tag_name | contains("1.2.0")) | {tag_name, published_at, body}'Length of output: 226 🏁 Script executed: #!/bin/bash
echo "winow tags:"
curl -s https://api.github.com/repos/oscript-library/winow/tags | jq '.[].name' | grep -E 'v?0\.11\.0'
echo "autumn-cli tags:"
curl -s https://api.github.com/repos/oscript-library/autumn-cli/tags | jq '.[].name' | grep -E 'v?1\.2\.0'
echo "winow release v0.11.0 details:"
curl -s https://api.github.com/repos/oscript-library/winow/releases | jq '.[] | select(.tag_name == "v0.11.0" or .tag_name == "0.11.0") | {tag_name, published_at, body}'
echo "autumn-cli release v1.2.0 details:"
curl -s https://api.github.com/repos/oscript-library/autumn-cli/releases | jq '.[] | select(.tag_name == "v1.2.0" or .tag_name == "1.2.0") | {tag_name, published_at, body}'Length of output: 94 packagedef: missing release tags for [email protected] and [email protected] 🤖 Prompt for AI Agents |
||
| .ЗависитОт("compressor") | ||
| .ЗависитОт("1connector") | ||
| .РазработкаЗависитОт("1testrunner") | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Unintended BOM character detected.
A UTF-8 Byte Order Mark (U+FEFF) appears before
Описание.Имя("httpbin"). BOMs can cause parsing errors in some interpreters and are generally unnecessary in UTF-8 files.Verify whether the oscript interpreter tolerates BOMs in packagedef files:
🏁 Script executed:
Length of output: 40
🏁 Script executed:
Length of output: 175
🏁 Script executed:
Length of output: 29
Remove UTF-8 BOM from packagedef
A UTF-8 Byte Order Mark was detected at the start of
packagedef. BOMs can cause parsing errors in the oscript interpreter. Remove the leading BOM so the file begins directly withОписание.Имя("httpbin").🤖 Prompt for AI Agents