Skip to content

Commit

Permalink
[hotrod] Bump jquery to 3.7.0 (#4577)
Browse files Browse the repository at this point in the history
## Short description of the changes
- Copy latest version of jquery into hotrod web_assets
- Small fix to rebuild_ui script to pull the latest tags

Signed-off-by: Yuri Shkuro <[email protected]>
  • Loading branch information
yurishkuro authored Jul 11, 2023
1 parent e2057fe commit 6e40173
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/hotrod/services/frontend/web_assets/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<head>
<title>HotROD - Rides On Demand</title>
<script src="./jquery-3.1.1.min.js"></script>
<script src="./code.jquery.com_jquery-3.7.0.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>

Expand Down

This file was deleted.

3 changes: 3 additions & 0 deletions scripts/rebuild-ui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ set -euxf -o pipefail

cd jaeger-ui

git fetch --all --tags
git log --oneline --decorate=full -n 10 | cat

LAST_TAG=$(git describe --tags --dirty 2>/dev/null)

if [[ "$LAST_TAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
Expand Down

0 comments on commit 6e40173

Please sign in to comment.