Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ All notable changes to this project will be documented in this file.

### Enhancements made

- If ServerApp.ip is ipv6 use [::1] as local_url [#1495](https://github.com/jupyter-server/jupyter_server/pull/1495) ([@manics](https://github.com/manics))
- If ServerApp.ip is ipv6 use \[::1\] as local_url [#1495](https://github.com/jupyter-server/jupyter_server/pull/1495) ([@manics](https://github.com/manics))
- Don't hide .so,.dylib files by default [#1457](https://github.com/jupyter-server/jupyter_server/pull/1457) ([@nokados](https://github.com/nokados))
- Add async start hook to ExtensionApp API [#1417](https://github.com/jupyter-server/jupyter_server/pull/1417) ([@Zsailer](https://github.com/Zsailer))

Expand Down
2 changes: 1 addition & 1 deletion jupyter_server/kernelspecs/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
class KernelSpecResourceHandler(web.StaticFileHandler, JupyterHandler):
"""A Kernelspec resource handler."""

SUPPORTED_METHODS = ("GET", "HEAD") # type:ignore[assignment]
SUPPORTED_METHODS = ("GET", "HEAD")
auth_resource = AUTH_RESOURCE

def initialize(self):
Expand Down
4 changes: 2 additions & 2 deletions jupyter_server/nbconvert/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class NbconvertFileHandler(JupyterHandler):
"""An nbconvert file handler."""

auth_resource = AUTH_RESOURCE
SUPPORTED_METHODS = ("GET",) # type:ignore[assignment]
SUPPORTED_METHODS = ("GET",)

@web.authenticated
@authorized
Expand Down Expand Up @@ -158,7 +158,7 @@ async def get(self, format, path):
class NbconvertPostHandler(JupyterHandler):
"""An nbconvert post handler."""

SUPPORTED_METHODS = ("POST",) # type:ignore[assignment]
SUPPORTED_METHODS = ("POST",)
auth_resource = AUTH_RESOURCE

@web.authenticated
Expand Down
2 changes: 1 addition & 1 deletion jupyter_server/services/contents/handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ class NotebooksRedirectHandler(JupyterHandler):
"PATCH",
"POST",
"DELETE",
) # type:ignore[assignment]
)

@allow_unauthenticated
def get(self, path):
Expand Down