Skip to content

Commit 1b3a95e

Browse files
committed
📦 release: v3.2.0
1 parent 023cae7 commit 1b3a95e

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

‎CHANGES.rst‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,16 @@
99
Changes
1010
=======
1111

12+
Version v3.2.0 (released 2025-03-30)
13+
14+
- user: add `base_url` parameter for user auth client calls
15+
* Adds a `base_url` parameter to the UserFixtureBase constructor. This
16+
allows to make sure that auth calls like login and logout are
17+
explicitly associated with the correct domain when needed. This is
18+
avoid cookie domain inconsistencies intorduced by Flask v3 and
19+
Werkzeug's v2.3 new default behavior for cookie management in the test
20+
client.
21+
1222
Version v3.1.0 (released 2025-03-07)
1323

1424
- fixtures: add fixture for ``cache_uri``

‎pytest_invenio/__init__.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,6 +500,6 @@ def test_browser(live_server, browser):
500500
"""
501501

502502

503-
__version__ = "3.1.0"
503+
__version__ = "3.2.0"
504504

505505
__all__ = ("__version__",)

‎pytest_invenio/user.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
#
33
# This file is part of pytest-invenio.
4-
# Copyright (C) 2022 CERN.
4+
# Copyright (C) 2022-2025 CERN.
55
#
66
# pytest-invenio is free software; you can redistribute it and/or modify it
77
# under the terms of the MIT License; see LICENSE file for more details.

0 commit comments

Comments
 (0)