Skip to content

🚀 Version 0.23.3

Choose a tag to compare

@ig-semantic-release-bot ig-semantic-release-bot released this 05 Mar 10:08
· 31 commits to main since this release

0.23.3 (2026-03-05)

♻️ Improvements

🔧 Miscellaneous

  • deps)(deps: Bump go.opentelemetry.io/otel/sdk (#242) (5660f71)
  • deps: Bump @hono/node-server (#245) (379e1b9)
  • deps: Bump @modelcontextprotocol/sdk (#235) (987087e)
  • deps: Bump ajv in /examples/docker-compose/mcp/pizza-server (#240) (9a24b04)
  • deps: bump dev tool and CI action versions (#247) (0deb374)
  • deps: Bump hono in /examples/docker-compose/mcp/pizza-server (#234) (ad5bd93)
  • deps: Bump hono in /examples/docker-compose/mcp/pizza-server (#239) (289f2d1)
  • deps: Bump hono in /examples/docker-compose/mcp/pizza-server (#241) (bdfb283)
  • deps: Bump hono in /examples/docker-compose/mcp/pizza-server (#244) (cbad88f)
  • deps: Bump qs in /examples/docker-compose/mcp/pizza-server (#238) (df33864)
  • deps: Bump the examples-go group across 7 directories with 5 updates (#250) (11f16ec)
  • deps: Bump the examples-npm group (#249) (42ae2f5)
  • deps: Reduce dependabot noise for examples dependencies (#248) (0611eaa)

📦 Quick Installation

Binary Installation

Install latest version:

curl -fsSL https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/install.sh | bash

Install this version:

curl -fsSL https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/install.sh | VERSION=v0.23.3 bash

Install to custom directory:

curl -fsSL https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/install.sh | INSTALL_DIR=~/.local/bin bash

Verify installation:

inference-gateway --version

Running as a Container (Recommended)

Using Docker:

docker run -d \
  -p 8080:8080 \
  -e OPENAI_API_KEY=your-api-key \
  ghcr.io/inference-gateway/inference-gateway:0.23.3

Using Docker Compose:

# Download example configuration
curl -O https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/examples/docker-compose/basic/docker-compose.yml
curl -O https://raw.githubusercontent.com/inference-gateway/inference-gateway/main/examples/docker-compose/basic/.env.example
mv .env.example .env

# Edit .env with your API keys
# Start the gateway
docker compose up -d

For more installation options and documentation, visit the README.