Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update fluvio #131

Merged
merged 1 commit into from
Jun 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lto = true
[workspace.dependencies]
async-std = { version = "1.12", default-features = false, features = ["attributes", "tokio1"] }

fluvio = { git = "https://github.com/infinyon/fluvio", tag = "v0.11.8"}
fluvio-connector-common = { git = "https://github.com/infinyon/fluvio", tag = "v0.11.8"}
fluvio-smartmodule = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.11.8" }
fluvio-smartengine = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.11.8", feature = ["engine"] }
fluvio = { git = "https://github.com/infinyon/fluvio", tag = "v0.11.9" }
fluvio-connector-common = { git = "https://github.com/infinyon/fluvio", tag = "v0.11.9" }
fluvio-smartmodule = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.11.9" }
fluvio-smartengine = { git = "https://github.com/infinyon/fluvio.git", tag = "v0.11.9" }
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ HTTP Sink is configured using a YAML file:
# config-example.yaml
apiVersion: 0.1.0
meta:
version: 0.2.7
version: 0.2.9
name: my-http-sink
type: http-sink
topic: http-sink-topic
Expand All @@ -34,7 +34,7 @@ http:
| method | POST | String | POST, PUT |
| endpoint | - | String | HTTP URL endpoint |
| headers | - | Array\<String\> | Request header(s) "Key:Value" pairs |
| user-agent | `fluvio/http-sink 0.2.2` | String | Request user-agent |
| user-agent | `fluvio/http-sink 0.2.9` | String | Request user-agent |
| http_request_timeout | 1s | String | HTTP Request Timeout |
| http_connect_timeout | 15s | String | HTTP Connect Timeout |

Expand All @@ -57,7 +57,7 @@ HTTP request to `http://httpbin.org/post`.
# config.yaml
apiVersion: 0.1.0
meta:
version: 0.2.7
version: 0.2.9
name: httpbin
type: http-sink
topic: httpbin-send-post
Expand Down Expand Up @@ -133,7 +133,7 @@ The previous example can be extended to add extra transformations to outgoing re
# config-example.yaml
apiVersion: 0.1.0
meta:
version: 0.2.7
version: 0.2.9
name: my-http-sink
type: http-sink
topic: http-sink-topic
Expand Down Expand Up @@ -165,7 +165,7 @@ See the example below:
```yaml
apiVersion: 0.2.0
meta:
version: 0.2.7
version: 0.2.9
name: my-http-sink
type: http-sink
topic:
Expand Down
2 changes: 1 addition & 1 deletion crates/http-sink/Connector.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "http-sink"
group = "infinyon"
version = "0.2.9"
apiVersion = "0.1.0"
fluvio = "0.11.16"
fluvio = "0.11.9"
description = "HTTP sink connector reads records from data streaming and generates an HTTP request"
license = "Apache-2.0"
visibility = "public"
Expand Down
Loading