Skip to content

Commit e19bdb8

Browse files
committed
Release 🍓 0.6.0
1 parent fbdfa54 commit e19bdb8

File tree

3 files changed

+16
-11
lines changed

3 files changed

+16
-11
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
CHANGELOG
22
=========
33

4+
0.6.0 - 2025-04-25
5+
------------------
6+
7+
**Added support for GraphQL directives** in the SQLAlchemy type mapper, enabling better integration with GraphQL federation.
8+
9+
**Example usage:**
10+
```python
11+
@mapper.type(Employee, directives=["@deprecated(reason: 'Use newEmployee instead')"])
12+
class Employee:
13+
pass
14+
```
15+
16+
Contributed by [Cameron Sechrist](https://github.com/csechrist) via [PR #204](https://github.com/strawberry-graphql/strawberry-sqlalchemy/pull/204/)
17+
18+
419
0.5.0 - 2024-11-12
520
------------------
621

RELEASE.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "strawberry-sqlalchemy-mapper"
33
packages = [ { include = "strawberry_sqlalchemy_mapper", from = "src" } ]
4-
version = "0.5.0"
4+
version = "0.6.0"
55
description = "A library for autogenerating Strawberry GraphQL types from SQLAlchemy models."
66
authors = ["Tim Dumol <[email protected]>"]
77
license = "MIT"

0 commit comments

Comments
 (0)