File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 99Changes
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+
1222Version v3.1.0 (released 2025-03-07)
1323
1424- fixtures: add fixture for ``cache_uri ``
Original file line number Diff line number Diff 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__" ,)
Original file line number Diff line number Diff line change 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.
You can’t perform that action at this time.
0 commit comments