Skip to content

Commit

Permalink
release v1.14.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyjhol committed Nov 29, 2020
1 parent 75f2eb6 commit 9cd88c6
Show file tree
Hide file tree
Showing 94 changed files with 691 additions and 342 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,33 @@
# v1.14.0-beta (2020-11-28)

### New Features
- [#899]: Ajax/JSON data source support
- [#1315]: Reset select element when `form.reset()` is called
- [#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.
- [#1449]: Add `allowClear` option to support deselecting the value for single selects
- [#1893]: Add `open` and `close` methods
- [#2042]: Support assigning a function to `liveSearchStyle` for custom filtering

### Bug Fixes
- [#2507]: Placeholder doesn't work when the first option is disabled

### Breaking Changes
- [#1709]: use DOMContentLoaded event listener to auto-init bootstrap-select (performance boost)
- [#2259]: Drop IE8 support

[#899]: https://github.com/snapappointments/bootstrap-select/issues/899
[#1315]: https://github.com/snapappointments/bootstrap-select/issues/1315
[#1416]: https://github.com/snapappointments/bootstrap-select/issues/1416
[#2147]: https://github.com/snapappointments/bootstrap-select/issues/2147
[#1449]: https://github.com/snapappointments/bootstrap-select/issues/1449
[#1893]: https://github.com/snapappointments/bootstrap-select/issues/1893
[#2042]: https://github.com/snapappointments/bootstrap-select/issues/2042
[#2507]: https://github.com/snapappointments/bootstrap-select/issues/2507
[#1709]: https://github.com/snapappointments/bootstrap-select/issues/1709
[#2259]: https://github.com/snapappointments/bootstrap-select/issues/2259

-------------------

# v1.13.18 (2020-06-26)
### Bug Fixes
- [#1342]: Bootstrap select doesn't send field data on form submit (set form attribute on select element to fix)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Bootstrap-select requires jQuery v1.9.1+, Bootstrap’s dropdown.js component, a

Several quick start options are available:

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

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

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

<!-- (Optional) Latest compiled and minified JavaScript translation files -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap-select@1.13.18/dist/js/i18n/defaults-*.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap-select@1.14.0-beta/dist/js/i18n/defaults-*.min.js"></script>
```
> 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.
Expand Down
23 changes: 22 additions & 1 deletion dist/css/bootstrap-select.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/css/bootstrap-select.css.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/css/bootstrap-select.min.css

Large diffs are not rendered by default.

Loading

0 comments on commit 9cd88c6

Please sign in to comment.