Skip to content

Commit

Permalink
Move cookie_secret file to non persistent location (jupyter-server#392)
Browse files Browse the repository at this point in the history
* move cookie_secret_file to a non-persistent location, since it should be updated on any server restart

* Bump to 0.20.2
  • Loading branch information
Zsailer authored and GitHub Enterprise committed May 25, 2022
1 parent 20c0dd6 commit f7f624d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion data_studio_jupyter_extensions/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.20.1" # pragma: no cover
__version__ = "0.20.2" # pragma: no cover
1 change: 1 addition & 0 deletions data_studio_jupyter_extensions/modes/cluster_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ def load_mode():
"quit_button": False,
"token": "",
"allow_remote_access": True,
"cookie_secret_file": "/app",
},
"ConnectionFileMixin": {"transport": "tcp"},
"HubbleAgentConfigurable": {"enabled": True},
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ testpaths = [
]

[tool.tbump.version]
current = "0.20.1"
current = "0.20.2"
regex = '''
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion src/status.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ import { ISessionContext, ReactWidget } from '@jupyterlab/apputils';
import { EventListener } from './eventlistener';

// This is managed by tbump config in pyproject.toml
const VERSION = '0.20.1';
const VERSION = '0.20.2';

// Define the error states
// https://github.pie.apple.com/pie-data-studio/notebook-service/blob/761d63604966db5918d2e491c0f89cce454b7f67/app/com/apple/datastudio/model/ResourceState.scala#L20
Expand Down
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.20.1
0.20.2

0 comments on commit f7f624d

Please sign in to comment.