Compare commits

...

5 Commits
4.1.4 ... 4.1.5

Author SHA1 Message Date
Min RK
b405361674 Bump to 4.1.5 2024-04-04 22:13:51 +02:00
Min RK
0d53ead186 Merge pull request #4773 from minrk/cl415
changelog for 4.1.5
2024-04-04 22:13:21 +02:00
Min RK
cedd176a34 changelog for 4.1.5 2024-04-04 12:51:26 +02:00
Min RK
58e5022d28 Merge pull request #4771 from minrk/xsrf-mixin
singleuser mixin: include check_xsrf_cookie in overrides
2024-04-04 12:46:52 +02:00
Min RK
f395acd9ca singleuser mixin: include check_xsrf_cookie in overrides 2024-04-04 11:05:10 +02:00
5 changed files with 21 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ info:
description: The REST API for JupyterHub
license:
name: BSD-3-Clause
version: 4.1.4
version: 4.1.5
servers:
- url: /hub/api
security:

View File

@@ -10,6 +10,23 @@ command line for details.
## 4.1
### 4.1.5 - 2024-04-04
([full changelog](https://github.com/jupyterhub/jupyterhub/compare/4.1.4...4.1.5))
#### Bugs fixed
- singleuser mixin: include check_xsrf_cookie in overrides [#4771](https://github.com/jupyterhub/jupyterhub/pull/4771) ([@minrk](https://github.com/minrk), [@consideRatio](https://github.com/consideRatio))
#### Contributors to this release
The following people contributed discussions, new ideas, code and documentation contributions, and review.
See [our definition of contributors](https://github-activity.readthedocs.io/en/latest/#how-does-this-tool-define-contributions-in-the-reports).
([GitHub contributors page for this release](https://github.com/jupyterhub/jupyterhub/graphs/contributors?from=2024-03-30&to=2024-04-04&type=c))
@consideRatio ([activity](https://github.com/search?q=repo%3Ajupyterhub%2Fjupyterhub+involves%3AconsideRatio+updated%3A2024-03-30..2024-04-04&type=Issues)) | @manics ([activity](https://github.com/search?q=repo%3Ajupyterhub%2Fjupyterhub+involves%3Amanics+updated%3A2024-03-30..2024-04-04&type=Issues)) | @minrk ([activity](https://github.com/search?q=repo%3Ajupyterhub%2Fjupyterhub+involves%3Aminrk+updated%3A2024-03-30..2024-04-04&type=Issues))
### 4.1.4 - 2024-03-30
([full changelog](https://github.com/jupyterhub/jupyterhub/compare/4.1.3...4.1.4))

View File

@@ -3,7 +3,7 @@
# Copyright (c) Jupyter Development Team.
# Distributed under the terms of the Modified BSD License.
# version_info updated by running `tbump`
version_info = (4, 1, 4, "", "")
version_info = (4, 1, 5, "", "")
# pep 440 version: no dot before beta/rc, but before .dev
# 0.1.0rc1

View File

@@ -825,7 +825,7 @@ def patch_base_handler(BaseHandler, log=None):
# but we also need to ensure BaseHandler *itself* doesn't
# override the public tornado API methods we have inserted.
# If they are defined in BaseHandler, explicitly replace them with our methods.
for name in ("get_current_user", "get_login_url"):
for name in ("get_current_user", "get_login_url", "check_xsrf_cookie"):
if name in BaseHandler.__dict__:
log.debug(
f"Overriding {BaseHandler}.{name} with HubAuthenticatedHandler.{name}"

View File

@@ -43,7 +43,7 @@ target_version = [
github_url = "https://github.com/jupyterhub/jupyterhub"
[tool.tbump.version]
current = "4.1.4"
current = "4.1.5"
# Example of a semver regexp.
# Make sure this matches current_version before