-
Notifications
You must be signed in to change notification settings - Fork 48
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
Update slang digest to f6e3510 #360
Conversation
6cc978d
to
62df0e2
Compare
62df0e2
to
4976c96
Compare
8499711
to
13c526a
Compare
13c526a
to
4cecd32
Compare
ea09713
to
0d48f9e
Compare
0d48f9e
to
ce679cd
Compare
ce679cd
to
be9fedb
Compare
be9fedb
to
c5a0f61
Compare
c5a0f61
to
8ea6cd2
Compare
8ea6cd2
to
6145e14
Compare
6145e14
to
4a9b1af
Compare
4a9b1af
to
a5b1e53
Compare
a5b1e53
to
ed216bd
Compare
ed216bd
to
dec4023
Compare
d0a304f
to
16e10a0
Compare
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- WORKSPACE (1 hunks)
Additional comments not posted (3)
WORKSPACE (3)
131-132
: Verify the accessibility and correctness of the new URL.Ensure that the new URL
https://github.com/MikePopoloski/slang/archive/6969c74f11d52f1b58d3eed09890ec70abbff29c.zip
is accessible and points to the correct archive.Verification successful
Follow the redirection to verify the accessibility and correctness of the final URL.
The URL
https://github.com/MikePopoloski/slang/archive/6969c74f11d52f1b58d3eed09890ec70abbff29c.zip
returns an HTTP 302 status code, indicating a redirection. We need to follow this redirection to ensure the final URL is accessible and points to the correct archive.
The new URL is accessible and points to the correct archive.
The URL
https://github.com/MikePopoloski/slang/archive/6969c74f11d52f1b58d3eed09890ec70abbff29c.zip
successfully redirects tohttps://codeload.github.com/MikePopoloski/slang/zip/6969c74f11d52f1b58d3eed09890ec70abbff29c
, which is accessible and returns an HTTP 200 status code.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the accessibility and correctness of the new URL. # Check if the new URL is accessible. curl -sI https://github.com/MikePopoloski/slang/archive/6969c74f11d52f1b58d3eed09890ec70abbff29c.zip | head -n 1Length of output: 126
Script:
#!/bin/bash # Description: Follow the redirection and verify the final URL. # Follow the redirection and check the final URL. curl -sIL https://github.com/MikePopoloski/slang/archive/6969c74f11d52f1b58d3eed09890ec70abbff29c.zip | grep -iE 'HTTP/|Location:'Length of output: 261
129-129
: Verify the correctness of the newstrip_prefix
.Ensure that the new
strip_prefix
slang-6969c74f11d52f1b58d3eed09890ec70abbff29c
matches the directory structure of the new archive.
128-128
: Verify the correctness of the newsha256
checksum.Ensure that the new
sha256
checksuma8039db4a10167b25c4f614ec72813eaa43f1ea30c733e26a25fdea96debdf8e
matches the actual checksum of the new archive.
16e10a0
to
b5816d8
Compare
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- WORKSPACE (1 hunks)
Additional comments not posted (3)
WORKSPACE (3)
128-128
: Verify the integrity of the newsha256
checksum.Ensure that the new checksum matches the downloaded archive to prevent integrity issues.
129-129
: Verify the correctness of the newstrip_prefix
.Ensure that the new
strip_prefix
matches the top-level directory in the archive.
131-131
: Verify the accessibility and correctness of the new URL.Ensure that the new URL correctly points to the intended version of the archive.
Verification successful
URL Verification Successful:
The URL for the
slang
archive is accessible and correctly points to the intended version. The final URL ishttps://codeload.github.com/MikePopoloski/slang/zip/2b5f1ca05c8be7849b8f9b8a8f808c88b5744a7a
, and it is returning a status code of 200.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the accessibility and correctness of the new URL for the `slang` archive. # Test: Check the HTTP status code for the new URL. Expect: Status code 200. curl -o /dev/null -s -w "%{http_code}\n" "https://github.com/MikePopoloski/slang/archive/2b5f1ca05c8be7849b8f9b8a8f808c88b5744a7a.zip"Length of output: 138
Script:
#!/bin/bash # Description: Follow the redirect and verify the final URL for the `slang` archive. # Test: Use curl to follow redirects and check the final URL and status code. curl -s -L -o /dev/null -w "%{url_effective} %{http_code}\n" "https://github.com/MikePopoloski/slang/archive/2b5f1ca05c8be7849b8f9b8a8f808c88b5744a7a.zip"Length of output: 251
b5816d8
to
7b3ccbb
Compare
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- WORKSPACE (1 hunks)
Additional comments not posted (3)
WORKSPACE (3)
131-131
: Verify the updated URL.Ensure that the URL is accessible and points to the correct archive.
Verification successful
URL is accessible and correct.
The updated URL for the
slang
archive is accessible and returns a successful HTTP status code, indicating it points to a valid resource. No further action is needed.Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify the accessibility of the updated URL for the `slang` archive. # Test: Check if the URL is accessible. Expect: The URL returns a successful HTTP status code. url="https://github.com/MikePopoloski/slang/archive/39833f9d6b9402dc7b3347f7bf2afb7508cfde08.zip" # Check the URL http_status=$(curl -o /dev/null -s -w "%{http_code}\n" -L $url) # Verify the HTTP status code if [ "$http_status" -eq 200 ]; then echo "URL is accessible." else echo "URL is not accessible. HTTP status code: $http_status" fiLength of output: 323
128-128
: Verify the updatedsha256
checksum.Ensure that the new checksum matches the content of the updated archive to maintain integrity.
129-129
: Verify the updatedstrip_prefix
.Ensure that the
strip_prefix
matches the directory structure within the updated archive.
7b3ccbb
to
3281a6f
Compare
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- WORKSPACE (1 hunks)
Additional comments not posted (1)
WORKSPACE (1)
128-131
: Verify thehttp_archive
configuration forslang
.Ensure that the
sha256
checksum,strip_prefix
, andurls
fields are correct and match the actualslang
archive. This is crucial for maintaining the integrity and correct extraction of the library.
3281a6f
to
c263967
Compare
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.
Actionable comments posted: 0
c263967
to
e5eafc0
Compare
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.
Actionable comments posted: 0
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (1)
- WORKSPACE (1 hunks)
Additional comments not posted (1)
WORKSPACE (1)
134-137
: Verify the integrity of the newslang
archive.The
sha256
checksum,strip_prefix
, andurls
have been updated to reflect a new version of theslang
library. Ensure that the new checksum matches the downloaded archive to maintain integrity.
e5eafc0
to
f146f4a
Compare
f146f4a
to
893455f
Compare
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.
Actionable comments posted: 0
893455f
to
c43f0dd
Compare
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.
Actionable comments posted: 0
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update. You will not get PRs for the If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
This PR contains the following updates:
458be61
->f6e3510
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.
This change is
Summary by CodeRabbit
New Features
slang
to a new version, enhancing performance and security.Bug Fixes
slang
archive.Chores
slang
library.