Skip to content

Commit 1bf39f0

Browse files
committed
Released 3.1.1
1 parent 09297b4 commit 1bf39f0

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,36 @@
11

2+
## 3.1.1 (2020-01-07)
3+
4+
#### Deprecations
5+
* [#933](https://github.com/kaliber5/ember-bootstrap/pull/933) Deprecate arguments whose only purpose is supporting HTML attributes ([@jelhan](https://github.com/jelhan))
6+
7+
This deprecates *all* component arguments that are used to set HTML attributes. All of these will be removed in the next major version v4.0.
8+
A deprecation warning will be issued in development for most arguments when used.
9+
10+
The migration path is to use angle bracket invocation (available since Ember 3.4 or by installing [ember-angle-bracket-invocation-polyfill](https://github.com/rwjblue/ember-angle-bracket-invocation-polyfill)) to set them directly.
11+
E.g. use `<BsButton @type="primary" title="foo">Ok</BsButton>` instead of `{{#bs-button type="primary" title="foo">Ok{{/bs-button}}` to set `title`.
12+
13+
#### Bug Fixes
14+
* [#948](https://github.com/kaliber5/ember-bootstrap/pull/948) Modals ignore clicking backdrop to close, if mousedown happened on dialog element, reflecting original bootstrap.js behaviour ([@eyupatis](https://github.com/eyupatis))
15+
* [#951](https://github.com/kaliber5/ember-bootstrap/pull/951) support optional feature default-async-observers ([@jelhan](https://github.com/jelhan))
16+
* [#942](https://github.com/kaliber5/ember-bootstrap/pull/942) Fix keyboard control of Dropdowns rendered in a wormhole ([@simonihmig](https://github.com/simonihmig))
17+
18+
#### Documentation
19+
* [#960](https://github.com/kaliber5/ember-bootstrap/pull/960) Add note to insertEmberWormholeElementToDom config when rendering app into custom element ([@simonihmig](https://github.com/simonihmig))
20+
* [#959](https://github.com/kaliber5/ember-bootstrap/pull/959) Mention ember-angle-bracket-invocation-polyfill in setup guide ([@simonihmig](https://github.com/simonihmig))
21+
* [#958](https://github.com/kaliber5/ember-bootstrap/pull/958) Fix missing "Addons" nav item in API docs ([@simonihmig](https://github.com/simonihmig))
22+
* [#949](https://github.com/kaliber5/ember-bootstrap/pull/949) Separate docs app ([@simonihmig](https://github.com/simonihmig))
23+
* [#947](https://github.com/kaliber5/ember-bootstrap/pull/947) Fix typo (Pikaday instead of PiCkaday) ([@gianlucatomasino](https://github.com/gianlucatomasino))
24+
25+
#### Internal
26+
* [#954](https://github.com/kaliber5/ember-bootstrap/pull/954) run lint and tests for docs app in CI ([@jelhan](https://github.com/jelhan))
27+
* [#943](https://github.com/kaliber5/ember-bootstrap/pull/943) Update to Ember 3.14 ([@simonihmig](https://github.com/simonihmig))
28+
29+
#### Committers: 4
30+
- Eyüp Atiş ([@eyupatis](https://github.com/eyupatis))
31+
- Gianluca Tomasino ([@gianlucatomasino](https://github.com/gianlucatomasino))
32+
- Jeldrik Hanschke ([@jelhan](https://github.com/jelhan))
33+
- Simon Ihmig ([@simonihmig](https://github.com/simonihmig))
234
## 3.1.0 (2019-11-02)
335

436
#### Features

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-bootstrap",
3-
"version": "3.1.0",
3+
"version": "3.1.1",
44
"scripts": {
55
"lint:hbs": "ember-template-lint .",
66
"lint:js": "eslint .",

yuidoc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ember-bootstrap",
33
"description": "Twitter Bootstrap components for Ember.js",
4-
"version": "3.1.0",
4+
"version": "3.1.1",
55
"options": {
66
"paths": [
77
"addon/components/base",

0 commit comments

Comments
 (0)