浏览代码

Update to 1.20.2

zhixin 3 年之前
父节点
当前提交
dddfcf4217
共有 9 个文件被更改,包括 35 次插入7 次删除
  1. 1 1
      .github/ISSUE_TEMPLATE/1_Bug_report.yaml
  2. 13 0
      CHANGELOG.md
  3. 1 1
      _config.yml
  4. 1 1
      bootstrap-table.jquery.json
  5. 1 1
      package.json
  6. 15 0
      site/news.md
  7. 1 1
      src/bootstrap-table.js
  8. 1 1
      src/bootstrap-table.scss
  9. 1 1
      src/constants/index.js

+ 1 - 1
.github/ISSUE_TEMPLATE/1_Bug_report.yaml

@@ -7,7 +7,7 @@ body:
     id: affected-versions
     id: affected-versions
     attributes:
     attributes:
       label: Bootstraptable version(s) affected
       label: Bootstraptable version(s) affected
-      placeholder: 1.20.1
+      placeholder: 1.20.2
     validations:
     validations:
       required: true
       required: true
   - type: textarea
   - type: textarea

+ 13 - 0
CHANGELOG.md

@@ -1,6 +1,19 @@
 ChangeLog
 ChangeLog
 ---------
 ---------
 
 
+### 1.20.2
+
+#### Core
+
+- **Update:** Fixed small memory leak.
+- **Update:** Fixed the detail view bug with the `td` instead of `icon`.
+
+#### Extensions
+
+- **Update(export):** Fixed XSS vulnerability bug by onCellHtmlData.
+- **Update(export):** Fixed export footer bug without setting height.
+- **Update(filter-control):** Fixed the comparison of dates when using the `datepicker`.
+
 ### 1.20.1
 ### 1.20.1
 
 
 #### Core
 #### Core

+ 1 - 1
_config.yml

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

+ 1 - 1
bootstrap-table.jquery.json

@@ -1,6 +1,6 @@
 {
 {
   "name": "bootstrap-table",
   "name": "bootstrap-table",
-  "version": "1.20.1",
+  "version": "1.20.2",
   "title": "Bootstrap Table",
   "title": "Bootstrap Table",
   "description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
   "description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
   "author": {
   "author": {

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
 {
   "name": "bootstrap-table",
   "name": "bootstrap-table",
   "description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
   "description": "An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)",
-  "version": "1.20.1",
+  "version": "1.20.2",
   "style": "dist/bootstrap-table.min.css",
   "style": "dist/bootstrap-table.min.css",
   "sass": "src/bootstrap-table.scss",
   "sass": "src/bootstrap-table.scss",
   "main": "dist/bootstrap-table.min.js",
   "main": "dist/bootstrap-table.min.js",

+ 15 - 0
site/news.md

@@ -4,6 +4,21 @@ title: News
 description: News and announcements for all things Bootstrap Table, including new releases.
 description: News and announcements for all things Bootstrap Table, including new releases.
 ---
 ---
 
 
+## Bootstrap Table 1.20.2
+
+<span class="post-date">25 May 2022</span>
+
+#### Core
+
+- **Update:** Fixed small memory leak.
+- **Update:** Fixed the detail view bug with the `td` instead of `icon`.
+
+#### Extensions
+
+- **Update(export):** Fixed XSS vulnerability bug by onCellHtmlData.
+- **Update(export):** Fixed export footer bug without setting height.
+- **Update(filter-control):** Fixed the comparison of dates when using the `datepicker`.
+
 ## Bootstrap Table 1.20.1
 ## Bootstrap Table 1.20.1
 
 
 <span class="post-date">12 May 2022</span>
 <span class="post-date">12 May 2022</span>

+ 1 - 1
src/bootstrap-table.js

@@ -1,6 +1,6 @@
 /**
 /**
  * @author zhixin wen <wenzhixin2010@gmail.com>
  * @author zhixin wen <wenzhixin2010@gmail.com>
- * version: 1.20.1
+ * version: 1.20.2
  * https://github.com/wenzhixin/bootstrap-table/
  * https://github.com/wenzhixin/bootstrap-table/
  */
  */
 
 

+ 1 - 1
src/bootstrap-table.scss

@@ -1,6 +1,6 @@
 /**
 /**
  * @author zhixin wen <wenzhixin2010@gmail.com>
  * @author zhixin wen <wenzhixin2010@gmail.com>
- * version: 1.20.1
+ * version: 1.20.2
  * https://github.com/wenzhixin/bootstrap-table/
  * https://github.com/wenzhixin/bootstrap-table/
  */
  */
 
 

+ 1 - 1
src/constants/index.js

@@ -1,7 +1,7 @@
 /* eslint-disable no-unused-vars */
 /* eslint-disable no-unused-vars */
 import Utils from '../utils/index.js'
 import Utils from '../utils/index.js'
 
 
-const VERSION = '1.20.1'
+const VERSION = '1.20.2'
 
 
 const bootstrapVersion = Utils.getBootstrapVersion()
 const bootstrapVersion = Utils.getBootstrapVersion()