Skip to content

Commit

Permalink
Updated the highlight.js version
Browse files Browse the repository at this point in the history
* Updated the `highlight.js` version for node_modules and CDN links in templates

* Update templete CSS for request/response body
  • Loading branch information
DannyDainton committed Nov 20, 2020
1 parent f1be432 commit f09b78d
Show file tree
Hide file tree
Showing 5 changed files with 605 additions and 561 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

-----------------------------------------------------------------------
## [1.19.5] - 2020-11-20

### Fixed

- Updated the `highlight.js` version for node_modules and CDN links in templates

-----------------------------------------------------------------------

## [1.19.4] - 2020-10-13

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions lib/dashboard-template.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>{{browserTitle}}</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/styles/github-gist.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.2/styles/default.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/v/bs4/dt-1.10.18/datatables.min.css"/>

<style>
Expand Down Expand Up @@ -112,7 +112,7 @@ body.theme-dark .bg-light>td {
}
body.theme-dark .hljs {
background: #0f0f0f82!important;
background: #0a0a0ab0!important;
color: #8d8787!important;
}
Expand Down Expand Up @@ -1191,7 +1191,7 @@ table.dataTable td, table.dataTable tr {
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/remarkable/1.7.1/remarkable.min.js"></script>
{{#eq noSyntaxHighlighting false}}
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.2/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
{{/eq}}

Expand Down
6 changes: 3 additions & 3 deletions lib/only-failures-dashboard.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>{{browserTitle}}</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/styles/github-gist.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.2/styles/default.min.css">
<link rel="stylesheet" href="https://cdn.datatables.net/v/bs4/dt-1.10.18/datatables.min.css"/>


Expand Down Expand Up @@ -113,7 +113,7 @@ body.theme-dark .bg-light>td {
}
body.theme-dark .hljs {
background: #0f0f0f82!important;
background: #0a0a0ab0!important;
color: #8d8787!important;
}
Expand Down Expand Up @@ -1183,7 +1183,7 @@ table.dataTable td, table.dataTable tr {
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/remarkable/1.7.1/remarkable.min.js"></script>
{{#eq noSyntaxHighlighting false}}
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.13.1/highlight.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.2/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
{{/eq}}

Expand Down

0 comments on commit f09b78d

Please sign in to comment.