Skip to content

Commit 1538e15

Browse files
Bump version to 2.0.0b7 (#593)
* Bump version to 2.0.0b7 * chore: changes to changelog from PR comments * chore: grammar fix * Add entry for #596 * Apply suggestions from code review --------- Co-authored-by: James Hilton-Balfe <[email protected]>
1 parent 4e9a17c commit 1538e15

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,29 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
- Versions suffixed with `b*` are in `beta` and can be installed with `pip install --pre betterproto`.
99

10+
## [2.0.0b7] - 2024-08-11
11+
12+
- **Breaking**: Support `Pydantic` v2 and dropping support for v1 [#588](https://github.com/danielgtaylor/python-betterproto/pull/588)
13+
- **Breaking**: The attempting to access an unset `oneof` now raises an `AttributeError`
14+
field. To see how to access `oneof` fields now, refer to [#558](https://github.com/danielgtaylor/python-betterproto/pull/558)
15+
and [README.md](https://github.com/danielgtaylor/python-betterproto#one-of-support).
16+
- **Breaking**: A custom `Enum` has been implemented to match the behaviour of being an open set. Any checks for `isinstance(enum_member, enum.Enum)` and `issubclass(EnumSubclass, enum.Enum)` will now return `False`. This change also has the side effect of
17+
preventing any passthrough of `Enum` members (i.e. `Foo.RED.GREEN` doesn't work any more). See [#293](https://github.com/danielgtaylor/python-betterproto/pull/293) for more info, this fixed many bugs related to `Enum` handling.
18+
19+
- Add support for `pickle` methods [#535](https://github.com/danielgtaylor/python-betterproto/pull/535)
20+
- Add support for `Struct` and `Value` types [#551](https://github.com/danielgtaylor/python-betterproto/pull/551)
21+
- Add support for [`Rich` package](https://rich.readthedocs.io/en/latest/index.html) for pretty printing [#508](https://github.com/danielgtaylor/python-betterproto/pull/508)
22+
- Improve support for streaming messages [#518](https://github.com/danielgtaylor/python-betterproto/pull/518) [#529](https://github.com/danielgtaylor/python-betterproto/pull/529)
23+
- Improve performance of serializing / de-serializing messages [#545](https://github.com/danielgtaylor/python-betterproto/pull/545)
24+
- Improve the handling of message name collisions with typing by allowing the method / type of imports to be configured.
25+
Refer to [#582](https://github.com/danielgtaylor/python-betterproto/pull/582)
26+
and [README.md](https://github.com/danielgtaylor/python-betterproto#configuration-typing-imports).
27+
- Fix roundtrip parsing of `datetime`s [#534](https://github.com/danielgtaylor/python-betterproto/pull/534)
28+
- Fix accessing unset optional fields [#523](https://github.com/danielgtaylor/python-betterproto/pull/523)
29+
- Fix `Message` equality comparison [#513](https://github.com/danielgtaylor/python-betterproto/pull/513)
30+
- Fix behaviour with long comment messages [#532](https://github.com/danielgtaylor/python-betterproto/pull/532)
31+
- Add a warning when calling a deprecated message [#596](https://github.com/danielgtaylor/python-betterproto/pull/596)
32+
1033
## [2.0.0b6] - 2023-06-25
1134

1235
- **Breaking**: the minimum Python version has been bumped to `3.7` [#444](https://github.com/danielgtaylor/python-betterproto/pull/444)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "betterproto"
3-
version = "2.0.0b6"
3+
version = "2.0.0b7"
44
description = "A better Protobuf / gRPC generator & library"
55
authors = ["Daniel G. Taylor <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)