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

[Merged by Bors] - bump versions #514

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 1 addition & 1 deletion content/connectors/examples/github.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ the file:
%copy%
```yaml
# connect.yml
version: 0.4.2
version: 0.4.3
name: github-repo
type: http-source
topic: github-repo
Expand Down
2 changes: 1 addition & 1 deletion content/connectors/how-to/connectors-with-smartmodules.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ For this example, we would add `map` to the `parameters` section, like so:
%copy%
```yaml
# connect.yml
version: 0.4.2
version: 0.4.3
name: cat-facts
type: http-source
topic: cat-facts
Expand Down
2 changes: 1 addition & 1 deletion content/connectors/inbound/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ type: http-source

%copy%
```yaml
version: 0.4.2
version: 0.4.3
```

## Parameters
Expand Down
2 changes: 1 addition & 1 deletion content/connectors/inbound/kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: kafka-source

%copy%
```yaml
version: 0.3.1
version: 0.3.2
```

## Parameters
Expand Down
2 changes: 1 addition & 1 deletion content/connectors/inbound/mqtt.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type: mqtt-source

%copy%
```yaml
version: 0.5.2
version: 0.5.3
```

## Parameters
Expand Down
2 changes: 1 addition & 1 deletion content/connectors/outbound/kafka.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ type: kafka-sink

%copy%
```yaml
version: 0.3.2
version: 0.3.3
```

## Parameters
Expand Down
2 changes: 1 addition & 1 deletion content/connectors/outbound/sql.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type: sql-sink

%copy%
```yaml
version: 0.1.1
version: 0.1.2
```

## Parameters
Expand Down
2 changes: 1 addition & 1 deletion content/docs/tutorials/data-pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ You can use `fluvio cloud connector list` to view the status of the connector.
```shell
$ fluvio cloud connector list
NAME TYPE VERSION STATUS
cat-facts http-source 0.4.2 Running
cat-facts http-source 0.4.3 Running
```

And `fluvio consume` to view the incoming data in the topic.
Expand Down
2 changes: 1 addition & 1 deletion embeds/client-examples/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18
FROM node:16
Copy link
Contributor Author

@morenol morenol Mar 9, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is an issue with node client and node 18
#515
infinyon/fluvio-client-node#288

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We can update this whenever that node issue gets addressed


# Run as the `fluvio` user instead of root
ENV USER=fluvio
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# catfacts-basic-connector-with-transform.yml
version: 0.4.2
version: 0.4.3
name: cat-facts-transformed
type: http-source
topic: cat-facts-data-transformed
Expand Down
2 changes: 1 addition & 1 deletion embeds/connectors/catfacts-basic-connector.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# catfacts-basic-connector.yml
version: 0.4.2
version: 0.4.3
name: cat-facts
type: http-source
topic: cat-facts-data
Expand Down
2 changes: 1 addition & 1 deletion embeds/connectors/inbound-examples/inbound-http.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.4.2
version: 0.4.3
name: cat-facts
type: http-source
topic: cat-facts
Expand Down
2 changes: 1 addition & 1 deletion embeds/connectors/inbound-examples/inbound-kafka.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.3.1
version: 0.3.2
name: my-inbound-kafka
type: kafka-source
topic: fluvio-output-topic
Expand Down
2 changes: 1 addition & 1 deletion embeds/connectors/inbound-examples/inbound-mqtt.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.5.2
version: 0.5.3
name: my-mqtt
type: mqtt-source
topic: mqtt-topic
Expand Down
2 changes: 1 addition & 1 deletion embeds/connectors/outbound-examples/outbound-kafka.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: my-outbound-kafka
type: kafka-sink
version: 0.3.2
version: 0.3.3
parameters:
kafka-url: kafka-ssl.host.tld:9092
security-protocol: 'SSL'
Expand Down
2 changes: 1 addition & 1 deletion embeds/connectors/outbound-examples/outbound-sql.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: fluvio-sql-connector
type: sql-sink
version: 0.1.1
version: 0.1.2
topic: json-topic
create-topic: true
parameters:
Expand Down
2 changes: 1 addition & 1 deletion embeds/tutorials/data-pipeline/sql-basic.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# sql.yaml
name: simple-cat-facts-sql
type: sql-sink
version: 0.1.1
version: 0.1.2
topic: cat-facts-data
parameters:
database-url: "postgres://user:[email protected]/dbname"
Expand Down
2 changes: 1 addition & 1 deletion embeds/tutorials/data-pipeline/sql-transform.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# sql-chain.yaml
name: transform-cat-facts-sql
type: sql-sink
version: 0.1.1
version: 0.1.2
topic: cat-facts-data
parameters:
database-url: "postgres://user:[email protected]/dbname"
Expand Down
2 changes: 1 addition & 1 deletion embeds/tutorials/mqtt-to-sql/mqtt-chain.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# mqtt.yml
version: 0.5.2
version: 0.5.3
name: fluvio-mqtt-connector
type: mqtt-source
topic: mqtt-topic
Expand Down
2 changes: 1 addition & 1 deletion embeds/tutorials/mqtt-to-sql/mqtt.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# mqtt.yml
version: 0.5.2
version: 0.5.3
name: fluvio-mqtt-connector
type: mqtt-source
topic: mqtt-topic
Expand Down
2 changes: 1 addition & 1 deletion embeds/tutorials/mqtt-to-sql/sql-chain.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# sql-chain.yml
name: fluvio-sql-connector-chain
type: sql-sink
version: 0.1.1
version: 0.1.2
topic: mqtt-topic
create-topic: true
parameters:
Expand Down
2 changes: 1 addition & 1 deletion embeds/tutorials/mqtt-to-sql/sql-pre-transformed.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# sql-chain.yml
name: fluvio-sql-connector-chain
type: sql-sink
version: 0.1.1
version: 0.1.2
topic: mqtt-topic
create-topic: true
parameters:
Expand Down
2 changes: 1 addition & 1 deletion embeds/tutorials/mqtt-to-sql/sql.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# sql.yml
name: fluvio-sql-connector
type: sql-sink
version: 0.1.1
version: 0.1.2
topic: mqtt-topic
create-topic: true
parameters:
Expand Down