Skip to content

Commit

Permalink
remove xsrf check
Browse files Browse the repository at this point in the history
  • Loading branch information
menglewis committed Jan 31, 2020
1 parent 8761295 commit 6e8ecc8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.5.1] - 2020-01-30
### Removed
- Remove Notebook XSRF check

## [0.5.0] - 2019-04-30

### Added
Expand Down
1 change: 1 addition & 0 deletions civis_jupyter_notebooks/notebook_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ def config_jupyter(c):
c.NotebookApp.port = 8888
c.NotebookApp.open_browser = False
c.NotebookApp.token = ''
c.NotebookApp.disable_check_xsrf = True
c.NotebookApp.tornado_settings = {'headers': {'Content-Security-Policy': "frame-ancestors *"}}
c.NotebookApp.terminado_settings = {'shell_command': ['bash']}
c.NotebookApp.allow_root = True
Expand Down
2 changes: 1 addition & 1 deletion civis_jupyter_notebooks/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.5.0'
__version__ = '0.5.1'

0 comments on commit 6e8ecc8

Please sign in to comment.