Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix CVE 2019 8331 #75

Merged
merged 2 commits into from
Mar 27, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "willow-bootstrap",
"version": "11.1.0",
"version": "11.1.1",
"author": "Buenos Aires Smalltalk contributors",
"license": "MIT",
"dependencies": {
"bootstrap": "3.4.0",
"bootstrap": "3.4.1",
"bootstrap-select": "1.12.4",
"bootstrap-datepicker": "1.8.0",
"bootstrap-3-typeahead": "4.0.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ Bootstrap3DeploymentMetadataLibraryTest >> testDeployFiles [

self
assertFileDeploymentOf: Bootstrap3DeploymentMetadataLibrary default
createsAsFolders: #('bootstrap-3.4.0' 'bootstrap-3.4.0/css' 'bootstrap-3.4.0/fonts' 'bootstrap-3.4.0/js')
createsAsFolders: #('bootstrap-3.4.1' 'bootstrap-3.4.1/css' 'bootstrap-3.4.1/fonts' 'bootstrap-3.4.1/js')
andFileContentsMatching:
{('bootstrap-3.4.0/css/bootstrap-theme.min.css' -> 'c78ec6842414030452bed01be25c8275d01dfca6').
('bootstrap-3.4.0/css/bootstrap-theme.min.css.map' -> '7b6da59686964ae3dbff87da24c997e92f560415').
('bootstrap-3.4.0/css/bootstrap.min.css' -> 'b51d0bf0bd3fd71be76bdd916f7f2c463f1e1ecf').
('bootstrap-3.4.0/css/bootstrap.min.css.map' -> '47b894ffa73197d69d22959400934b2199df7170').
('bootstrap-3.4.0/fonts/glyphicons-halflings-regular.eot' -> '86b6f62b7853e67d3e635f6512a5a5efc58ea3c3').
('bootstrap-3.4.0/fonts/glyphicons-halflings-regular.svg' -> 'de51a8494180a6db074af2dee2383f0a363c5b08').
('bootstrap-3.4.0/fonts/glyphicons-halflings-regular.ttf' -> '44bc1850f570972267b169ae18f1cb06b611ffa2').
('bootstrap-3.4.0/fonts/glyphicons-halflings-regular.woff' -> '278e49a86e634da6f2a02f3b47dd9d2a8f26210f').
('bootstrap-3.4.0/fonts/glyphicons-halflings-regular.woff2' -> 'ca35b697d99cae4d1b60f2d60fcd37771987eb07').
('bootstrap-3.4.0/js/bootstrap.min.js' -> '58c59c52f2bcc6eff6e21569a76014b9bfa6913b')}
{('bootstrap-3.4.1/css/bootstrap-theme.min.css' -> 'bff11cfea2b2bc5dcaffa073e68158cceb94b5bc').
('bootstrap-3.4.1/css/bootstrap-theme.min.css.map' -> '13e3ce0a2d2da5a962050b9a0ea6c67c376b3616').
('bootstrap-3.4.1/css/bootstrap.min.css' -> '4cdcc5689dc661b606a0fca00c21fec74481f560').
('bootstrap-3.4.1/css/bootstrap.min.css.map' -> '63c6119052abd1f848ee51657ce892a78d019c06').
('bootstrap-3.4.1/fonts/glyphicons-halflings-regular.eot' -> '86b6f62b7853e67d3e635f6512a5a5efc58ea3c3').
('bootstrap-3.4.1/fonts/glyphicons-halflings-regular.svg' -> 'de51a8494180a6db074af2dee2383f0a363c5b08').
('bootstrap-3.4.1/fonts/glyphicons-halflings-regular.ttf' -> '44bc1850f570972267b169ae18f1cb06b611ffa2').
('bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff' -> '278e49a86e634da6f2a02f3b47dd9d2a8f26210f').
('bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff2' -> 'ca35b697d99cae4d1b60f2d60fcd37771987eb07').
('bootstrap-3.4.1/js/bootstrap.min.js' -> 'c958648ed73daa1323aaf9876d2fe34e6c154b7e')}
]

