You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,7 +42,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
42
42
43
43
<!-- ### Deprecated -->
44
44
45
-
<!-- ### Removed -->
45
+
### Removed
46
+
47
+
- Removed deprecated or unused code/functionality, these are **breaking changes** [#278](https://github.com/Accenture/reactive-interaction-gateway/issues/278):
48
+
- Removed deprecated internal API `/v1`.
49
+
- Removed deprecated environment variables: `PROXY_KAFKA_REQUEST_AVRO`, `PROXY_KAFKA_REQUEST_TOPIC`, `PROXY_KINESIS_REQUEST_STREAM`. This means that you can set topic and schema for publishing to event streams **only** in the proxy config as described in the [docs](https://accenture.github.io/reactive-interaction-gateway/docs/api-gateway.html#publishing-to-event-streams).
50
+
- Removed experimental feature Firehose (forwarding events to an HTTP endpoint).
51
+
- Removed `path` field in proxy configuration. Reason is that the `path_regex` field is already covering `path` functionality and thus it doesn't make sense to have both of them. Should cause less confusion and improve maintainability.
52
+
- **Migration:**
53
+
- `"path": "/foo"` ->`"path_regex": "/foo"`
54
+
- `"path": "/foo/{id}"` ->`"path_regex": "/foo/(.+)"` - or pretty much whatever regex you need (e.g. UUID pattern)
0 commit comments