Skip to content

Commit dddfcf4

Browse files
committed
Update to 1.20.2
1 parent 65056ec commit dddfcf4

File tree

9 files changed

+35
-7
lines changed

9 files changed

+35
-7
lines changed

.github/ISSUE_TEMPLATE/1_Bug_report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body:
77
id: affected-versions
88
attributes:
99
label: Bootstraptable version(s) affected
10-
placeholder: 1.20.1
10+
placeholder: 1.20.2
1111
validations:
1212
required: true
1313
- type: textarea

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
ChangeLog
22
---------
33

4+
### 1.20.2
5+
6+
#### Core
7+
8+
- **Update:** Fixed small memory leak.
9+
- **Update:** Fixed the detail view bug with the `td` instead of `icon`.
10+
11+
#### Extensions
12+
13+
- **Update(export):** Fixed XSS vulnerability bug by onCellHtmlData.
14+
- **Update(export):** Fixed export footer bug without setting height.
15+
- **Update(filter-control):** Fixed the comparison of dates when using the `datepicker`.
16+
417
### 1.20.1
518

619
#### Core

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ algolia:
2727
index_name: bootstrap-table
2828

2929
# Custom variables
30-
current_version: 1.20.1
30+
current_version: 1.20.2
3131
title: "Bootstrap Table"
3232
description: "An extended table to the integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)"
3333
authors: "Zhixin Wen, and Bootstrap Table contributors"

bootstrap-table.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-table",
3-
"version": "1.20.1",
3+
"version": "1.20.2",
44
"title": "Bootstrap Table",
55
"description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
66
"author": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "bootstrap-table",
33
"description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
4-
"version": "1.20.1",
4+
"version": "1.20.2",
55
"style": "dist/bootstrap-table.min.css",
66
"sass": "src/bootstrap-table.scss",
77
"main": "dist/bootstrap-table.min.js",

site/news.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ title: News
44
description: News and announcements for all things Bootstrap Table, including new releases.
55
---
66

7+
## Bootstrap Table 1.20.2
8+
9+
<span class="post-date">25 May 2022</span>
10+
11+
#### Core
12+
13+
- **Update:** Fixed small memory leak.
14+
- **Update:** Fixed the detail view bug with the `td` instead of `icon`.
15+
16+
#### Extensions
17+
18+
- **Update(export):** Fixed XSS vulnerability bug by onCellHtmlData.
19+
- **Update(export):** Fixed export footer bug without setting height.
20+
- **Update(filter-control):** Fixed the comparison of dates when using the `datepicker`.
21+
722
## Bootstrap Table 1.20.1
823

924
<span class="post-date">12 May 2022</span>

src/bootstrap-table.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @author zhixin wen <[email protected]>
3-
* version: 1.20.1
3+
* version: 1.20.2
44
* https://github.com/wenzhixin/bootstrap-table/
55
*/
66

src/bootstrap-table.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @author zhixin wen <[email protected]>
3-
* version: 1.20.1
3+
* version: 1.20.2
44
* https://github.com/wenzhixin/bootstrap-table/
55
*/
66

src/constants/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable no-unused-vars */
22
import Utils from '../utils/index.js'
33

4-
const VERSION = '1.20.1'
4+
const VERSION = '1.20.2'
55

66
const bootstrapVersion = Utils.getBootstrapVersion()
77

0 commit comments

Comments
 (0)