{ #category : #tests }
Expand All @@ -47,7 +47,7 @@ Bootstrap3DeploymentMetadataLibraryTest >> testUpdateRoot [
self
assert: html
equals:
'<html><head><title></title><link rel="stylesheet" type="text/css" href="/files/bootstrap-3.4.0/css/bootstrap.min.css"/><link rel="stylesheet" type="text/css" href="/files/bootstrap-3.4.0/css/bootstrap-theme.min.css"/><script type="text/javascript" src="/files/bootstrap-3.4.0/js/bootstrap.min.js"></script></head><body onload="onLoad()"><script type="text/javascript">function onLoad(){};</script></body></html>'
'<html><head><title></title><link rel="stylesheet" type="text/css" href="/files/bootstrap-3.4.1/css/bootstrap.min.css"/><link rel="stylesheet" type="text/css" href="/files/bootstrap-3.4.1/css/bootstrap-theme.min.css"/><script type="text/javascript" src="/files/bootstrap-3.4.1/js/bootstrap.min.js"></script></head><body onload="onLoad()"><script type="text/javascript">function onLoad(){};</script></body></html>'
]

{ #category : #tests }
Expand All @@ -63,5 +63,5 @@ Bootstrap3DeploymentMetadataLibraryTest >> testUpdateRootWithoutOptionalTheme [
self
assert: html
equals:
'<html><head><title></title><link rel="stylesheet" type="text/css" href="/files/bootstrap-3.4.0/css/bootstrap.min.css"/><script type="text/javascript" src="/files/bootstrap-3.4.0/js/bootstrap.min.js"></script></head><body onload="onLoad()"><script type="text/javascript">function onLoad(){};</script></body></html>'
'<html><head><title></title><link rel="stylesheet" type="text/css" href="/files/bootstrap-3.4.1/css/bootstrap.min.css"/><script type="text/javascript" src="/files/bootstrap-3.4.1/js/bootstrap.min.js"></script></head><body onload="onLoad()"><script type="text/javascript">function onLoad(){};</script></body></html>'
]
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ Bootstrap3DevelopmentMetadataLibraryTest >> testDeployFiles [

self
assertFileDeploymentOf: Bootstrap3DevelopmentMetadataLibrary default
createsAsFolders: #('bootstrap-3.4.0' 'bootstrap-3.4.0/css' 'bootstrap-3.4.0/fonts' 'bootstrap-3.4.0/js')
createsAsFolders: #('bootstrap-3.4.1' 'bootstrap-3.4.1/css' 'bootstrap-3.4.1/fonts' 'bootstrap-3.4.1/js')
andFileContentsMatching:
{('bootstrap-3.4.0/css/bootstrap-theme.css' -> '98f12eae6541f4f2405fc1928e4e9c56c08c1d70').
('bootstrap-3.4.0/css/bootstrap-theme.css.map' -> '47ddf09ecdeb7ef9c105e0a626c5b159e1bb64e1').
('bootstrap-3.4.0/css/bootstrap.css' -> '612436c5985c58074c11645e856ba4cfd9552dbe').
('bootstrap-3.4.0/css/bootstrap.css.map' -> '9fa2bda3c1c5737db82073c722aadb4cd91f4e6b').
('bootstrap-3.4.0/fonts/glyphicons-halflings-regular.eot' -> '86b6f62b7853e67d3e635f6512a5a5efc58ea3c3').
('bootstrap-3.4.0/fonts/glyphicons-halflings-regular.svg' -> 'de51a8494180a6db074af2dee2383f0a363c5b08').
('bootstrap-3.4.0/fonts/glyphicons-halflings-regular.ttf' -> '44bc1850f570972267b169ae18f1cb06b611ffa2').
('bootstrap-3.4.0/fonts/glyphicons-halflings-regular.woff' -> '278e49a86e634da6f2a02f3b47dd9d2a8f26210f').
('bootstrap-3.4.0/fonts/glyphicons-halflings-regular.woff2' -> 'ca35b697d99cae4d1b60f2d60fcd37771987eb07').
('bootstrap-3.4.0/js/bootstrap.js' -> 'e61f1ff9165b85e99405fe5b4ae8fc1a8ade2c63')}
{('bootstrap-3.4.1/css/bootstrap-theme.css' -> 'e1edd5ab9dd143566085933d6101eea095e22f94').
('bootstrap-3.4.1/css/bootstrap-theme.css.map' -> 'c7480814f50a27a02502df89cd9c679cf3341405').
('bootstrap-3.4.1/css/bootstrap.css' -> '97adbe85e07d5d147e3131fad7a88b8bb83b0d66').
('bootstrap-3.4.1/css/bootstrap.css.map' -> 'b08e098d10fa20a8f0ecdf24f3716ecd68826e34').
('bootstrap-3.4.1/fonts/glyphicons-halflings-regular.eot' -> '86b6f62b7853e67d3e635f6512a5a5efc58ea3c3').
('bootstrap-3.4.1/fonts/glyphicons-halflings-regular.svg' -> 'de51a8494180a6db074af2dee2383f0a363c5b08').
('bootstrap-3.4.1/fonts/glyphicons-halflings-regular.ttf' -> '44bc1850f570972267b169ae18f1cb06b611ffa2').
('bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff' -> '278e49a86e634da6f2a02f3b47dd9d2a8f26210f').
('bootstrap-3.4.1/fonts/glyphicons-halflings-regular.woff2' -> 'ca35b697d99cae4d1b60f2d60fcd37771987eb07').
('bootstrap-3.4.1/js/bootstrap.js' -> '6b58c6d4f074119651b9fb8198ff87c7388fb4ca')}
]

{ #category : #tests }
Expand Down Expand Up @@ -55,7 +55,7 @@ Bootstrap3DevelopmentMetadataLibraryTest >> testUpdateRoot [
self
assert: html
equals:
'<html><head><title></title><link rel="stylesheet" type="text/css" href="/files/bootstrap-3.4.0/css/bootstrap.css"/><link rel="stylesheet" type="text/css" href="/files/bootstrap-3.4.0/css/bootstrap-theme.css"/><script type="text/javascript" src="/files/bootstrap-3.4.0/js/bootstrap.js"></script></head><body onload="onLoad()"><script type="text/javascript">function onLoad(){};</script></body></html>'
'<html><head><title></title><link rel="stylesheet" type="text/css" href="/files/bootstrap-3.4.1/css/bootstrap.css"/><link rel="stylesheet" type="text/css" href="/files/bootstrap-3.4.1/css/bootstrap-theme.css"/><script type="text/javascript" src="/files/bootstrap-3.4.1/js/bootstrap.js"></script></head><body onload="onLoad()"><script type="text/javascript">function onLoad(){};</script></body></html>'
]

{ #category : #tests }
Expand All @@ -71,5 +71,5 @@ Bootstrap3DevelopmentMetadataLibraryTest >> testUpdateRootWithoutOptionalTheme [
self
assert: html
equals:
'<html><head><title></title><link rel="stylesheet" type="text/css" href="/files/bootstrap-3.4.0/css/bootstrap.css"/><script type="text/javascript" src="/files/bootstrap-3.4.0/js/bootstrap.js"></script></head><body onload="onLoad()"><script type="text/javascript">function onLoad(){};</script></body></html>'
'<html><head><title></title><link rel="stylesheet" type="text/css" href="/files/bootstrap-3.4.1/css/bootstrap.css"/><script type="text/javascript" src="/files/bootstrap-3.4.1/js/bootstrap.js"></script></head><body onload="onLoad()"><script type="text/javascript">function onLoad(){};</script></body></html>'
]
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Bootstrap3OnlineLibraryTest >> testUpdateRoot [

self
assert: html
equals:
'<html><head><title></title><link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css" integrity="sha384-PmY9l28YgO4JwMKbTvgaS7XNZJ30MK9FAZjjzXtlqyZCqBY6X6bXIkM++IkyinN+" crossorigin="anonymous"/><link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap-theme.min.css" integrity="sha384-jzngWsPS6op3fgRCDTESqrEJwRKck+CILhJVO5VvaAZCq8JYf8HsR/HPpBOOPZfR" crossorigin="anonymous"/><script type="text/javascript" src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js" integrity="sha384-vhJnz1OVIdLktyixHY4Uk3OHEwdQqPppqYR8+5mjsauETgLOcEynD9oPHhhz18Nw" crossorigin="anonymous"></script></head><body onload="onLoad()"><script type="text/javascript">function onLoad(){};</script></body></html>'
equals: '<html><head><title></title><link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous"/><link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap-theme.min.css" integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous"/><script type="text/javascript" src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script></head><body onload="onLoad()"><script type="text/javascript">function onLoad(){};</script></body></html>'

]

{ #category : #'tests-Updating' }
Expand All @@ -35,6 +35,6 @@ Bootstrap3OnlineLibraryTest >> testUpdateRootWithoutOptionalTheme [

self
assert: html
equals:
'<html><head><title></title><link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css" integrity="sha384-PmY9l28YgO4JwMKbTvgaS7XNZJ30MK9FAZjjzXtlqyZCqBY6X6bXIkM++IkyinN+" crossorigin="anonymous"/><script type="text/javascript" src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js" integrity="sha384-vhJnz1OVIdLktyixHY4Uk3OHEwdQqPppqYR8+5mjsauETgLOcEynD9oPHhhz18Nw" crossorigin="anonymous"></script></head><body onload="onLoad()"><script type="text/javascript">function onLoad(){};</script></body></html>'
equals: '<html><head><title></title><link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous"/><script type="text/javascript" src="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script></head><body onload="onLoad()"><script type="text/javascript">function onLoad(){};</script></body></html>'

]
Loading