mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-07 10:04:07 +00:00
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
fc6cd33ce0 | ||
![]() |
b0b8e2d058 | ||
![]() |
6bfa402bfa | ||
![]() |
b51a0bba92 | ||
![]() |
2d3f962a1d | ||
![]() |
625242136a | ||
![]() |
f92560fed0 |
@@ -9,6 +9,20 @@ command line for details.
|
||||
|
||||
## 1.2
|
||||
|
||||
### [1.2.1] 2020-10-30
|
||||
|
||||
([full changelog](https://github.com/jupyterhub/jupyterhub/compare/1.2.0...1.2.1))
|
||||
|
||||
#### Bugs fixed
|
||||
|
||||
- JupyterHub services' oauth_no_confirm configuration regression in 1.2.0 [#3234](https://github.com/jupyterhub/jupyterhub/pull/3234) ([@bitnik](https://github.com/bitnik))
|
||||
|
||||
#### Contributors to this release
|
||||
|
||||
([GitHub contributors page for this release](https://github.com/jupyterhub/jupyterhub/graphs/contributors?from=2020-10-29&to=2020-10-30&type=c))
|
||||
|
||||
[@bitnik](https://github.com/search?q=repo%3Ajupyterhub%2Fjupyterhub+involves%3Abitnik+updated%3A2020-10-29..2020-10-30&type=Issues)
|
||||
|
||||
### [1.2.0] 2020-10-29
|
||||
|
||||
JupyterHub 1.2 is an incremental release with lots of small improvements.
|
||||
@@ -866,7 +880,8 @@ Fix removal of `/login` page in 0.4.0, breaking some OAuth providers.
|
||||
First preview release
|
||||
|
||||
|
||||
[Unreleased]: https://github.com/jupyterhub/jupyterhub/compare/1.2.0...HEAD
|
||||
[Unreleased]: https://github.com/jupyterhub/jupyterhub/compare/1.2.1...HEAD
|
||||
[1.2.1]: https://github.com/jupyterhub/jupyterhub/compare/1.2.0...1.2.1
|
||||
[1.2.0]: https://github.com/jupyterhub/jupyterhub/compare/1.1.0...1.2.0
|
||||
[1.1.0]: https://github.com/jupyterhub/jupyterhub/compare/1.0.0...1.1.0
|
||||
[1.0.0]: https://github.com/jupyterhub/jupyterhub/compare/0.9.6...1.0.0
|
||||
|
@@ -5,8 +5,8 @@
|
||||
version_info = (
|
||||
1,
|
||||
2,
|
||||
0,
|
||||
# "b1", # release (b1, rc1, or "" for final or dev)
|
||||
1,
|
||||
# "", # release (b1, rc1, or "" for final or dev)
|
||||
# "dev", # dev or nothing for beta/rc/stable releases
|
||||
)
|
||||
|
||||
|
@@ -215,7 +215,8 @@ class OAuthAuthorizeHandler(OAuthHandler, BaseHandler):
|
||||
# it's the user's own server
|
||||
oauth_client.identifier in own_oauth_client_ids
|
||||
# or it's in the global no-confirm list
|
||||
or oauth_client.identifier in self.settings.get('oauth_no_confirm', set())
|
||||
or oauth_client.identifier
|
||||
in self.settings.get('oauth_no_confirm_list', set())
|
||||
):
|
||||
return False
|
||||
# default: require confirmation
|
||||
|
Reference in New Issue
Block a user