Skip to content

Commit

Permalink
Upgrade HTTP connector v0.8.1 (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
hgiasac authored Jan 6, 2025
1 parent d0d7d46 commit f803310
Show file tree
Hide file tree
Showing 4 changed files with 38,616 additions and 16,665 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
FROM ghcr.io/hasura/ndc-http:v0.7.0
FROM ghcr.io/hasura/ndc-http:v0.8.1

COPY ./config /etc/connector
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
NDC_HTTP_VERSION ?= v0.7.0
NDC_HTTP_VERSION ?= v0.8.1
UID ?= $(shell id -u)
GID ?= $(shell id -g)

Expand Down
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,15 @@ This connector is built using the [HTTP Connector](https://github.com/hasura/ndc

## Environment Variables

| Name | Description | Default Value |
| ------------------------ | --------------------------------------------- | ---------------------- |
| STRIPE_SERVER_URL | The base server URL of Stripe API | https://api.stripe.com |
| STRIPE_BASIC_AUTH_TOKEN | Basic authentication token | |
| STRIPE_BEARER_AUTH_TOKEN | Bearer authentication token | |
| STRIPE_TIMEOUT | Default request timeout in seconds | 30 |
| STRIPE_RETRY_TIMES | Number of retry times | 0 |
| STRIPE_RETRY_DELAY | Delay time between each retry in milliseconds | 1000 |
| Name | Description | Default Value |
| -------------------------- | ------------------------------------------------------------------------------ | ---------------------- |
| STRIPE_SERVER_URL | The base server URL of Stripe API | https://api.stripe.com |
| STRIPE_BEARER_AUTH_TOKEN | Bearer authentication token | |
| STRIPE_BASIC_AUTH_USERNAME | Basic authentication username. Required if `STRIPE_BASIC_AUTH_PASSWORD` is set | |
| STRIPE_BASIC_AUTH_PASSWORD | Basic authentication password. Required if `STRIPE_BASIC_AUTH_USERNAME` is set | |
| STRIPE_TIMEOUT | Default request timeout in seconds | 30 |
| STRIPE_RETRY_TIMES | Number of retry times | 0 |
| STRIPE_RETRY_DELAY | Delay time between each retry in milliseconds | 1000 |

## Development

Expand Down
Loading

0 comments on commit f803310

Please sign in to comment.