From 9f7b4c9b6fa3b4d20b8dd0e319602c0ea400b86a Mon Sep 17 00:00:00 2001 From: Lucas Holmquist Date: Wed, 19 Aug 2020 12:20:24 -0400 Subject: [PATCH 1/3] chore(readme): Remove reference of HTTPReceiver Signed-off-by: Lucas Holmquist --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 65a9511b..4fb66aa7 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ npm install cloudevents #### Receiving Events -You can choose almost any popular web framework for port binding. Use an -`HTTPReceiver` to process the incoming HTTP request. The receiver accepts +You can choose almost any popular web framework for port binding. Use a +`Receiver` to process the incoming HTTP request. The receiver accepts binary and structured events in either the 1.0 or 0.3 protocol formats. ```js From 7f130cfe8c6bfeb3d322170f95f2e0d83dd7f155 Mon Sep 17 00:00:00 2001 From: Lucas Holmquist Date: Wed, 19 Aug 2020 12:27:48 -0400 Subject: [PATCH 2/3] chore(readme): fix support specification links. * This adds the real links to the v0.3 and v1.0 specification. fixes #320 Signed-off-by: Lucas Holmquist --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4fb66aa7..ff9e1993 100644 --- a/README.md +++ b/README.md @@ -115,18 +115,18 @@ There you will find Express.js, TypeScript and Websocket examples. ## Supported specification features -| Core Specification | [v0.3](v03spec) | [v1.0](v1spec) | +| Core Specification | [v0.3](https://github.com/cloudevents/spec/tree/v0.3) | [v1.0](https://github.com/cloudevents/spec/tree/v1.0) | | ----------------------------- | --- | --- | | CloudEvents Core | :heavy_check_mark: | :heavy_check_mark: | --- -| Event Formats | [v0.3](v03spec) | [v1.0](v1spec) | +| Event Formats | [v0.3](https://github.com/cloudevents/spec/tree/v0.3) | [v1.0](https://github.com/cloudevents/spec/tree/v1.0) | | ----------------------------- | --- | --- | | AVRO Event Format | :x: | :x: | | JSON Event Format | :heavy_check_mark: | :heavy_check_mark: | --- -| Transport Protocols | [v0.3](v03spec) | [v1.0](v1spec) | +| Transport Protocols | [v0.3](https://github.com/cloudevents/spec/tree/v0.3) | [v1.0](https://github.com/cloudevents/spec/tree/v1.0) | | ----------------------------- | --- | --- | | AMQP Protocol Binding | :x: | :x: | | HTTP Protocol Binding | :heavy_check_mark: | :heavy_check_mark: | From cc47aad078b92be85e170e5e26183c5a71fd0a6d Mon Sep 17 00:00:00 2001 From: Lucas Holmquist Date: Wed, 19 Aug 2020 14:33:34 -0400 Subject: [PATCH 3/3] squash: updated links for core Signed-off-by: Lucas Holmquist --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ff9e1993..beaf46a7 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ There you will find Express.js, TypeScript and Websocket examples. ## Supported specification features -| Core Specification | [v0.3](https://github.com/cloudevents/spec/tree/v0.3) | [v1.0](https://github.com/cloudevents/spec/tree/v1.0) | +| Core Specification | [v0.3](https://github.com/cloudevents/spec/blob/v0.3/spec.md) | [v1.0](https://github.com/cloudevents/spec/blob/v1.0/spec.md) | | ----------------------------- | --- | --- | | CloudEvents Core | :heavy_check_mark: | :heavy_check_mark: | ---