Skip to content

Commit f547ef8

Browse files
chore(release): cut the v1.0.0-alpha.43 release
1 parent 4b3418d commit f547ef8

File tree

13 files changed

+91
-49
lines changed

13 files changed

+91
-49
lines changed

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,48 @@
22

33
<!-- version list -->
44

5+
## v1.0.0-alpha.43 (2026-03-02)
6+
7+
### Bug Fixes
8+
9+
- **parser**: Avoid reusing underlying yaml parser instances
10+
([#220](https://github.com/jentic/jentic-openapi-tools/pull/220),
11+
[`7788d7b`](https://github.com/jentic/jentic-openapi-tools/commit/7788d7b019f558483fbf601a15c56518e775314a))
12+
13+
- **security**: Update JavaScript deps to latest versions
14+
([#223](https://github.com/jentic/jentic-openapi-tools/pull/223),
15+
[`4b3418d`](https://github.com/jentic/jentic-openapi-tools/commit/4b3418d8f0e6f7dba194b0c0a27ab45a7369f0ae))
16+
17+
### Chores
18+
19+
- **deps-dev**: Bump poethepoet from 0.41.0 to 0.42.0
20+
([#215](https://github.com/jentic/jentic-openapi-tools/pull/215),
21+
[`b61f8c8`](https://github.com/jentic/jentic-openapi-tools/commit/b61f8c8cb671b3715d437300c1b7179bf421230c))
22+
23+
- **deps-dev**: Bump poethepoet from 0.42.0 to 0.42.1
24+
([#218](https://github.com/jentic/jentic-openapi-tools/pull/218),
25+
[`df97561`](https://github.com/jentic/jentic-openapi-tools/commit/df9756133d7eb6f3ff9400e90e2e2f175a8bcece))
26+
27+
- **deps-dev**: Bump ruff from 0.15.1 to 0.15.2
28+
([#214](https://github.com/jentic/jentic-openapi-tools/pull/214),
29+
[`b79a57e`](https://github.com/jentic/jentic-openapi-tools/commit/b79a57ee61819a191aa2d326d0cff09101541552))
30+
31+
- **deps-dev**: Bump ruff from 0.15.2 to 0.15.4
32+
([#219](https://github.com/jentic/jentic-openapi-tools/pull/219),
33+
[`ee58a80`](https://github.com/jentic/jentic-openapi-tools/commit/ee58a80673c4d181139a2b4c1499625090fe7f14))
34+
35+
### Continuous Integration
36+
37+
- **release**: Use actions/attest@v4
38+
([`9292934`](https://github.com/jentic/jentic-openapi-tools/commit/9292934846897066ea098b500b4cc6eb718d0241))
39+
40+
### Features
41+
42+
- **parser**: Add dataclass serialization support to CustomEncoder
43+
([#222](https://github.com/jentic/jentic-openapi-tools/pull/222),
44+
[`e28f99c`](https://github.com/jentic/jentic-openapi-tools/commit/e28f99c8778740638e0e2113a5883ba706dd4cba))
45+
46+
547
## v1.0.0-alpha.42 (2026-02-18)
648

749
### Bug Fixes

packages/jentic-openapi-common/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "jentic-openapi-common"
3-
version = "1.0.0-alpha.42"
3+
version = "1.0.0-alpha.43"
44
description = "Jentic OpenAPI Common"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]

packages/jentic-openapi-datamodels/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "jentic-openapi-datamodels"
3-
version = "1.0.0-alpha.42"
3+
version = "1.0.0-alpha.43"
44
description = "Jentic OpenAPI Data Models"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]

packages/jentic-openapi-parser/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "jentic-openapi-parser"
3-
version = "1.0.0-alpha.42"
3+
version = "1.0.0-alpha.43"
44
description = "Jentic OpenAPI Parser"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
@@ -9,8 +9,8 @@ license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
1111
"attrs~=25.4.0",
12-
"jentic-openapi-common~=1.0.0-alpha.42",
13-
"jentic-openapi-datamodels~=1.0.0-alpha.42",
12+
"jentic-openapi-common~=1.0.0-alpha.43",
13+
"jentic-openapi-datamodels~=1.0.0-alpha.43",
1414
"pyyaml~=6.0.3",
1515
"requests~=2.32.5",
1616
"ruamel-yaml~=0.18.15"

packages/jentic-openapi-transformer-redocly/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[project]
22
name = "jentic-openapi-transformer-redocly"
3-
version = "1.0.0-alpha.42"
3+
version = "1.0.0-alpha.43"
44
description = "Jentic OpenAPI Redocly Transformer Backend"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
77
license = "Apache-2.0"
88
license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"jentic-openapi-common~=1.0.0-alpha.42",
12-
"jentic-openapi-transformer~=1.0.0-alpha.42"
11+
"jentic-openapi-common~=1.0.0-alpha.43",
12+
"jentic-openapi-transformer~=1.0.0-alpha.43"
1313
]
1414

1515
[project.urls]

packages/jentic-openapi-transformer/pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[project]
22
name = "jentic-openapi-transformer"
3-
version = "1.0.0-alpha.42"
3+
version = "1.0.0-alpha.43"
44
description = "Jentic OpenAPI Transformer"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
77
license = "Apache-2.0"
88
license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"jentic-openapi-common~=1.0.0-alpha.42",
12-
"jentic-openapi-parser~=1.0.0-alpha.42",
13-
"jentic-openapi-traverse~=1.0.0-alpha.42",
11+
"jentic-openapi-common~=1.0.0-alpha.43",
12+
"jentic-openapi-parser~=1.0.0-alpha.43",
13+
"jentic-openapi-traverse~=1.0.0-alpha.43",
1414
]
1515

1616
[tool.uv]
@@ -22,7 +22,7 @@ module-name = "jentic.apitools.openapi.transformer"
2222
module-root = "src/"
2323

2424
[project.optional-dependencies]
25-
redocly = ["jentic-openapi-transformer-redocly~=1.0.0-alpha.42"]
25+
redocly = ["jentic-openapi-transformer-redocly~=1.0.0-alpha.43"]
2626

2727
[project.urls]
2828
Homepage = "https://github.com/jentic/jentic-openapi-tools"

packages/jentic-openapi-traverse/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[project]
22
name = "jentic-openapi-traverse"
3-
version = "1.0.0-alpha.42"
3+
version = "1.0.0-alpha.43"
44
description = "Jentic OpenAPI Traversal Utilities"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
77
license = "Apache-2.0"
88
license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"jentic-openapi-datamodels~=1.0.0-alpha.42",
11+
"jentic-openapi-datamodels~=1.0.0-alpha.43",
1212
"jsonpointer~=3.0.0"
1313
]
1414

packages/jentic-openapi-validator-redocly/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[project]
22
name = "jentic-openapi-validator-redocly"
3-
version = "1.0.0-alpha.42"
3+
version = "1.0.0-alpha.43"
44
description = "Jentic OpenAPI Redocly Validator Backend"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
77
license = "Apache-2.0"
88
license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"jentic-openapi-common~=1.0.0-alpha.42",
12-
"jentic-openapi-validator~=1.0.0-alpha.42",
11+
"jentic-openapi-common~=1.0.0-alpha.43",
12+
"jentic-openapi-validator~=1.0.0-alpha.43",
1313
"lsprotocol~=2025.0.0",
1414
"jsonpointer~=3.0.0"
1515
]

packages/jentic-openapi-validator-speclynx/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[project]
22
name = "jentic-openapi-validator-speclynx"
3-
version = "1.0.0-alpha.42"
3+
version = "1.0.0-alpha.43"
44
description = "Jentic OpenAPI SpecLynx Validator Backend"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
77
license = "Apache-2.0"
88
license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"jentic-openapi-common~=1.0.0-alpha.42",
12-
"jentic-openapi-validator~=1.0.0-alpha.42",
11+
"jentic-openapi-common~=1.0.0-alpha.43",
12+
"jentic-openapi-validator~=1.0.0-alpha.43",
1313
"lsprotocol~=2025.0.0",
1414
]
1515

packages/jentic-openapi-validator-spectral/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[project]
22
name = "jentic-openapi-validator-spectral"
3-
version = "1.0.0-alpha.42"
3+
version = "1.0.0-alpha.43"
44
description = "Jentic OpenAPI Spectral Validator Backend"
55
readme = "README.md"
66
authors = [{ name = "Jentic", email = "hello@jentic.com" }]
77
license = "Apache-2.0"
88
license-files = ["LICENSE", "NOTICE"]
99
requires-python = ">=3.11"
1010
dependencies = [
11-
"jentic-openapi-common~=1.0.0-alpha.42",
12-
"jentic-openapi-validator~=1.0.0-alpha.42",
11+
"jentic-openapi-common~=1.0.0-alpha.43",
12+
"jentic-openapi-validator~=1.0.0-alpha.43",
1313
"lsprotocol~=2025.0.0"
1414
]
1515

0 commit comments

Comments
 (0)