github gofr-dev/gofr v1.45.0

latest releases: v1.46.3, v1.46.2, v1.46.1...
one month ago

Release v1.45.0

✨ Features

🔹 DynamoDB Key-Value Store Support

  • Added full DynamoDB support as a GoFr KVStore implementation.

  • Features include: health checks, connection lifecycle management, JSON helper utilities, structured logging, OpenTelemetry tracing, and mock support for testing.

  • Import the gofr's external driver for DynamoDB:

      go get gofr.dev/pkg/gofr/datasource/kv-store/dynamodb@latest
    

    How to use DynamoDB in GoFr:

      db := dynamodb.New(dynamodb.Configs{
          Table:            "gofr-kv-store",
          Region:           "us-east-1",
          Endpoint:         "http://localhost:8000", // For local dev
          PartitionKeyName: "pk",
      })

    For full documentation, checkout 👉 gofr.dev/docs

Don't miss a new gofr release

NewReleases is sending notifications on new releases.