Skip to content
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: detailobsessed/efficient-gitlab-mcp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2.2
Choose a base ref
...
head repository: detailobsessed/efficient-gitlab-mcp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.2.3
Choose a head ref
  • 3 commits
  • 3 files changed
  • 3 contributors

Commits on Dec 25, 2025

  1. test: try Blacksmith runner with Node.js 24 for npm OIDC (#27)

    Co-authored-by: Ismar Iljazovic <[email protected]>
    ichoosetoaccept and Ismar Iljazovic authored Dec 25, 2025
    Configuration menu
    Copy the full SHA
    e6f1916 View commit details
    Browse the repository at this point in the history
  2. fix: correct bin format in package.json (#26)

    ## Summary
    
    Fixes npm publish warnings by using proper object format for `bin` field.
    
    ## Problem
    
    npm was auto-correcting the bin format during publish:
    
    ```
    npm warn publish "bin" was converted to an object
    npm warn publish "bin[efficient-gitlab-mcp-server]" script name was cleaned
    ```
    
    ## Solution
    
    Changed from shorthand:
    ```json
    "bin": "./dist/index.js"
    ```
    
    To explicit object format:
    ```json
    "bin": {
      "efficient-gitlab-mcp-server": "./dist/index.js"
    }
    ```
    ichoosetoaccept authored Dec 25, 2025
    Configuration menu
    Copy the full SHA
    91a1e98 View commit details
    Browse the repository at this point in the history
  3. chore(release): 0.2.3 [skip ci]

    ## [0.2.3](v0.2.2...v0.2.3) (2025-12-25)
    
    ### Bug Fixes
    
    * correct bin format in package.json ([#26](#26)) ([91a1e98](91a1e98))
    semantic-release-bot committed Dec 25, 2025
    Configuration menu
    Copy the full SHA
    4bd31d7 View commit details
    Browse the repository at this point in the history
Loading