Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stackql/setup-stackql
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: feature/updates
Choose a base ref
Loading
...
head repository: stackql/setup-stackql
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Loading
Checking mergeability… Don’t worry, you can still create the pull request.
  • 17 commits
  • 16 files changed
  • 3 contributors

Commits on Apr 26, 2024

  1. Merge pull request #25 from stackql/feature/updates

    updated node
    jeffreyaven authored Apr 26, 2024
    Configuration menu
    Copy the full SHA
    09d1951 View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2024

  1. Merge pull request #26 from stackql/feature/updates

    homebrew fix
    jeffreyaven authored Apr 28, 2024
    Configuration menu
    Copy the full SHA
    7e7b290 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #27 from stackql/feature/updates

    darwin updates
    jeffreyaven authored Apr 28, 2024
    Configuration menu
    Copy the full SHA
    b102971 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2024

  1. Merge pull request #28 from stackql/feature/updates

    name change
    jeffreyaven authored Oct 28, 2024
    Configuration menu
    Copy the full SHA
    2c3c73e View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2026

  1. 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
    claude committed Mar 14, 2026
    Configuration menu
    Copy the full SHA
    afabba2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #29 from stackql/claude/update-node-dependencies-w…

    …RhWa
    
    upgrade to node24 and update all npm dependencies to latest
    jeffreyaven authored Mar 14, 2026
    Configuration menu
    Copy the full SHA
    715bd9f View commit details
    Browse the repository at this point in the history
  3. updated version

    jeffreyaven committed Mar 14, 2026
    Configuration menu
    Copy the full SHA
    37b5128 View commit details
    Browse the repository at this point in the history
  4. updated version

    jeffreyaven committed Mar 14, 2026
    Configuration menu
    Copy the full SHA
    fd26990 View commit details
    Browse the repository at this point in the history
  5. 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_01Y8NseCm28GqE8nQ1Yvg5aa
    claude committed Mar 14, 2026
    Configuration menu
    Copy the full SHA
    7accc79 View commit details
    Browse the repository at this point in the history
  6. 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_01Y8NseCm28GqE8nQ1Yvg5aa
    claude committed Mar 14, 2026
    Configuration menu
    Copy the full SHA
    c2157b8 View commit details
    Browse the repository at this point in the history
  7. 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_01Y8NseCm28GqE8nQ1Yvg5aa
    claude committed Mar 14, 2026
    Configuration menu
    Copy the full SHA
    e2161d3 View commit details
    Browse the repository at this point in the history
  8. 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
    claude committed Mar 14, 2026
    Configuration menu
    Copy the full SHA
    86853c4 View commit details
    Browse the repository at this point in the history
  9. 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
    claude committed Mar 14, 2026
    Configuration menu
    Copy the full SHA
    3b6d999 View commit details
    Browse the repository at this point in the history
  10. 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_01Y8NseCm28GqE8nQ1Yvg5aa
    claude committed Mar 14, 2026
    Configuration menu
    Copy the full SHA
    c06ca6b View commit details
    Browse the repository at this point in the history
  11. Merge pull request #30 from stackql/claude/update-node-dependencies-w…

    …RhWa
    
    print stackql version in action logs and update test to validate regi…
    jeffreyaven authored Mar 14, 2026
    Configuration menu
    Copy the full SHA
    e461ed8 View commit details
    Browse the repository at this point in the history
  12. updated output and tests

    jeffreyaven committed Mar 14, 2026
    Configuration menu
    Copy the full SHA
    2ccca03 View commit details
    Browse the repository at this point in the history
  13. updated README

    jeffreyaven committed Mar 14, 2026
    Configuration menu
    Copy the full SHA
    887bdcd View commit details
    Browse the repository at this point in the history
Loading
Morty Proxy This is a proxified and sanitized view of the page, visit original site.