Skip to content

Commit

Permalink
fix/jupyterlab
Browse files Browse the repository at this point in the history
  • Loading branch information
dweinholz committed Nov 9, 2023
1 parent 011b5bf commit 936d599
Show file tree
Hide file tree
Showing 2 changed files with 99 additions and 86 deletions.
16 changes: 10 additions & 6 deletions jupyterlab/jupyterlab_env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ channels:
- defaults
- anaconda
dependencies:
- notebook
- jupyter_contrib_nbextensions
- ipykernel
- widgetsnbextension
- ipyparallel
- jupyterlab
# renovate datasource=conda depName=conda-forge/notebook
- notebook=7.0.6
# renovate datasource=conda depName=conda-forge/ipykernel
- ipykernel=6.26.0
# renovate datasource=conda depName=conda-forge/widgetsnbextension
- widgetsnbextension=4.0.9
# renovate datasource=conda depName=conda-forge/ipyparallel
- ipyparallel=8.6.1
# renovate datasource=conda depName=conda-forge/jupyterlab
- jupyterlab=4.0.8
169 changes: 89 additions & 80 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,83 +1,92 @@
{
"extends":[
"config:base",
":automergePatch"
],
"platform":"github",
"regexManagers":[
{
"fileMatch":[
"guacamole/roles/guacamole/vars/main\\.yml",
"guacamole/guacamole_metadata\\.yml"
],
"matchStrings":[
"guacamole_version: (?<currentValue>.*?)\\n",
"version: (?<currentValue>.*?)\\n"
],
"depNameTemplate":"apache/guacamole-server",
"datasourceTemplate":"github-tags"
},
{
"fileMatch":[
"rstudio/rstudio_vars_file\\.yml",
"rstudio/rstudio_metadata\\.yml"
],
"matchStrings":[
"RSTUDIO_VERSION: (?<currentValue>.*?)\\n",
"version: (?<currentValue>.*?)\\n"
],
"depNameTemplate":"rstudio/rstudio",
"datasourceTemplate":"github-tags",
"versioningTemplate":"regex:v(?<major>20\\d\\d)\\.(?<minor>\\d\\d)\\.(?<patch>\\d)\\+\\d*"
},
{
"fileMatch":[
"vscode/vscode_vars_file\\.yml",
"vscode/vscode_metadata\\.yml",
"vscode_cwl/vscode_cwl_metadata\\.yml"
],
"matchStrings":[
"VSCODE_VERSION: (?<currentValue>.*?)\\n",
"version: (?<currentValue>.*?)\\n"
],
"depNameTemplate":"coder/code-server",
"datasourceTemplate":"github-tags"
}
],
"packageRules":[
{
"matchUpdateTypes":[
"major",
"minor",
"patch"
],
"addLabels":[
"major",
"minor",
"patch"
]
}
],
"vulnerabilityAlerts":{
"labels":[
"security"
"extends": [
"config:base",
":automergePatch"
],
"platform": "github",
"regexManagers": [
{
"fileMatch": [
"guacamole/roles/guacamole/vars/main\\.yml",
"guacamole/guacamole_metadata\\.yml"
],
"matchStrings": [
"guacamole_version: (?<currentValue>.*?)\\n",
"version: (?<currentValue>.*?)\\n"
],
"depNameTemplate": "apache/guacamole-server",
"datasourceTemplate": "github-tags"
},
{
"fileMatch": [
"rstudio/rstudio_vars_file\\.yml",
"rstudio/rstudio_metadata\\.yml"
],
"matchStrings": [
"RSTUDIO_VERSION: (?<currentValue>.*?)\\n",
"version: (?<currentValue>.*?)\\n"
],
"depNameTemplate": "rstudio/rstudio",
"datasourceTemplate": "github-tags",
"versioningTemplate": "regex:v(?<major>20\\d\\d)\\.(?<minor>\\d\\d)\\.(?<patch>\\d)\\+\\d*"
},
{
"fileMatch": [
"vscode/vscode_vars_file\\.yml",
"vscode/vscode_metadata\\.yml",
"vscode_cwl/vscode_cwl_metadata\\.yml"
],
"matchStrings": [
"VSCODE_VERSION: (?<currentValue>.*?)\\n",
"version: (?<currentValue>.*?)\\n"
],
"depNameTemplate": "coder/code-server",
"datasourceTemplate": "github-tags"
},
{
"fileMatch": [
"jupyterlab/jupyterlab_env\\.yml"
],
"matchStrings": [
"# renovate datasource=conda\\sdepName=(?<depName>.*?)\\s+- [a-z0-9]+==\"?(?<currentValue>.*)\"?"
],
"datasourceTemplate": "conda"
}
],
"packageRules": [
{
"matchUpdateTypes": [
"major",
"minor",
"patch"
],
"addLabels": [
"major",
"minor",
"patch"
]
},
"baseBranches":[
"dev"
],
"reviewers":[
"team:portal-dev"
],
"labels":[
"dependencies"
],
"assignees":[
"team:portal-dev"
],
"branchPrefix":"deps/",
"bumpVersion":"minor",
"rebaseWhen":"behind-base-branch",
"commitBodyTable":true,
"commitMessagePrefix":"feat(Dependencies):"
}
],
"vulnerabilityAlerts": {
"labels": [
"security"
]
},
"baseBranches": [
"dev"
],
"reviewers": [
"team:portal-dev"
],
"labels": [
"dependencies"
],
"assignees": [
"team:portal-dev"
],
"branchPrefix": "deps/",
"bumpVersion": "minor",
"rebaseWhen": "behind-base-branch",
"commitBodyTable": true,
"commitMessagePrefix": "feat(Dependencies):"
}

0 comments on commit 936d599

Please sign in to comment.