Skip to content

Commit

Permalink
Update jQuery to remediate CVEs (#2885)
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Nov 16, 2021
1 parent dee4555 commit a60bca2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion panel/models/plotly.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class PlotlyPlot(LayoutDOM):
"""

__javascript_raw__ = [
'https://code.jquery.com/jquery-3.4.1.min.js',
'https://code.jquery.com/jquery-3.5.1.min.js',
'https://cdn.plot.ly/plotly-latest.min.js'
]

Expand Down
2 changes: 1 addition & 1 deletion panel/template/bootstrap/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class BootstrapTemplate(BasicTemplate):
'bootstrap': "https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
},
'js': {
'jquery': "https://code.jquery.com/jquery-3.4.1.slim.min.js",
'jquery': "https://code.jquery.com/jquery-3.5.1.slim.min.js",
'bootstrap': "https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js",
}
}
Expand Down
2 changes: 1 addition & 1 deletion panel/template/golden/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class GoldenTemplate(BasicTemplate):
'goldenlayout': "https://golden-layout.com/files/latest/css/goldenlayout-base.css",
},
'js': {
'jquery': "http://code.jquery.com/jquery-1.11.1.min.js",
'jquery': "http://code.jquery.com/jquery-3.5.1.min.js",
'goldenlayout': "https://golden-layout.com/files/latest/js/goldenlayout.js"
}
}
Expand Down

0 comments on commit a60bca2

Please sign in to comment.