Skip to content

Commit 9cd88c6

Browse files
committed
release v1.14.0-beta
1 parent 75f2eb6 commit 9cd88c6

File tree

94 files changed

+691
-342
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+691
-342
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
# v1.14.0-beta (2020-11-28)
2+
3+
### New Features
4+
- [#899]: Ajax/JSON data source support
5+
- [#1315]: Reset select element when `form.reset()` is called
6+
- [#1416], [#2147]: Using `title` to set the select's placeholder has been deprecated. Use `placeholder` instead. `title` will no longer set the placeholder starting in v2.0.0. `title` and `placeholder` can still be used together to support a placeholder and a custom title.
7+
- [#1449]: Add `allowClear` option to support deselecting the value for single selects
8+
- [#1893]: Add `open` and `close` methods
9+
- [#2042]: Support assigning a function to `liveSearchStyle` for custom filtering
10+
11+
### Bug Fixes
12+
- [#2507]: Placeholder doesn't work when the first option is disabled
13+
14+
### Breaking Changes
15+
- [#1709]: use DOMContentLoaded event listener to auto-init bootstrap-select (performance boost)
16+
- [#2259]: Drop IE8 support
17+
18+
[#899]: https://github.com/snapappointments/bootstrap-select/issues/899
19+
[#1315]: https://github.com/snapappointments/bootstrap-select/issues/1315
20+
[#1416]: https://github.com/snapappointments/bootstrap-select/issues/1416
21+
[#2147]: https://github.com/snapappointments/bootstrap-select/issues/2147
22+
[#1449]: https://github.com/snapappointments/bootstrap-select/issues/1449
23+
[#1893]: https://github.com/snapappointments/bootstrap-select/issues/1893
24+
[#2042]: https://github.com/snapappointments/bootstrap-select/issues/2042
25+
[#2507]: https://github.com/snapappointments/bootstrap-select/issues/2507
26+
[#1709]: https://github.com/snapappointments/bootstrap-select/issues/1709
27+
[#2259]: https://github.com/snapappointments/bootstrap-select/issues/2259
28+
29+
-------------------
30+
131
# v1.13.18 (2020-06-26)
232
### Bug Fixes
333
- [#1342]: Bootstrap select doesn't send field data on form submit (set form attribute on select element to fix)

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Bootstrap-select requires jQuery v1.9.1+, Bootstrap’s dropdown.js component, a
4646

4747
Several quick start options are available:
4848

49-
- [Download the latest release.](https://github.com/snapappointments/bootstrap-select/archive/v1.13.18.zip)
49+
- [Download the latest release.](https://github.com/snapappointments/bootstrap-select/archive/v1.14.0-beta.zip)
5050
- Clone the repo: `git clone https://github.com/snapappointments/bootstrap-select.git`
5151
- Install with [npm](https://www.npmjs.com/package/bootstrap-select): `npm install bootstrap-select`
5252
- Install with [yarn](https://yarnpkg.com/package/bootstrap-select): `yarn add bootstrap-select`
@@ -57,13 +57,13 @@ Several quick start options are available:
5757

5858
```html
5959
<!-- Latest compiled and minified CSS -->
60-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.18/dist/css/bootstrap-select.min.css">
60+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-select@1.14.0-beta/dist/css/bootstrap-select.min.css">
6161

6262
<!-- Latest compiled and minified JavaScript -->
63-
<script src="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.18/dist/js/bootstrap-select.min.js"></script>
63+
<script src="https://cdn.jsdelivr.net/npm/bootstrap-select@1.14.0-beta/dist/js/bootstrap-select.min.js"></script>
6464

6565
<!-- (Optional) Latest compiled and minified JavaScript translation files -->
66-
<script src="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.18/dist/js/i18n/defaults-*.min.js"></script>
66+
<script src="https://cdn.jsdelivr.net/npm/bootstrap-select@1.14.0-beta/dist/js/i18n/defaults-*.min.js"></script>
6767
```
6868
> The CDN is updated after the release is made public, which means that there is a delay between the publishing of a release and its availability on the CDN.
6969

dist/css/bootstrap-select.css

Lines changed: 22 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/bootstrap-select.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/css/bootstrap-select.min.css

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

0 commit comments

Comments
 (0)