-
Notifications
You must be signed in to change notification settings - Fork 1
Comparing changes
Open a pull request
base repository: stackql/setup-stackql
base: feature/updates
head repository: stackql/setup-stackql
compare: main
- 17 commits
- 16 files changed
- 3 contributors
Commits on Apr 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 09d1951 - Browse repository at this point
Copy the full SHA 09d1951View commit details
Commits on Apr 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7e7b290 - Browse repository at this point
Copy the full SHA 7e7b290View commit details -
Merge pull request #27 from stackql/feature/updates
darwin updates
Configuration menu - View commit details
-
Copy full SHA for b102971 - Browse repository at this point
Copy the full SHA b102971View commit details
Commits on Oct 28, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2c3c73e - Browse repository at this point
Copy the full SHA 2c3c73eView commit details
Commits on Mar 14, 2026
-
upgrade to node24 and update all npm dependencies to latest
- action.yml: node20 -> node24 - All @actions/* packages upgraded to latest major versions (ESM-only): - @actions/core ^1.10.0 -> ^3.0.0 - @actions/github ^5.1.1 -> ^9.0.0 - @actions/io ^1.1.2 -> ^3.0.2 - @actions/tool-cache ^2.0.1 -> ^4.0.0 - @actions/exec ^1.1.0 -> ^3.0.0 - @vercel/ncc ^0.36.1 -> ^0.38.4 (wrapper: 0.34.0 -> ^0.38.4) - husky ^8.0.3 -> ^9.1.7 (postinstall -> prepare, updated hook format) - jest ^29.3.1 -> ^30.3.0 - semistandard ^16.0.1 -> ^17.0.0 - Convert all source files from CommonJS to ESM (required by new @actions/* packages) - Add "type": "module" to both package.json files - Replace __dirname with import.meta.dirname in index.js - Rebuild dist bundles (now output as ESM via ncc) https://claude.ai/code/session_01Y8NseCm28GqE8nQ1Yvg5aa
Configuration menu - View commit details
-
Copy full SHA for afabba2 - Browse repository at this point
Copy the full SHA afabba2View commit details -
Merge pull request #29 from stackql/claude/update-node-dependencies-w…
…RhWa upgrade to node24 and update all npm dependencies to latest
Configuration menu - View commit details
-
Copy full SHA for 715bd9f - Browse repository at this point
Copy the full SHA 715bd9fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 37b5128 - Browse repository at this point
Copy the full SHA 37b5128View commit details -
Configuration menu - View commit details
-
Copy full SHA for fd26990 - Browse repository at this point
Copy the full SHA fd26990View commit details -
print stackql version in action logs and update test to validate regi…
…stry list - index.js: run stackql --version after setup and log output to action logs (runs before wrapper install to use the original binary name) - workflow: replace version check test with stackql exec REGISTRY LIST test that validates the JSON response is an array of {provider, version} objects https://claude.ai/code/session_01Y8NseCm28GqE8nQ1Yvg5aaConfiguration menu - View commit details
-
Copy full SHA for 7accc79 - Browse repository at this point
Copy the full SHA 7accc79View commit details -
fix: strip wrapper debug annotations before jq validation in test
When use_wrapper=true, @actions/exec writes stackql's stdout directly to the wrapper process's stdout AND the wrapper emits ::debug:: annotations via core.debug(). Since the JSON output has no trailing newline, the debug text is appended on the same line (e.g. [{...}]::debug::StackQL exited...). Strip all ::name::value GitHub Actions workflow commands from captured output before piping to jq. https://claude.ai/code/session_01Y8NseCm28GqE8nQ1Yvg5aaConfiguration menu - View commit details
-
Copy full SHA for c2157b8 - Browse repository at this point
Copy the full SHA c2157b8View commit details -
fix: strip wrapper command line from stackql output before jq parsing
The wrapper prints the binary path + args as the first line of output, which is not JSON. grep -E '^\s*[\[{]' keeps only lines that are actual JSON, discarding both that command line and any leftover blank lines. https://claude.ai/code/session_01Y8NseCm28GqE8nQ1Yvg5aaConfiguration menu - View commit details
-
Copy full SHA for e2161d3 - Browse repository at this point
Copy the full SHA e2161d3View commit details -
fix: use table output and GITHUB_ENV for registry list validation
Avoids jq dependency and wrapper stdout pollution. Captures table-format output via GITHUB_ENV multiline syntax, then validates header and first data row with regex (same pattern as the version check step). https://claude.ai/code/session_01Y8NseCm28GqE8nQ1Yvg5aa
Configuration menu - View commit details
-
Copy full SHA for 86853c4 - Browse repository at this point
Copy the full SHA 86853c4View commit details -
fix: use [[:space:]] instead of \s for macOS bash 3.2 compatibility
macOS ships bash 3.2 which does not support \s in =~ regex patterns. Replace with POSIX [[:space:]] which works on all platforms. https://claude.ai/code/session_01Y8NseCm28GqE8nQ1Yvg5aa
Configuration menu - View commit details
-
Copy full SHA for 3b6d999 - Browse repository at this point
Copy the full SHA 3b6d999View commit details -
fix: use shell var $registry_list_output instead of ${{ }} expansion
${{ env.registry_list_output }} causes GitHub Actions to inline the raw table content (with | pipes and newlines) directly into the bash script before the shell parses it, breaking [[ ]] conditionals on Windows. Using the shell env var avoids the inline substitution entirely. https://claude.ai/code/session_01Y8NseCm28GqE8nQ1Yvg5aaConfiguration menu - View commit details
-
Copy full SHA for c06ca6b - Browse repository at this point
Copy the full SHA c06ca6bView commit details -
Merge pull request #30 from stackql/claude/update-node-dependencies-w…
…RhWa print stackql version in action logs and update test to validate regi…
Configuration menu - View commit details
-
Copy full SHA for e461ed8 - Browse repository at this point
Copy the full SHA e461ed8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ccca03 - Browse repository at this point
Copy the full SHA 2ccca03View commit details -
Configuration menu - View commit details
-
Copy full SHA for 887bdcd - Browse repository at this point
Copy the full SHA 887bdcdView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff feature/updates...main