更改日志#
Jupyter笔记本的变化摘要。有关更多详细信息,请参阅 [GitHub] (https://github.com/jupyter/notebook).)
使用 pip install notebook --upgrade
或 conda upgrade notebook
以升级到最新版本。
我们强烈建议您在升级之前将pip升级到pip版本9+。 notebook
。
使用 pip install pip --upgrade
来升级pip。使用检查pip版本 pip --version
。
v7.1#
Jupyter Notebook 7.1基于JupyterLab 4.1,为扩展开发人员提供了许多新功能、错误修复和增强功能。此版本与支持JupyterLab 4.0的扩展兼容。建议扩展的作者参考 [Extension Migration Guide] (https://jupyterlab.readthedocs.io/en/latest/extension/extension_migration.html#jupyterlab-4-0-to-4-1),其中列出了对公共接口的弃用和更改。
以下是这个新版本的一些亮点。大多数新功能和改进来自JupyterLab 4.1的更新,尽管它们并不都在Notebook 7.1中得到支持。
作为参考,您可以查看JupyterLab 4.1更改日志以了解更多信息:https://jupyterlab.readthedocs.io/en/latest/getting_started/changelog.html#v4-1
降价中的图表#
与GitHub风格的Markdown相匹配,JupyterLab 4.1现在支持 [Mermaid] (https://github.com/mermaid-js/mermaid)图表。要创建美人鱼图表,请使用 mermaid
标记单元格或文档中代码块的语言说明符,例如:
```mermaid
flowchart LR
A[Hard] -->|Text| B(Round)
B --> C{Decision}
C -->|One| D[Result 1]
C -->|Two| E[Result 2]
```
它呈现为:

内联完成器#
JupyterLab现在支持在单元格和文件编辑器中以重影文本形式呈现的完成,允许生成式AI模型提供多行完成。这一点现在也可以在Jupyter Notebook中得到利用。
建议由实现 IInlineCompletionProvider
API;默认情况下,只有一个使用内核历史的提供程序可用。

建议可以按您键入的方式调用,也可以使用可配置的快捷键(默认情况下为Alt+\)手动调用。当鼠标悬停在重影建议上时,默认键盘快捷键显示在小部件中:
Alt+end-接受建议
Alt+[-上一个建议
Alt+]-下一个建议
要启用基于内核历史的内联建议,请转到设置→内联完成器→历史提供程序→选中“已启用”复选框。
除了内置的历史建议之外, [jupyter-ai
] (https://github.com/jupyterlab/jupyter-ai)扩展将从受支持的型号中提供建议。
请注意,Jupyter AI扩展尚未与Jupyter Notebook 7兼容。
笔记本中的执行历史记录#
以前执行的单元格中的代码可用于填充空单元格,从而允许迭代以前单元格甚至会话中的代码(取决于特定内核存储历史的方式)。
若要在历史记录项之间循环,请按Alt+向上箭头和Alt+向下箭头。
要启用执行历史记录,请转到设置→笔记本电脑→选中“内核历史访问”复选框。
在以前的版本中,该功能已经在控制台中可用;它只适用于支持执行历史请求的内核。要清除执行历史记录,请参考您正在使用的内核的文档(例如,IPython/ipycore)。
目录中的错误指示符#
当单元格在执行过程中失败时,相应的标题会显示错误指示器,增加对笔记本状态的感知,使用户能够快速导航到需要注意的单元格。

搜索改进#
搜索框现在将自动增大以容纳更长的文本
现在可以使用Alt+L切换在所选内容中搜索,并且可以在设置中配置自动在所选内容中搜索
向搜索框中的按钮添加了带有快捷方式的工具提示,以提高快捷方式的可查找性
杂类#
当前主题(暗/亮)现在可以与浏览器/系统首选项(设置菜单→主题→与系统设置同步)同步
现在,由于文档的模型是只读的,所以无法保存的文档的工具栏中会显示一个蓝色的“只读”状态指示器。
添加了对查看jsonl/ndjson文件的本机支持
可以在文件浏览器设置中禁用折叠文件浏览器中的面包屑
7.2.0a0#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.1.2...80b582bce69e33e36e936af2ea981bcb22a4d285))
所做的改进#
更新至JupyterLab 4.2.0a2 [#7307] (https://github.com/jupyter/notebook/pull/7307)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
忽略指向GitHub用户和组织配置文件的链接 [#7308] (https://github.com/jupyter/notebook/pull/7308)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2024-03-14&to=2024-03-29&type=c))
[@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2024-03-14..2024-03-29&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2024-03-14..2024-03-29&type=Issues)
7.1.2#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.1.1...ca41222a9c8d75356c6d67d3bd36e34d71cce2d8))
维护和维护改进#
更新版本脚本 [#7295] (https://github.com/jupyter/notebook/pull/7295)( [@blink1073] (https://github.com/blink1073)))
修复释放钩中的jupyterlab安装命令 [#7294] (https://github.com/jupyter/notebook/pull/7294)( [@jtpio] (https://github.com/jtpio)))
更新到JupyterLab 4.1.5包 [#7291] (https://github.com/jupyter/notebook/pull/7291)( [@jtpio] (https://github.com/jtpio)))
文档改进#
添加节以使用本地依赖项 [#7292] (https://github.com/jupyter/notebook/pull/7292)( [@brichet] (https://github.com/brichet)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2024-02-26&to=2024-03-14&type=c))
[@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2024-02-26..2024-03-14&type=Issues)| [@brichet] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abrichet+updated%3A2024-02-26..2024-03-14&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2024-02-26..2024-03-14&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2024-02-26..2024-03-14&type=Issues)
7.1.1#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.1.0...da7b8d400e96ceff0eec834badd891bc5d5f154d))
已修复错误#
其他文件格式的“编辑笔记本元数据”为灰色。 [#7265] (https://github.com/jupyter/notebook/pull/7265)( [@itsmevichu] (https://github.com/itsmevichu)))
维护和维护改进#
修复不稳定的移动用户界面测试 [#7278] (https://github.com/jupyter/notebook/pull/7278)( [@jtpio] (https://github.com/jtpio)))
更新到JupyterLab 4.1.2包 [#7277] (https://github.com/jupyter/notebook/pull/7277)( [@jtpio] (https://github.com/jtpio)))
忽略堆栈溢出链接 [#7274] (https://github.com/jupyter/notebook/pull/7274)( [@jtpio] (https://github.com/jtpio)))
在/UI-TESTS中将IP从2.0.0增加到2.0.1 [#7268] (https://github.com/jupyter/notebook/pull/7268)( [@dependabot] (https://github.com/dependabot)))
将IP从2.0.0增加到2.0.1 [#7267] (https://github.com/jupyter/notebook/pull/7267)( [@dependabot] (https://github.com/dependabot)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2024-02-13&to=2024-02-26&type=c))
[@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2024-02-13..2024-02-26&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2024-02-13..2024-02-26&type=Issues)| [@itsmevichu] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aitsmevichu+updated%3A2024-02-13..2024-02-26&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2024-02-13..2024-02-26&type=Issues)
7.1.0#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.0.6...b8ec7e4a8eda70a8d7dca19799acd3e96e019160))
所做的改进#
从新的下拉列表中创建具有特定内核的新笔记本 [#7255] (https://github.com/jupyter/notebook/pull/7255)( [@jtpio] (https://github.com/jtpio)))
添加插件管理器 [#7198] (https://github.com/jupyter/notebook/pull/7198)( [@jtpio] (https://github.com/jtpio)))
修复窗口小部件的切换功能。 [#7178] (https://github.com/jupyter/notebook/pull/7178)( [@haok1402] (https://github.com/haok1402)))
升级到JupyterLab 4.1.0a4之二 [#7172] (https://github.com/jupyter/notebook/pull/7172)( [@brichet] (https://github.com/brichet)))
添加Lumino插件描述(#7008) [#7127] (https://github.com/jupyter/notebook/pull/7127)( [@Dilip-Jain] (https://github.com/Dilip-Jain)))
添加了编辑笔记本元数据选项(#6402) [#7099] (https://github.com/jupyter/notebook/pull/7099)( [@Dilip-Jain] (https://github.com/Dilip-Jain)))
更新至JupyterLab 4.1 [#7096] (https://github.com/jupyter/notebook/pull/7096)( [@jtpio] (https://github.com/jtpio)))
添加JupyterLab资源插件 [#6968] (https://github.com/jupyter/notebook/pull/6968)( [@jtpio] (https://github.com/jtpio)))
已修复错误#
修复创建笔记本时的虚假内核选择对话框 [#7258] (https://github.com/jupyter/notebook/pull/7258)( [@jtpio] (https://github.com/jtpio)))
文件浏览器跟踪器焦点问题的解决方法 [#7224] (https://github.com/jupyter/notebook/pull/7224)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
更新至JupyterLab 4.1.1 [#7256] (https://github.com/jupyter/notebook/pull/7256)( [@jtpio] (https://github.com/jtpio)))
关注JupyterLab次要版本 [#7250] (https://github.com/jupyter/notebook/pull/7250)( [@jtpio] (https://github.com/jtpio)))
Chore:更新提交前挂钩 [#7237] (https://github.com/jupyter/notebook/pull/7237)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
更新至JupyterLab 4.1.0最终版 [#7234] (https://github.com/jupyter/notebook/pull/7234)( [@jtpio] (https://github.com/jtpio)))
更新至JupyterLab 4.1.0rc1 [#7230] (https://github.com/jupyter/notebook/pull/7230)( [@jtpio] (https://github.com/jtpio)))
更新至JupyterLab 4.1.0rc0 [#7227] (https://github.com/jupyter/notebook/pull/7227)( [@jtpio] (https://github.com/jtpio)))
更新至JupyterLab 4.1.0b2 [#7222] (https://github.com/jupyter/notebook/pull/7222)( [@jtpio] (https://github.com/jtpio)))
修整
check_links
浅谈CI [#7219] (https://github.com/jupyter/notebook/pull/7219)( [@jtpio] (https://github.com/jtpio)))使用1个更新来提升操作组 [#7218] (https://github.com/jupyter/notebook/pull/7218)( [@dependabot] (https://github.com/dependabot)))
在Actions组中添加2个更新 [#7207] (https://github.com/jupyter/notebook/pull/7207)( [@dependabot] (https://github.com/dependabot)))
Chore:更新提交前挂钩 [#7206] (https://github.com/jupyter/notebook/pull/7206)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
将nbviewer.jupyter.org添加到忽略列表 [#7197] (https://github.com/jupyter/notebook/pull/7197)( [@jtpio] (https://github.com/jtpio)))
更新至JupyterLab 4.1.0b0 [#7196] (https://github.com/jupyter/notebook/pull/7196)( [@jtpio] (https://github.com/jtpio)))
更新RIFF配置 [#7190] (https://github.com/jupyter/notebook/pull/7190)( [@blink1073] (https://github.com/blink1073)))
Bump@babel/从7.23.0到7.23.6 [#7187] (https://github.com/jupyter/notebook/pull/7187)( [@dependabot] (https://github.com/dependabot)))
凹凸动作/设置--从4个到5个 [#7180] (https://github.com/jupyter/notebook/pull/7180)( [@dependabot] (https://github.com/dependabot)))
更新受PyPI信任的出版商的发布-发布工作流 [#7176] (https://github.com/jupyter/notebook/pull/7176)( [@jtpio] (https://github.com/jtpio)))
Chore:更新提交前挂钩 [#7174] (https://github.com/jupyter/notebook/pull/7174)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
将AXIOS从1.5.1提高到1.6.2 [#7165] (https://github.com/jupyter/notebook/pull/7165)( [@dependabot] (https://github.com/dependabot)))
凸纹/锁紧-螺纹从4个增加到5个 [#7159] (https://github.com/jupyter/notebook/pull/7159)( [@dependabot] (https://github.com/dependabot)))
更新RIFF配置并键入 [#7145] (https://github.com/jupyter/notebook/pull/7145)( [@blink1073] (https://github.com/blink1073)))
Chore:更新提交前挂钩 [#7143] (https://github.com/jupyter/notebook/pull/7143)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
清理皮棉处理 [#7142] (https://github.com/jupyter/notebook/pull/7142)( [@blink1073] (https://github.com/blink1073)))
采用RIFF格式 [#7132] (https://github.com/jupyter/notebook/pull/7132)( [@blink1073] (https://github.com/blink1073)))
添加Python 3.12分类器 [#7111] (https://github.com/jupyter/notebook/pull/7111)( [@jtpio] (https://github.com/jtpio)))
删除UI测试中的视窗解决方法 [#6887] (https://github.com/jupyter/notebook/pull/6887)( [@jtpio] (https://github.com/jtpio)))
文档改进#
添加文档以进行更新
notebook
进口 [#7244] (https://github.com/jupyter/notebook/pull/7244)( [@jtpio] (https://github.com/jtpio)))为7.1添加面向更改日志的用户 [#7232] (https://github.com/jupyter/notebook/pull/7232)( [@jtpio] (https://github.com/jtpio)))
澄清自述文件中有关受支持版本的信息(v7发布后) [#7193] (https://github.com/jupyter/notebook/pull/7193)( [@akx] (https://github.com/akx)))
更新的UI-测试Contributing.md中的配置 [#7124] (https://github.com/jupyter/notebook/pull/7124)( [@jayeshsingh9767] (https://github.com/jayeshsingh9767)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-10-17&to=2024-02-13&type=c))
[@akx] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aakx+updated%3A2023-10-17..2024-02-13&type=Issues)| [@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2023-10-17..2024-02-13&type=Issues)| [@brichet] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abrichet+updated%3A2023-10-17..2024-02-13&type=Issues)| [@d5423197] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ad5423197+updated%3A2023-10-17..2024-02-13&type=Issues)| [@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2023-10-17..2024-02-13&type=Issues)| [@Dilip-Jain] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ADilip-Jain+updated%3A2023-10-17..2024-02-13&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-10-17..2024-02-13&type=Issues)| [@haok1402] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ahaok1402+updated%3A2023-10-17..2024-02-13&type=Issues)| [@jayeshsingh9767] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajayeshsingh9767+updated%3A2023-10-17..2024-02-13&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-10-17..2024-02-13&type=Issues)| [@krassowski] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akrassowski+updated%3A2023-10-17..2024-02-13&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-10-17..2024-02-13&type=Issues)| [@Zsailer] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AZsailer+updated%3A2023-10-17..2024-02-13&type=Issues)
7.1.0rc1#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.1.0rc0...376a2f97c883e6e91f321d0a676e1ee9ff3b8d87))
维护和维护改进#
关注JupyterLab次要版本 [#7250] (https://github.com/jupyter/notebook/pull/7250)( [@jtpio] (https://github.com/jtpio)))
文档改进#
添加文档以进行更新
notebook
进口 [#7244] (https://github.com/jupyter/notebook/pull/7244)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2024-02-07&to=2024-02-09&type=c))
[@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2024-02-07..2024-02-09&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2024-02-07..2024-02-09&type=Issues)
7.1.0rc0#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.1.0b0...2d717f5896a1d4310baa2499c7e6197d1914201d))
所做的改进#
添加了编辑笔记本元数据选项(#6402) [#7099] (https://github.com/jupyter/notebook/pull/7099)( [@Dilip-Jain] (https://github.com/Dilip-Jain)))
维护和维护改进#
Chore:更新提交前挂钩 [#7237] (https://github.com/jupyter/notebook/pull/7237)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
更新至JupyterLab 4.1.0最终版 [#7234] (https://github.com/jupyter/notebook/pull/7234)( [@jtpio] (https://github.com/jtpio)))
更新至JupyterLab 4.1.0rc1 [#7230] (https://github.com/jupyter/notebook/pull/7230)( [@jtpio] (https://github.com/jtpio)))
更新至JupyterLab 4.1.0rc0 [#7227] (https://github.com/jupyter/notebook/pull/7227)( [@jtpio] (https://github.com/jtpio)))
文档改进#
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2024-01-26&to=2024-02-07&type=c))
[@Dilip-Jain] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ADilip-Jain+updated%3A2024-01-26..2024-02-07&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2024-01-26..2024-02-07&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2024-01-26..2024-02-07&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2024-01-26..2024-02-07&type=Issues)
7.1.0b0#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.1.0a2...5d265b90ed5f097af4ca22d283ecdc705229ff92))
已修复错误#
文件浏览器跟踪器焦点问题的解决方法 [#7224] (https://github.com/jupyter/notebook/pull/7224)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
更新至JupyterLab 4.1.0b2 [#7222] (https://github.com/jupyter/notebook/pull/7222)( [@jtpio] (https://github.com/jtpio)))
修整
check_links
浅谈CI [#7219] (https://github.com/jupyter/notebook/pull/7219)( [@jtpio] (https://github.com/jtpio)))使用1个更新来提升操作组 [#7218] (https://github.com/jupyter/notebook/pull/7218)( [@dependabot] (https://github.com/dependabot)))
在Actions组中添加2个更新 [#7207] (https://github.com/jupyter/notebook/pull/7207)( [@dependabot] (https://github.com/dependabot)))
Chore:更新提交前挂钩 [#7206] (https://github.com/jupyter/notebook/pull/7206)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-12-27&to=2024-01-26&type=c))
[@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2023-12-27..2024-01-26&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-12-27..2024-01-26&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-12-27..2024-01-26&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-12-27..2024-01-26&type=Issues)| [@Zsailer] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AZsailer+updated%3A2023-12-27..2024-01-26&type=Issues)
7.1.0a2#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.1.0a1...251e0e360603b6e63b280b3bd04a5406f7da28da))
所做的改进#
添加插件管理器 [#7198] (https://github.com/jupyter/notebook/pull/7198)( [@jtpio] (https://github.com/jtpio)))
修复窗口小部件的切换功能。 [#7178] (https://github.com/jupyter/notebook/pull/7178)( [@haok1402] (https://github.com/haok1402)))
维护和维护改进#
将nbviewer.jupyter.org添加到忽略列表 [#7197] (https://github.com/jupyter/notebook/pull/7197)( [@jtpio] (https://github.com/jtpio)))
更新至JupyterLab 4.1.0b0 [#7196] (https://github.com/jupyter/notebook/pull/7196)( [@jtpio] (https://github.com/jtpio)))
更新RIFF配置 [#7190] (https://github.com/jupyter/notebook/pull/7190)( [@blink1073] (https://github.com/blink1073)))
Bump@babel/从7.23.0到7.23.6 [#7187] (https://github.com/jupyter/notebook/pull/7187)( [@dependabot] (https://github.com/dependabot)))
凹凸动作/设置--从4个到5个 [#7180] (https://github.com/jupyter/notebook/pull/7180)( [@dependabot] (https://github.com/dependabot)))
更新受PyPI信任的出版商的发布-发布工作流 [#7176] (https://github.com/jupyter/notebook/pull/7176)( [@jtpio] (https://github.com/jtpio)))
Chore:更新提交前挂钩 [#7174] (https://github.com/jupyter/notebook/pull/7174)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
删除UI测试中的视窗解决方法 [#6887] (https://github.com/jupyter/notebook/pull/6887)( [@jtpio] (https://github.com/jtpio)))
文档改进#
澄清自述文件中有关受支持版本的信息(v7发布后) [#7193] (https://github.com/jupyter/notebook/pull/7193)( [@akx] (https://github.com/akx)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-12-04&to=2023-12-27&type=c))
[@akx] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aakx+updated%3A2023-12-04..2023-12-27&type=Issues)| [@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2023-12-04..2023-12-27&type=Issues)| [@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2023-12-04..2023-12-27&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-12-04..2023-12-27&type=Issues)| [@haok1402] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ahaok1402+updated%3A2023-12-04..2023-12-27&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-12-04..2023-12-27&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-12-04..2023-12-27&type=Issues)
7.1.0a1#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.1.0-alpha.0...a74cd91871fcc6037d384fe59af8986557e783e5))
所做的改进#
维护和维护改进#
将AXIOS从1.5.1提高到1.6.2 [#7165] (https://github.com/jupyter/notebook/pull/7165)( [@dependabot] (https://github.com/dependabot)))
凸纹/锁紧-螺纹从4个增加到5个 [#7159] (https://github.com/jupyter/notebook/pull/7159)( [@dependabot] (https://github.com/dependabot)))
更新RIFF配置并键入 [#7145] (https://github.com/jupyter/notebook/pull/7145)( [@blink1073] (https://github.com/blink1073)))
Chore:更新提交前挂钩 [#7143] (https://github.com/jupyter/notebook/pull/7143)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
清理皮棉处理 [#7142] (https://github.com/jupyter/notebook/pull/7142)( [@blink1073] (https://github.com/blink1073)))
采用RIFF格式 [#7132] (https://github.com/jupyter/notebook/pull/7132)( [@blink1073] (https://github.com/blink1073)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-10-27&to=2023-12-04&type=c))
[@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2023-10-27..2023-12-04&type=Issues)| [@brichet] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abrichet+updated%3A2023-10-27..2023-12-04&type=Issues)| [@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2023-10-27..2023-12-04&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-10-27..2023-12-04&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-10-27..2023-12-04&type=Issues)| [@krassowski] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akrassowski+updated%3A2023-10-27..2023-12-04&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-10-27..2023-12-04&type=Issues)
7.1.0a0#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/@jupyter-notebook/application-extension@7.0.6...0cd6104b926a398b419f2433538cef437592796f))
所做的改进#
添加Lumino插件描述(#7008) [#7127] (https://github.com/jupyter/notebook/pull/7127)( [@Dilip-Jain] (https://github.com/Dilip-Jain)))
更新至JupyterLab 4.1 [#7096] (https://github.com/jupyter/notebook/pull/7096)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
文档改进#
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-10-17&to=2023-10-27&type=c))
[@Dilip-Jain] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ADilip-Jain+updated%3A2023-10-17..2023-10-27&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-10-17..2023-10-27&type=Issues)| [@jayeshsingh9767] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajayeshsingh9767+updated%3A2023-10-17..2023-10-27&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-10-17..2023-10-27&type=Issues)
v7.0#
7.0.6#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/@jupyter-notebook/app@7.0.5...c62caffb02856737870cbc79a2cdb43b3e89c363))
已修复错误#
更新了来自JupyterLab PageConfig.的FAV-ICON基本URL。 [#7109] (https://github.com/jupyter/notebook/pull/7109)( [@jayeshsingh9767] (https://github.com/jayeshsingh9767)))
维护和维护改进#
修复打字 [#7110] (https://github.com/jupyter/notebook/pull/7110)( [@jtpio] (https://github.com/jtpio)))
将Post css从8.4.27提高到8.4.31 [#7089] (https://github.com/jupyter/notebook/pull/7089)( [@dependabot] (https://github.com/dependabot)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-10-12&to=2023-10-17&type=c))
[@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2023-10-12..2023-10-17&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-10-12..2023-10-17&type=Issues)| [@jayeshsingh9767] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajayeshsingh9767+updated%3A2023-10-12..2023-10-17&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-10-12..2023-10-17&type=Issues)
7.0.5#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/@jupyter-notebook/app@7.0.4...839193d07f0780ded6f559892517f061f3776b02))
所做的改进#
更新至JupyterLab 4.0.7 [#7103] (https://github.com/jupyter/notebook/pull/7103)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
更新
permissions
在Galata快照工作流中 [#7105] (https://github.com/jupyter/notebook/pull/7105)( [@jtpio] (https://github.com/jtpio)))修复配置项上的类型检查 [#7104] (https://github.com/jupyter/notebook/pull/7104)( [@jtpio] (https://github.com/jtpio)))
忽略YARN.LOCK以获取Codesell [#7098] (https://github.com/jupyter/notebook/pull/7098)( [@jtpio] (https://github.com/jtpio)))
删除指向PDF文档的链接 [#7094] (https://github.com/jupyter/notebook/pull/7094)( [@jtpio] (https://github.com/jtpio)))
在/UI-TESTS中将postcss从8.4.23增加到8.4.31 [#7088] (https://github.com/jupyter/notebook/pull/7088)( [@dependabot] (https://github.com/dependabot)))
对Galata更新评论的反应 [#7086] (https://github.com/jupyter/notebook/pull/7086)( [@jtpio] (https://github.com/jtpio)))
切换自
hub
至gh
在编剧快照更新工作流中 [#7085] (https://github.com/jupyter/notebook/pull/7085)( [@jtpio] (https://github.com/jtpio)))Chore:更新提交前挂钩 [#7084] (https://github.com/jupyter/notebook/pull/7084)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
修复Traitlet类型 [#7082] (https://github.com/jupyter/notebook/pull/7082)( [@jtpio] (https://github.com/jtpio)))
Bump Toshimaru/自动作者-从2.0.0分配到2.0.1 [#7080] (https://github.com/jupyter/notebook/pull/7080)( [@dependabot] (https://github.com/dependabot)))
Bump Toshimaru/自动作者-从1.6.2分配到2.0.0 [#7072] (https://github.com/jupyter/notebook/pull/7072)( [@dependabot] (https://github.com/dependabot)))
CI:设置工作流的最低权限 [#7070] (https://github.com/jupyter/notebook/pull/7070)( [@diogoteles08] (https://github.com/diogoteles08)))
在/UI-TESTS中将系统信息从5.17.12增加到5.21.8 [#7064] (https://github.com/jupyter/notebook/pull/7064)( [@dependabot] (https://github.com/dependabot)))
文档改进#
改进文档设置(SVG徽标、回购链接) [#7074] (https://github.com/jupyter/notebook/pull/7074)( [@krassowski] (https://github.com/krassowski)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-09-20&to=2023-10-12&type=c))
[@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2023-09-20..2023-10-12&type=Issues)| [@diogoteles08] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adiogoteles08+updated%3A2023-09-20..2023-10-12&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-09-20..2023-10-12&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-09-20..2023-10-12&type=Issues)| [@krassowski] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akrassowski+updated%3A2023-09-20..2023-10-12&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-09-20..2023-10-12&type=Issues)
7.0.4#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/@jupyter-notebook/app@7.0.3...0e62386fc71ed4bd424c989f9d5493ca346f1d9a))
所做的改进#
更新至JupyterLab 4.0.6 [#7049] (https://github.com/jupyter/notebook/pull/7049)( [@jtpio] (https://github.com/jtpio)))
已修复错误#
维护和维护改进#
更新活页夹环境 [#7059] (https://github.com/jupyter/notebook/pull/7059)( [@jtpio] (https://github.com/jtpio)))
增列
deduplicate
顶级脚本 [#7058] (https://github.com/jupyter/notebook/pull/7058)( [@jtpio] (https://github.com/jtpio)))将新浏览器选项卡中的打开路径移动到单独的插件 [#7056] (https://github.com/jupyter/notebook/pull/7056)( [@jtpio] (https://github.com/jtpio)))
启用编剧跟踪 [#7050] (https://github.com/jupyter/notebook/pull/7050)( [@jtpio] (https://github.com/jtpio)))
凹凸动作/检出从3个增加到4个 [#7040] (https://github.com/jupyter/notebook/pull/7040)( [@dependabot] (https://github.com/dependabot)))
采用SP-repo-Review [#7039] (https://github.com/jupyter/notebook/pull/7039)( [@blink1073] (https://github.com/blink1073)))
增列
datetime.datetime.utc()
添加到过滤器列表 [#7037] (https://github.com/jupyter/notebook/pull/7037)( [@jtpio] (https://github.com/jtpio)))修复在Gitpod上构建的文档 [#7026] (https://github.com/jupyter/notebook/pull/7026)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-08-30&to=2023-09-20&type=c))
[@adigaboy] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aadigaboy+updated%3A2023-08-30..2023-09-20&type=Issues)| [@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2023-08-30..2023-09-20&type=Issues)| [@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2023-08-30..2023-09-20&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-08-30..2023-09-20&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-08-30..2023-09-20&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-08-30..2023-09-20&type=Issues)
7.0.3#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/@jupyter-notebook/app@7.0.2...e2eb8f2a166ba7b339309b8bfbff40e6c9e0a9b9))
已修复错误#
需要Importlib_RESOURCES才能在Python上测试<3.10 [#7016] (https://github.com/jupyter/notebook/pull/7016)( [@bnavigator] (https://github.com/bnavigator)))
修复与Python 3.12的兼容性 [#6965] (https://github.com/jupyter/notebook/pull/6965)( [@frenzymadness] (https://github.com/frenzymadness)))
维护和维护改进#
更新至JupyterLab 4.0.5 [#7013] (https://github.com/jupyter/notebook/pull/7013)( [@jtpio] (https://github.com/jtpio)))
针对Python3.12进行测试 [#6999] (https://github.com/jupyter/notebook/pull/6999)( [@jtpio] (https://github.com/jtpio)))
文档改进#
在投稿指南中提到NX图表 [#7001] (https://github.com/jupyter/notebook/pull/7001)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-08-04&to=2023-08-30&type=c))
[@bnavigator] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abnavigator+updated%3A2023-08-04..2023-08-30&type=Issues)| [@defjaf] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adefjaf+updated%3A2023-08-04..2023-08-30&type=Issues)| [@frenzymadness] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Afrenzymadness+updated%3A2023-08-04..2023-08-30&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-08-04..2023-08-30&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-08-04..2023-08-30&type=Issues)| [@kevin-bates] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akevin-bates+updated%3A2023-08-04..2023-08-30&type=Issues)
7.0.2#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/@jupyter-notebook/app@7.0.1...af5edd42374cadba65feed2e6828b1ef96295daf))
所做的改进#
更新到JupyterLab 4.0.4包 [#6998] (https://github.com/jupyter/notebook/pull/6998)( [@jtpio] (https://github.com/jtpio)))
改进关于对话框 [#6996] (https://github.com/jupyter/notebook/pull/6996)( [@yjrab] (https://github.com/yjrab)))
在帮助菜单中添加了文档链接 [#6993] (https://github.com/jupyter/notebook/pull/6993)( [@Mikil03] (https://github.com/Mikil03)))
已修复错误#
维护和维护改进#
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-07-31&to=2023-08-04&type=c))
[@echarles] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aecharles+updated%3A2023-07-31..2023-08-04&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-07-31..2023-08-04&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-07-31..2023-08-04&type=Issues)| [@kevin-bates] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akevin-bates+updated%3A2023-07-31..2023-08-04&type=Issues)| [@Mikil03] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AMikil03+updated%3A2023-07-31..2023-08-04&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-07-31..2023-08-04&type=Issues)| [@shaneknapp] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ashaneknapp+updated%3A2023-07-31..2023-08-04&type=Issues)| [@yjrab] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ayjrab+updated%3A2023-07-31..2023-08-04&type=Issues)| [@Zsailer] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AZsailer+updated%3A2023-07-31..2023-08-04&type=Issues)
7.0.1#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/@jupyter-notebook/app@7.0.0...ac3c882a246b46c15c1963ef4b65427a4257b132))
所做的改进#
更新文档中可访问的合规性部分 [#6982] (https://github.com/jupyter/notebook/pull/6982)( [@andrii-i] (https://github.com/andrii-i)))
在内核繁忙时更新浏览器选项卡图标 [#6980] (https://github.com/jupyter/notebook/pull/6980)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
文档改进#
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-07-19&to=2023-07-31&type=c))
[@andrii-i] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aandrii-i+updated%3A2023-07-19..2023-07-31&type=Issues)| [@echarles] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aecharles+updated%3A2023-07-19..2023-07-31&type=Issues)| [@frenzymadness] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Afrenzymadness+updated%3A2023-07-19..2023-07-31&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-07-19..2023-07-31&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-07-19..2023-07-31&type=Issues)| [@prof-lupin] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aprof-lupin+updated%3A2023-07-19..2023-07-31&type=Issues)
7.0.0#
Jupyter Notebook 7发布:Tada:
查看更改日志:https://jupyter-notebook.readthedocs.io/en/latest/changelog.html
笔记本7的新功能:https://jupyter-notebook.readthedocs.io/en/latest/notebook_7_features.html
迁移指南:https://jupyter-notebook.readthedocs.io/en/latest/migrate_to_notebook7.html
以下是自上一年以来的更改日志,以供参考 7.0.0rc2
放手。
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0rc2...2be98e8f39af7f3ec2729006018f6baf0998f94b))
已修复错误#
更新JupyText笔记本URL路径 [#6961] (https://github.com/jupyter/notebook/pull/6961)( [@RRosio] (https://github.com/RRosio)))
维护和维护改进#
修复从RC开始的图案填充版本 [#6971] (https://github.com/jupyter/notebook/pull/6971)( [@jtpio] (https://github.com/jtpio)))
更新至JupyterLab 4.0.3 [#6967] (https://github.com/jupyter/notebook/pull/6967)( [@jtpio] (https://github.com/jtpio)))
/UI-TESTS中的bump Semver从7.5.0到7.5.3 [#6950] (https://github.com/jupyter/notebook/pull/6950)( [@dependabot] (https://github.com/dependabot)))
文档改进#
FIX:故障排除指南的更新链接 [#6964] (https://github.com/jupyter/notebook/pull/6964)( [@emmanuel-ferdman] (https://github.com/emmanuel-ferdman)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-06-26&to=2023-07-19&type=c))
[@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2023-06-26..2023-07-19&type=Issues)| [@emmanuel-ferdman] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aemmanuel-ferdman+updated%3A2023-06-26..2023-07-19&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-06-26..2023-07-19&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-06-26..2023-07-19&type=Issues)| [@parmentelat] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aparmentelat+updated%3A2023-06-26..2023-07-19&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-06-26..2023-07-19&type=Issues)| [@RRosio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ARRosio+updated%3A2023-06-26..2023-07-19&type=Issues)
7.0.0rc2#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0rc1...27c00bc56afaa5b89713f760b0cc6eb88079224e))
已修复错误#
修复从CLI打开的文件 [#6946] (https://github.com/jupyter/notebook/pull/6946)( [@jtpio] (https://github.com/jtpio)))
修复对基本url的处理 [#6943] (https://github.com/jupyter/notebook/pull/6943)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-06-22&to=2023-06-26&type=c))
[@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-06-22..2023-06-26&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-06-22..2023-06-26&type=Issues)| [@parmentelat] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aparmentelat+updated%3A2023-06-22..2023-06-26&type=Issues)
7.0.0rc1#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0rc0...8493e1ba21ebaca5c192d68bdc829ccc5b29a799))
所做的改进#
当点击“关闭并关闭笔记本”时,关闭浏览器标签 [#6937] (https://github.com/jupyter/notebook/pull/6937)( [@jtpio] (https://github.com/jtpio)))
已修复错误#
修复重定向处理程序 [#6941] (https://github.com/jupyter/notebook/pull/6941)( [@jtpio] (https://github.com/jtpio)))
正确选择Jupyter徽标(#6927) [#6938] (https://github.com/jupyter/notebook/pull/6938)( [@Cheukting] (https://github.com/Cheukting)))
文档改进#
更新问题模板 [#6939] (https://github.com/jupyter/notebook/pull/6939)( [@RRosio] (https://github.com/RRosio)))
DOCS与JupyterLab的Find对等。 [#6917] (https://github.com/jupyter/notebook/pull/6917)( [@ericsnekbytes] (https://github.com/ericsnekbytes)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-06-19&to=2023-06-22&type=c))
[@andrii-i] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aandrii-i+updated%3A2023-06-19..2023-06-22&type=Issues)| [@Cheukting] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ACheukting+updated%3A2023-06-19..2023-06-22&type=Issues)| [@ericsnekbytes] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aericsnekbytes+updated%3A2023-06-19..2023-06-22&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-06-19..2023-06-22&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-06-19..2023-06-22&type=Issues)| [@RRosio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ARRosio+updated%3A2023-06-19..2023-06-22&type=Issues)
7.0.0rc0#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0b4...d0692112a4b2db20c2178205d4b5630184acbf7b))
所做的改进#
更新JupyterLab,审核文档查看器 [#6922] (https://github.com/jupyter/notebook/pull/6922)( [@jtpio] (https://github.com/jtpio)))
使用设置自定义Shell布局 [#6921] (https://github.com/jupyter/notebook/pull/6921)( [@jtpio] (https://github.com/jtpio)))
已修复错误#
修复默认查看器覆盖 [#6923] (https://github.com/jupyter/notebook/pull/6923)( [@jtpio] (https://github.com/jtpio)))
使JupyterHub配置与JupyterLab保持一致 [#6918] (https://github.com/jupyter/notebook/pull/6918)( [@jtpio] (https://github.com/jtpio)))
文档改进#
添加了自定义css文件的示例 [#6919] (https://github.com/jupyter/notebook/pull/6919)( [@RRosio] (https://github.com/RRosio)))
API和突破性变化#
使用设置自定义Shell布局 [#6921] (https://github.com/jupyter/notebook/pull/6921)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-06-12&to=2023-06-19&type=c))
[@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-06-12..2023-06-19&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-06-12..2023-06-19&type=Issues)| [@RRosio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ARRosio+updated%3A2023-06-12..2023-06-19&type=Issues)
7.0.0b4#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0b3...ee3e1c221226d482ca1c9bec6362c8af36f1da56))
所做的改进#
将浏览器选项卡标题重命名为主页 [#6913] (https://github.com/jupyter/notebook/pull/6913)( [@Cheukting] (https://github.com/Cheukting)))
添加通知插件 [#6900] (https://github.com/jupyter/notebook/pull/6900)( [@jtpio] (https://github.com/jtpio)))
可配置
default_url
适用于JupyterNotebookApp [#6899] (https://github.com/jupyter/notebook/pull/6899)( [@paulgb] (https://github.com/paulgb)))增强功能:在标记、文本和树视图中添加投影 [#6893] (https://github.com/jupyter/notebook/pull/6893)( [@rielAsh24] (https://github.com/rielAsh24)))
更新至JupyterLab 4.0.1 [#6892] (https://github.com/jupyter/notebook/pull/6892)( [@jtpio] (https://github.com/jtpio)))
将文件浏览器操作添加到文件浏览器工具栏 [#6888] (https://github.com/jupyter/notebook/pull/6888)( [@jtpio] (https://github.com/jtpio)))
添加在NbClassic中打开笔记本的选项(如果已安装);显示“打开方式...”如果有多个选项,则显示下拉菜单,否则显示单个按钮 [#6866] (https://github.com/jupyter/notebook/pull/6866)( [@andrii-i] (https://github.com/andrii-i)))
加载自定义CSS [#6841] (https://github.com/jupyter/notebook/pull/6841)( [@RRosio] (https://github.com/RRosio)))
已修复错误#
在笔记本电脑发布时添加空白闪屏,以避免闪现未设置样式的内容 [#6911] (https://github.com/jupyter/notebook/pull/6911)( [@andrii-i] (https://github.com/andrii-i)))
修复了“查找只搜索文件的一部分”错误 [#6905] (https://github.com/jupyter/notebook/pull/6905)( [@ericsnekbytes] (https://github.com/ericsnekbytes)))
提供一个定制的renderMIME插件来处理本地链接 [#6885] (https://github.com/jupyter/notebook/pull/6885)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
修复配置项上的检查链接 [#6910] (https://github.com/jupyter/notebook/pull/6910)( [@jtpio] (https://github.com/jtpio)))
简化Gitpod设置 [#6894] (https://github.com/jupyter/notebook/pull/6894)( [@jtpio] (https://github.com/jtpio)))
修复更新工作流中的操作名称 [#6884] (https://github.com/jupyter/notebook/pull/6884)( [@jtpio] (https://github.com/jtpio)))
修复剧作家机器人 [#6880] (https://github.com/jupyter/notebook/pull/6880)( [@jtpio] (https://github.com/jtpio)))
文档改进#
记录如何管理插件和扩展 [#6909] (https://github.com/jupyter/notebook/pull/6909)( [@jtpio] (https://github.com/jtpio)))
Jupyter Notebook生态系统文档改进 [#6877] (https://github.com/jupyter/notebook/pull/6877)( [@ericsnekbytes] (https://github.com/ericsnekbytes)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-05-25&to=2023-06-12&type=c))
[@andrii-i] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aandrii-i+updated%3A2023-05-25..2023-06-12&type=Issues)| [@Cheukting] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ACheukting+updated%3A2023-05-25..2023-06-12&type=Issues)| [@echarles] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aecharles+updated%3A2023-05-25..2023-06-12&type=Issues)| [@ericsnekbytes] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aericsnekbytes+updated%3A2023-05-25..2023-06-12&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-05-25..2023-06-12&type=Issues)| [@henryiii] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ahenryiii+updated%3A2023-05-25..2023-06-12&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-05-25..2023-06-12&type=Issues)| [@krassowski] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akrassowski+updated%3A2023-05-25..2023-06-12&type=Issues)| [@paulgb] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apaulgb+updated%3A2023-05-25..2023-06-12&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-05-25..2023-06-12&type=Issues)| [@rielAsh24] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ArielAsh24+updated%3A2023-05-25..2023-06-12&type=Issues)| [@RRosio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ARRosio+updated%3A2023-05-25..2023-06-12&type=Issues)| [@yuvipanda] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ayuvipanda+updated%3A2023-05-25..2023-06-12&type=Issues)
7.0.0b3#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0b2...93e4d5e1c6ed7a3a4875eed284255587ac293819))
所做的改进#
Copy edits for
migrate_to_notebook7
#6879 (@JasonWeill)启用添加单元格按钮 [#6872] (https://github.com/jupyter/notebook/pull/6872)( [@tuncbkose] (https://github.com/tuncbkose)))
更新至JupyterLab 4决赛 [#6871] (https://github.com/jupyter/notebook/pull/6871)( [@jtpio] (https://github.com/jtpio)))
已修复错误#
修复URL中默认工厂的处理 [#6873] (https://github.com/jupyter/notebook/pull/6873)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
更新至编剧1.33 [#6874] (https://github.com/jupyter/notebook/pull/6874)( [@jtpio] (https://github.com/jtpio)))
修复配置项上的检查链接 [#6870] (https://github.com/jupyter/notebook/pull/6870)( [@jtpio] (https://github.com/jtpio)))
文档改进#
Copy edits for
migrate_to_notebook7
#6879 (@JasonWeill)
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-05-09&to=2023-05-25&type=c))
[@andrii-i] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aandrii-i+updated%3A2023-05-09..2023-05-25&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-05-09..2023-05-25&type=Issues)| [@JasonWeill] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AJasonWeill+updated%3A2023-05-09..2023-05-25&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-05-09..2023-05-25&type=Issues)| [@timmerk3] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Atimmerk3+updated%3A2023-05-09..2023-05-25&type=Issues)| [@tuncbkose] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Atuncbkose+updated%3A2023-05-09..2023-05-25&type=Issues)
7.0.0b2#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0b1...c0071d796019c0221df4900313b51c0529438bcf))
所做的改进#
更新至JupyterLab 4.0.0rc1 [#6864] (https://github.com/jupyter/notebook/pull/6864)( [@jtpio] (https://github.com/jtpio)))
将“界面”菜单更改为“打开方式...”,缩短菜单项的名称 [#6847] (https://github.com/jupyter/notebook/pull/6847)( [@andrii-i] (https://github.com/andrii-i)))
将跳过链接添加到笔记本 [#6844] (https://github.com/jupyter/notebook/pull/6844)( [@seirani] (https://github.com/seirani)))
已修复错误#
修复顶部栏可见性不拾取设置覆盖问题(#6833) [#6836] (https://github.com/jupyter/notebook/pull/6836)( [@yumyumqing] (https://github.com/yumyumqing)))
维护和维护改进#
更新RTD镜像 [#6861] (https://github.com/jupyter/notebook/pull/6861)( [@blink1073] (https://github.com/blink1073)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-04-28&to=2023-05-09&type=c))
[@andrii-i] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aandrii-i+updated%3A2023-04-28..2023-05-09&type=Issues)| [@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2023-04-28..2023-05-09&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-04-28..2023-05-09&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-04-28..2023-05-09&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-04-28..2023-05-09&type=Issues)| [@seirani] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aseirani+updated%3A2023-04-28..2023-05-09&type=Issues)| [@yumyumqing] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ayumyumqing+updated%3A2023-04-28..2023-05-09&type=Issues)
7.0.0b1#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0b0...4b6af274b24bcc20e43ad2330c9243c8d2c7d552))
所做的改进#
已修复错误#
修复了笔记本工具 [#6834] (https://github.com/jupyter/notebook/pull/6834)( [@brichet] (https://github.com/brichet)))
维护和维护改进#
使用本地覆盖范围 [#6839] (https://github.com/jupyter/notebook/pull/6839)( [@blink1073] (https://github.com/blink1073)))
文档改进#
向7个迁移文档添加了额外信息和用户操作摘要。 [#6850] (https://github.com/jupyter/notebook/pull/6850)( [@ericsnekbytes] (https://github.com/ericsnekbytes)))
Rename migration file to
migrate_to_notebook7
#6831 (@jtpio)在构建文档时使用正确的规范URL [#6829] (https://github.com/jupyter/notebook/pull/6829)( [@ashwinvis] (https://github.com/ashwinvis)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-04-04&to=2023-04-28&type=c))
[@ashwinvis] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aashwinvis+updated%3A2023-04-04..2023-04-28&type=Issues)| [@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2023-04-04..2023-04-28&type=Issues)| [@brichet] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abrichet+updated%3A2023-04-04..2023-04-28&type=Issues)| [@ericsnekbytes] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aericsnekbytes+updated%3A2023-04-04..2023-04-28&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-04-04..2023-04-28&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-04-04..2023-04-28&type=Issues)
7.0.0b0#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a18...b99718f57a8beac7b4019901a57c94984781dd49))
所做的改进#
已修复错误#
在编辑文件的底部添加了空白 [#6804] (https://github.com/jupyter/notebook/pull/6804)( [@jesuscastillx] (https://github.com/jesuscastillx)))
在笔记本电脑中隐藏“微型”工具栏 [#6791] (https://github.com/jupyter/notebook/pull/6791)( [@JasonWeill] (https://github.com/JasonWeill)))
维护和维护改进#
为RTC添加缺少的单例程序包 [#6816] (https://github.com/jupyter/notebook/pull/6816)( [@jtpio] (https://github.com/jtpio)))
文档改进#
改进笔记本7的文档 [#6813] (https://github.com/jupyter/notebook/pull/6813)( [@jtpio] (https://github.com/jtpio)))
修复迁移指南中的拼写错误 [#6812] (https://github.com/jupyter/notebook/pull/6812)( [@Tiksagol] (https://github.com/Tiksagol)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-03-24&to=2023-04-04&type=c))
[@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-03-24..2023-04-04&type=Issues)| [@j-publius] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aj-publius+updated%3A2023-03-24..2023-04-04&type=Issues)| [@JasonWeill] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AJasonWeill+updated%3A2023-03-24..2023-04-04&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-03-24..2023-04-04&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-03-24..2023-04-04&type=Issues)| [@Tiksagol] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ATiksagol+updated%3A2023-03-24..2023-04-04&type=Issues)
7.0.0a18#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a17...253efe279f8c8005f016f3dfe28c22233ee1d2dd))
所做的改进#
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-03-20&to=2023-03-24&type=c))
[@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-03-20..2023-03-24&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-03-20..2023-03-24&type=Issues)| [@yumyumqing] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ayumyumqing+updated%3A2023-03-20..2023-03-24&type=Issues)
7.0.0a17#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a16...7903de83e83a6ce342d71895dc1e8c2ec8128174))
亮点#
此版本的主要变化是对最新JupyterLab的更新 4.0.0a37
。
查看 [JupyterLab 4.0.0a37
release notes] 有关更多详细信息,请访问(https://github.com/jupyterlab/jupyterlab/releases/tag/v4.0.0a37)。
所做的改进#
更新至JupyterLab 4.0.0a37 [#6777] (https://github.com/jupyter/notebook/pull/6777)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
Replace the use of
toArray
byArray.from
#6775 (@tarunsamanta2k20
)
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-03-15&to=2023-03-20&type=c))
[@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-03-15..2023-03-20&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-03-15..2023-03-20&type=Issues)| [@tarunsamanta2k20] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Atarunsamanta2k20+updated%3A2023-03-15..2023-03-20&type=Issues)
7.0.0a16#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a15...0faa88c8b65e0302f1904e4ca9cd2e551525f352))
所做的改进#
更新至JupyterLab 4.0.0a36 [#6773] (https://github.com/jupyter/notebook/pull/6773)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
清理界面切换器插件,为发布做准备 [#6766] (https://github.com/jupyter/notebook/pull/6766)( [@afshin] (https://github.com/afshin)))
删除空的
py.test
文件 [#6764] (https://github.com/jupyter/notebook/pull/6764)( [@frenzymadness] (https://github.com/frenzymadness)))
文档改进#
添加对文档做出贡献的文档 [#6771] (https://github.com/jupyter/notebook/pull/6771)( [@jtpio] (https://github.com/jtpio)))
将文档转换为降价 [#6770] (https://github.com/jupyter/notebook/pull/6770)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-03-08&to=2023-03-15&type=c))
[@afshin] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aafshin+updated%3A2023-03-08..2023-03-15&type=Issues)| [@frenzymadness] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Afrenzymadness+updated%3A2023-03-08..2023-03-15&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-03-08..2023-03-15&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-03-08..2023-03-15&type=Issues)
7.0.0a15#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a14...1ccb8f15d6bf3557eed2405438a9df3c1d6cd040))
所做的改进#
更新至JupyterLab 4.0.0a35 [#6757] (https://github.com/jupyter/notebook/pull/6757)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
在/ui测试中将Vega从5.22.1提升到5.23.0 [#6756] (https://github.com/jupyter/notebook/pull/6756)( [@dependabot] (https://github.com/dependabot)))
Bump Vega-函数从5.13.0到5.13.1 in/ui-test [#6754] (https://github.com/jupyter/notebook/pull/6754)( [@dependabot] (https://github.com/dependabot)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-03-01&to=2023-03-08&type=c))
[@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2023-03-01..2023-03-08&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-03-01..2023-03-08&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-03-01..2023-03-08&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-03-01..2023-03-08&type=Issues)
7.0.0a14#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a13...f9e427cf4e92dbaa5794fe0331ca92b41d45d52c))
所做的改进#
修复插件的加载 [#6750] (https://github.com/jupyter/notebook/pull/6750)( [@jtpio] (https://github.com/jtpio)))
添加扩展管理器 [#6747] (https://github.com/jupyter/notebook/pull/6747)( [@jtpio] (https://github.com/jtpio)))
文件浏览器的css调整 [#6738] (https://github.com/jupyter/notebook/pull/6738)( [@jtpio] (https://github.com/jtpio)))
添加可信指示器 [#6736] (https://github.com/jupyter/notebook/pull/6736)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
文档改进#
将“重新评论”更正为“推荐” [#6741] (https://github.com/jupyter/notebook/pull/6741)( [@Tony-j77] (https://github.com/Tony-j77)))
文档:添加移植到笔记本7页面 [#6737] (https://github.com/jupyter/notebook/pull/6737)( [@echarles] (https://github.com/echarles)))
添加有关更新参考快照的部分 [#6733] (https://github.com/jupyter/notebook/pull/6733)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-02-15&to=2023-03-01&type=c))
[@dcsaba89] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adcsaba89+updated%3A2023-02-15..2023-03-01&type=Issues)| [@echarles] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aecharles+updated%3A2023-02-15..2023-03-01&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-02-15..2023-03-01&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-02-15..2023-03-01&type=Issues)| [@RRosio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ARRosio+updated%3A2023-02-15..2023-03-01&type=Issues)| [@Tony-j77] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ATony-j77+updated%3A2023-02-15..2023-03-01&type=Issues)
7.0.0a13#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a12...ef67879306b27dfa78b8d639d9cc142b50f8c7ba))
所做的改进#
更新至JupyterLab 4.0.0a34 [#6732] (https://github.com/jupyter/notebook/pull/6732)( [@jtpio] (https://github.com/jtpio)))
在移动设备上隐藏调试器按钮 [#6731] (https://github.com/jupyter/notebook/pull/6731)( [@jtpio] (https://github.com/jtpio)))
将转换器添加到NotebookShell [#6725] (https://github.com/jupyter/notebook/pull/6725)( [@brichet] (https://github.com/brichet)))
解决一些可访问性问题 [#6719] (https://github.com/jupyter/notebook/pull/6719)( [@brichet] (https://github.com/brichet)))
维护和维护改进#
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-02-08&to=2023-02-15&type=c))
[@brichet] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abrichet+updated%3A2023-02-08..2023-02-15&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-02-08..2023-02-15&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-02-08..2023-02-15&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2023-02-08..2023-02-15&type=Issues)
7.0.0a12#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a11...27c2bfbb80d42a3fd2541b13fae6143e2e91e4dd))
所做的改进#
更新至JupyterLab 4.0.0a33 [#6713] (https://github.com/jupyter/notebook/pull/6713)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
添加更多的皮棉格子 [#6706] (https://github.com/jupyter/notebook/pull/6706)( [@blink1073] (https://github.com/blink1073)))
重新引入桌面文件 [#6705] (https://github.com/jupyter/notebook/pull/6705)( [@frenzymadness] (https://github.com/frenzymadness)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-01-19&to=2023-02-08&type=c))
[@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2023-01-19..2023-02-08&type=Issues)| [@frenzymadness] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Afrenzymadness+updated%3A2023-01-19..2023-02-08&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-01-19..2023-02-08&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-01-19..2023-02-08&type=Issues)
7.0.0a11#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a10...6d4eeed9d176e2523be7874ae4d9f46a99422d72))
所做的改进#
树视图增强功能 [#6588] (https://github.com/jupyter/notebook/pull/6588)( [@brichet] (https://github.com/brichet)))
将设置编辑器添加到登录页 [#6316] (https://github.com/jupyter/notebook/pull/6316)( [@jtpio] (https://github.com/jtpio)))
已修复错误#
修复将小部件添加到侧面板时出现的控制台错误 [#6694] (https://github.com/jupyter/notebook/pull/6694)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
Help-扩展模块拆分成多个插件 [#6700] (https://github.com/jupyter/notebook/pull/6700)( [@RRosio] (https://github.com/RRosio)))
添加发布者工作流 [#6698] (https://github.com/jupyter/notebook/pull/6698)( [@blink1073] (https://github.com/blink1073)))
创建
auto_author_assign.yml
工作流程 [#6696] (https://github.com/jupyter/notebook/pull/6696)( [@jtpio] (https://github.com/jtpio)))修复Gitpod上的环境激活 [#6693] (https://github.com/jupyter/notebook/pull/6693)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2023-01-09&to=2023-01-19&type=c))
[@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2023-01-09..2023-01-19&type=Issues)| [@brichet] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abrichet+updated%3A2023-01-09..2023-01-19&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2023-01-09..2023-01-19&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2023-01-09..2023-01-19&type=Issues)| [@RRosio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ARRosio+updated%3A2023-01-09..2023-01-19&type=Issues)
7.0.0a10#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a9...6205bf376f783b7202af71e1074f44086ee7056c))
所做的改进#
更新至JupyterLab 4.0.0a32 [#6678] (https://github.com/jupyter/notebook/pull/6678)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
在/ui-test中将json5从2.2.1增加到2.2.3 [#6684] (https://github.com/jupyter/notebook/pull/6684)( [@dependabot] (https://github.com/dependabot)))
将json5从1.0.1增加到1.0.2 [#6681] (https://github.com/jupyter/notebook/pull/6681)( [@dependabot] (https://github.com/dependabot)))
在关于对话框中将版权日期更新为2023 [#6679] (https://github.com/jupyter/notebook/pull/6679)( [@jtpio] (https://github.com/jtpio)))
修整
check_links
和Test Lint
CI故障 [#6675] (https://github.com/jupyter/notebook/pull/6675)( [@jtpio] (https://github.com/jtpio)))添加拼写和文档字符串强制 [#6669] (https://github.com/jupyter/notebook/pull/6669)( [@blink1073] (https://github.com/blink1073)))
CI清理 [#6667] (https://github.com/jupyter/notebook/pull/6667)( [@blink1073] (https://github.com/blink1073)))
采用打字和打字 [#6658] (https://github.com/jupyter/notebook/pull/6658)( [@blink1073] (https://github.com/blink1073)))
将解码uri组件从0.2.0提升至0.2.2 [#6651] (https://github.com/jupyter/notebook/pull/6651)( [@dependabot] (https://github.com/dependabot)))
将凹凸纹/锁紧线从3条增加到4条 [#6650] (https://github.com/jupyter/notebook/pull/6650)( [@dependabot] (https://github.com/dependabot)))
更新至TypeScrip 4.9 [#6640] (https://github.com/jupyter/notebook/pull/6640)( [@jtpio] (https://github.com/jtpio)))
添加更多的Python测试 [#6639] (https://github.com/jupyter/notebook/pull/6639)( [@blink1073] (https://github.com/blink1073)))
使用主分支进行配置 [#6638] (https://github.com/jupyter/notebook/pull/6638)( [@blink1073] (https://github.com/blink1073)))
清理工作流 [#6635] (https://github.com/jupyter/notebook/pull/6635)( [@blink1073] (https://github.com/blink1073)))
CI清理 [#6631] (https://github.com/jupyter/notebook/pull/6631)( [@blink1073] (https://github.com/blink1073)))
修复问题模板格式 [#6626] (https://github.com/jupyter/notebook/pull/6626)( [@jtpio] (https://github.com/jtpio)))
文档改进#
删除指向Jupyter笔记本文档的PDF链接 [#6648] (https://github.com/jupyter/notebook/pull/6648)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2022-11-21&to=2023-01-09&type=c))
[@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2022-11-21..2023-01-09&type=Issues)| [@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2022-11-21..2023-01-09&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2022-11-21..2023-01-09&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2022-11-21..2023-01-09&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2022-11-21..2023-01-09&type=Issues)| [@RRosio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ARRosio+updated%3A2022-11-21..2023-01-09&type=Issues)| [@yacchin1205] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ayacchin1205+updated%3A2022-11-21..2023-01-09&type=Issues)
7.0.0a9#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a8...b4006ce47bf37b31a7049a77971d7e5db1070660))
所做的改进#
更新至JupyterLab 4.0.0a31 [#6627] (https://github.com/jupyter/notebook/pull/6627)( [@jtpio] (https://github.com/jtpio)))
已修复错误#
为笔记本中的/树视图明确指定收藏夹图标 [#6608] (https://github.com/jupyter/notebook/pull/6608)( [@mcrutch] (https://github.com/mcrutch)))
维护和维护改进#
将run-p(npm-run-all)添加到开发依赖项 [#6629] (https://github.com/jupyter/notebook/pull/6629)( [@gabalafou] (https://github.com/gabalafou)))
将与面板相关的对象移动到专用模块文件 [#6625] (https://github.com/jupyter/notebook/pull/6625)( [@brichet] (https://github.com/brichet)))
Use pathlib instead of os.path.join in
tests/conftest.py
#6624 (@kianelbo)凹凸加载器-Utils从1.4.1到1.4.2 [#6623] (https://github.com/jupyter/notebook/pull/6623)( [@dependabot] (https://github.com/dependabot)))
在CI上升级到Python3.11 [#6600] (https://github.com/jupyter/notebook/pull/6600)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2022-11-11&to=2022-11-21&type=c))
[@brichet] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abrichet+updated%3A2022-11-11..2022-11-21&type=Issues)| [@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2022-11-11..2022-11-21&type=Issues)| [@fcollonval] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Afcollonval+updated%3A2022-11-11..2022-11-21&type=Issues)| [@gabalafou] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agabalafou+updated%3A2022-11-11..2022-11-21&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2022-11-11..2022-11-21&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2022-11-11..2022-11-21&type=Issues)| [@kianelbo] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akianelbo+updated%3A2022-11-11..2022-11-21&type=Issues)| [@mcrutch] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Amcrutch+updated%3A2022-11-11..2022-11-21&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2022-11-11..2022-11-21&type=Issues)
7.0.0a8#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a7...9141f3eabb6a10a5bf742b26713405f9768cb6d2))
所做的改进#
重新设置关于对话框的样式 [#6592] (https://github.com/jupyter/notebook/pull/6592)( [@kostyafarber] (https://github.com/kostyafarber)))
已修复错误#
修复异步内容处理并添加测试 [#6616] (https://github.com/jupyter/notebook/pull/6616)( [@blink1073] (https://github.com/blink1073)))
修复PDF渲染器 [#6584] (https://github.com/jupyter/notebook/pull/6584)( [@brichet] (https://github.com/brichet)))
修复HTML查看器 [#6583] (https://github.com/jupyter/notebook/pull/6583)( [@brichet] (https://github.com/brichet)))
维护和维护改进#
凹凸加载器-从1.4.0到1.4.1的实用程序 [#6615] (https://github.com/jupyter/notebook/pull/6615)( [@dependabot] (https://github.com/dependabot)))
凹凸齿线/锁紧线从2到3 [#6587] (https://github.com/jupyter/notebook/pull/6587)( [@dependabot] (https://github.com/dependabot)))
添加依赖项配置以更新GitHub操作 [#6586] (https://github.com/jupyter/notebook/pull/6586)( [@jtpio] (https://github.com/jtpio)))
Update
actions/checkout
andactions/download-artifact
#6585 (@jtpio)维护清理 [#6581] (https://github.com/jupyter/notebook/pull/6581)( [@blink1073] (https://github.com/blink1073)))
更新到Lerna 6 [#6579] (https://github.com/jupyter/notebook/pull/6579)( [@jtpio] (https://github.com/jtpio)))
移除
nbclassic
在活页夹上显式卸载 [#6548] (https://github.com/jupyter/notebook/pull/6548)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2022-10-13&to=2022-11-11&type=c))
[@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2022-10-13..2022-11-11&type=Issues)| [@bnavigator] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abnavigator+updated%3A2022-10-13..2022-11-11&type=Issues)| [@brichet] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abrichet+updated%3A2022-10-13..2022-11-11&type=Issues)| [@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2022-10-13..2022-11-11&type=Issues)| [@echarles] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aecharles+updated%3A2022-10-13..2022-11-11&type=Issues)| [@fcollonval] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Afcollonval+updated%3A2022-10-13..2022-11-11&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2022-10-13..2022-11-11&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2022-10-13..2022-11-11&type=Issues)| [@kostyafarber] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akostyafarber+updated%3A2022-10-13..2022-11-11&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2022-10-13..2022-11-11&type=Issues)| [@RRosio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ARRosio+updated%3A2022-10-13..2022-11-11&type=Issues)| [@venkatasg] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Avenkatasg+updated%3A2022-10-13..2022-11-11&type=Issues)
7.0.0a7#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a6...caa0a11e36901c08ae80100fe2bbc5161c47dfee))
所做的改进#
固定用户菜单对齐方式 [#6565] (https://github.com/jupyter/notebook/pull/6565)( [@Mieju] (https://github.com/Mieju)))
支持左面板和右面板 [#6487] (https://github.com/jupyter/notebook/pull/6487)( [@brichet] (https://github.com/brichet)))
维护和维护改进#
更新至JupyterLab 4.0.0a30 [#6566] (https://github.com/jupyter/notebook/pull/6566)( [@jtpio] (https://github.com/jtpio)))
文档改进#
修复CHANGELOG.md中的拼写错误 [#6561] (https://github.com/jupyter/notebook/pull/6561)( [@eltociear] (https://github.com/eltociear)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2022-10-03&to=2022-10-13&type=c))
[@brichet] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abrichet+updated%3A2022-10-03..2022-10-13&type=Issues)| [@eltociear] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aeltociear+updated%3A2022-10-03..2022-10-13&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2022-10-03..2022-10-13&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2022-10-03..2022-10-13&type=Issues)| [@kevin-bates] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akevin-bates+updated%3A2022-10-03..2022-10-13&type=Issues)| [@Mieju] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AMieju+updated%3A2022-10-03..2022-10-13&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2022-10-03..2022-10-13&type=Issues)| [@RRosio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ARRosio+updated%3A2022-10-03..2022-10-13&type=Issues)
7.0.0a6#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a5...acbec17feca2ae8a0f56c5ec04ba2475a42619ee))
所做的改进#
在树上添加令牌小部件 [#6496] (https://github.com/jupyter/notebook/pull/6496)( [@brichet] (https://github.com/brichet)))
更新自述文件以记录维护的版本 [#6480] (https://github.com/jupyter/notebook/pull/6480)( [@JasonWeill] (https://github.com/JasonWeill)))
更改选项卡呈现器以允许添加可关闭的选项卡 [#6477] (https://github.com/jupyter/notebook/pull/6477)( [@brichet] (https://github.com/brichet)))
已修复错误#
修复:将鼠标指针悬停在木星图标上时没有鼠标指针 [#6550] (https://github.com/jupyter/notebook/pull/6550)( [@hawkeyes21] (https://github.com/hawkeyes21)))
维护和维护改进#
切换到Python版本的Hotch [#6544] (https://github.com/jupyter/notebook/pull/6544)( [@blink1073] (https://github.com/blink1073)))
更新至Lumino 2和JupyterLab 4.0.0a29 [#6539] (https://github.com/jupyter/notebook/pull/6539)( [@afshin] (https://github.com/afshin)))
更新Lerna版本 [#6535] (https://github.com/jupyter/notebook/pull/6535)( [@blink1073] (https://github.com/blink1073)))
添加任务以自动激活Gitpod上的开发环境 [#6527] (https://github.com/jupyter/notebook/pull/6527)( [@jtpio] (https://github.com/jtpio)))
故障排除
macos
检查配置项 [#6523] (https://github.com/jupyter/notebook/pull/6523)( [@jtpio] (https://github.com/jtpio)))更新参考快照 [#6520] (https://github.com/jupyter/notebook/pull/6520)( [@jtpio] (https://github.com/jtpio)))
添加Gitpod文件 [#6518] (https://github.com/jupyter/notebook/pull/6518)( [@jtpio] (https://github.com/jtpio)))
添加jupyterlab-Probot YML文件以标记新问题 [#6506] (https://github.com/jupyter/notebook/pull/6506)( [@RRosio] (https://github.com/RRosio)))
卸载
nbclassic
在活页夹上,以便可以加载笔记本v7 [#6505] (https://github.com/jupyter/notebook/pull/6505)( [@jtpio] (https://github.com/jtpio)))凹凸力矩从2.29.3到2.29.4 [#6483] (https://github.com/jupyter/notebook/pull/6483)( [@dependabot] (https://github.com/dependabot)))
/ui测试中的凹凸力矩从2.29.2到2.29.4 [#6482] (https://github.com/jupyter/notebook/pull/6482)( [@dependabot] (https://github.com/dependabot)))
凹凸精确度从5.13.1到5.14.2 [#6481] (https://github.com/jupyter/notebook/pull/6481)( [@dependabot] (https://github.com/dependabot)))
Bump parse-url从6.0.0到6.0.2 [#6465] (https://github.com/jupyter/notebook/pull/6465)( [@dependabot] (https://github.com/dependabot)))
修复测试 [#6464] (https://github.com/jupyter/notebook/pull/6464)( [@jtpio] (https://github.com/jtpio)))
在/ui-test中将jpeg-js从0.4.3增加到0.4.4 [#6455] (https://github.com/jupyter/notebook/pull/6455)( [@dependabot] (https://github.com/dependabot)))
文档改进#
更新自述文件以记录维护的版本 [#6480] (https://github.com/jupyter/notebook/pull/6480)( [@JasonWeill] (https://github.com/JasonWeill)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2022-06-14&to=2022-10-03&type=c))
[@afshin] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aafshin+updated%3A2022-06-14..2022-10-03&type=Issues)| [@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2022-06-14..2022-10-03&type=Issues)| [@brichet] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abrichet+updated%3A2022-06-14..2022-10-03&type=Issues)| [@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2022-06-14..2022-10-03&type=Issues)| [@echarles] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aecharles+updated%3A2022-06-14..2022-10-03&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2022-06-14..2022-10-03&type=Issues)| [@hawkeyes21] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ahawkeyes21+updated%3A2022-06-14..2022-10-03&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2022-06-14..2022-10-03&type=Issues)| [@JasonWeill] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AJasonWeill+updated%3A2022-06-14..2022-10-03&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2022-06-14..2022-10-03&type=Issues)| [@RRosio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ARRosio+updated%3A2022-06-14..2022-10-03&type=Issues)
7.0.0a5#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a4...614e4780b88f5cf5e2bfda39a55357a0be5ef161))
所做的改进#
向单元格添加阴影 [#6433] (https://github.com/jupyter/notebook/pull/6433)( [@trungleduc] (https://github.com/trungleduc)))
维护和维护改进#
修复文档版本 [#6447] (https://github.com/jupyter/notebook/pull/6447)( [@jtpio] (https://github.com/jtpio)))
\ [pre-commit.ci] 提交前自动更新 [#6444] (https://github.com/jupyter/notebook/pull/6444)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
\ [pre-commit.ci] 提交前自动更新 [#6439] (https://github.com/jupyter/notebook/pull/6439)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
\ [pre-commit.ci] 提交前自动更新 [#6434] (https://github.com/jupyter/notebook/pull/6434)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
使用图案填充后端 [#6425] (https://github.com/jupyter/notebook/pull/6425)( [@blink1073] (https://github.com/blink1073)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2022-05-20&to=2022-06-14&type=c))
[@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2022-05-20..2022-06-14&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2022-05-20..2022-06-14&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2022-05-20..2022-06-14&type=Issues)| [@ofek] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aofek+updated%3A2022-05-20..2022-06-14&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2022-05-20..2022-06-14&type=Issues)| [@trungleduc] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Atrungleduc+updated%3A2022-05-20..2022-06-14&type=Issues)
7.0.0a4#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a3...4bfaaac148a25ba76fcc7416e3a7b2c714b36fcd))
所做的改进#
更新至JupyterLab 4.0.0a25 [#6429] (https://github.com/jupyter/notebook/pull/6429)( [@jtpio] (https://github.com/jtpio)))
添加单元格工具栏扩展 [#6418] (https://github.com/jupyter/notebook/pull/6418)( [@jtpio] (https://github.com/jtpio)))
将show Header命令添加到命令组件面板 [#6415] (https://github.com/jupyter/notebook/pull/6415)( [@jeewonkoo] (https://github.com/jeewonkoo)))
删除“外观”菜单项 [#6412] (https://github.com/jupyter/notebook/pull/6412)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
\ [pre-commit.ci] 提交前自动更新 [#6426] (https://github.com/jupyter/notebook/pull/6426)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
允许自动标记机器人PR [#6414] (https://github.com/jupyter/notebook/pull/6414)( [@blink1073] (https://github.com/blink1073)))
为导出子菜单添加可视化回归测试 [#6383] (https://github.com/jupyter/notebook/pull/6383)( [@jtpio] (https://github.com/jtpio)))
修复测试的ESLint配置 [#6382] (https://github.com/jupyter/notebook/pull/6382)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2022-04-27&to=2022-05-20&type=c))
[@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2022-04-27..2022-05-20&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2022-04-27..2022-05-20&type=Issues)| [@jeewonkoo] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajeewonkoo+updated%3A2022-04-27..2022-05-20&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2022-04-27..2022-05-20&type=Issues)| [@ofek] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aofek+updated%3A2022-04-27..2022-05-20&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2022-04-27..2022-05-20&type=Issues)
7.0.0a3#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a2...4076882c0e08875dd719945835f8cbe5b10eac9e))
所做的改进#
默认情况下,在文件浏览器中显示文件复选框 [#6377] (https://github.com/jupyter/notebook/pull/6377)( [@jtpio] (https://github.com/jtpio)))
删除笔记本底部的空白区域 [#6376] (https://github.com/jupyter/notebook/pull/6376)( [@jtpio] (https://github.com/jtpio)))
将标签添加到上载按钮 [#6374] (https://github.com/jupyter/notebook/pull/6374)( [@jtpio] (https://github.com/jtpio)))
更新至JupyterLab 4.0.0a24 [#6371] (https://github.com/jupyter/notebook/pull/6371)( [@jtpio] (https://github.com/jtpio)))
从服务器Traitlet初始化处理程序PAGE_CONFIG [#6366] (https://github.com/jupyter/notebook/pull/6366)( [@bollwyvl] (https://github.com/bollwyvl)))
将项目URL添加到setup.cfg [#6346] (https://github.com/jupyter/notebook/pull/6346)( [@tlinhart] (https://github.com/tlinhart)))
更新至JupyterLab 4.0.0a23 [#6336] (https://github.com/jupyter/notebook/pull/6336)( [@jtpio] (https://github.com/jtpio)))
已修复错误#
修复从笔记本打开JupyterLab [#6379] (https://github.com/jupyter/notebook/pull/6379)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
为简单的笔记本添加UI测试 [#6380] (https://github.com/jupyter/notebook/pull/6380)( [@jtpio] (https://github.com/jtpio)))
在/UI-TESTS中将异步从2.6.3增加到2.6.4 [#6370] (https://github.com/jupyter/notebook/pull/6370)( [@dependabot] (https://github.com/dependabot)))
修复配置项上的构建工作流 [#6369] (https://github.com/jupyter/notebook/pull/6369)( [@jtpio] (https://github.com/jtpio)))
\ [pre-commit.ci] 提交前自动更新 [#6365] (https://github.com/jupyter/notebook/pull/6365)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
\ [pre-commit.ci] 提交前自动更新 [#6355] (https://github.com/jupyter/notebook/pull/6355)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
凹凸力矩从2.29.1到2.29.2 [#6352] (https://github.com/jupyter/notebook/pull/6352)( [@dependabot] (https://github.com/dependabot)))
/ui测试中的凹凸力矩从2.29.1到2.29.2 [#6351] (https://github.com/jupyter/notebook/pull/6351)( [@dependabot] (https://github.com/dependabot)))
清理预提交 [#6349] (https://github.com/jupyter/notebook/pull/6349)( [@blink1073] (https://github.com/blink1073)))
更新到打字稿4.6 [#6345] (https://github.com/jupyter/notebook/pull/6345)( [@jtpio] (https://github.com/jtpio)))
\ [pre-commit.ci] 提交前自动更新 [#6343] (https://github.com/jupyter/notebook/pull/6343)( [@pre-commit-ci] (https://github.com/pre-commit-ci)))
添加最热并处理警告 [#6338] (https://github.com/jupyter/notebook/pull/6338)( [@blink1073] (https://github.com/blink1073)))
添加flke8和git-故障-忽略-转速 [#6337] (https://github.com/jupyter/notebook/pull/6337)( [@blink1073] (https://github.com/blink1073)))
运行自动套用格式程序 [#6335] (https://github.com/jupyter/notebook/pull/6335)( [@blink1073] (https://github.com/blink1073)))
将极简主义从1.2.5提升到1.2.6 [#6334] (https://github.com/jupyter/notebook/pull/6334)( [@dependabot] (https://github.com/dependabot)))
将最小值从1.2.5增加到1.2.6 in/ui-test [#6333] (https://github.com/jupyter/notebook/pull/6333)( [@dependabot] (https://github.com/dependabot)))
在/ui测试中将ansi-regex从3.0.0增加到3.0.1 [#6332] (https://github.com/jupyter/notebook/pull/6332)( [@dependabot] (https://github.com/dependabot)))
采用预承诺 [#6331] (https://github.com/jupyter/notebook/pull/6331)( [@blink1073] (https://github.com/blink1073)))
文档改进#
链接到自述文件中的V6计划 [#6375] (https://github.com/jupyter/notebook/pull/6375)( [@echarles] (https://github.com/echarles)))
Copy edits in config, edits bug report template #6364 (@JasonWeill)
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2022-03-21&to=2022-04-27&type=c))
[@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2022-03-21..2022-04-27&type=Issues)| [@bollwyvl] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abollwyvl+updated%3A2022-03-21..2022-04-27&type=Issues)| [@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2022-03-21..2022-04-27&type=Issues)| [@echarles] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aecharles+updated%3A2022-03-21..2022-04-27&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2022-03-21..2022-04-27&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2022-03-21..2022-04-27&type=Issues)| [@JasonWeill] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AJasonWeill+updated%3A2022-03-21..2022-04-27&type=Issues)| [@pre-commit-ci] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apre-commit-ci+updated%3A2022-03-21..2022-04-27&type=Issues)| [@tlinhart] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Atlinhart+updated%3A2022-03-21..2022-04-27&type=Issues)
7.0.0a2#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v7.0.0a1...9be03f5f27232d50b16dbbaa50a222260166694c))
所做的改进#
添加对使用不同工厂打开文档的支持 [#6315] (https://github.com/jupyter/notebook/pull/6315)( [@jtpio] (https://github.com/jtpio)))
自述文件中的次要副本编辑 [#6313] (https://github.com/jupyter/notebook/pull/6313)( [@JasonWeill] (https://github.com/JasonWeill)))
已修复错误#
修复标记的呈现 [#6318] (https://github.com/jupyter/notebook/pull/6318)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
更新至JupyterLab 4.0.0a22 [#6314] (https://github.com/jupyter/notebook/pull/6314)( [@jtpio] (https://github.com/jtpio)))
文档改进#
文档:修复拼写 [#6317] (https://github.com/jupyter/notebook/pull/6317)( [@dijonkitchen] (https://github.com/dijonkitchen)))
自述文件中的次要副本编辑 [#6313] (https://github.com/jupyter/notebook/pull/6313)( [@JasonWeill] (https://github.com/JasonWeill)))
更新活页夹上的示例笔记本 [#6306] (https://github.com/jupyter/notebook/pull/6306)( [@jtpio] (https://github.com/jtpio)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2022-03-09&to=2022-03-21&type=c))
[@dijonkitchen] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adijonkitchen+updated%3A2022-03-09..2022-03-21&type=Issues)| [@fcollonval] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Afcollonval+updated%3A2022-03-09..2022-03-21&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2022-03-09..2022-03-21&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2022-03-09..2022-03-21&type=Issues)| [@JasonWeill] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AJasonWeill+updated%3A2022-03-09..2022-03-21&type=Issues)
7.0.0a1#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v6.4.8...22fe46f3e806aa346625f6ef2f2a024d030a068d))
所做的改进#
Notebook v7脚手架 [#6294] (https://github.com/jupyter/notebook/pull/6294)( [@jtpio] (https://github.com/jtpio)))
维护和维护改进#
清理配置项 [#6304] (https://github.com/jupyter/notebook/pull/6304)( [@blink1073] (https://github.com/blink1073)))
删除自定义运行键盘快捷键 [#6303] (https://github.com/jupyter/notebook/pull/6303)( [@jtpio] (https://github.com/jtpio)))
凹凸纳米类从3.1.30到3.3.1英寸/ui-测试 [#6302] (https://github.com/jupyter/notebook/pull/6302)( [@dependabot] (https://github.com/dependabot)))
Bump Simple-在/UI-TESTS中从3.1.0升级到3.1.1 [#6301] (https://github.com/jupyter/notebook/pull/6301)( [@dependabot] (https://github.com/dependabot)))
Bump url-在/ui-test中从1.5.4解析到1.5.10 [#6300] (https://github.com/jupyter/notebook/pull/6300)( [@dependabot] (https://github.com/dependabot)))
凹凸节点-在/UI-TESTS中从2.6.6获取到2.6.7 [#6299] (https://github.com/jupyter/notebook/pull/6299)( [@dependabot] (https://github.com/dependabot)))
Bump Follow-在/UI-TESTS中从1.14.5重定向到1.14.9 [#6298] (https://github.com/jupyter/notebook/pull/6298)( [@dependabot] (https://github.com/dependabot)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2022-01-25&to=2022-03-09&type=c))
[@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2022-01-25..2022-03-09&type=Issues)| [@dependabot] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adependabot+updated%3A2022-01-25..2022-03-09&type=Issues)| [@github-actions] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agithub-actions+updated%3A2022-01-25..2022-03-09&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2022-01-25..2022-03-09&type=Issues)| [@kevin-bates] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akevin-bates+updated%3A2022-01-25..2022-03-09&type=Issues)| [@Zsailer] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AZsailer+updated%3A2022-01-25..2022-03-09&type=Issues)
6.4.8#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v6.4.7...479902d83a691253e0cff8439a33577e82408317))
已修复错误#
修复以消除Jupyter笔记本ZMQChannelHandler代码上的潜在内存泄漏 [#6251] (https://github.com/jupyter/notebook/pull/6251)( [@Vishwajeet0510] (https://github.com/Vishwajeet0510)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2022-01-12&to=2022-01-25&type=c))
[@Vishwajeet0510] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AVishwajeet0510+updated%3A2022-01-12..2022-01-25&type=Issues)
6.4.7#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v6.4.6...b77b5e38b8fa1a20150d7fa4d735dbf1c4f00418))
已修复错误#
修正中文标点符号 [#6268] (https://github.com/jupyter/notebook/pull/6268)( [@LiHua-Official] (https://github.com/LiHua-Official)))
将日期字段添加到内核消息头 [#6265] (https://github.com/jupyter/notebook/pull/6265)( [@kevin-bates] (https://github.com/kevin-bates)))
修复不推荐使用警告 [#6253] (https://github.com/jupyter/notebook/pull/6253)( [@tornaria] (https://github.com/tornaria)))
维护和维护改进#
在公关上强制使用标签 [#6235] (https://github.com/jupyter/notebook/pull/6235)( [@blink1073] (https://github.com/blink1073)))
FIX:适用于Python3.6和MacOS的CI错误 [#6215] (https://github.com/jupyter/notebook/pull/6215)( [@penguinolog] (https://github.com/penguinolog)))
其他合并的请购单#
获取会话时处理KeyError [#6245] (https://github.com/jupyter/notebook/pull/6245)( [@ccw630] (https://github.com/ccw630)))
已更新密码文档 [#6209] (https://github.com/jupyter/notebook/pull/6209)( [@antoinecarme] (https://github.com/antoinecarme)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2021-11-16&to=2022-01-12&type=c))
[@antoinecarme] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aantoinecarme+updated%3A2021-11-16..2022-01-12&type=Issues)| [@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2021-11-16..2022-01-12&type=Issues)| [@ccw630] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Accw630+updated%3A2021-11-16..2022-01-12&type=Issues)| [@kevin-bates] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akevin-bates+updated%3A2021-11-16..2022-01-12&type=Issues)| [@LiHua-Official] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ALiHua-Official+updated%3A2021-11-16..2022-01-12&type=Issues)| [@penguinolog] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Apenguinolog+updated%3A2021-11-16..2022-01-12&type=Issues)| [@tornaria] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Atornaria+updated%3A2021-11-16..2022-01-12&type=Issues)
6.4.6#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v6.4.5...160c27d3c23dafe8b42240571db21b0d5cbae2fe))
已修复错误#
修整
asyncio
打开笔记本时出错 [#6221] (https://github.com/jupyter/notebook/pull/6221)( [@dleen] (https://github.com/dleen)))更改为对某些单词使用通用中文翻译 [#6218] (https://github.com/jupyter/notebook/pull/6218)( [@jackexu] (https://github.com/jackexu)))
修正中文翻译排版错误 [#6211] (https://github.com/jupyter/notebook/pull/6211)( [@maliubiao] (https://github.com/maliubiao))
修整
send2trash
Windows上的测试失败 [#6127] (https://github.com/jupyter/notebook/pull/6127)( [@dolfinus] (https://github.com/dolfinus)))
维护和维护改进#
TST:不要在用户站点中查找服务器扩展 [#6233] (https://github.com/jupyter/notebook/pull/6233)( [@bnavigator] (https://github.com/bnavigator)))
将终端测试启用为
pywinpty
是为python3.9移植的 [#6228] (https://github.com/jupyter/notebook/pull/6228) (@nsait-linaro
)
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2021-10-19&to=2021-11-16&type=c))
[@bnavigator] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abnavigator+updated%3A2021-10-19..2021-11-16&type=Issues)| [@dleen] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adleen+updated%3A2021-10-19..2021-11-16&type=Issues)| [@dolfinus] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adolfinus+updated%3A2021-10-19..2021-11-16&type=Issues)| [@jackexu] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajackexu+updated%3A2021-10-19..2021-11-16&type=Issues)| [@kevin-bates] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akevin-bates+updated%3A2021-10-19..2021-11-16&type=Issues)| [@maliubiao] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Amaliubiao+updated%3A2021-10-19..2021-11-16&type=Issues)| @nsait-linaro
| [@takluyver] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Atakluyver+updated%3A2021-10-19..2021-11-16&type=Issues)| [@Zsailer] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AZsailer+updated%3A2021-10-19..2021-11-16&type=Issues)
6.4.5#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v6.4.4...ccd9665571107e02a325a738b8baebd6532b2d3d))
错误修复#
从呈现MIMETYPE失败中恢复 [#6181] (https://github.com/jupyter/notebook/pull/6181)( [@martinRenou] (https://github.com/martinRenou)))
维护和维护改进#
修复加密处理 [#6197] (https://github.com/jupyter/notebook/pull/6197)( [@blink1073] (https://github.com/blink1073)))
修整
jupyter_client
警告 [#6178] (https://github.com/jupyter/notebook/pull/6178)( [@martinRenou] (https://github.com/martinRenou)))
文档改进#
修复nbsphinx设置 [#6200] (https://github.com/jupyter/notebook/pull/6200)( [@mgeier] (https://github.com/mgeier)))
完全恢复对
nbsphinx
至0.8.6 [#6201] (https://github.com/jupyter/notebook/pull/6201)( [@kevin-bates] (https://github.com/kevin-bates)))销
nbsphinx
到0.8.6,清理孤立资源 [#6194] (https://github.com/jupyter/notebook/pull/6194)( [@kevin-bates] (https://github.com/kevin-bates)))修复文档字符串中的拼写错误 [#6188] (https://github.com/jupyter/notebook/pull/6188)( [@jgarte] (https://github.com/jgarte)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2021-09-03&to=2021-10-19&type=c))
[@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2021-09-03..2021-10-19&type=Issues)| [@jgarte] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajgarte+updated%3A2021-09-03..2021-10-19&type=Issues)| [@kevin-bates] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akevin-bates+updated%3A2021-09-03..2021-10-19&type=Issues)| [@martinRenou] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AmartinRenou+updated%3A2021-09-03..2021-10-19&type=Issues)| [@mgeier] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Amgeier+updated%3A2021-09-03..2021-10-19&type=Issues)
6.4.4#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v6.4.3...c06c340574e1d2207940c5bd1190eb73d82ab945))
文档改进#
更新手册发布说明 [#6152] (https://github.com/jupyter/notebook/pull/6152)( [@blink1073] (https://github.com/blink1073)))
其他合并的请购单#
使用默认的JupyterLab CSS消毒器选项进行降价 [#6160] (https://github.com/jupyter/notebook/pull/6160)( [@krassowski] (https://github.com/krassowski)))
修复语法突出显示 [#6128] (https://github.com/jupyter/notebook/pull/6128)( [@massongit] (https://github.com/massongit)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2021-08-11&to=2021-09-03&type=c))
[@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2021-08-11..2021-09-03&type=Issues)| [@kevin-bates] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akevin-bates+updated%3A2021-08-11..2021-09-03&type=Issues)| [@krassowski] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akrassowski+updated%3A2021-08-11..2021-09-03&type=Issues)| [@massongit] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Amassongit+updated%3A2021-08-11..2021-09-03&type=Issues)| [@minrk] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aminrk+updated%3A2021-08-11..2021-09-03&type=Issues)| [@Zsailer] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AZsailer+updated%3A2021-08-11..2021-09-03&type=Issues)
6.4.3#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v6.4.2...c373bd89adaaddffbb71747ebbcfe8a749cae0a8))
已修复错误#
添加@babel/core依赖项 [#6133] (https://github.com/jupyter/notebook/pull/6133)( [@afshin] (https://github.com/afshin)))
将webpack切换到生产模式 [#6131] (https://github.com/jupyter/notebook/pull/6131)( [@afshin] (https://github.com/afshin)))
维护和维护改进#
清理链接检查 [#6130] (https://github.com/jupyter/notebook/pull/6130)( [@blink1073] (https://github.com/blink1073)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2021-08-06&to=2021-08-10&type=c))
[@afshin] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aafshin+updated%3A2021-08-06..2021-08-10&type=Issues)| [@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2021-08-06..2021-08-10&type=Issues)| [@Zsailer] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AZsailer+updated%3A2021-08-06..2021-08-10&type=Issues)
6.4.2#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/v6.4.0...999e8322bcd24e0ed62b180c19ec13db3f48165b))
已修复错误#
将丢失的文件添加到清单 [#6122] (https://github.com/jupyter/notebook/pull/6122)( [@afshin] (https://github.com/afshin)))
修复问题#3218 [#6108] (https://github.com/jupyter/notebook/pull/6108)( [@Nazeeh21] (https://github.com/Nazeeh21)))
修复了jupyter的版本-在pyproject.toml中打包 [#6101] (https://github.com/jupyter/notebook/pull/6101)( [@frenzymadness] (https://github.com/frenzymadness)))
“#Element”.工具提示不是主页上的函数已修复。 [#6070] 邮箱:(https://github.com/jupyter/notebook/pull/6070)@ilayh123
维护和维护改进#
对桌面条目的增强 [#6099] (https://github.com/jupyter/notebook/pull/6099)( [@Amr-Ibra] (https://github.com/Amr-Ibra)))
向配置文件中的帮助消息添加缺少的空格 [#6085] (https://github.com/jupyter/notebook/pull/6085)( [@saiwing-yeung] (https://github.com/saiwing-yeung)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2021-05-17&to=2021-08-06&type=c))
[@afshin] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aafshin+updated%3A2021-05-17..2021-08-06&type=Issues)| [@Amr-Ibra] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AAmr-Ibra+updated%3A2021-05-17..2021-08-06&type=Issues)| [@frenzymadness] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Afrenzymadness+updated%3A2021-05-17..2021-08-06&type=Issues)| [@ilayh123] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ailayh123+updated%3A2021-05-17..2021-08-06&type=Issues)| [@kevin-bates] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akevin-bates+updated%3A2021-05-17..2021-08-06&type=Issues)| [@Nazeeh21] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ANazeeh21+updated%3A2021-05-17..2021-08-06&type=Issues)| [@saiwing-yeung] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Asaiwing-yeung+updated%3A2021-05-17..2021-08-06&type=Issues)
6.4.0#
( [Full Changelog] (https://github.com/jupyter/notebook/compare/6.3.0...80eb286f316838afc76a9a84b06f54e7dccb6c86))
已修复错误#
修复另存为对话框中对编码路径的处理 [#6030] (https://github.com/jupyter/notebook/pull/6030)( [@afshin] (https://github.com/afshin)))
FIX:Split_cell不总是拆分单元格 [#6017] (https://github.com/jupyter/notebook/pull/6017)( [@gamestrRUS] (https://github.com/gamestrRUS)))
正确的“Content-Type”标头 [#6026] (https://github.com/jupyter/notebook/pull/6026)( [@faucct] (https://github.com/faucct)))
修复跳过的测试并删除弃用警告 [#6018] (https://github.com/jupyter/notebook/pull/6018)( [@befeleme] (https://github.com/befeleme)))
\ [Gateway] 仅跟踪此服务器的内核 [#5980] (https://github.com/jupyter/notebook/pull/5980)( [@kevin-bates] (https://github.com/kevin-bates)))
在Start中绑定HTTPServer [#6061] (https://github.com/jupyter/notebook/pull/6061)
维护和维护改进#
REVERT“不对>=6.1的龙卷风应用异步补丁” [#6052] (https://github.com/jupyter/notebook/pull/6052)( [@minrk] (https://github.com/minrk)))
使用Jupyter Releaser [#6048] (https://github.com/jupyter/notebook/pull/6048)( [@afshin] (https://github.com/afshin)))
添加锁定机器人的工作流权限 [#6042] (https://github.com/jupyter/notebook/pull/6042)( [@jtpio] (https://github.com/jtpio)))
与文档中的最新更改相关的修复 [#6021] (https://github.com/jupyter/notebook/pull/6021)( [@frenzymadness] (https://github.com/frenzymadness)))
在css参考测试中添加数学检查 [#6035] (https://github.com/jupyter/notebook/pull/6035)( [@stef4k] (https://github.com/stef4k)))
添加问题锁定和应答僵尸程序 [#6019] (https://github.com/jupyter/notebook/pull/6019)( [@afshin] (https://github.com/afshin)))
文档改进#
拼写更正 [#6045] (https://github.com/jupyter/notebook/pull/6045)( [@wggillen] (https://github.com/wggillen)))
较小的排版和注释更改 [#6025] (https://github.com/jupyter/notebook/pull/6025)( [@misterhay] (https://github.com/misterhay)))
与文档中的最新更改相关的修复 [#6021] (https://github.com/jupyter/notebook/pull/6021)( [@frenzymadness] (https://github.com/frenzymadness)))
修复ReadtheDocs环境 [#6020] (https://github.com/jupyter/notebook/pull/6020)( [@blink1073] (https://github.com/blink1073)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2021-03-22&to=2021-05-12&type=c))
[@afshin] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aafshin+updated%3A2021-03-22..2021-05-12&type=Issues)| [@befeleme] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abefeleme+updated%3A2021-03-22..2021-05-12&type=Issues)| [@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2021-03-22..2021-05-12&type=Issues)| [@faucct] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Afaucct+updated%3A2021-03-22..2021-05-12&type=Issues)| [@frenzymadness] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Afrenzymadness+updated%3A2021-03-22..2021-05-12&type=Issues)| [@gamestrRUS] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AgamestrRUS+updated%3A2021-03-22..2021-05-12&type=Issues)| [@jtpio] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajtpio+updated%3A2021-03-22..2021-05-12&type=Issues)| [@kevin-bates] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akevin-bates+updated%3A2021-03-22..2021-05-12&type=Issues)| [@minrk] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aminrk+updated%3A2021-03-22..2021-05-12&type=Issues)| [@misterhay] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Amisterhay+updated%3A2021-03-22..2021-05-12&type=Issues)| [@stef4k] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Astef4k+updated%3A2021-03-22..2021-05-12&type=Issues)| [@wggillen] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Awggillen+updated%3A2021-03-22..2021-05-12&type=Issues)
6.3.0#
合并后的PR#
添加正方形徽标和桌面条目文件 [#6010] (https://github.com/jupyter/notebook/pull/6010)( [@befeleme] (https://github.com/befeleme)))
更改日志的现代化 [#6008] (https://github.com/jupyter/notebook/pull/6008)( [@afshin] (https://github.com/afshin)))
增加遗漏的“进口检验” [#5999] (https://github.com/jupyter/notebook/pull/5999)( [@mgeier] (https://github.com/mgeier)))
将Codecov徽章添加到自述文件 [#5989] (https://github.com/jupyter/notebook/pull/5989)( [@thomasrockhu] (https://github.com/thomasrockhu)))
从setup.cfg中删除nosetest的配置 [#5986] (https://github.com/jupyter/notebook/pull/5986)( [@frenzymadness] (https://github.com/frenzymadness)))
更新security.rst [#5978] (https://github.com/jupyter/notebook/pull/5978)( [@dlrice] (https://github.com/dlrice)))
Docs-翻译:更新的印地语和中文Readme.md [#5976] (https://github.com/jupyter/notebook/pull/5976)( [@rjn01] (https://github.com/rjn01)))
如果身份验证处于关闭状态,则默认允许/度量 [#5974] (https://github.com/jupyter/notebook/pull/5974)( [@blairdrummond] (https://github.com/blairdrummond)))
跳过Windows 3.9+上的终端测试(临时) [#5968] (https://github.com/jupyter/notebook/pull/5968)( [@kevin-bates] (https://github.com/kevin-bates)))
更新GatewayKernelManager以从AsyncMappingKernelManager派生 [#5966] (https://github.com/jupyter/notebook/pull/5966)( [@kevin-bates] (https://github.com/kevin-bates)))
放弃使用不推荐使用的pyzmq.ioloop [#5965] (https://github.com/jupyter/notebook/pull/5965)( [@kevin-bates] (https://github.com/kevin-bates)))
取消对Python3.5的支持 [#5962] (https://github.com/jupyter/notebook/pull/5962)( [@kevin-bates] (https://github.com/kevin-bates)))
允许笔记本中基于jupyter_server的内容管理器 [#5957] (https://github.com/jupyter/notebook/pull/5957)( [@afshin] (https://github.com/afshin)))
俄语翻译修复 [#5954] (https://github.com/jupyter/notebook/pull/5954)( [@insolor] (https://github.com/insolor)))
增加剔除测试空闲超时 [#5952] (https://github.com/jupyter/notebook/pull/5952)( [@kevin-bates] (https://github.com/kevin-bates)))
重新启用对Answer_YES标志的支持 [#5941] (https://github.com/jupyter/notebook/pull/5941)( [@afshin] (https://github.com/afshin)))
用Github诉讼取代Travis和Appveyor [#5938] (https://github.com/jupyter/notebook/pull/5938)( [@kevin-bates] (https://github.com/kevin-bates)))
DOC:服务器扩展,额外的配置/认证文档。 [#5937] (https://github.com/jupyter/notebook/pull/5937)( [@Carreau] (https://github.com/Carreau)))
此版本的贡献者#
( [GitHub contributors page for this release] (https://github.com/jupyter/notebook/graphs/contributors?from=2021-01-13&to=2021-03-18&type=c))
[@abielhammonds] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aabielhammonds+updated%3A2021-01-13..2021-03-18&type=Issues)| [@afshin] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aafshin+updated%3A2021-01-13..2021-03-18&type=Issues)| [@ajharry] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aajharry+updated%3A2021-01-13..2021-03-18&type=Issues)| [@Alokrar] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AAlokrar+updated%3A2021-01-13..2021-03-18&type=Issues)| [@befeleme] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abefeleme+updated%3A2021-01-13..2021-03-18&type=Issues)| [@blairdrummond] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablairdrummond+updated%3A2021-01-13..2021-03-18&type=Issues)| [@blink1073] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ablink1073+updated%3A2021-01-13..2021-03-18&type=Issues)| [@bollwyvl] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Abollwyvl+updated%3A2021-01-13..2021-03-18&type=Issues)| [@Carreau] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ACarreau+updated%3A2021-01-13..2021-03-18&type=Issues)| [@ChenChenDS] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AChenChenDS+updated%3A2021-01-13..2021-03-18&type=Issues)| [@cosmoscalibur] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Acosmoscalibur+updated%3A2021-01-13..2021-03-18&type=Issues)| [@dlrice] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adlrice+updated%3A2021-01-13..2021-03-18&type=Issues)| [@dwanneruchi] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Adwanneruchi+updated%3A2021-01-13..2021-03-18&type=Issues)| [@ElisonSherton] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AElisonSherton+updated%3A2021-01-13..2021-03-18&type=Issues)| [@FazeelUsmani] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AFazeelUsmani+updated%3A2021-01-13..2021-03-18&type=Issues)| [@frenzymadness] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Afrenzymadness+updated%3A2021-01-13..2021-03-18&type=Issues)| [@goerz] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Agoerz+updated%3A2021-01-13..2021-03-18&type=Issues)| [@insolor] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ainsolor+updated%3A2021-01-13..2021-03-18&type=Issues)| [@jasongrout] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ajasongrout+updated%3A2021-01-13..2021-03-18&type=Issues)| [@JianghuiDu] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AJianghuiDu+updated%3A2021-01-13..2021-03-18&type=Issues)| [@JuzerShakir] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AJuzerShakir+updated%3A2021-01-13..2021-03-18&type=Issues)| [@kevin-bates] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Akevin-bates+updated%3A2021-01-13..2021-03-18&type=Issues)| [@Khalilsqu] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AKhalilsqu+updated%3A2021-01-13..2021-03-18&type=Issues)| [@meeseeksdev] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ameeseeksdev+updated%3A2021-01-13..2021-03-18&type=Issues)| [@mgeier] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Amgeier+updated%3A2021-01-13..2021-03-18&type=Issues)| [@michaelpedota] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Amichaelpedota+updated%3A2021-01-13..2021-03-18&type=Issues)| [@mjbright] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Amjbright+updated%3A2021-01-13..2021-03-18&type=Issues)| [@MSeal] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AMSeal+updated%3A2021-01-13..2021-03-18&type=Issues)| [@ncoughlin] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ancoughlin+updated%3A2021-01-13..2021-03-18&type=Issues)| [@NTimmons] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3ANTimmons+updated%3A2021-01-13..2021-03-18&type=Issues)| [@ProsperousHeart] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AProsperousHeart+updated%3A2021-01-13..2021-03-18&type=Issues)| [@rjn01] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Arjn01+updated%3A2021-01-13..2021-03-18&type=Issues)| [@slw07g] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Aslw07g+updated%3A2021-01-13..2021-03-18&type=Issues)| [@stenivan] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Astenivan+updated%3A2021-01-13..2021-03-18&type=Issues)| [@takluyver] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Atakluyver+updated%3A2021-01-13..2021-03-18&type=Issues)| [@thomasrockhu] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Athomasrockhu+updated%3A2021-01-13..2021-03-18&type=Issues)| [@wgilpin] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Awgilpin+updated%3A2021-01-13..2021-03-18&type=Issues)| [@wxtt522] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Awxtt522+updated%3A2021-01-13..2021-03-18&type=Issues)| [@yuvipanda] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3Ayuvipanda+updated%3A2021-01-13..2021-03-18&type=Issues)| [@Zsailer] (https://github.com/search?q=repo%3Ajupyter%2Fnotebook+involves%3AZsailer+updated%3A2021-01-13..2021-03-18&type=Issues)
6.2.0#
合并后的PR#
增加最低龙卷风版本( [5933] (https://github.com/jupyter/notebook/pull/5933))
调整跳过装饰符,以避免对鼻子的依赖( [5932] (https://github.com/jupyter/notebook/pull/5932))
确保单元格ID在保存后保留( [5928] (https://github.com/jupyter/notebook/pull/5928))
添加到网关的重新连接(表nb2 kg)( [5924] (https://github.com/jupyter/notebook/pull/5924))
修正了一些打字错误( [5917] (https://github.com/jupyter/notebook/pull/5917))
处理TrashPermissionError,因为它存在( [5894] (https://github.com/jupyter/notebook/pull/5894))
感谢所有的贡献者:
@Kevin-Bates
@mishaschwartz
@Oyvsyo
@user202729
@Stefan or
6.1.6#
合并后的PR#
测试时不需要使用鼻子( [5826] (https://github.com/jupyter/notebook/pull/5826))
\ [docs] 更新中文和印地语Readme.md( [5823] (https://github.com/jupyter/notebook/pull/5823))
添加对通过GET创建终端的支持( [5813] (https://github.com/jupyter/notebook/pull/5813))
将文件翻译成印地语和中文( [5787] (https://github.com/jupyter/notebook/pull/5787))
感谢所有的贡献者:
@pgajdos
@rjn01
@Kevin-Bates
@virejdasani
6.1.5#
6.1.5是一个安全版本,修复了一个漏洞:
修复开放重定向漏洞ghsa-c7vm-f5p4-8fqh(CVE待分配)
6.1.4#
修复指向jupyter文档的断开链接( [5686] (https://github.com/jupyter/notebook/pull/5686))
将其他条目添加到故障排除部分( [5695] (https://github.com/jupyter/notebook/pull/5695))
恢复页面对齐方式的更改( [5703] (https://github.com/jupyter/notebook/pull/5703))
错误修复:删除下载文件中的双重编码( [5720] (https://github.com/jupyter/notebook/pull/5720))
修复zh_CN中的检查拼写错误( [5730] (https://github.com/jupyter/notebook/pull/5730))
要求在“另存为”对话框中输入文件名( [5733] (https://github.com/jupyter/notebook/pull/5733))
感谢所有的贡献者:
BDbai
Jaipreet Singh
凯文·贝茨
帕维尔·潘切卡
扎克·赛勒
6.1.3#
如果操作未定义,则使用标签为新按钮添加标题( [5676] (https://github.com/jupyter/notebook/pull/5676))
感谢所有的贡献者:
凯尔·凯利
6.1.2#
修复删除/复制操作的俄语消息格式( [5662] (https://github.com/jupyter/notebook/pull/5662))
删除不必要的BIND_Unix_Socket导入( [5666] (https://github.com/jupyter/notebook/pull/5666))
工具提示样式范围修复( [5672] (https://github.com/jupyter/notebook/pull/5672))
感谢所有的贡献者:
德米特里·阿卡托夫
凯文·贝茨
玛格达·斯捷尼乌斯
6.1.1#
阻止在Windows上包含REQUESTS_unixSocket( [5650] (https://github.com/jupyter/notebook/pull/5650))
感谢所有的贡献者:
凯文·贝茨
6.1.0#
请注意,该存储库目前由来自Jupyter社区的维护人员组成的骨干团队进行维护。有关我们继续前进的方法,请参阅以下内容 [notice] (自述文件中的https://github.com/jupyter/notebook#notice)。谢谢。
下面列举了自上一个版本以来所做的更改,并包含在6.1.0中。
删除已弃用的编码参数以实现与Python3.9的兼容性。( [5174] (https://github.com/jupyter/notebook/pull/5174))
添加对异步内核管理的支持( [4479] (https://github.com/jupyter/notebook/pull/4479))
修复PASSWORD_REQUIRED帮助消息中的拼写错误( [5320] (https://github.com/jupyter/notebook/pull/5320))
仅网关:确保启动和请求超时同步( [5317] (https://github.com/jupyter/notebook/pull/5317))
将Markdown单元格示例更新为HTML5视频标签( [5411] (https://github.com/jupyter/notebook/pull/5411))
将LoginWidget集成到编辑中,使用户能够从T注销。( [5406] (https://github.com/jupyter/notebook/pull/5406))
有关最低Tornado版本的更新消息( [5222] (https://github.com/jupyter/notebook/pull/5222))
记录的笔记本类型( [5425] (https://github.com/jupyter/notebook/pull/5425))
添加了NL语言( [5354] (https://github.com/jupyter/notebook/pull/5354))
向笔记本服务器添加对Unix套接字的支持。( [4835] (https://github.com/jupyter/notebook/pull/4835))
更新CodeMirror依赖项( [5198] (https://github.com/jupyter/notebook/pull/5198))
树添加了下载多个文件( [5351] (https://github.com/jupyter/notebook/pull/5351))
工具栏按钮工具提示:显示帮助而不是标签( [5107] (https://github.com/jupyter/notebook/pull/5107))
删除不必要的REQUESTS_unixSocket( [5451] (https://github.com/jupyter/notebook/pull/5451))
添加淘汰终端和跟踪最后活动的功能( [5372] (https://github.com/jupyter/notebook/pull/5372))
代码重构Notebook.js( [5352] (https://github.com/jupyter/notebook/pull/5352))
为Docs内部版本安装Terminado( [5462] (https://github.com/jupyter/notebook/pull/5462))
将NOTIFICATIONS JS测试转换为SIME( [5455] (https://github.com/jupyter/notebook/pull/5455))
将单元格附件添加到降价示例( [5412] (https://github.com/jupyter/notebook/pull/5412))
添加日语文档( [5231] (https://github.com/jupyter/notebook/pull/5231))
将移动多选测试迁移到硒( [5158] (https://github.com/jupyter/notebook/pull/5158))
使用
cmdtrl-enter
要运行单元格( [5120] (https://github.com/jupyter/notebook/pull/5120))修复损坏的“原始单元MIME类型”对话框( [5385] (https://github.com/jupyter/notebook/pull/5385))
成功另存为后使笔记本可写( [5296] (https://github.com/jupyter/notebook/pull/5296))
添加实际监视脚本( [4738] (https://github.com/jupyter/notebook/pull/4738))
增列
--autoreload
标志为NotebookApp
( [4795] (https://github.com/jupyter/notebook/pull/4795))在网关WebSocket通信上启用CHECK_ORIGURCE( [5471] (https://github.com/jupyter/notebook/pull/5471))
恢复对丢失的Terminado包的检测( [5465] (https://github.com/jupyter/notebook/pull/5465))
剔除:确保
last_activity
属性在使用前已存在( [5355] (https://github.com/jupyter/notebook/pull/5355))添加功能,以允许Jupyter Enterprise Gat的过滤器内核...( [5484] (https://github.com/jupyter/notebook/pull/5484))
运行单元格工具栏按钮的播放图标( [2922] (https://github.com/jupyter/notebook/pull/2922))
将jQuery的最低版本升级到3.5.0( [5491] (https://github.com/jupyter/notebook/pull/5491))
删除旧的JS降价测试,在Selify中添加一个新的( [5497] (https://github.com/jupyter/notebook/pull/5497))
添加对更多RTL语言的支持( [5036] (https://github.com/jupyter/notebook/pull/5036))
使降价单元格保持RTL编辑模式( [5037] (https://github.com/jupyter/notebook/pull/5037))
取消强制RTL输出显示( [5039] (https://github.com/jupyter/notebook/pull/5039))
固定多字符或退格符( [4880] (https://github.com/jupyter/notebook/pull/4880))
实现了多URL的拆分单元格( [4824] (https://github.com/jupyter/notebook/pull/4824))
对齐问题\ [FIXED] ( [3173] (https://github.com/jupyter/notebook/pull/3173))
MathJax:支持
\gdef
( [4407] (https://github.com/jupyter/notebook/pull/4407))另一项(次要)减少重复代码( [5316] (https://github.com/jupyter/notebook/pull/5316))
更新有关维护的自述文件( [5500] (https://github.com/jupyter/notebook/pull/5500))
文档内容块( [5508] (https://github.com/jupyter/notebook/pull/5508))
退格键删除空行( [5516] (https://github.com/jupyter/notebook/pull/5516))
笔记本页面上的下拉子菜单不能通过键盘访问( [4732] (https://github.com/jupyter/notebook/pull/4732))
可通过键盘导航查看指定按钮的工具提示( [4729] (https://github.com/jupyter/notebook/pull/4729))
修复了递归符号链接( [4670] (https://github.com/jupyter/notebook/pull/4670))
修复了终端关闭问题( [4180] (https://github.com/jupyter/notebook/pull/4180))
添加日语翻译文件( [4490] (https://github.com/jupyter/notebook/pull/4490))
Cygwin上套接字权限错误的解决方法( [4584] (https://github.com/jupyter/notebook/pull/4584))
实现可选的标记页眉和页脚文件( [4043] (https://github.com/jupyter/notebook/pull/4043))
使用时删除双链接
custom_display_url
( [5544] (https://github.com/jupyter/notebook/pull/5544))敬重
cell.is_editable
在查找和替换期间( [5545] (https://github.com/jupyter/notebook/pull/5545))修复代码库中的所有异常原因( [5556] (https://github.com/jupyter/notebook/pull/5556)
改进登录Shell启发式算法( [5588] (https://github.com/jupyter/notebook/pull/5588))
添加了对以下各项的支持
JUPYTER_TOKEN_FILE
( [5587] (https://github.com/jupyter/notebook/pull/5587))当服务器清除空闲内核时,关闭笔记本电脑本身( [5593] (https://github.com/jupyter/notebook/pull/5593))
使用bcrypt实现口令散列( [3793] (https://github.com/jupyter/notebook/pull/3793))
修复断开的链接( [5600] (https://github.com/jupyter/notebook/pull/5600))
俄罗斯国际化支持( [5571] (https://github.com/jupyter/notebook/pull/5571))
添加元数据标记以覆盖笔记本方向(ltr/rtl)( [5052] (https://github.com/jupyter/notebook/pull/5052))
将剪贴板中的两幅图像粘贴到标记单元格中( [5598] (https://github.com/jupyter/notebook/pull/5598))
将键盘快捷键添加到菜单下拉菜单( [5525] (https://github.com/jupyter/notebook/pull/5525))
将代码错误更新为
5.56.0+components1
( [5637] (https://github.com/jupyter/notebook/pull/5637))
感谢所有的贡献者:
亚伦·迈亚特
亚当·布莱克
阿夫申·泰勒·达里安
阿曼·班萨尔
本·塞耶
贝伦吉安
木下布鲁诺
Bzinberg
克里斯托夫·卡迪哈克
片川大树
大卫·卢克斯
德米特里·Q
Dmpe
迪兰兹吉
DSchurch
E.M.布雷
ErwinRussel
费利克斯·门克迈耶
格兰特·内斯特
贾拉德·惠特克
耶稣·帕纳莱斯·卡斯蒂略
约书亚·泽尔策
Karthikey an Singaravelan
伊藤健一
凯文·贝茨
西原可贵
克里斯·威尔逊
凯尔·凯利
劳拉·梅洛
左旋咪唑
卢西亚诺·雷森德
路易斯·卡贝松·曼查多
马杜苏丹·斯里尼瓦萨
马蒂亚斯·盖尔
垫子
马克斯·克莱恩
最小RK
名选林
穆罕默德·穆斯塔法·法尔赞
尼科·费尔杰
诺拉·阿巴努迈
奥诺·布鲁克曼斯
PierreMB
皮纳卡瓦克
拉姆·拉彻姆
里斯·哈特
雷米·拉平
罗希特·桑杰
肖恩·佳能
李嘉诚
施泰纳·斯图尔洛格松
史蒂文·西尔维斯特
陶含16
Thew Dhanat
托马斯·克鲁伊弗
卡通·贝因斯
维达尔·托纳斯·福斯克
扎卡里·赛勒
6.0.3#
依赖项更新以修复Windows平台上的启动问题
添加对nbConvert 6.x的支持
创建最近的选项卡
感谢所有的贡献者:
卢西亚诺·雷森德
凯文·贝茨
阿汉斯尔本
扎卡里·赛勒
Pallavi Bharadwaj
托马斯·克鲁伊弗
最小RK
森林0
碧波号
米哈尔·查雷姆扎
谢尔盖·谢夫列夫
麦井水一郎
克林斯曼
TPartida
兰登·麦当劳
特雷斯·杜比尔
6.0.2#
将JQuery依赖更新到版本3.4.1以修复安全漏洞(cve-2019-11358)
将CodeMirror更新到版本5.48.4以修复Python格式问题
继续删除过时的Python2.x代码/依赖项
多个文档更新
感谢所有的贡献者:
大卫·罗伯斯
杰森·格劳特
科文·孙
凯文·贝茨
凯尔·凯利
卢西亚诺·雷森德
马库斯·D·舍曼
佐佐木武
汤姆·雅罗兹
维达尔·托纳斯·福斯克
韦斯·特纳
扎卡里·赛勒
6.0.1#
尝试重新建立到网关的WebSocket连接( [4777] (https://github.com/jupyter/notebook/pull/4777))
将缺少的Reaction-Domjs添加到包数据( [4772] (https://github.com/jupyter/notebook/pull/4772))
感谢所有的贡献者:
恩秀公园
最小RK
6.0#
这是Jupyter笔记本自5.0版(2017年3月)以来的首次重大发布。
我们鼓励用户开始尝试JupyterLab,JupyterLab刚刚宣布了1.0版本,为未来的过渡做准备。
取消对Python2.x的支持,转而支持Python3.5及更高版本。
多种辅助功能增强和错误修复。
多项翻译增强和错误修复。
删除不推荐使用的ANSI CSS样式。
本地支持将请求转发到Jupyter网关(S)(嵌入式NB2KG)。
使用JavaScript将用户重定向到笔记本主页。
通过使用PROTOCOL_TLS增强了SSL/TLS安全性,它选择客户端和服务器都支持的可用的最高SSL/TLS协议版本。当PROTOCOL_TLS不可用时,使用PROTOCOL_SSLv23。
增列
?no_track_activity=1
参数以允许API请求。不注册为活动(例如,外部活动监视器的API调用)。由于空闲超时而关闭的内核不再被视为活动更新事件。
通过改进对WebSocket何时关闭的检查,进一步提高与Tornado 6的兼容性。
使用本地文件启动浏览器,该文件重定向到包括身份验证令牌的服务器地址。这可以防止其他登录用户从命令行参数窃取令牌并向服务器进行身份验证。之前用于缓解此问题的一次性令牌已被删除。感谢欧文·肯威博士提出的本地文件方法。
尊重nbConvert入口点作为出口商的来源
将CodeMirror更新到5.37,其中包括适用于Python3.6的f字符串语法。
将jQuery-UI更新到1.12
通过点击输入提示中的图标执行单元格。
新的“另存为”菜单选项。
当在环回接口上服务时,通过检查
Host
来自浏览器的标题。如有必要,可通过设置禁用此检查NotebookApp.allow_remote_access
。(当我们在中解决一些Mac问题时,默认禁用 [3754] (https://github.com/jupyter/notebook/issues/3754)).添加KERNEL_INFO_TIMEOUT traitlet以启用重启速度较慢的内核。
增列
custom_display_host
用于覆盖显示的URL的配置选项。为普罗米修斯指标添加/指标终结点。
优化大型文件上传。
允许在jupyter_note book_config.py中覆盖访问控制标头,以支持更大的CORS和代理配置灵活性。
增加对Windows终端的支持。
将“重新启动并全部运行”按钮添加到工具栏。
前端/扩展配置:允许在.d目录中使用默认的json文件。
允许通过jupyter_tokenv设置令牌。
使用以下命令剔除空闲内核
--MappingKernelManager.cull_idle_timeout
。允许信任只读笔记本。
将JS测试转换为Selify。
Jupyter Notebook以前的次要版本和版本6.0中包含的安全修复程序。
修复了开放重定向漏洞(CVE-2019-10255),在成功登录后,某些恶意URL可能会从jupyter登录页面重定向到恶意站点。
包含针对跨站点包含(XSSI)漏洞(CVE-2019--9644)的安全修补程序,如果用户登录到Jupyter服务器,则已知URL处的文件可能会包含在来自未经授权网站的页面中。修复涉及到将
X-Content-Type-Options: nosniff
头文件,并在之前对所有非GET API请求应用CSRF检查,以获取对API端点和/FILES/端点的请求。检查主机标头以更安全地保护本地主机部署不受DNS重新绑定的影响。这是一种先发制人的措施,而不是修复已知的漏洞。使用
.NotebookApp.allow_remote_access
和.NotebookApp.local_hostnames
配置访问权限。将bootstrap升级到3.4,修复了已分配的XSS漏洞 [CVE-2018-14041] (https://nvd.nist.gov/vuln/detail/CVE-2018-14041).
包含一个安全修复程序,可阻止恶意目录名执行Java脚本。
包含一个安全修复程序,可阻止nbConvert终结点通过访问服务器API来执行Java脚本。CVE请求挂起。
感谢所有的贡献者:
阿尤什·辛哈
亚伦·霍尔,MBA
阿比纳夫·萨加尔
亚当规则
阿迪尔·艾哈迈德
亚历克斯·罗斯伯格
艾米·斯凯里-瑞安
德国阿纳斯塔斯病
安德烈·S·S
阿尔琼·拉达克里希纳
阿罗维特·纳鲁拉
徐本达
比约恩·格鲁宁
布莱恩·E·格兰杰
卡罗尔·费舍尔
Celina Kilcrease
克里斯·霍德格拉夫
克里斯·米勒
夏兰·兰顿
达米安·阿维拉
戴娜·李
丹尼尔·法雷尔
丹尼尔·尼古拉
达里奥在这里努乌
戴夫·艾特肯
戴夫·福斯特
戴夫·赫希菲尔德
丹尼斯·勒杜
德米特里·米库申
邝其志
道格拉斯·汉利
埃利奥特销售公司安德拉德
埃米利奥·塔拉曼特·卢戈
埃里克·佩里
伊森·T·亨德里克斯
埃文·范·达姆
弗朗西斯科·弗朗西斯科
弗雷德里克·查波顿
费利克斯-安托万·福廷
加布里埃尔
加布里埃尔·纽齐
加布里埃尔·鲁伊斯
格式塔·鲁尔
格兰特·内斯特
古斯塔沃·埃菲切
严苛的Vardhan
恒高
希沙姆·埃尔希塔维
洪旭
伊恩·罗斯
小川伊万
J·福特
杰森·格劳特
杰西卡·B·哈姆里克
刘佳琪
约翰·埃蒙斯
乔什·巴恩斯
卡尔蒂克·巴拉克里希南
凯文·贝茨
基里特·塔达卡
克里斯蒂安·格雷戈里乌斯·哈斯塔德
凯尔·凯利
利奥·加卢奇
莉莲·贝松
卢卡斯·赛基·大四郎
卢西亚诺·雷森德
路易斯·安吉尔·罗德里格斯·格雷罗
M步行者
马尔滕·布莱德尔斯
麦克·奈特
麦德肯·蒙克
迈提图斯·西亚兰
马克·乌多夫
马西斯·哈梅尔
马西斯·罗森豪尔
马蒂亚斯·巴松尼尔
马蒂亚斯·盖尔
马克斯·沃夫申
马克西姆·穆谢特
迈克尔·奇里科
迈克尔·德罗特博姆
迈克尔·海尔曼
迈克尔·斯科特·卡斯伯特
米哈尔·查雷姆扎
迈克·博伊尔
米洛什·米利科维奇
最小RK
米罗·赫伦čOK
尼古拉斯·博尔韦格
尼特什·萨万特
Ondrej Jariabka
朴海珍
保罗·伊万诺夫
保罗·马森
彼得·帕伦特
皮埃尔·索洛尼亚特
雷姆科·弗霍夫
罗兰·韦伯
罗曼·科尔涅夫
罗莎·斯瓦比
韩贤镇
萨利
刘森
萨马尔·苏丹
石提萨克塞纳
西蒙·比格斯
斯宾塞·帕克
斯蒂芬·沃德
史蒂夫(小工具)巴恩斯
史蒂文·西尔维斯特
苏里亚·普拉卡什·苏萨拉
赛义德·沙阿
西尔万·科雷
托马斯·奥尔霍特
托马斯·克鲁伊弗
时间
TIM头
蒂姆·克列弗
蒂姆·梅茨勒
托德
汤姆·乔奎拉
泰勒·马卡罗
瓦伊巴夫·萨加尔
维克多
维达尔·托纳斯·福斯克
Vu Minh Tam
Vít Tuček
威尔·科斯特洛
威尔·斯塔姆斯
威廉·霍斯福德
李小涵
尤维Pandas
艾希礼·张
Nullptr
5.7.8#
修复了5.7.5中重新启动内核中的回归问题。重启处理程序将在重启完成之前返回。
通过改进对WebSocket何时关闭的检查,进一步提高与Tornado 6的兼容性。
修复Windows 5.7.6中的回归,其中.js文件可能具有错误的MIME类型。
修复了开放重定向漏洞(CVE-2019-10255),在成功登录后,某些恶意URL可能会从jupyter登录页面重定向到恶意站点。5.7.7仅包含对此问题的部分修复。
5.7.6#
5.7.6包含针对跨站点包含(XSSI)漏洞的安全修补程序(CVE-2019--9644),如果用户登录到Jupyter服务器,则已知URL处的文件可能包含在来自未经授权网站的页面中。修复涉及到将 X-Content-Type-Options: nosniff
头文件,并在之前对所有非GET API请求应用CSRF检查,以获取对API端点和/FILES/端点的请求。
当使用Internet Explorer时,攻击页面可以通过脚本错误访问文件的某些内容,但尚未在其他浏览器中演示这一点。
5.7.5#
修复了与Tornado 6的兼容性( [4392] (https://github.com/jupyter/notebook/pull/4392), [4449] (https://github.com/jupyter/notebook/pull/4449)).
修正了在Python2上启动期间打开整型文件脚本的问题( [4349] (https://github.com/jupyter/notebook/pull/4349))
Fix compatibility with asynchronous [KernelManager.restart_kernel]{.title-ref} methods (4412)
5.7.4#
5.7.4修复了5.7.3中引入的错误,其中 list_running_servers()
函数尝试将HTML文件解析为JSON,因此崩溃( [4284] (https://github.com/jupyter/notebook/pull/4284)).
5.7.3#
5.7.3包含一项安全改进和一项安全修复:
使用本地文件启动浏览器,该文件重定向到包含身份验证令牌的服务器地址( [4260] (https://github.com/jupyter/notebook/pull/4260)).这可以防止其他登录用户从命令行参数窃取令牌并向服务器进行身份验证。之前用于缓解此问题的一次性令牌已被删除。感谢欧文·肯威博士提出的本地文件方法。
将bootstrap升级到3.4,修复了已分配的XSS漏洞 [CVE-2018-14041] (https://nvd.nist.gov/vuln/detail/CVE-2018-14041)( [4271] (https://github.com/jupyter/notebook/pull/4271)).
5.7.2#
5.7.2包含一个安全修复程序,可阻止恶意目录名称执行Java脚本。CVE请求挂起。
5.7.1#
5.7.1包含一个安全修复程序,可阻止nbConvert端点通过访问服务器API来执行Java脚本。CVE请求挂起。
5.7.0#
新功能:
将CodeMirror更新到5.37,其中包括适用于Python3.6( [3816] (https://github.com/jupyter/notebook/pull/3816))
将jQuery-UI更新为1.12( [3836] (https://github.com/jupyter/notebook/pull/3836))
检查主机标头以更安全地保护本地主机部署不受DNS重新绑定的影响。这是一种先发制人的措施,而不是修复已知的漏洞( [3766] (https://github.com/jupyter/notebook/pull/3766)).使用
.NotebookApp.allow_remote_access
和.NotebookApp.local_hostnames
配置访问权限。允许覆盖访问控制允许标头( [3886] (https://github.com/jupyter/notebook/pull/3886))
允许配置max_Body_Size和max_Buffer_Size( [3829] (https://github.com/jupyter/notebook/pull/3829))
允许配置GET_SECURE_COOKIE关键字-args( [3778] (https://github.com/jupyter/notebook/pull/3778))
Respect nbconvert entrypoints as sources for exporters (3879)
在源代码分发中包含翻译资源( [3925] (https://github.com/jupyter/notebook/pull/3925), [3931] (https://github.com/jupyter/notebook/pull/3931))
对文档的各种改进( [3799] (https://github.com/jupyter/notebook/pull/3799), [3800] (https://github.com/jupyter/notebook/pull/3800), [3806] (https://github.com/jupyter/notebook/pull/3806), [3883] (https://github.com/jupyter/notebook/pull/3883), [3908] (https://github.com/jupyter/notebook/pull/3908))
解决问题:
修复使用基本url运行时的面包屑链接( [3905] (https://github.com/jupyter/notebook/pull/3905))
修复关闭活动流时可能出现的类型错误( [3907] (https://github.com/jupyter/notebook/pull/3907))
禁用不可编辑单元格的元数据编辑( [3744] (https://github.com/jupyter/notebook/pull/3744))
修复了5.6.0中因回归而导致的一些提示样式和对齐方式。
在快捷方式编辑器中输入导致页面重新加载( [3871] (https://github.com/jupyter/notebook/pull/3871))
修复了上传到同一文件两次的问题( [3712] (https://github.com/jupyter/notebook/pull/3712))
请参阅GitHub上的5.7里程碑以获取完整的列表 [pull requests] (https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A5.7)参与了此版本。
感谢以下贡献者:
亚伦·霍尔
本杰明·拉根-凯利
比尔·梅杰
Bxy007
戴夫·艾特肯
丹尼斯·勒杜
费利克斯-安托万·福廷
加布里埃尔
格兰特·内斯特
凯文·贝茨
克里斯蒂安·格雷戈里乌斯·哈斯塔德
M步行者
麦德肯·蒙克
Maitiu O Ciarain
马蒂亚斯·巴松尼尔
迈克尔·博伊尔
迈克尔·奇里科
穆卡帕蒂(Praneet)
彼得·帕伦特
萨莉·威尔萨克
史蒂文·西尔维斯特
托马斯·克鲁伊弗
沃尔特·马丁
5.6.0#
新功能:
通过点击输入提示中的图标执行单元格( [3535] (https://github.com/jupyter/notebook/pull/3535), [3687] (https://github.com/jupyter/notebook/pull/3687))
新的“另存为”菜单选项( [3289] (https://github.com/jupyter/notebook/pull/3289))
当在环回接口上服务时,通过检查
Host
来自浏览器的标题( [3714] (https://github.com/jupyter/notebook/pull/3714)).如有必要,可通过设置禁用此检查NotebookApp.allow_remote_access
。(当我们在中解决一些Mac问题时,默认禁用 [3754] (https://github.com/jupyter/notebook/issues/3754)).添加KERNEL_INFO_TIMEOUT Traitlet以启用重启慢速内核( [3665] (https://github.com/jupyter/notebook/pull/3665))
增列
custom_display_host
用于覆盖显示的URL的配置选项( [3668] (https://github.com/jupyter/notebook/pull/3668))为普罗米修斯指标添加/指标端点( [3490] (https://github.com/jupyter/notebook/pull/3490))
更新至MathJax 2.7.4( [3751] (https://github.com/jupyter/notebook/pull/3751))
更新至jQuery 3.3( [3655] (https://github.com/jupyter/notebook/pull/3655))
更新标记为0.4( [3686] (https://github.com/jupyter/notebook/pull/3686))
解决问题:
不在显示的URL中复制令牌( [3656] (https://github.com/jupyter/notebook/pull/3656))
在所有接口上侦听时澄清显示的URL( [3703] (https://github.com/jupyter/notebook/pull/3703))
不要在Windows上丢弃非空目录( [3673] (https://github.com/jupyter/notebook/pull/3673))
在控制盘中包含许可文件( [3671] (https://github.com/jupyter/notebook/pull/3671))
启动笔记本时不显示“0个活动内核”( [3696] (https://github.com/jupyter/notebook/pull/3696))
测试:
添加查找替换测试( [3630] (https://github.com/jupyter/notebook/pull/3630))
删除所有细胞的硒测试( [3601] (https://github.com/jupyter/notebook/pull/3601))
使创建新笔记本更加可靠( [3726] (https://github.com/jupyter/notebook/pull/3726))
感谢以下贡献者:
Arovit Narula( [arovit] (https://github.com/arovit)))
卢卡索四郎( [lucasoshiro] (https://github.com/lucasoshiro)))
M步行者( [mpacer] (https://github.com/mpacer)))
Thomas Kluyver( [takluyver] (https://github.com/takluyver)))
托德( [toddrme2178] (https://github.com/toddrme2178)))
Yuvi Panda( [yuvipanda] (https://github.com/yuvipanda)))
有关以下方面的完整列表,请参阅GitHub上的5.6里程碑 [pull requests] (https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A5.6)参与了此版本。
5.5.0#
新功能:
文件列表现在显示文件大小( [3539] (https://github.com/jupyter/notebook/pull/3539))
在仪表板中添加退出按钮( [3004] (https://github.com/jupyter/notebook/pull/3004))
远程运行时在终端显示主机名( [3356] (https://github.com/jupyter/notebook/pull/3356), [3593] (https://github.com/jupyter/notebook/pull/3593))
将幻灯片导出/下载添加到菜单( [3287] (https://github.com/jupyter/notebook/pull/3287))
将任何额外安装的nbConvert导出器添加到“下载为”菜单( [3323] (https://github.com/jupyter/notebook/pull/3323))
EDITOR:覆盖在磁盘上修改的文件时出现警告( [2783] (https://github.com/jupyter/notebook/pull/2783))
如果未启用Cookie,则显示警告消息( [3511] (https://github.com/jupyter/notebook/pull/3511))
基本信息
__version__
针对扩展模块的报告( [3541] (https://github.com/jupyter/notebook/pull/3541))增列
NotebookApp.terminals_enabled
配置选项( [3478] (https://github.com/jupyter/notebook/pull/3478))使上次在磁盘上修改和上次在上次保存时修改之间的缓冲时间可配置( [3273] (https://github.com/jupyter/notebook/pull/3273))
允许绑定“关闭并停止”的自定义快捷方式( [3314] (https://github.com/jupyter/notebook/pull/3314))
添加“受信任”通知的说明( [3386] (https://github.com/jupyter/notebook/pull/3386))
增列
settings['activity_sources']
( [3401] (https://github.com/jupyter/notebook/pull/3401))添加一个
output_updated.OutputArea
活动( [3560] (https://github.com/jupyter/notebook/pull/3560))
解决问题:
修复以提高网站可访问性( [3507] (https://github.com/jupyter/notebook/pull/3507))
修复了tree.less中的颜色对比问题( [3336] (https://github.com/jupyter/notebook/pull/3336))
是否允许取消上传大文件( [3373] (https://github.com/jupyter/notebook/pull/3373))
不清除没有Cookie的请求的登录Cookie( [3380] (https://github.com/jupyter/notebook/pull/3380))
不要将不同设备上的文件回收到Linux上的主目录( [3304] (https://github.com/jupyter/notebook/pull/3304))
重新启动内核时清除等待星号( [3494] (https://github.com/jupyter/notebook/pull/3494))
修复以下情况下的输出提示
execution_count
遗失( [3236] (https://github.com/jupyter/notebook/pull/3236))当显示两次时,使‘Change on Disk’(在磁盘上更改)对话框工作 [3589] (https://github.com/jupyter/notebook/pull/3589))
修复返回到笔记本列表中具有历史记录的根目录的问题( [3411] (https://github.com/jupyter/notebook/pull/3411))
允许为缺少的操作定义键盘快捷键( [3561] (https://github.com/jupyter/notebook/pull/3561))
当完成器处于活动状态时,防止页面向上/向下缺省( [3500] (https://github.com/jupyter/notebook/pull/3500))
防止在新终端上进行默认事件处理( [3497] (https://github.com/jupyter/notebook/pull/3497))
ConfigManager不应写出.d目录中的默认值( [3485] (https://github.com/jupyter/notebook/pull/3485))
修复活动监视中iopub对象的泄漏( [3424] (https://github.com/jupyter/notebook/pull/3424))
Notebooklist.js中的JavaScript lint( [3409] (https://github.com/jupyter/notebook/pull/3409))
一些Java脚本语法修复( [3294] (https://github.com/jupyter/notebook/pull/3294))
将本机for循环转换为
Array.forEach()
( [3477] (https://github.com/jupyter/notebook/pull/3477))下载nbConvert输出时禁用缓存( [3484] (https://github.com/jupyter/notebook/pull/3484))
将缺少的摘要模块参数添加到HMAC( [3399] (https://github.com/jupyter/notebook/pull/3399))
日志操作系统在启动期间无法创建不太重要的文件( [3384] (https://github.com/jupyter/notebook/pull/3384))
在Windows上使用PowerShell( [3379] (https://github.com/jupyter/notebook/pull/3379))
API规范改进、API处理程序改进( [3368] (https://github.com/jupyter/notebook/pull/3368))
更改内核元数据后将笔记本设置为脏状态( [3350] (https://github.com/jupyter/notebook/pull/3350))
使用CSP标头将提供的文件视为属于单独的来源( [3341] (https://github.com/jupyter/notebook/pull/3341))
不要将getText安装到内置组件中( [3330] (https://github.com/jupyter/notebook/pull/3330))
添加缺失
import _
( [3316] (https://github.com/jupyter/notebook/pull/3316), [3326] (https://github.com/jupyter/notebook/pull/3326))写
notebook.json
原子文件( [3305] (https://github.com/jupyter/notebook/pull/3305))使用修饰符修复点击,页面标题更新( [3282] (https://github.com/jupyter/notebook/pull/3282))
将jQuery升级到版本2.2( [3428] (https://github.com/jupyter/notebook/pull/3428))
将xTerm.js升级到3.1.0( [3189] (https://github.com/jupyter/notebook/pull/3189))
将Moment.js升级到2.19.3( [3562] (https://github.com/jupyter/notebook/pull/3562))
将CodeMirror升级到5.35( [3372] (https://github.com/jupyter/notebook/pull/3372))
“Required”pyzmq>=17( [3586] (https://github.com/jupyter/notebook/pull/3586))
文档:
文档更新和组织( [3584] (https://github.com/jupyter/notebook/pull/3584))
在文档中添加有关隐私的部分( [3571] (https://github.com/jupyter/notebook/pull/3571))
添加有关如何将单元格的类型更改为Markdown的说明( [3377] (https://github.com/jupyter/notebook/pull/3377))
使用ConfD实施详细信息更新文档( [3520] (https://github.com/jupyter/notebook/pull/3520))
添加有关位置的更多信息
jupyter_notebook_config.py
位于( [3346] (https://github.com/jupyter/notebook/pull/3346))在特定部分中启用nbExpansion的文档选项( [3525] (https://github.com/jupyter/notebook/pull/3525))
JQuery属性选择器值必须用引号引起来( [3527] (https://github.com/jupyter/notebook/pull/3527))
请勿使用nbsphinx执行特殊笔记本( [3360] (https://github.com/jupyter/notebook/pull/3360))
中的其他次要修复 [3288] (https://github.com/jupyter/notebook/pull/3288), [3528] (https://github.com/jupyter/notebook/pull/3528), [3293] (https://github.com/jupyter/notebook/pull/3293), [3367] (https://github.com/jupyter/notebook/pull/3367)
测试:
与Selence&Sauce实验室( [3321] (https://github.com/jupyter/notebook/pull/3321))
Selify utils+Markdown呈现测试( [3458] (https://github.com/jupyter/notebook/pull/3458))
将插入单元格测试转换为硒( [3508] (https://github.com/jupyter/notebook/pull/3508))
将提示数字测试转换为硒( [3554] (https://github.com/jupyter/notebook/pull/3554))
将删除细胞测试转换为硒( [3465] (https://github.com/jupyter/notebook/pull/3465))
将未删除的细胞测试转换为硒( [3475] (https://github.com/jupyter/notebook/pull/3475))
更多硒测试实用程序( [3412] (https://github.com/jupyter/notebook/pull/3412))
仅在生成由Travis Cron作业触发时检查链接( [3493] (https://github.com/jupyter/notebook/pull/3493))
修复Appveyor版本错误( [3430] (https://github.com/jupyter/notebook/pull/3430))
在尝试删除文件之前撤消tearDown中的补丁程序( [3459] (https://github.com/jupyter/notebook/pull/3459))
对龙卷风5进行测试( [3398] (https://github.com/jupyter/notebook/pull/3398))
解锁Travis上的ipycore版本( [3223] (https://github.com/jupyter/notebook/pull/3223))
感谢以下贡献者:
Arovit Narula( [arovit] (https://github.com/arovit)))
阿什利·张( [ashleytqy] (https://github.com/ashleytqy)))
Nicholas Bollweg( [bollwyvl] (https://github.com/bollwyvl)))
亚历克斯·罗斯伯格(Alex Rothberg)( [cancan101] (https://github.com/cancan101)))
Celina Kilcrease( [ckilcrease] (https://github.com/ckilcrease)))
蝙蝠葛皂苷( [dabuside] (https://github.com/dabuside)))
达米安·阿维拉( [damianavila] (https://github.com/damianavila)))
Dana Lee( [danagilliann] (https://github.com/danagilliann)))
Dave Hirschfeld( [dhirschfeld] (https://github.com/dhirschfeld)))
恒高( [ehengao] (https://github.com/ehengao)))
利奥·加卢奇( [elgalu] (https://github.com/elgalu)))
Evan Van Dam( [evandam] (https://github.com/evandam)))
Forbxy( [forbxy] (https://github.com/forbxy)))
格兰特·内斯特(Grant Nestor)( [gnestor] (https://github.com/gnestor)))
伊森·亨德里克斯(Ethan T.Hendrix)( [hendrixet] (https://github.com/hendrixet)))
Miro HrončOK( [hroncok] (https://github.com/hroncok)))
保罗·伊万诺夫( [ivanov] (https://github.com/ivanov)))
Darío Hereñú( [kant] (https://github.com/kant)))
凯文·贝茨( [kevin-bates] (https://github.com/kevin-bates)))
Maarten Breddels( [maartenbreddels] (https://github.com/maartenbreddels)))
迈克尔·德罗特博姆(Michael Droettom) [mdboom] (https://github.com/mdboom)))
最小RK( [minrk] (https://github.com/minrk)))
M步行者( [mpacer] (https://github.com/mpacer)))
彼得·帕伦特( [parente] (https://github.com/parente)))
保罗·马森( [paulmasson] (https://github.com/paulmasson)))
菲利普·鲁迪格(Philipp Rudiger) [philippjfr] (https://github.com/philippjfr)))
麦克·奈特(谢尔斯1909)
Hisham Elsheshtawy( [Sheshtawy] (https://github.com/Sheshtawy)))
西蒙·比格斯(Simon Biggs) [SimonBiggs] (https://github.com/SimonBiggs)))
苏尼尔·哈里 (
@sunilhari
)Thomas Kluyver( [takluyver] (https://github.com/takluyver)))
蒂姆·克列弗(Tim Klever)( [tklever] (https://github.com/tklever)))
加布里埃尔·鲁伊斯( [unnamedplay-r] (https://github.com/unnamedplay-r)))
Vaibhav Sagar( [vaibhavsagar] (https://github.com/vaibhavsagar)))
威廉·霍斯福德( [whosford] (https://github.com/whosford)))
洪( [xuhdev] (https://github.com/xuhdev)))
有关以下方面的完整列表,请参阅GitHub上的5.5里程碑 [pull requests] (https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A5.5)参与了此版本。
5.4.1#
需要修复的安全版本 [CVE-2018-8768] (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-8768).
感谢 [Alex] (https://hackerone.com/pisarenko)用于识别该错误,Quantopian的Jonathan Kamens和Scott Sanderson用于验证它并引起我们的注意。
5.4.0#
修复在仪表板中导航目录后创建文件和文件夹的问题( [3264] (https://github.com/jupyter/notebook/pull/3264)).
支持彩色打印笔记本,消除了使一切变得黑白的css( [3212] (https://github.com/jupyter/notebook/pull/3212)).
将笔记本中显示的完成选项限制为1000个,以避免列表太长时出现性能问题( [3195] (https://github.com/jupyter/notebook/pull/3195)).
中的可访问性改进
tree.html
( [3271] (https://github.com/jupyter/notebook/pull/3271)).将Alt-Text添加到笔记本用户界面中的内核徽标图像( [3228] (https://github.com/jupyter/notebook/pull/3228)).
Added a test on Travis CI to flag if symlinks are accidentally introduced in the future. This should prevent the issue that necessitated
release-5.3.1
{.interpreted-text role="ref"} (3227).使用小写字母表示在我们的Java脚本中生成的随机ID( [3264] (https://github.com/jupyter/notebook/pull/3264)).
删除重复的代码设置
TextCell.notebook
( [3256] (https://github.com/jupyter/notebook/pull/3256)).
感谢以下贡献者:
亚历克斯·索德曼(Alex Soderman)( [asoderman] (https://github.com/asoderman)))
Matthias Bussonnier( [Carreau] (https://github.com/Carreau)))
最小RK( [minrk] (https://github.com/minrk)))
Nitesh Sawant( [ns23] (https://github.com/ns23)))
Thomas Kluyver( [takluyver] (https://github.com/takluyver)))
Yuvi Panda( [yuvipanda] (https://github.com/yuvipanda)))
有关以下方面的完整列表,请参阅giHub上的5.4里程碑 [pull requests] (https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A5.4)参与了此版本。
5.3.1#
将存储库中的符号链接替换为副本,以修复安装在Windows上的问题( [3220] (https://github.com/jupyter/notebook/pull/3220)).
5.3.0#
这一版本引入了几个值得注意的改进,比如对Windows的终端支持和对操作系统垃圾桶的支持(从笔记本仪表板删除的文件被移动到操作系统垃圾箱,而不是永久删除)。
增加对Windows终端的支持( [3087] (https://github.com/jupyter/notebook/pull/3087)).
在工具栏中添加“重新启动并全部运行”按钮( [2965] (https://github.com/jupyter/notebook/pull/2965)).
删除时将文件发送到操作系统的垃圾桶机制( [1968] (https://github.com/jupyter/notebook/pull/1968)).
允许以编程方式复制到剪贴板( [3088] (https://github.com/jupyter/notebook/pull/3088)).
使用DOM历史API在文件浏览器中的目录之间导航( [3115] (https://github.com/jupyter/notebook/pull/3115)).
将翻译的文件添加到文件夹(文档-翻译)( [3065] (https://github.com/jupyter/notebook/pull/3065)).
允许删除非空目录( [3108] (https://github.com/jupyter/notebook/pull/3108)).
在base_url上设置cookie( [2959] (https://github.com/jupyter/notebook/pull/2959)).
默认情况下允许令牌身份验证请求跨域( [2920] (https://github.com/jupyter/notebook/pull/2920)).
将CULL_IDLE_TIMEOUT_MINIMUM从300更改为1( [2910] (https://github.com/jupyter/notebook/pull/2910)).
在没有内核的情况下,在n秒后关闭服务器的配置选项( [2963] (https://github.com/jupyter/notebook/pull/2963)).
在加载笔记本错误时显示“关闭”按钮( [3176] (https://github.com/jupyter/notebook/pull/3176)).
将操作添加到命令面板,以在选定内容时运行CodeMirror的“indentAuto”( [3175] (https://github.com/jupyter/notebook/pull/3175)).
添加选项以指定额外服务( [3158] (https://github.com/jupyter/notebook/pull/3158)).
WARN_BAD_NAME不应使用全局名称( [3160] (https://github.com/jupyter/notebook/pull/3160)).
避免隐藏表单溢出( [3148] (https://github.com/jupyter/notebook/pull/3148)).
修复停机传输损失( [3147] (https://github.com/jupyter/notebook/pull/3147)).
更高效地查找可用的内核规范( [3136] (https://github.com/jupyter/notebook/pull/3136)).
不要试图翻译丢失的帮助字符串( [3122] (https://github.com/jupyter/notebook/pull/3122)).
前端/扩展配置:允许.d目录中的默认json文件( [3116] (https://github.com/jupyter/notebook/pull/3116)).
Use [requirejs]{.title-ref} vs. [require]{.title-ref} (3097).
修复了Firefox#3044中的一些用户界面错误( [3058] (https://github.com/jupyter/notebook/pull/3058)).
选择使用阿拉伯数字时,请比较非特定语言代码( [3055] (https://github.com/jupyter/notebook/pull/3055)).
修复不推荐使用的存储脚本( [3053] (https://github.com/jupyter/notebook/pull/3053)).
在PACKET_DATA中包括时刻区域设置( [3051] (https://github.com/jupyter/notebook/pull/3051)).
修复BIDI支持中的区域设置加载( [3048] (https://github.com/jupyter/notebook/pull/3048)).
龙卷风5:周期性回调循环参数将被移除( [3034] (https://github.com/jupyter/notebook/pull/3034)).
Use [/files]{.title-ref} prefix for pdf-like files (3031).
添加文件翻译文件夹( [3022] (https://github.com/jupyter/notebook/pull/3022)).
当通过令牌登录时,让用户有机会设置密码( [3008] (https://github.com/jupyter/notebook/pull/3008)).
切换到确保目录存在的jupyter_core实现( [3002] (https://github.com/jupyter/notebook/pull/3002)).
在“停止”子命令上发送http关闭请求( [3000] (https://github.com/jupyter/notebook/pull/3000)).
处理加载用户界面翻译( [2969] (https://github.com/jupyter/notebook/pull/2969)).
修正ansi逆( [2967] (https://github.com/jupyter/notebook/pull/2967)).
将send2trash添加到构建文档的要求中( [2964] (https://github.com/jupyter/notebook/pull/2964)).
I18N Readme.md改进( [2962] (https://github.com/jupyter/notebook/pull/2962)).
将‘Reason’字段添加到json错误响应( [2958] (https://github.com/jupyter/notebook/pull/2958)).
为流输出添加一些填充( [3194] (https://github.com/jupyter/notebook/pull/3194)).
在中始终使用设置工具
setup.py
( [3206] (https://github.com/jupyter/notebook/pull/3206)).修复在以下情况下在注销时清除Cookie的问题
base_url
已配置( [3207] (https://github.com/jupyter/notebook/pull/3207)).
感谢以下贡献者:
BACTBOC( [bacboc] (https://github.com/bacboc)))
史蒂文·西尔维斯特( [blink1073] (https://github.com/blink1073)))
Matthias Bussonnier( [Carreau] (https://github.com/Carreau)))
忠珠浩( [ChungJooHo] (https://github.com/ChungJooHo)))
埃迪达( [edida] (https://github.com/edida)))
弗朗西斯科·弗朗西斯科 (
ferdas
)Forbxy( [forbxy] (https://github.com/forbxy)))
格兰特·内斯特(Grant Nestor)( [gnestor] (https://github.com/gnestor)))
乔希·巴恩斯( [jcb91] (https://github.com/jcb91)))
JocelynDelalande( [JocelynDelalande] (https://github.com/JocelynDelalande)))
Karthik Balakrishnan( [karthikb351] (https://github.com/karthikb351)))
凯文·贝茨( [kevin-bates] (https://github.com/kevin-bates)))
基里特·塔达卡( [kirit93] (https://github.com/kirit93)))
莉莲·贝松( [Naereen] (https://github.com/Naereen)))
Maarten Breddels( [maartenbreddels] (https://github.com/maartenbreddels)))
马豆94( [Madhu94] (https://github.com/Madhu94)))
马蒂亚斯·盖尔(Matthias Geier)( [mgeier] (https://github.com/mgeier)))
迈克尔·海尔曼(Michael Helman)( [mheilman] (https://github.com/mheilman)))
最小RK( [minrk] (https://github.com/minrk)))
Phaejin( [PHaeJin] (https://github.com/PHaeJin)))
苏尼特( [Sukneet] (https://github.com/Sukneet)))
Thomas Kluyver( [takluyver] (https://github.com/takluyver)))
有关以下方面的完整列表,请参阅GitHub上的5.3里程碑 [pull requests] (https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A5.3)参与了此版本。
5.2.1#
将不可见的CodeMirror光标固定在特定的浏览器缩放级别( [2983] (https://github.com/jupyter/notebook/pull/2983)).
修复了nbConvert处理程序导致PDF导出中断的问题( [2981] (https://github.com/jupyter/notebook/pull/2981)).
修复输出区域构造函数的PROMPT_AREA参数。( [2961] (https://github.com/jupyter/notebook/pull/2961)).
处理new_untle()中的复合扩展( [2949] (https://github.com/jupyter/notebook/pull/2949)).
允许禁用脱机邮件缓冲( [2916] (https://github.com/jupyter/notebook/pull/2916)).
感谢以下贡献者:
史蒂文·西尔维斯特( [blink1073] (https://github.com/blink1073)))
格兰特·内斯特(Grant Nestor)( [gnestor] (https://github.com/gnestor)))
杰森·格鲁特(Jason Grout)( [jasongrout] (https://github.com/jasongrout)))
最小RK( [minrk] (https://github.com/minrk)))
M步行者( [mpacer] (https://github.com/mpacer)))
有关以下方面的完整列表,请参阅GitHub上的5.2.1里程碑 [pull requests] (https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A5.2.1)参与了此版本。
5.2.0#
允许通过jupyter_tokenv设置令牌( [2921] (https://github.com/jupyter/notebook/pull/2921)).
修复在GET_CURRENT_USER( [2919] (https://github.com/jupyter/notebook/pull/2919)).
直接注册CONTENTS_MANAGER.FILES_HANDLER_CLASS( [2917] (https://github.com/jupyter/notebook/pull/2917)).
更新VIEWABLE_EXTENDS( [2913] (https://github.com/jupyter/notebook/pull/2913)).
隐藏快捷方式模式后显示编辑快捷方式模式( [2912] (https://github.com/jupyter/notebook/pull/2912)).
改进编辑/查看行为( [2911] (https://github.com/jupyter/notebook/pull/2911)).
笔记本服务器的根目录永远不应隐藏( [2907] (https://github.com/jupyter/notebook/pull/2907)).
修复笔记本需要配置以匹配Tools/Build-Main( [2888] (https://github.com/jupyter/notebook/pull/2888)).
为页面构造函数提供默认参数( [2887] (https://github.com/jupyter/notebook/pull/2887)).
修复codemirror.less以匹配codemirror的预期填充布局( [2880] (https://github.com/jupyter/notebook/pull/2880)).
将x-xsrf标记添加到Access-Control-Allow-Header( [2876] (https://github.com/jupyter/notebook/pull/2876)).
在WebSocket连接中断时缓冲消息( [2871] (https://github.com/jupyter/notebook/pull/2871)).
仅当不是en-us时才动态加载区域设置( [2866] (https://github.com/jupyter/notebook/pull/2866)).
将密钥强度更改为2048位( [2861] (https://github.com/jupyter/notebook/pull/2861)).
将js版本与python版本重新同步( [2860] (https://github.com/jupyter/notebook/pull/2860)).
允许对修改后的只读笔记本执行复制操作( [2854] (https://github.com/jupyter/notebook/pull/2854)).
更新apiHandler上的错误处理( [2853] (https://github.com/jupyter/notebook/pull/2853)).
在Travis上测试Python3.6,下降3.3( [2852] (https://github.com/jupyter/notebook/pull/2852)).
在图像测试中避免使用Base64字面值( [2851] (https://github.com/jupyter/notebook/pull/2851)).
将xtem.js升级到2.9.2( [2849] (https://github.com/jupyter/notebook/pull/2849)).
将所有名为FILE的PYTHON变量更改为FILE_NAME,以不覆盖内置文件( [2830] (https://github.com/jupyter/notebook/pull/2830)).
添加更多文档测试( [2823] (https://github.com/jupyter/notebook/pull/2823)).
打字错误修复( [2815] (https://github.com/jupyter/notebook/pull/2815)).
重命名并更新许可证\ [ci skip] ( [2810] (https://github.com/jupyter/notebook/pull/2810)).
Travis构建文档( [2808] (https://github.com/jupyter/notebook/pull/2808)).
拉取请求I18N( [2804] (https://github.com/jupyter/notebook/pull/2804)).
分解OUTPUT_PROMPT_Function,就像使用输入提示符( [2774] (https://github.com/jupyter/notebook/pull/2774)).
文件名使用rfc5987编码( [2767] (https://github.com/jupyter/notebook/pull/2767)).
添加了资源元数据的路径,与from_filename(...)中的路径相同在nbConvert.exporters.py( [2753] (https://github.com/jupyter/notebook/pull/2753)).
使笔记本和编辑的“外键”保持一致( [2745] (https://github.com/jupyter/notebook/pull/2745)).
BIDI支持( [2357] (https://github.com/jupyter/notebook/pull/2357)).
特别感谢 [samarsultan] (https://github.com/samarsultan)和埃及IBM的阿拉伯语能力和全球化中心团队为笔记本电脑添加了从右到左的支持!
有关以下方面的完整列表,请参阅GitHub上的5.2里程碑 [issues] (https://github.com/jupyter/notebook/issues?utf8=%E2%9C%93&q=is%3Aissue%20milestone%3A5.2)和 [pull requests] (https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A5.2)参与了此版本。
5.1.0#
初步实施i18N( [2140] (https://github.com/jupyter/notebook/pull/2140)).
在笔记本用户界面中使用身份验证令牌显示URL( [2666] (https://github.com/jupyter/notebook/pull/2666)).
修复搜索背景样式( [2387] (https://github.com/jupyter/notebook/pull/2387)).
列出正在运行的笔记本,而不需要
--allow-root
( [2421] (https://github.com/jupyter/notebook/pull/2421)).允许非笔记本类型的会话( [2559] (https://github.com/jupyter/notebook/pull/2559)).
修复搜索背景样式( [2387] (https://github.com/jupyter/notebook/pull/2387)).
修复一些Markdown样式问题( [2571] (https://github.com/jupyter/notebook/pull/2571)),( [2691] (https://github.com/jupyter/notebook/pull/2691))和( [2534] (https://github.com/jupyter/notebook/pull/2534)).
删除与非英文键盘冲突的按键映射( [2535] (https://github.com/jupyter/notebook/pull/2535)).
添加特定于会话的图标(笔记本、终端、文件)( [2452] (https://github.com/jupyter/notebook/pull/2452)).
添加/api/Shutdown处理程序( [2507] (https://github.com/jupyter/notebook/pull/2507)).
在复制单元格时包括元数据( [2349] (https://github.com/jupyter/notebook/pull/2349)).
从命令行停止笔记本电脑服务器( [2388] (https://github.com/jupyter/notebook/pull/2388)).
改进仪表板中的“查看”和“编辑”文件处理( [2449] (https://github.com/jupyter/notebook/pull/2449))和( [2402] (https://github.com/jupyter/notebook/pull/2402)).
提供承诺以取代使用
app_initialized.NotebookApp
活动( [2710] (https://github.com/jupyter/notebook/pull/2710)).修复禁用的折叠/展开输出按钮( [2681] (https://github.com/jupyter/notebook/pull/2681)).
使用以下命令剔除空闲内核
--MappingKernelManager.cull_idle_timeout
( [2215] (https://github.com/jupyter/notebook/pull/2215)).允许信任只读笔记本电脑( [2718] (https://github.com/jupyter/notebook/pull/2718)).
有关以下方面的完整列表,请参阅GitHub上的5.1里程碑 [issues] (https://github.com/jupyter/notebook/issues?utf8=%E2%9C%93&q=is%3Aissue%20milestone%3A5.1)和 [pull requests] (https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A5.1)参与了此版本。
5.0.0#
这是Jupyter Notebook自4.0版本以来的第一个主要版本,该版本是由IPython和Jupyter的“大分裂”创建的。
我们鼓励用户开始尝试JupyterLab,为未来的过渡做准备。
从4.0开始,我们已经合并了300多个拉取请求。这里描述了一些主要的面向用户的更改。
仪表板中的文件排序#
现在可以按上次修改日期或名称对仪表板中的文件进行排序( [943] (https://github.com/jupyter/notebook/pull/943)):
表格样式#
笔记本中表格的默认样式已更新( [1776] (https://github.com/jupyter/notebook/pull/1776)).
定制键盘快捷键#
您现在可以编辑_Command的键盘快捷键 Mode_ 在用户界面中( [1347] (https://github.com/jupyter/notebook/pull/1347)):
请参阅 Help > Edit Keyboard Shortcuts
菜单项并按照说明进行操作。
其他附加功能#
You can copy and paste cells between notebooks, using
Ctrl-C
{.interpreted-text role="kbd"} andCtrl-V
{.interpreted-text role="kbd"} (Cmd-C
{.interpreted-text role="kbd"} andCmd-V
{.interpreted-text role="kbd"} on Mac).使用新的更轻松地为笔记本电脑配置密码
jupyter notebook password
命令( [2007] (https://github.com/jupyter/notebook/pull/2007)).文件列表现在可以按_last排序 modified_ 或通过 name ( [943] (https://github.com/jupyter/notebook/pull/943)).
标记单元格现在支持附件。只需将图像从桌面拖放到标记单元格即可添加。与手动输入的相对链接不同,附件嵌入到笔记本本身中。保存时,未引用的附件将自动从笔记本中清除( [621] (https://github.com/jupyter/notebook/pull/621)).
撤消单元格删除现在支持撤消删除多个单元格。单元格的顺序可能不同于删除它们之前的顺序,这取决于您在此期间执行的操作,但这应该有助于减少意外删除代码的影响。
文件浏览器现在具有 Edit 和 View 纽扣。
文件浏览器现在支持一次移动多个文件( [1088] (https://github.com/jupyter/notebook/pull/1088)).
笔记本将拒绝以超级用户身份运行,除非
--allow-root
已给出旗帜( [1115] (https://github.com/jupyter/notebook/pull/1115)).键盘快捷键现在是声明性的( [1234] (https://github.com/jupyter/notebook/pull/1234)).
切换行号现在可以影响所有单元格( [1312] (https://github.com/jupyter/notebook/pull/1312)).
添加更多可见内容 Trusted 和 Untrusted 通知( [1658] (https://github.com/jupyter/notebook/pull/1658)).
文件夹图标(浏览器快捷图标)现在更改为指示内核何时忙碌( [1837] (https://github.com/jupyter/notebook/pull/1837)).
标题和工具栏可见性现在在nbconfig中和会话之间持久存在( [1769] (https://github.com/jupyter/notebook/pull/1769)).
使用ConfigManager加载服务器扩展,以便与常规配置值不同地以递归方式进行合并,从而使其加载与前端扩展更一致( [2108] (https://github.com/jupyter/notebook/pull/2108)).
笔记本服务器现在支持来自 [jupyter_cms incubator project] (https://github.com/jupyter-incubator/contentmanagement)( [1579] (https://github.com/jupyter/notebook/pull/1579)).
笔记本服务器现在在其内核资源API中提供有关内核活动的信息( [1827] (https://github.com/jupyter/notebook/pull/1827)).
请记住,升级 notebook
仅影响用户界面。升级内核和库还可能提供新功能、更好的稳定性以及与笔记本界面的集成。
4.4.0#
允许重写输出回调以重定向输出消息。例如,这用于实现ipywidget输出小部件。
通过允许通信消息处理程序返回承诺来修复消息处理中的异步错误,该承诺会暂停消息处理,直到承诺解决为止。
有关以下方面的完整列表,请参阅GitHub的4.4里程碑 [issues] (https://github.com/jupyter/notebook/issues?utf8=%E2%9C%93&q=is%3Aissue%20milestone%3A4.4)和 [pull requests] (https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A4.4)参与了此版本。
4.3.2#
4.3.2是一个补丁版本,修复了CodeMirror的错误,并改进了对“可编辑”单元格元数据字段的处理。
解决CodeMirror问题的猴子补丁 [#2037] (https://github.com/jupyter/notebook/issues/2037)而不中断 [#1967] (https://github.com/jupyter/notebook/issues/1967)
只读 (
"editable": false
)单元格可以执行,但不能拆分、合并或删除
请参阅GitHub上的4.3.2里程碑以获取完整的列表 [issues] (https://github.com/jupyter/notebook/issues?utf8=%E2%9C%93&q=is%3Aissue%20milestone%3A4.3.2)和 [pull requests] (https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A4.3.2)参与了此版本。
4.3.1#
4.3.1是一个补丁版本,包含一个安全补丁、几个错误修复以及对新发布的令牌身份验证的改进。
Security fix :
CVE-2016-9971。修复CSRF漏洞,恶意表单可以为某些浏览器(Firefox、Internet Explorer/Edge)的用户创建无标题文件并启动内核(不远程执行或修改现有文件)。所有以前的笔记本电脑版本都会受到影响。
错误修复:
修复回车符处理
使字体大小在反复无常的浏览器中更加健壮
忽略冒泡且不是来自窗口的调整大小事件
向允许的CORS标头添加授权
在我们解决Safari中的问题时,将CodeMirror降级到5.16
其他改进:
为基于令牌的身份验证提供更好的文档
自动生成时,进一步突出显示日志输出中的令牌信息
请参阅GitHub上的4.3.1里程碑以获取完整的列表 [issues] (https://github.com/jupyter/notebook/issues?utf8=%E2%9C%93&q=is%3Aissue%20milestone%3A4.3.1)和 [pull requests] (https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A4.3.1)参与了此版本。
4.3.0#
4.3是一个小版本,有许多错误修复和改进。面向用户的最大变化是添加了令牌身份验证,这在默认情况下是启用的。令牌是在浏览器自动打开时生成并使用的,因此在默认情况下您应该不必输入任何内容。如果您看到登录页面(例如,通过切换浏览器或在新端口上启动 --no-browser
),您将从命令中获得一个带有令牌的登录URL jupyter notebook list
,您可以将其粘贴到浏览器中。
重点:
用于创建基于MIME类型的呈现器扩展的API
OutputArea.register_mime_type
和Notebook.render_cell_output
方法:研究方法。看见 [mimerender-cookiecutter] 用于参考实现和Cookiecuter的(https://github.com/jupyterlab/mimerender-cookiecutter)。Enable token authentication by default. See
server_security
{.interpreted-text role="ref"} for more details.更新安全文档以反映新的签名系统
从Term.js切换到xTerm.js
错误修复:
如果exc_info为Falsey,请确保设置了变量
在中捕获和记录处理程序异常
events.trigger
为静态文件路径添加调试日志
不检查令牌身份验证请求的来源
删除剩余的打印语句
修复了高亮显示的Python代码块
json_errors
应为API处理程序上的最外层装饰符修复删除旧的nbserver信息文件
修复下载链接上的笔记本MIME类型
修复回车符号行为
固定端子样式
更新文档中的死链接
如果内核损坏,则启动新的会话
允许登录URL重定向时包括跨域检查
其他改进:
允许使用MIME类型的JSON输出数据
application/*+json
允许内核规格中留有空格,以便向后比较
允许从脚本进行WebSocket连接
允许
None
对于POST_SAVE_HOOK将CodeMirror升级到5.21
将xTerm升级到2.1.0
使用逗号的文档
集
dirty
输出到达时的标志集
ws-url
访问笔记本终端时的数据属性为nb扩展添加基本别名
包括
@
CodeMirror IPython模式中的运算符扩展mathjax_url文档字符串
以可预测的顺序加载nb扩展
改进nb扩展的错误消息
允许登录URL重定向时包括跨域检查
请参阅GitHub上的4.3里程碑以获取完整的列表 [issues] (https://github.com/jupyter/notebook/issues?utf8=%E2%9C%93&q=is%3Aissue%20milestone%3A4.3%20)和 [pull requests] (https://github.com/jupyter/notebook/pulls?utf8=%E2%9C%93&q=is%3Apr%20milestone%3A4.3%20)参与了此版本。
4.2.3#
4.2.3是4.2上的一个小错误修复版本。
重点:
修复了4.2.2中的回归问题,该问题会将自定义.js的加载延迟到之后
notebook_loaded
和app_initialized
事件已经触发。修复一些过时的文档和链接。
4.2.2#
4.2.2是4.2上的一个小错误修复版本,带有一个重要的安全修复程序。强烈建议所有用户升级到4.2.2。
重点:
Security fix :CVE-2016-6524,其中不受信任的LaTeX输出可以通过可以执行Java脚本的方式添加到页面。
修复选项响应中缺少的帖子。
修复下载非ASCII文件名的问题。
避免猛烈抨击SSL_OPTIONS,以便用户可以指定更详细的SSL配置。
修复nbconfig中的反向加载顺序,因此用户配置具有最高优先级。
改进了这里和那里的错误消息。
4.2.1#
4.2.1是4.2上的一个小错误修复版本。重点:
某些版本的ipywidget的兼容性修复
修复Windows上被忽略的CSS
修复了安装nb扩展时指定目标的问题
4.2.0#
版本4.2添加了用于启用和安装扩展的新API。扩展现在可以在系统级别启用,而不仅仅是按用户启用。还定义了用于直接从Python包安装的API。
突出显示的更改:
将MathJax升级到2.6,以修复某些公式中出现的竖线。
将笔记本目录还原为根目录的能力(4.1回归)
大输出现在被限制,降低了输出洪水杀死浏览器的能力。
修复了在内核启动时通过对消息进行排队来忽略单元执行的笔记本。
修复终端和编辑页面中URL前缀(例如JupyterHub)的处理。
支持输出中嵌套的SVG。
以及各种其他修复和改进。
4.1.0#
错误修复:
正确收割僵尸子进程
解决跨域问题
FIX-基本URL前缀的双重转义
更优雅地处理无效的Unicode文件名
修复ANSI色彩处理
为Web终端发送保活消息
修复笔记本巡视中的错误
用户界面更改:
将单元格工具栏选择器移动到 View 菜单。在主工具栏上添加了一个触发“提示”动画的按钮,这样用户就可以找到新的位置。(单击此处查看 [screencast] ((https://cloud.githubusercontent.com/assets/335567/10711889/59665a5a-7a3e-11e5-970f-86b89592880c.gif))
已添加重新启动并运行(R) All 发送到 Kernel 菜单。用户还可以将其绑定到操作上的键盘快捷键
restart-kernel-and-run-all-cells
。添加了多个单元格选择。用户按下
Shift-Up/Down
或Shift-K/J
若要在命令模式下扩展选择范围,请执行以下操作。各种操作(如剪切/复制/粘贴、执行和单元格类型转换)适用于所有选定的单元格。添加了一个命令调色板,用于按名称执行Jupyter操作。用户按下
Cmd/Ctrl-Shift-P
或单击工具栏上的新命令调色板图标。添加了_Find和 Replace_ 对话框到 Edit 菜单。用户还可以按
F
在命令模式下显示该对话框。
其他改进:
定制的KernelManager方法可以是Tornado协程,从而允许异步操作。
使用重写输入时,将清除输出设置为可选
set_next_input(replace=True)
。通过以下方式添加了对TLS客户端身份验证的支持
--NotebookApp.client-ca
。将标签添加到
jupyter/notebook
在DockerHub上发布。latest
继续跟踪主分支。
有关以下方面的完整列表,请参阅GitHub上的4.1里程碑 [issues] (https://github.com/jupyter/notebook/issues?page=3&q=milestone%3A4.1+is%3Aclosed+is%3Aissue&utf8=%E2%9C%93)和 [pull requests] 已处理(https://github.com/jupyter/notebook/pulls?q=milestone%3A4.1+is%3Aclosed+is%3Apr)。
4.0.x#
4.0.6#
修复mathjax支持文件的安装
修正了4.0.5中的一些双重转义回归
修复错误可能导致无法打开笔记本的几种情况
4.0.5#
恶意创建的文件的安全修复程序。
[CVE-2015-6938] (http://www.openwall.com/lists/oss-security/2015/09/02/3):恶意文件名
[CVE-2015-7337] 文本编辑器中的(http://www.openwall.com/lists/oss-security/2015/09/16/3):恶意二进制文件。
感谢Quantopian的Jonathan Kamens和Juan Broullón的报道。
4.0.4#
修复Mathjax-Safe扩展的包含
4.0.2#
修复在Windows上启动笔记本电脑的问题
修复前端配置的搜索路径
4.0.0#
笔记本电脑的第一次发布是作为独立的包装。