Skip to content

Commit b6e3a22

Browse files
authored
added jQuery 3.7.1 support & dropped previous version (#9094)
* added jQuery 3.7.1 support & dropped previous version * added jQuery 3.7.1 support & dropped previous version
1 parent 5a01a4c commit b6e3a22

File tree

7 files changed

+6
-8
lines changed

7 files changed

+6
-8
lines changed

rest_framework/static/rest_framework/js/jquery-3.5.1.min.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

rest_framework/static/rest_framework/js/jquery-3.6.4.min.js

Lines changed: 0 additions & 2 deletions
This file was deleted.

rest_framework/static/rest_framework/js/jquery-3.7.1.min.js

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rest_framework/templates/rest_framework/admin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ <h4 class="modal-title" id="myModalLabel">{{ error_title }}</h4>
250250
"csrfToken": "{{ csrf_token }}"
251251
}
252252
</script>
253-
<script src="{% static "rest_framework/js/jquery-3.6.4.min.js" %}"></script>
253+
<script src="{% static "rest_framework/js/jquery-3.7.1.min.js" %}"></script>
254254
<script src="{% static "rest_framework/js/ajax-form.js" %}"></script>
255255
<script src="{% static "rest_framework/js/csrf.js" %}"></script>
256256
<script src="{% static "rest_framework/js/bootstrap.min.js" %}"></script>

rest_framework/templates/rest_framework/base.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ <h1>{{ name }}</h1>
293293
"csrfToken": "{% if request %}{{ csrf_token }}{% endif %}"
294294
}
295295
</script>
296-
<script src="{% static "rest_framework/js/jquery-3.6.4.min.js" %}"></script>
296+
<script src="{% static "rest_framework/js/jquery-3.7.1.min.js" %}"></script>
297297
<script src="{% static "rest_framework/js/ajax-form.js" %}"></script>
298298
<script src="{% static "rest_framework/js/csrf.js" %}"></script>
299299
<script src="{% static "rest_framework/js/bootstrap.min.js" %}"></script>

rest_framework/templates/rest_framework/docs/error.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ <h2>Overriding this template</h2>
6666

6767

6868

69-
<script src="{% static 'rest_framework/js/jquery-3.6.4.min.js' %}"></script>
69+
<script src="{% static 'rest_framework/js/jquery-3.7.1.min.js' %}"></script>
7070
</body>
7171
</html>

rest_framework/templates/rest_framework/docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
{% include "rest_framework/docs/auth/basic.html" %}
3939
{% include "rest_framework/docs/auth/session.html" %}
4040

41-
<script src="{% static 'rest_framework/js/jquery-3.6.4.min.js' %}"></script>
41+
<script src="{% static 'rest_framework/js/jquery-3.7.1.min.js' %}"></script>
4242
<script src="{% static 'rest_framework/js/bootstrap.min.js' %}"></script>
4343
<script src="{% static 'rest_framework/docs/js/jquery.json-view.min.js' %}"></script>
4444
<script src="{% static 'rest_framework/docs/js/api.js' %}"></script>

0 commit comments

Comments
 (0)