Skip to content

Commit 7cc5345

Browse files
committed
Release v1.3.1 - Changelog
1 parent af2aacb commit 7cc5345

File tree

5 files changed

+35
-4
lines changed

5 files changed

+35
-4
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11
# Changelog
22

3+
## [Unreleased](https://github.com/Materials-Consortia/optimade-python-tools/tree/HEAD)
4+
5+
[Full Changelog](https://github.com/Materials-Consortia/optimade-python-tools/compare/v1.3.1...HEAD)
6+
7+
**Merged pull requests:**
8+
9+
- Bump providers from `a479de9` to `c0a4a05` [\#2324](https://github.com/Materials-Consortia/optimade-python-tools/pull/2324) ([dependabot[bot]](https://github.com/apps/dependabot))
10+
11+
## [v1.3.1](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.3.1) (2025-10-11)
12+
13+
[Full Changelog](https://github.com/Materials-Consortia/optimade-python-tools/compare/v1.3.0...v1.3.1)
14+
15+
**Implemented enhancements:**
16+
17+
- Add a gzip compression middleware [\#2095](https://github.com/Materials-Consortia/optimade-python-tools/issues/2095)
18+
19+
**Fixed bugs:**
20+
21+
- `insert_from_jsonl` fails when number of entries is exactly divisible by `batch_size` [\#2320](https://github.com/Materials-Consortia/optimade-python-tools/issues/2320)
22+
23+
**Merged pull requests:**
24+
25+
- Fix issue when inserting from JSONL when batch size matches number of entries [\#2321](https://github.com/Materials-Consortia/optimade-python-tools/pull/2321) ([ml-evs](https://github.com/ml-evs))
26+
- Bump providers from `a479de9` to `c0a4a05` [\#2319](https://github.com/Materials-Consortia/optimade-python-tools/pull/2319) ([dependabot[bot]](https://github.com/apps/dependabot))
27+
- Allow Mongo DBs that share 12 first ID characters [\#2317](https://github.com/Materials-Consortia/optimade-python-tools/pull/2317) ([eimrek](https://github.com/eimrek))
28+
- Fix docs builds with latest griffe [\#2309](https://github.com/Materials-Consortia/optimade-python-tools/pull/2309) ([ml-evs](https://github.com/ml-evs))
29+
- Add `GZipMiddleware` to compress JSON responses on-the-fly [\#2308](https://github.com/Materials-Consortia/optimade-python-tools/pull/2308) ([Bud-Macaulay](https://github.com/Bud-Macaulay))
30+
- Bump actions/setup-python from 5 to 6 in the github-actions group and pin griffe [\#2301](https://github.com/Materials-Consortia/optimade-python-tools/pull/2301) ([dependabot[bot]](https://github.com/apps/dependabot))
31+
- \[pre-commit.ci\] pre-commit autoupdate [\#2300](https://github.com/Materials-Consortia/optimade-python-tools/pull/2300) ([pre-commit-ci[bot]](https://github.com/apps/pre-commit-ci))
32+
- Bump actions/checkout from 4 to 5 in the github-actions group [\#2294](https://github.com/Materials-Consortia/optimade-python-tools/pull/2294) ([dependabot[bot]](https://github.com/apps/dependabot))
33+
334
## [v1.3.0](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.3.0) (2025-08-11)
435

536
[Full Changelog](https://github.com/Materials-Consortia/optimade-python-tools/compare/v1.2.4...v1.3.0)

docs/static/default_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"base_url": null,
1313
"implementation": {
1414
"name": "OPTIMADE Python Tools",
15-
"version": "1.3.0",
15+
"version": "1.3.1",
1616
"source_url": "https://github.com/Materials-Consortia/optimade-python-tools",
1717
"maintainer": {"email": "[email protected]"}
1818
},

openapi/index_openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi": "3.1.0",
33
"info": {
44
"title": "OPTIMADE API - Index meta-database",
5-
"description": "The [Open Databases Integration for Materials Design (OPTIMADE) consortium](https://www.optimade.org/) aims to make materials databases interoperational by developing a common REST API.\nThis is the \"special\" index meta-database.\n\nThis specification is generated using [`optimade-python-tools`](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.3.0) v1.3.0.",
5+
"description": "The [Open Databases Integration for Materials Design (OPTIMADE) consortium](https://www.optimade.org/) aims to make materials databases interoperational by developing a common REST API.\nThis is the \"special\" index meta-database.\n\nThis specification is generated using [`optimade-python-tools`](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.3.1) v1.3.1.",
66
"version": "1.2.0"
77
},
88
"paths": {

openapi/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"openapi": "3.1.0",
33
"info": {
44
"title": "OPTIMADE API",
5-
"description": "The [Open Databases Integration for Materials Design (OPTIMADE) consortium](https://www.optimade.org/) aims to make materials databases interoperational by developing a common REST API.\n\nThis specification is generated using [`optimade-python-tools`](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.3.0) v1.3.0.",
5+
"description": "The [Open Databases Integration for Materials Design (OPTIMADE) consortium](https://www.optimade.org/) aims to make materials databases interoperational by developing a common REST API.\n\nThis specification is generated using [`optimade-python-tools`](https://github.com/Materials-Consortia/optimade-python-tools/tree/v1.3.1) v1.3.1.",
66
"version": "1.2.0"
77
},
88
"paths": {

optimade/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "1.3.0"
1+
__version__ = "1.3.1"
22
__api_version__ = "1.2.0"

0 commit comments

Comments
 (0)