Skip to content

Commit ee683c9

Browse files
authored
Update Release Notes for 0.7.0rc1 (#2835)
* Update Release Notes for 0.7.0rc1 * CI: pin RMQ to 3.13
1 parent ac31b96 commit ee683c9

6 files changed

Lines changed: 20 additions & 5 deletions

File tree

.github/workflows/codspeed_benchmarks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
KAFKA_CONTROLLER_LISTENER_NAMES: "CONTROLLER"
3030
CLUSTER_ID: "MkU3OEVBNTcwNTJENDM2Qk"
3131
rabbitmq:
32-
image: rabbitmq:alpine
32+
image: rabbitmq:3.13-alpine
3333
ports:
3434
- 5672:5672
3535
nats:

.github/workflows/pr_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ jobs:
297297
runs-on: ubuntu-latest
298298
services:
299299
rabbitmq:
300-
image: rabbitmq:alpine
300+
image: rabbitmq:3.13-alpine
301301
ports:
302302
- 5672:5672
303303
steps:

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
rabbitmq:
3-
image: rabbitmq:alpine
3+
image: rabbitmq:3.13-alpine
44
ports:
55
- "5672:5672"
66
security_opt:

docs/docs/en/getting-started/observability/healthcheks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ COPY main.py /app
137137
```yaml linenums="1" hl_lines="37"
138138
services:
139139
rabbitmq:
140-
image: rabbitmq:3.8-management
140+
image: rabbitmq:3.13-management
141141
container_name: rabbitmq-local
142142
environment:
143143
RABBITMQ_DEFAULT_USER: guest

docs/docs/en/release.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,21 @@ hide:
1212
---
1313

1414
# Release Notes
15+
## 0.7.0rc1
16+
17+
### What's Changed
18+
19+
* fix: corrected security parsing for mqtt broker by [@lemmehoop](https://github.com/lemmehoop){.external-link target="_blank"} in [#2832](https://github.com/ag2ai/faststream/pull/2832){.external-link target="_blank"}
20+
* chore: add MQTT code ownership for borisalekseev by [@Lancetnik](https://github.com/Lancetnik){.external-link target="_blank"} in [#2825](https://github.com/ag2ai/faststream/pull/2825){.external-link target="_blank"}
21+
* feat: support broker-level ack_policy with per-subscriber override by [@ce1ebrimbor](https://github.com/ce1ebrimbor){.external-link target="_blank"} in [#2827](https://github.com/ag2ai/faststream/pull/2827){.external-link target="_blank"}
22+
* tests: add MQTT AsyncAPI tests by [@Lancetnik](https://github.com/Lancetnik){.external-link target="_blank"} in [#2830](https://github.com/ag2ai/faststream/pull/2830){.external-link target="_blank"}
23+
24+
### New Contributors
25+
* [@ce1ebrimbor](https://github.com/ce1ebrimbor){.external-link target="_blank"} made their first contribution in [#2827](https://github.com/ag2ai/faststream/pull/2827){.external-link target="_blank"}
26+
* [@lemmehoop](https://github.com/lemmehoop){.external-link target="_blank"} made their first contribution in [#2832](https://github.com/ag2ai/faststream/pull/2832){.external-link target="_blank"}
27+
28+
**Full Changelog**: [#0.7.0rc0...0.7.0rc1](https://github.com/ag2ai/faststream/compare/0.7.0rc0...0.7.0rc1){.external-link target="_blank"}
29+
1530
## 0.7.0rc0
1631

1732
### What's Changed

docs/includes/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: "3"
22
services:
33
rabbitmq:
4-
image: rabbitmq:4-management
4+
image: rabbitmq:3.13-management
55
ports:
66
- "5672:5672"
77
- "15672:15672"

0 commit comments

Comments
 (0)