UNPKG

54.4 kBMarkdownView Raw
1## [v0.32.3]
2> 2018-08-20
3
4- **Bugfix:** Fix dependencies ([#3239], [#3240])
5
6[v0.32.3]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.32.2...v0.32.3
7[#3239]: https://github.com/react-bootstrap/react-bootstrap/pull/3239
8[#3240]: https://github.com/react-bootstrap/react-bootstrap/pull/3240
9
10
11## [v0.32.2]
12> 2018-08-17
13
14- **Feature:** Support custom `animation` for `<Tabs>` ([#3222])
15- **Bugfix:** Fix `<ProgressBar>` compatibility with React Hot Loader ([#2965])
16- **Docs:** Add search to docs ([#3094])
17- **Chore:** Upgrade to Babel 7 ([#3044])
18- **Chore:** Upgrade to webpack 4 ([#3075], [#3100])
19
20[v0.32.2]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.32.1...v0.32.2
21[#2965]: https://github.com/react-bootstrap/react-bootstrap/pull/2965
22[#3044]: https://github.com/react-bootstrap/react-bootstrap/pull/3044
23[#3075]: https://github.com/react-bootstrap/react-bootstrap/pull/3075
24[#3094]: https://github.com/react-bootstrap/react-bootstrap/pull/3094
25[#3100]: https://github.com/react-bootstrap/react-bootstrap/pull/3100
26[#3222]: https://github.com/react-bootstrap/react-bootstrap/pull/3222
27
28
29## [v0.32.1]
30> 2018-01-24
31
32- **Bugfix:** Do not allow more than one open panel in an accordion group ([#2940])
33
34[v0.32.1]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.32.0...v0.32.1
35[#2940]: https://github.com/react-bootstrap/react-bootstrap/pull/2940
36
37
38## [v0.32.0]
39> 2018-01-04
40
41- **Breaking:** Refactor Panel API ([#1769])
42- **Breaking:** Remove Pagination logic, for purely presentational components ([#2587])
43
44- **Feature:** Switch to react-transition-group for Transition components ([#2676])
45- **Feature:** Remove inconsistent preventDefaults onSelect events ([#2790])
46- **BugFix:** Use different properties for mouseover and mouseout in handleMouseOverOut ([#2908])
47- **Docs:** Add new Gatsby docs! ([#2920])
48- **Chore:** replace old TransitionEvents ([#2902])
49
50[v0.32.0]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.31.5...v0.32.0
51[#2920]: https://github.com/react-bootstrap/react-bootstrap/pull/2920
52[#2902]: https://github.com/react-bootstrap/react-bootstrap/pull/2902
53[#2587]: https://github.com/react-bootstrap/react-bootstrap/pull/2587
54[#2790]: https://github.com/react-bootstrap/react-bootstrap/pull/2790
55[#2908]: https://github.com/react-bootstrap/react-bootstrap/pull/2908
56[#2676]: https://github.com/react-bootstrap/react-bootstrap/pull/2676
57[#1769]: https://github.com/react-bootstrap/react-bootstrap/pull/1769
58
59
60## [v0.31.5]
61> 2017-10-24
62
63- **Bugfix:** Fix ES module build ([#2856])
64
65[v0.31.5]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.31.4...v0.31.5
66[#2856]: https://github.com/react-bootstrap/react-bootstrap/pull/2856
67
68
69## [v0.31.4]
70> 2017-10-24
71
72- **Feature:** Support `align` on `<Media.Body>` ([#2830])
73- **Bugfix:** Update react-overlays dependency to support React v16 ([#2839], [#2855])
74- **Bugfix:** Use a bound function for the base modal ref in `<Modal>` to prevent the ref getting set to `null` ([#2844])
75- **Chore:** Update Babel configuration ([#2821], [#2837])
76
77[v0.31.4]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.31.3...v0.31.4
78[#2821]: https://github.com/react-bootstrap/react-bootstrap/pull/2821
79[#2830]: https://github.com/react-bootstrap/react-bootstrap/pull/2830
80[#2837]: https://github.com/react-bootstrap/react-bootstrap/pull/2837
81[#2839]: https://github.com/react-bootstrap/react-bootstrap/pull/2839
82[#2844]: https://github.com/react-bootstrap/react-bootstrap/pull/2844
83[#2855]: https://github.com/react-bootstrap/react-bootstrap/pull/2855
84
85
86## [v0.31.3]
87> 2017-09-06
88
89- **Bugfix:** Support `disabled` on `<ToggleButton>` ([#2760])
90- **Bugfix:** Handle space keydown events on `<SafeAnchor>` ([#2697])
91- **Bugfix:** Handle reducing number of items in uncontrolled carousels ([#2768])
92
93[v0.31.3]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.31.2...v0.31.3
94[#2697]: https://github.com/react-bootstrap/react-bootstrap/pull/2697
95[#2760]: https://github.com/react-bootstrap/react-bootstrap/pull/2760
96[#2768]: https://github.com/react-bootstrap/react-bootstrap/pull/2768
97
98
99## [v0.31.2]
100> 2017-08-01
101
102- **Feature:** Support `backdropClassName` on `<Modal>` ([#2723])
103- **Bugfix:** Export `<ToggleButton>` and `<ToggleButtonGroup>` ([#2704])
104- **Bugfix:** Pass through props on `<ToggleButtonGroup>` ([#2731])
105- **Bugfix:** Fix `<ToggleButtonGroup>` in pre-ES2016 environments ([#2731])
106
107[v0.31.2]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.31.1...v0.31.2
108[#2704]: https://github.com/react-bootstrap/react-bootstrap/pull/2704
109[#2723]: https://github.com/react-bootstrap/react-bootstrap/pull/2723
110[#2731]: https://github.com/react-bootstrap/react-bootstrap/pull/2731
111
112
113## [v0.31.1]
114> 2017-07-12
115
116- **Feature:** Add `<ToggleButton>` and `<ToggleButtonGroup>` ([#2252], [#2648])
117- **Feature:** Add `<CloseButton>` to top-level API ([#2652])
118- **Bugfix:** Properly handle `title` on `<Checkbox>` and `<Radio>` ([#2635], [#2647])
119- **Bugfix:** Properly handle `onLoad` and `onError` on `<Thumbnail>` ([#2687])
120- **Bugfix:** Properly handle `defaultOpen` on dropdown button components ([#2702])
121- **Chore:** Switch from react-prop-types to prop-types-extra ([#2621])
122- **Chore:** Rebuild UMD bundle with updated dependencies
123
124[v0.31.1]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.31.0...v0.31.1
125[#2252]: https://github.com/react-bootstrap/react-bootstrap/pull/2252
126[#2621]: https://github.com/react-bootstrap/react-bootstrap/pull/2621
127[#2635]: https://github.com/react-bootstrap/react-bootstrap/pull/2635
128[#2647]: https://github.com/react-bootstrap/react-bootstrap/pull/2647
129[#2648]: https://github.com/react-bootstrap/react-bootstrap/pull/2648
130[#2652]: https://github.com/react-bootstrap/react-bootstrap/pull/2652
131[#2687]: https://github.com/react-bootstrap/react-bootstrap/pull/2687
132[#2702]: https://github.com/react-bootstrap/react-bootstrap/pull/2702
133
134
135## [v0.31.0]
136> 2017-04-26
137
138- **Breaking:** Rename `aria-label` prop to `closeLabel` on ModalHeader ([#2584])
139- **Breaking:** Remove unused `onClose` callback on Dropdowns (use `onToggle`) ([#2585])
140- **Breaking:** Increase minimal required React and ReactDOM versions to `0.14.9` or `>=15.3.0` ([#2579])
141- **Bugfix:** Consistently render accessible close buttons for Alerts and Modals ([#2584])
142
143[v0.31.0]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.30.10...v0.31.0
144[#2584]: https://github.com/react-bootstrap/react-bootstrap/pull/2584
145[#2585]: https://github.com/react-bootstrap/react-bootstrap/pull/2585
146[#2579]: https://github.com/react-bootstrap/react-bootstrap/pull/2579
147
148
149## [v0.30.10]
150> 2017-04-21
151
152- **Bugfix:** Move prop-types to normal dependencies ([#2576])
153
154[v0.30.10]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.30.9...v0.30.10
155[#2576]: https://github.com/react-bootstrap/react-bootstrap/pull/2576
156
157## [v0.30.9]
158> 2017-04-18
159
160- **Feature:** Export `<PaginationButton>` ([#2505])
161- **Bugfix:** Support falsy `eventKey` ([#2541])
162- **Chore:** Update for React v15.5 deprecations ([#2552])
163
164[v0.30.9]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.30.8...v0.30.9
165[#2505]: https://github.com/react-bootstrap/react-bootstrap/pull/2505
166[#2541]: https://github.com/react-bootstrap/react-bootstrap/pull/2541
167[#2552]: https://github.com/react-bootstrap/react-bootstrap/pull/2552
168
169
170## [v0.30.8]
171> 2017-03-07
172
173- **Feature:** Support `bsSize` on `<FormControl>` ([#2382], [#2394])
174- **Feature:** Pass event and event source to `onToggle` callback for `<Dropdown>` ([#2422])
175- **Feature:** Add `restoreFocus` to `<Modal>` ([#2482])
176- **Feature:** Add `mountOnEnter` to transition and tab components ([#2504])
177- **Bugfix:** Don't set `aria-describedby` in `<OverlayTrigger>` when not showing the overlay ([#2359])
178- **Bugfix:** Fix `boundaryLinks` in `<Pagination>` ([#2443])
179- **Bugfix:** Support `closeButton` in `<Modal.Header>` in static modals ([#2453])
180- **Bugfix:** Fix `<Carousel>` with `slide` disabled ([#2466])
181
182[v0.30.8]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.30.7...v0.30.8
183[#2359]: https://github.com/react-bootstrap/react-bootstrap/pull/2359
184[#2382]: https://github.com/react-bootstrap/react-bootstrap/pull/2382
185[#2394]: https://github.com/react-bootstrap/react-bootstrap/pull/2394
186[#2422]: https://github.com/react-bootstrap/react-bootstrap/pull/2422
187[#2443]: https://github.com/react-bootstrap/react-bootstrap/pull/2443
188[#2453]: https://github.com/react-bootstrap/react-bootstrap/pull/2453
189[#2466]: https://github.com/react-bootstrap/react-bootstrap/pull/2466
190[#2482]: https://github.com/react-bootstrap/react-bootstrap/pull/2482
191[#2504]: https://github.com/react-bootstrap/react-bootstrap/pull/2504
192
193
194## [v0.30.7]
195> 2016-11-22
196
197- **Feature:** Add `componentClass` to `<Modal.Body>`, `<Modal.Footer>`, and `<Modal.Title>` ([#2313])
198- **Feature:** Add `inputRef` to `<FormControl>` ([#2337])
199- **Bugfix:** Pass `onMouseEnter` and `onMouseLeave` to `<Dropdown>` rather than `<Dropdown.Toggle>` from `<DropdownButton>` and related components ([#2335])
200- **Refactor:** Remove unused `shouldRenderFill` method on `<Panel>` ([#2316])
201- **Docs:** Explicitly add `placement` to `<Overlay>` `propTypes` for generated documentation ([#2318])
202- **Docs:** Explicitly document use of `null` (and `undefined`) `validationState` on `<FormGroup>` ([#2336])
203
204[v0.30.7]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.30.6...v0.30.7
205[#2313]: https://github.com/react-bootstrap/react-bootstrap/pull/2313
206[#2316]: https://github.com/react-bootstrap/react-bootstrap/pull/2316
207[#2318]: https://github.com/react-bootstrap/react-bootstrap/pull/2318
208[#2335]: https://github.com/react-bootstrap/react-bootstrap/pull/2335
209[#2336]: https://github.com/react-bootstrap/react-bootstrap/pull/2336
210[#2337]: https://github.com/react-bootstrap/react-bootstrap/pull/2337
211
212
213## [v0.30.6]
214> 2016-10-28
215
216- **Feature:** Add `rootCloseEvent` to `<Dropdown>` to configure root close trigger event ([#2195])
217- **Feature:** Add screen reader labels configurable with `prevLabel` and `nextLabel` to `<Carousel>` controls ([#2275])
218- **Feature:** Add `collapseOnSelect` to `<Navbar>` to enable automatically collapsing the navbar when the user selects an item ([#2280], [#2308])
219- **Bugfix:** Change placeholder `href` in `<SafeAnchor>` to `#` for better IE compatibility ([#2080])
220- **Bugfix:** Fix off-by-one error in displaying `<Pagination>` pages ([#2271])
221- **Bugfix:** Properly set `.collapsed` on `<Panel>` title anchor ([#2276])
222
223[v0.30.6]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.30.5...v0.30.6
224[#2080]: https://github.com/react-bootstrap/react-bootstrap/pull/2080
225[#2195]: https://github.com/react-bootstrap/react-bootstrap/pull/2195
226[#2271]: https://github.com/react-bootstrap/react-bootstrap/pull/2271
227[#2275]: https://github.com/react-bootstrap/react-bootstrap/pull/2275
228[#2276]: https://github.com/react-bootstrap/react-bootstrap/pull/2276
229[#2280]: https://github.com/react-bootstrap/react-bootstrap/pull/2280
230[#2308]: https://github.com/react-bootstrap/react-bootstrap/pull/2308
231
232
233## [v0.30.5]
234> 2016-10-03
235
236- **Bugfix:** Fix opening `<Dropdown>` ([#2244], [#2251])
237
238[v0.30.5]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.30.4...v0.30.5
239[#2244]: https://github.com/react-bootstrap/react-bootstrap/pull/2244
240[#2251]: https://github.com/react-bootstrap/react-bootstrap/pull/2251
241
242
243## [v0.30.4]
244> 2016-09-30
245
246- **Bugfix:** Properly set `aria-expanded` on `<Panel>` headers ([#2137])
247- **Bugfix:** Fix off-by-one bug in `<Pagination>` [#2189]
248- **Bugfix:** Persist `<Dropdown.Menu>` instance across visibility changes ([#2241])
249
250[v0.30.4]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.30.3...v0.30.4
251[#2137]: https://github.com/react-bootstrap/react-bootstrap/pull/2137
252[#2189]: https://github.com/react-bootstrap/react-bootstrap/pull/2189
253[#2241]: https://github.com/react-bootstrap/react-bootstrap/pull/2241
254
255
256## [v0.30.3]
257> 2016-08-20
258
259- **Feature:** Support dropdowns in tab navigation ([#2134])
260- **Bugfix:** Properly pass expanded state to collapsible header elements ([#2133], [#2137])
261
262[v0.30.3]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.30.2...v0.30.3
263[#2133]: https://github.com/react-bootstrap/react-bootstrap/pull/2133
264[#2134]: https://github.com/react-bootstrap/react-bootstrap/pull/2134
265[#2137]: https://github.com/react-bootstrap/react-bootstrap/pull/2137
266
267
268## [v0.30.2]
269> 2016-08-04
270
271- **Chore:** Upgrade to Babel 6 ([#2108])
272- **Chore:** Add ES module build ([#2108])
273
274[v0.30.2]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.30.1...v0.30.2
275[#2108]: https://github.com/react-bootstrap/react-bootstrap/pull/2108
276
277
278## [v0.30.1]
279> 2016-08-01
280
281- **Bugfix:** Don't trigger PropTypes warning ([#2095])
282- **Bugfix:** Fix regression with `rootClose` on `<OverlayTrigger>` ([#2099])
283
284[v0.30.1]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.30.0...v0.30.1
285[#2095]: https://github.com/react-bootstrap/react-bootstrap/pull/2095
286[#2099]: https://github.com/react-bootstrap/react-bootstrap/pull/2099
287
288
289## [v0.30.0]
290> 2016-07-25
291
292- **Breaking:** Remove `linkId` prop from `<Breadcrumb.Item>` for consistency with other wrapped link components ([#2011])
293- **Breaking:** Remove deprecated functionality from v0.29.x ([#2017])
294- **Breaking:** Remove redundant `caption` prop from `<Carousel.Item>`, as this functionality is available from `<Carousel.Caption>` ([#2018])
295- **Breaking:** Remove pointless `navItem` and `navDropdown` props from `<Button>` ([#2026])
296- **Feature/Deprecation:** Rename `<PageItem>` to `<Pager.Item>` for consistency ([#1976])
297- **Feature:** Add `ValidComponentChildren.toArray` ([#2016])
298- **Feature:** Add `bsClass` support consistently throughout all components ([#2026], [#2036], [#2079])
299- **Feature:** Add `splitBsProps` and `splitBsPropsAndOmit` helpers to `bootstrapUtils` to remove Bootstrap styling props ([#2052])
300- **Feature:** Improve IE8-compatible self collapse support on `<Badge>` and add it to `<Label>` ([#2026])
301- **Bugfix:** Support `style` on `<Modal>` ([#1957])
302- **Bugfix:** Support `bsClass` on `<Dropdown.Toggle>` ([#2014])
303- **Bugfix:** Support `active` on `<NavDropdown>` ([#2015])
304- **Bugfix:** Do not pass arbitrary props to DOM nodes ([#2026], [#2036], [#2044])
305- **Bugfix:** Support strings for `positionTop` and `positionLeft` on `<Popover>` and `<Tooltip>` ([#2026])
306- **Bugfix:** Support captions on `<Thumbnail>` links ([#2026])
307- **Bugfix:** Don't ignore `componentClass` on `<ListGroup>` when using only `<ListGroupItem>` children ([#2026])
308- **Bugfix:** Don't assign default `key` to `<Breadcrumb>`, `<Carousel>`, `<ListGroup>`, `<Nav>`, `<PanelGroup>`, `<Pager>`, or `<ProgressBar>` children ([#2026], [#2036])
309- **Bugfix:** Remove pointless update-deferral-during-`onSelect` logic in `<PanelGroup>` ([#2026])
310- **Bugfix:** Use consistent `bsClass` handling on dropdown components ([#2036])
311- **Bugfix:** Remove extraneous `.collapsed` on collapsible panel title anchor ([#2036])
312- **Bugfix:** Improve edge case handling in tab animation state management and styling ([#2036])
313- **Bugfix:** Stop assigning refs unnecessarily ([#2078])
314- **Refactor:** Clean up context usage on navbar components ([#2036])
315- **Refactor:** Sync up context usage on modals to other components ([#2044])
316
317[v0.30.0]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.29.5...v0.30.0
318[#1957]: https://github.com/react-bootstrap/react-bootstrap/pull/1957
319[#1976]: https://github.com/react-bootstrap/react-bootstrap/pull/1976
320[#2011]: https://github.com/react-bootstrap/react-bootstrap/pull/2011
321[#2014]: https://github.com/react-bootstrap/react-bootstrap/pull/2014
322[#2015]: https://github.com/react-bootstrap/react-bootstrap/pull/2015
323[#2016]: https://github.com/react-bootstrap/react-bootstrap/pull/2016
324[#2017]: https://github.com/react-bootstrap/react-bootstrap/pull/2017
325[#2018]: https://github.com/react-bootstrap/react-bootstrap/pull/2018
326[#2026]: https://github.com/react-bootstrap/react-bootstrap/pull/2026
327[#2036]: https://github.com/react-bootstrap/react-bootstrap/pull/2036
328[#2044]: https://github.com/react-bootstrap/react-bootstrap/pull/2044
329[#2052]: https://github.com/react-bootstrap/react-bootstrap/pull/2052
330[#2078]: https://github.com/react-bootstrap/react-bootstrap/pull/2078
331[#2079]: https://github.com/react-bootstrap/react-bootstrap/pull/2079
332
333
334## [v0.29.5]
335> 2016-06-18
336
337- **Feature:** Allow function refs on dropdown components ([#1948])
338- **Bugfix:** Fix bugs with tab selection and state management ([#1956])
339
340[v0.29.5]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.29.4...v0.29.5
341[#1948]: https://github.com/react-bootstrap/react-bootstrap/pull/1948
342[#1956]: https://github.com/react-bootstrap/react-bootstrap/pull/1956
343
344
345## [v0.29.4]
346> 2016-05-10
347
348- **Feature:** Add `inputRef` to `<Checkbox>` and `<Radio>` ([#1865])
349- **Bugfix:** Persist `<Panel>` events before modifying them ([#1864])
350- **Bugfix:** Add back `eventKey` to props for custom pagination buttons ([#1876])
351
352[v0.29.4]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.29.3...v0.29.4
353[#1864]: https://github.com/react-bootstrap/react-bootstrap/pull/1864
354[#1865]: https://github.com/react-bootstrap/react-bootstrap/pull/1865
355[#1876]: https://github.com/react-bootstrap/react-bootstrap/pull/1876
356
357
358## [v0.29.3]
359> 2016-04-28
360
361- **Feature:** Add `unmountOnExit` support to tabs ([#1823])
362- **Bugfix:** Do not pass `onSelect` to DOM nodes ([#1861])
363- **Bugfix:** Do not throw error when tab group has no panes ([#1862])
364- **Bugfix:** Fix setting `id` for `<NavItem>`s for tabs ([#1862])
365
366[v0.29.3]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.29.2...v0.29.3
367[#1823]: https://github.com/react-bootstrap/react-bootstrap/pull/1823
368[#1861]: https://github.com/react-bootstrap/react-bootstrap/pull/1861
369[#1862]: https://github.com/react-bootstrap/react-bootstrap/pull/1862
370
371
372## [v0.29.2]
373> 2016-04-22
374
375- **Bugfix:** Don't always set `tabIndex` on `<SafeAnchor>` ([#1844])
376
377[v0.29.2]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.29.1...v0.29.2
378[#1844]: https://github.com/react-bootstrap/react-bootstrap/pull/1844
379
380
381## [v0.29.1]
382> 2016-04-21
383
384- **Bugfix:** Don't incorrectly pass `onSelect` past `<TabContainer>` ([#1825])
385- **Bugfix:** Set `role` instead of `type` on `<Dropdown.Toggle>` button ([#1835])
386
387[v0.29.1]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.29.0...v0.29.1
388[#1825]: https://github.com/react-bootstrap/react-bootstrap/pull/1825
389[#1835]: https://github.com/react-bootstrap/react-bootstrap/pull/1835
390
391
392## [v0.29.0]
393> 2016-04-18
394
395- **Breaking:** Change `onSelect` signature to be `(eventKey: any, event: SyntheticEvent) => any` on all React-Bootstrap components, instead of the old inconsistent mishmash ([#1604], [#1677], [#1756])
396- **Breaking:** Remove deprecated `duration` on transition components ([#1608])
397- **Breaking:** Remove deprecated functionality from `<Nav>`, `<Navbar>`, and related components ([#1608], [#1745])
398- **Breaking:** Don't check for prefixed `bsStyle` in `bootstrapUtils.getClassSet` ([#1759])
399- **Breaking:** Disable click handlers on `disabled` components ([#1794])
400- **Breaking:** In components with wrapped anchors, pass through all props other than `className` and `style` to the wrapped anchor ([#1801])
401- **Breaking:** Use consistent exports from `bootstrapUtils` ([#1813])
402- **Feature/Deprecation:** Add lower-level tab components, and deprecate horizontal layout support in `<Tabs>` in favor of lower-level components ([#1607], [#1784])
403- **Feature/Deprecation:** Deprecate `dialogComponent` in favor of new `dialogComponentClass` on `<Modal>` for consistency with other components ([#1753])
404- **Feature/Deprecation:** Rewrite form and form control API (`<FormControl>`, &c.), and deprecate the old API (`<Input>`, &c.) ([#1765])
405- **Deprecation:** Deprecate `dismissAfter` on `<Alert>` ([#1636])
406- **Deprecation:** Deprecate label interpolation (e.g. `label="%(percent)s%"`) in `<ProgressBar>` ([#1751])
407- **Bugfix:** Set `collapsed` class on `<Navbar.Toggle>` ([#1733])
408
409[v0.29.0]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.28.5...v0.29.0
410[#1604]: https://github.com/react-bootstrap/react-bootstrap/pull/1604
411[#1607]: https://github.com/react-bootstrap/react-bootstrap/pull/1607
412[#1608]: https://github.com/react-bootstrap/react-bootstrap/pull/1608
413[#1636]: https://github.com/react-bootstrap/react-bootstrap/pull/1636
414[#1677]: https://github.com/react-bootstrap/react-bootstrap/pull/1677
415[#1733]: https://github.com/react-bootstrap/react-bootstrap/pull/1733
416[#1745]: https://github.com/react-bootstrap/react-bootstrap/pull/1745
417[#1751]: https://github.com/react-bootstrap/react-bootstrap/pull/1751
418[#1753]: https://github.com/react-bootstrap/react-bootstrap/pull/1753
419[#1756]: https://github.com/react-bootstrap/react-bootstrap/pull/1756
420[#1759]: https://github.com/react-bootstrap/react-bootstrap/pull/1759
421[#1765]: https://github.com/react-bootstrap/react-bootstrap/pull/1765
422[#1784]: https://github.com/react-bootstrap/react-bootstrap/pull/1784
423[#1794]: https://github.com/react-bootstrap/react-bootstrap/pull/1794
424[#1801]: https://github.com/react-bootstrap/react-bootstrap/pull/1801
425[#1813]: https://github.com/react-bootstrap/react-bootstrap/pull/1813
426
427
428## [v0.28.5]
429> 2016-04-01
430
431- **Feature:** Support `<Breadcrumb.Item>` in addition to `<BreadcrumbItem>` for breadcrumb items ([#1722])
432- **Feature:** Add `<Carousel.Caption>` for carousel captions ([#1734])
433- **Feature:** Support `<Carousel.Item>` in addition to `<CarouselItem>` for carousel items ([#1740])
434- **Feature:** Add `<Clearfix>` for grids ([#1736])
435- **Bugfix:** Support `style` on nested `<ProgressBar>` ([#1719])
436- **Bugfix:** Fix CommonJS export for `<Media>` ([#1737])
437- **Bugfix:** Support `className` and `style` on `<MenuItem header>` and `<MenuItem divider>` ([#1748])
438- **Bugfix:** Support extra props for `<Navbar.Header>` and `<Navbar.Toggle>` ([#1754])
439
440[v0.28.5]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.28.4...v0.28.5
441[#1719]: https://github.com/react-bootstrap/react-bootstrap/pull/1719
442[#1722]: https://github.com/react-bootstrap/react-bootstrap/pull/1722
443[#1734]: https://github.com/react-bootstrap/react-bootstrap/pull/1734
444[#1736]: https://github.com/react-bootstrap/react-bootstrap/pull/1736
445[#1737]: https://github.com/react-bootstrap/react-bootstrap/pull/1737
446[#1740]: https://github.com/react-bootstrap/react-bootstrap/pull/1740
447[#1748]: https://github.com/react-bootstrap/react-bootstrap/pull/1748
448[#1754]: https://github.com/react-bootstrap/react-bootstrap/pull/1754
449
450
451## [v0.28.4]
452> 2016-03-24
453
454- **Feature:** Add `componentClass` on `<FormControls.Static>` ([#1653])
455- **Feature:** Add transition hooks on collapsible `<Panel>` ([#1664])
456- **Feature:** Add `<Media>` and related components ([#1707])
457- **Bugfix:** Support `className` on `<MenuItem divider>` ([#1682])
458- **Bugfix:** Support `className` on `<Navbar.Header>` ([#1695])
459
460[v0.28.4]: https://github.com/react-bootstrap/react-bootstrap/compare/v0.28.3...v0.28.4
461[#1653]: https://github.com/react-bootstrap/react-bootstrap/pull/1653
462[#1664]: https://github.com/react-bootstrap/react-bootstrap/pull/1664
463[#1682]: https://github.com/react-bootstrap/react-bootstrap/pull/1682
464[#1695]: https://github.com/react-bootstrap/react-bootstrap/pull/1695
465[#1707]: https://github.com/react-bootstrap/react-bootstrap/pull/1707
466
467
468v0.28.3 - Thu, 11 Feb 2016 00:00:42 GMT
469---------------------------------------
470
471- [922ecae](../../commit/922ecae) [fixed] Allow overriding aria-label on <SplitButton> toggle
472- [f187e04](../../commit/f187e04) [fixed] Use actual ellipsis in pagination
473- [f4c1525](../../commit/f4c1525) [added] pagination boundaryLinks
474- [9331141](../../commit/9331141) [fixed] remove extra tabIndex
475
476
477
478v0.28.2 - Fri, 08 Jan 2016 06:38:06 GMT
479---------------------------------------
480
481- [1bee8a2](../../commit/1bee8a2) [added] responsively hiding columns
482- [653bb17](../../commit/653bb17) [fixed] a11y: setting tabIndex="-1" for the dismiss button of Alerts since aria-hidden="true"
483- [1d07197](../../commit/1d07197) [fixed] don't add aria-label to modal header and close button
484- [035e553](../../commit/035e553) [fixed] navbar-default not added for custom styles
485
486
487
488v0.28.1 - Mon, 16 Nov 2015 20:04:34 GMT
489---------------------------------------
490
491
492
493
494
495v0.28.0 - Mon, 16 Nov 2015 18:42:38 GMT
496---------------------------------------
497
498- [21cab20](../../commit/21cab20) [changed] dropdown props are passed through to the dropdown Button
499- [f9ea411](../../commit/f9ea411) [changed] navbar `navExpanded` to `expanded`
500- [0be007f](../../commit/0be007f) [removed] Nav `right` prop in favor of `pullRight`
501- [5dbafd3](../../commit/5dbafd3) [changed] Split the Navbar component into sub-components
502- [59c9571](../../commit/59c9571) [changed] remove extra wrapping `<nav>` element in Nav components
503- [229cb2c](../../commit/229cb2c) [fixed] aria-label properly passed to the Modal header button
504- [345f4b4](../../commit/345f4b4) [changed] Only add the `navigation` role to navbar when not using a <nav>
505- [44b3b9e](../../commit/44b3b9e) [fixed] when overlay animation is false the transition prop passed to base overlay should be null so that it does not trigger a React PropTypes warning
506- [0f3ee3e](../../commit/0f3ee3e) [removed] bootstrap mixin
507- [df2f1a3](../../commit/df2f1a3) [fixed] Don't clone children in ResponsiveEmbed
508
509
510
511v0.27.3 - Mon, 26 Oct 2015 13:59:37 GMT
512---------------------------------------
513
514- [9d5df37](../../commit/9d5df37) [fixed] OverlayTrigger show/hide timeout management
515- [6e37b27](../../commit/6e37b27) [fixed] Remove cross import between Button & ButtonInput
516- [6bad1e8](../../commit/6bad1e8) [fixed] Explicitly disallow justified Navbar Navs
517
518
519
520v0.27.2 - Sun, 18 Oct 2015 02:21:06 GMT
521---------------------------------------
522
523- [e333c3d](../../commit/e333c3d) [fixed] Falsy href handling on MenuItem
524- [4f4017e](../../commit/4f4017e) [fixed] DropdownTitle children v. title
525- [8612b91](../../commit/8612b91) [fixed] Respect onClick on MenuItem
526- [b64ed11](../../commit/b64ed11) [fixed] Put onClick on correct element on NavItem
527- [9e4c041](../../commit/9e4c041) [fixed] Incorrect 'aria-selected' on NavItem
528- [0b0ac36](../../commit/0b0ac36) [added] Custom labels for Pagination's special element (ellipsis, first, last, prev & next)
529
530
531
532v0.27.1 - Thu, 08 Oct 2015 17:48:24 GMT
533---------------------------------------
534
535- [e64230c](../../commit/e64230c) [fixed] Don't include react-dom in the bundles
536
537
538
539v0.27.0 - Wed, 07 Oct 2015 21:49:21 GMT
540---------------------------------------
541
542- [583febb](../../commit/583febb) [removed] unnecessary functionality in React v0.14
543- [049e538](../../commit/049e538) [changed] Update for React v0.14
544
545
546
547v0.26.2 - Wed, 07 Oct 2015 16:43:16 GMT
548---------------------------------------
549
550- [ca52c30](../../commit/ca52c30) [fixed] Actually export the Image component
551- [73daba7](../../commit/73daba7) [fixed] Show toggle button when using NavBrand
552
553
554
555v0.26.1 - Mon, 05 Oct 2015 02:04:27 GMT
556---------------------------------------
557
558
559
560
561
562v0.26.0 - Sun, 04 Oct 2015 21:21:22 GMT
563---------------------------------------
564
565- [b7853bb](../../commit/b7853bb) [fixed] Dropdown focus behavior on click
566- [dbb0385](../../commit/dbb0385) [added] #1320 allow NavItem class to be set
567- [3d13dda](../../commit/3d13dda) [fixed] #1287 ListGroupItem with onClick and header properly displays header
568- [3f5c6e3](../../commit/3f5c6e3) [added] #1181 ListGroup supports componentClass prop
569- [b5a9f3a](../../commit/b5a9f3a) [added] NavBrand Component
570- [ac37698](../../commit/ac37698) [added] 'Responsive embed' component
571- [1c2d054](../../commit/1c2d054) [fixed] Set the disabled css class so that the text is greyed out.
572- [0348274](../../commit/0348274) [fixed] Breadcrumb and BreadcrumbItem components
573- [3c710f9](../../commit/3c710f9) [added] Breadcrumb component
574- [99d333f](../../commit/99d333f) [changed] use `lodash-compat` for IE8 compatibility and `lodash` for dev
575- [ce564cb](../../commit/ce564cb) [fixed] any props not known by DropdownMenu are passed through to the underlying ul
576- [674d67e](../../commit/674d67e) [added] images component
577- [deee09d](../../commit/deee09d) [fixed] stop rendering extra attributes on Progress bar dom nodes
578- [02f1fec](../../commit/02f1fec) [fixed] allow null activeKey (empty) selection
579- [656f40d](../../commit/656f40d) [changed] 'id' prop-type made uniform throughout the project
580- [b9a4477](../../commit/b9a4477) [changed] use 'react-prop-types' instead of 'utils/CustomPropTypes'
581
582
583
584v0.25.2 - Sat, 12 Sep 2015 15:59:13 GMT
585---------------------------------------
586
587- [f2c3b68](../../commit/f2c3b68) [changed] tab keyboard navigation to be more inline with ARIA spec
588- [0c27403](../../commit/0c27403) [fixed] Don't render Grid or Row with Tabs
589- [b847dec](../../commit/b847dec) [added] active prop on MenuItem (again)
590- [3a369cc](../../commit/3a369cc) [fixed] Error on opening dropdown without focusable items
591- [bad277e](../../commit/bad277e) [changed] Use PropTypes.node for validation and fix/add tests
592- [533530a](../../commit/533530a) [added] Adds a callout to the sr-only button in `Closable Alerts`
593- [1f29000](../../commit/1f29000) [fixed] screen-reader accessible dismiss button on alerts
594- [c8a59c6](../../commit/c8a59c6) [fixed] OverlayTrigger hover triggers on mousenter/leave
595- [9c69271](../../commit/9c69271) [fixed] OverlayTrigger event handlers are properly maintained
596- [da1d0bc](../../commit/da1d0bc) [fixed] focus returns to the toggle by default onClose
597
598
599
600v0.25.1 - Fri, 28 Aug 2015 18:30:59 GMT
601---------------------------------------
602
603- [478300a](../../commit/478300a) [fixed] Handle falsey DropdownMenu children correctly
604- [c450e96](../../commit/c450e96) [fixed] stop rendering extra attributes on Progress bar dom nodes
605- [3ceb7af](../../commit/3ceb7af) [fixed] allow null activeKey (empty) selection
606- [a7f93ae](../../commit/a7f93ae) [fixed] title is not passed to tab pane DOM node
607- [1bee466](../../commit/1bee466) [changed] 'id' prop-type made uniform throughout the project
608- [e438250](../../commit/e438250) [fixed] 'isRequireForA11y' undefined/null checking
609- [664b465](../../commit/664b465) [fixed] id passthrough for MenuItem
610
611
612
613v0.25.0 - Tue, 25 Aug 2015 18:56:33 GMT
614---------------------------------------
615
616- [8776128](../../commit/8776128) [fixed] Affix in IE10 - scrollHeight #1073
617- [adad32e](../../commit/adad32e) [added] PropType validation for headerRole and panelRole
618- [346501e](../../commit/346501e) [changed] DropdownButton, SplitButton, DropdownMenu, MenuItem completely rewritten
619- [653d2ff](../../commit/653d2ff) [changed] deprecate domUtils as a public API
620- [769781d](../../commit/769781d) [added] accessibility props for PanelGroup and Panels.
621- [5f0ac64](../../commit/5f0ac64) [added] Implements a generalized left-aligned version of tabs
622- [628d586](../../commit/628d586) [changed] deprecated Position, Transition, Portal
623- [03a6a61](../../commit/03a6a61) [changed] deprecated the Transition duration prop
624- [459ab0c](../../commit/459ab0c) [added] #460 ListGroupItem outputs <button> when an onClick handler is set.
625- [e482ede](../../commit/e482ede) [fixed] wrong tabs switching animation for 'Tabs' component
626- [b62e1f5](../../commit/b62e1f5) [fixed] wrong tabs switching animation for 'TabbedArea' component
627- [d0ff625](../../commit/d0ff625) [added] aria role "tablist" to the Nav on Tabs
628- [e7cf455](../../commit/e7cf455) [changed] New Tabs API
629- [f6d32c4](../../commit/f6d32c4) [changed] deprecate 'utils/CustomPropTypes' exporting
630- [caff9a0](../../commit/caff9a0) [removed] Factory support
631
632
633
634v0.24.5 - Fri, 14 Aug 2015 18:02:13 GMT
635---------------------------------------
636
637- [dc2a07a](../../commit/dc2a07a) [fixed] Collapse exported as Fade
638- [f53bcf5](../../commit/f53bcf5) [fixed] 'bsSize' and 'bsStyle' properties has been removed from 'Glyphicon'
639
640
641
642v0.24.4 - Mon, 10 Aug 2015 19:33:35 GMT
643---------------------------------------
644
645- [b688014](../../commit/b688014) [added] custom feedback icons for Input
646- [83cdaa3](../../commit/83cdaa3) [added] formControlFeedback prop to Glyphicon
647- [2ecac68](../../commit/2ecac68) [fixed] Modal uses provided className again
648- [47bd7f6](../../commit/47bd7f6) [fixed] disabled pagination buttons should not fire 'onSelect'
649- [c60dc03](../../commit/c60dc03) [fixed] only add aria-expanded to Collapse when an ARIA role is present
650
651
652
653v0.24.3 - Fri, 31 Jul 2015 18:09:54 GMT
654---------------------------------------
655
656- [02f8966](../../commit/02f8966) [changed] Update dependencies
657- [bae8ba9](../../commit/bae8ba9) [fixed] Carousel checks if it is mounted before setting state
658- [fd8d4d2](../../commit/fd8d4d2) [fixed] regression when clicking "static" modal backdrops
659- [0f46a97](../../commit/0f46a97) [added] Allow custom Modal dialog components
660- [a4ce7e1](../../commit/a4ce7e1) [fixed] added finalisation for the Modal when it was unbound from the tree
661- [d89d5f3](../../commit/d89d5f3) [fixed] Modal error when backdrop is `false`
662- [f410904](../../commit/f410904) [added] 'xs, sm, md, lg' values for 'bsSize'
663- [2558f32](../../commit/2558f32) [fixed] TabbedArea panes rendering with animation
664- [90aece6](../../commit/90aece6) [changed] Simplify 'styleMaps.STYLES' to be of Array type
665- [860d168](../../commit/860d168) [fixed] allow totally custom styles via 'bsStyle'
666- [74da76a](../../commit/74da76a) [fixed] Prevent click on PageItem if disabled
667
668
669
670v0.24.2 - Sat, 25 Jul 2015 00:47:07 GMT
671---------------------------------------
672
673- [4271eb3](../../commit/4271eb3) [fixed] add lodash as direct dependency
674
675
676
677v0.24.1 - Fri, 24 Jul 2015 23:12:09 GMT
678---------------------------------------
679
680- [e5155c6](../../commit/e5155c6) [fixed] ensure last focused item can be focused
681- [6a541ff](../../commit/6a541ff) [added] buttonComponentClass prop for Pagination
682- [29fe417](../../commit/29fe417) [fixed] overlay classNames are maintained by overlayTrigget
683- [d272389](../../commit/d272389) [added] Overlay and OverlayTrigger accept Transition callbacks
684- [596f40c](../../commit/596f40c) [fixed] Modal uses bsClass prop to set its classes
685- [86d3feb](../../commit/86d3feb) [fixed] added missed 'aria-label' prop type validation for 'ModalHeader'
686- [58eaab0](../../commit/58eaab0) [changed] pass transition callbacks to Modal Transition
687- [abccff9](../../commit/abccff9) [changed] expose static Modal Dialog component
688- [b5c1893](../../commit/b5c1893) [changed] unfix 'babel' back.
689
690
691
692v0.24.0 - Tue, 21 Jul 2015 22:13:05 GMT
693---------------------------------------
694
695- [924f8fb](../../commit/924f8fb) [fixed] Tooltip accepts a style prop
696- [dd064ad](../../commit/dd064ad) [fixed] remove extraneous styling
697- [c837d8d](../../commit/c837d8d) [fixed] Only calculate overlay position on display
698- [fbf9ed6](../../commit/fbf9ed6) [changed] Add deprecation warning that factories will be removed
699- [a4385d3](../../commit/a4385d3) [fixed] Portal doesn't mount extra node
700- [6744b94](../../commit/6744b94) [fixed] 'modalClassName' property for 'ModalTitle'
701- [3e6523a](../../commit/3e6523a) [added] ListGroup supports iterator as child
702- [ec368f0](../../commit/ec368f0) [added] Fade Component, replaces FadeMixin
703- [0503507](../../commit/0503507) [added] Collapse Component, replaces CollapsibleMixin
704- [4fb7e0d](../../commit/4fb7e0d) [changed] Remove Overlay and Modal deprecations
705- [0683df7](../../commit/0683df7) [fixed] 'stacked' progress with 'active' and 'striped' children
706- [a3c5400](../../commit/a3c5400) [fixed] Add missed 'type' property React.PropTypes.<type> checking
707- [a4c065e](../../commit/a4c065e) [added] links to every component / example on Components page
708- [eb0c323](../../commit/eb0c323) [fixed] Position.js typo `componentDidUpate`
709- [9feddf9](../../commit/9feddf9) [fixed] 'componentWillReceiveProps' method name of Position component
710- [c64679f](../../commit/c64679f) [fixed] Active Next and Last button in Pagination when ellipsis=true and items=0
711- [9dae734](../../commit/9dae734) [fixed] Negative page number in Pagination when ellipsis=true and items=1
712- [ffbcf39](../../commit/ffbcf39) [fixed] html id and class attributes handling for Nav
713- [89ea6ed](../../commit/89ea6ed) [fixed] Add missed propType validation for Button 'type' property
714- [b1b6a4c](../../commit/b1b6a4c) [changed] Add two-release deprecation policy
715- [e89b9bc](../../commit/e89b9bc) [removed] Don't need to disable Babel cache
716- [d12d59e](../../commit/d12d59e) [changed] Enabled "loose" Babel transpilation
717- [01c547f](../../commit/01c547f) [fixed] Do not use Babel cache for release build
718- [b67081b](../../commit/b67081b) [fixed] rootClose behavior on replaced elements
719- [fbbb344](../../commit/fbbb344) [fixed] bower template.
720- [fafe46f](../../commit/fafe46f) [changed] Use named exports in index files
721- [6e985b0](../../commit/6e985b0) [removed] Individual files in bower release
722- [598b9d8](../../commit/598b9d8) [fixed] SafeAnchor event ordering
723- [beaa1fa](../../commit/beaa1fa) [changed] `PaginationButton` to use `SafeAnchor`
724- [9c09e2a](../../commit/9c09e2a) [fixed] Keyboard accessibility for anchors serving as buttons
725- [ce5b436](../../commit/ce5b436) [removed] Input type=submit deprecation warning.
726
727
728
729v0.23.7 - Wed, 01 Jul 2015 15:18:30 GMT
730---------------------------------------
731
732- [35ea201](../../commit/35ea201) [fixed] Accidental breaking change in Modal trigger
733
734
735
736v0.23.6 - Wed, 01 Jul 2015 00:48:02 GMT
737---------------------------------------
738
739- [1b1af04](../../commit/1b1af04) [changed] deprecate ModalTrigger
740- [83b4cbc](../../commit/83b4cbc) [changed] Modal doesn't require ModalTrigger
741- [d70f617](../../commit/d70f617) [changed] tooltips and popovers required id's for a11y
742- [389cf3f](../../commit/389cf3f) [changed] Deprecate OverlayTrigger positioning api and "manual" trigger
743- [5eb8666](../../commit/5eb8666) [added] Overlay component
744- [1638f69](../../commit/1638f69) [added] Position component for custom Overlays
745- [f799110](../../commit/f799110) [added] Portal component; replaces OverlayMixin
746- [97ef415](../../commit/97ef415) [fixed] Modal won't steal focus from children
747- [a8b177a](../../commit/a8b177a) [fixed] Stack overflow with nested Modals
748- [3caa866](../../commit/3caa866) [changed] Update babel-loader
749- [6ffa325](../../commit/6ffa325) [fixed] 'componentClass' property type is 'elementType' now
750- [0e5980f](../../commit/0e5980f) [added] 'elementType' custom prop type validator
751- [8f582d2](../../commit/8f582d2) [changed] Update karma-chrome-launcher. Dev dependency
752- [d4089d0](../../commit/d4089d0) [changed] Update eslint-plugin-mocha. Dev dependency
753- [fd547f4](../../commit/fd547f4) [changed] Update karma-mocha. Dev dependency.
754- [c5797e8](../../commit/c5797e8) [added] componentClass prop to Jumbotron
755
756
757
758v0.23.5 - Tue, 23 Jun 2015 01:31:35 GMT
759---------------------------------------
760
761- [23f9d21](../../commit/23f9d21) [changed] Add missed prop types validations.
762- [320b7ab](../../commit/320b7ab) [changed] Update fs-extra. Dev dependency.
763- [2ffcf5d](../../commit/2ffcf5d) [fixed] Popovers flicker when moving mouse amongst children of the trigger
764- [ccc50e0](../../commit/ccc50e0) [fixed] Accessibility: Panel header uses aria-controls
765- [1e552cc](../../commit/1e552cc) [added] Accessibility: use appropriate ARIA's when an id is given to the tabbed area
766- [8752754](../../commit/8752754) [added] Add linkId prop to NavItem
767- [722969d](../../commit/722969d) [added] Accessibility, add tab roles when type "tabs"
768- [4adaa70](../../commit/4adaa70) [added] Accessibility: role 'alert' and aria-label to Alert component
769- [2594dce](../../commit/2594dce) [fixed] Modal Null Exception when react-bootstrap is loaded before the Body tag
770- [e77bf88](../../commit/e77bf88) [changed] Update eslint. Dev dependency.
771
772
773
774v0.23.4 - Tue, 16 Jun 2015 00:37:04 GMT
775---------------------------------------
776
777- [0ce46b9](../../commit/0ce46b9) [changed] only autofocus modals when enforceFocus is true (the default)
778- [c5855d2](../../commit/c5855d2) [changed] createChainedFunction to chain many functions, and to throw if non-functions are provided.
779- [d18dadb](../../commit/d18dadb) [fixed] container content no longer shifts when overflowing
780- [66f0f92](../../commit/66f0f92) [added] enforceFocus prop to Modal
781- [3869ca2](../../commit/3869ca2) [fixed] Modal doesn't "jump" when container is overflowing
782
783
784
785v0.23.3 - Fri, 12 Jun 2015 21:46:30 GMT
786---------------------------------------
787
788- [9ca26e9](../../commit/9ca26e9) [added] contains "polyfill" to domUtils
789- [3a254a1](../../commit/3a254a1) [added] Deprecation warning for individual file use in the Bower release
790- [73c7705](../../commit/73c7705) [changed] Update chai. Dev dependency.
791- [3ca90c7](../../commit/3ca90c7) [changed] Update karma-sinon-chai. Dev dependency.
792- [cc4e820](../../commit/cc4e820) [changed] Update fs-extra. Dev dependency.
793
794
795
796v0.23.2 - Mon, 08 Jun 2015 18:56:48 GMT
797---------------------------------------
798
799- [7211dcb](../../commit/7211dcb) [added] Add prevIcon and nextIcon props as node proptypes to Carousel
800- [5734ec3](../../commit/5734ec3) [added] Pagination component
801- [2f8c454](../../commit/2f8c454) [changed] Assert ProgressBar children can be ProgressBar only.
802- [2c46820](../../commit/2c46820) [added] `createSelectedEvent` for consistent onSelect handling
803- [c2ff9ad](../../commit/c2ff9ad) [added] property disabled on MenuItem
804
805
806
807v0.23.1 - Tue, 02 Jun 2015 16:57:57 GMT
808---------------------------------------
809
810- [4d265f0](../../commit/4d265f0) [fixed] Use babel api to avoid command line conflicts between Linux and Windows
811- [0cfbf3b](../../commit/0cfbf3b) [fixed] IE8 will now close an open DropdownButton menu when clicking button
812- [d105749](../../commit/d105749) [added] utils object to exported src/index
813- [29bc64f](../../commit/29bc64f) [changed] Remove Dev dependency babel-plugin-object-assign.
814- [1fec852](../../commit/1fec852) [changed] Update karma-phantomjs-launcher. Dev dependency.
815- [f494604](../../commit/f494604) [changed] Update eslint. Dev dependency.
816- [a4331ed](../../commit/a4331ed) [changed] Make the brand name consistent.
817- [b213be0](../../commit/b213be0) [changed] Remove ES6 sources from npm distribution.
818- [73c5ec9](../../commit/73c5ec9) [changed] Remove extraneous utils/Object.assign.js
819- [935171f](../../commit/935171f) [added] Now accepting a `block` property on the ButtonGroup component. Closes #240.
820- [dfec023](../../commit/dfec023) [added] CustomPropType.all to allow multiple validations
821
822
823
824v0.23.0 - Tue, 26 May 2015 19:32:52 GMT
825---------------------------------------
826
827- [fd24317](../../commit/fd24317) [changed] Removed `collapsable` deprecated functionality.
828- [3ebac95](../../commit/3ebac95) [fixed] bug #731. `babel ES6 import` + `React` quirk.
829- [0c61f46](../../commit/0c61f46) [changed] Moving type=static out of Input
830- [2749cfd](../../commit/2749cfd) [added] CustomPropTypes.singlePropFrom
831- [536c3e0](../../commit/536c3e0) [fixed] Replaced document with ownerDocument in Modal
832- [91f0222](../../commit/91f0222) [changed] Update css-loader. Dev dependency.
833- [66e41a4](../../commit/66e41a4) [fixed] Fix scroll top calculation for overlays
834- [5313abe](../../commit/5313abe) [fixed] Modal is focused when opened, for improved accessibility
835- [50d058a](../../commit/50d058a) [fixed] server side rendering for Modal component
836- [c57d6b0](../../commit/c57d6b0) [changed] Update css-loader. Dev dependency.
837
838
839v0.22.6 - Wed, 20 May 2015 16:46:29 GMT
840---------------------------------------
841
842- [2a35eab](../../commit/2a35eab) [fixed] Fix CodeMirrorEditor binding
843- [5dc0ac2](../../commit/5dc0ac2) [added] Enable rootClose for OverlayTrigger
844
845
846v0.22.5 - Tue, 19 May 2015 20:40:51 GMT
847---------------------------------------
848
849- [dc7ef19](../../commit/dc7ef19) [added] dialogClassName prop to modal to be able to pass custom css class to modal-dialog div
850- [658fa39](../../commit/658fa39) [fixed] Remove unused variable
851
852
853v0.22.4 - Mon, 18 May 2015 16:53:06 GMT
854---------------------------------------
855
856- [9d17d56](../../commit/9d17d56) [added] Thumbnail component
857- [db018fa](../../commit/db018fa) [fixed] Put AMD modules under correct path
858- [0904adc](../../commit/0904adc) [added] Active property to MenuItem component
859- [1658142](../../commit/1658142) [added] Property for animation on Popover and Tooltip
860- [4f37560](../../commit/4f37560) [fixed] Update classnames dep version for Bower
861- [f6e7d67](../../commit/f6e7d67) [fixed] Bower cannot use code from react/lib.
862- [1531ac9](../../commit/1531ac9) [added] DropdownButton now applies onClick prop to Button
863- [ecb0861](../../commit/ecb0861) [fixed] Fix propType warning in ButtonInputExample
864- [592a346](../../commit/592a346) [fixed] Forward classes to panel title
865
866
867v0.22.3 - Thu, 14 May 2015 22:19:11 GMT
868---------------------------------------
869
870- [96baa15](../../commit/96baa15) [fixed] Fix propTypes for overlays
871
872
873v0.22.2 - Thu, 14 May 2015 20:36:17 GMT
874---------------------------------------
875
876- [03211db](../../commit/03211db) [fixed] Fit overlay within viewport boundary
877- [576827f](../../commit/576827f) [changed] Introducing ButtonInput
878
879
880v0.22.1 - Thu, 14 May 2015 17:54:32 GMT
881---------------------------------------
882
883- [d3f57c5](../../commit/d3f57c5) [added] TabbedArea allows disabled tabs
884
885
886v0.22.0 - Wed, 13 May 2015 18:31:52 GMT
887---------------------------------------
888
889- [061bef2](../../commit/061bef2) [fixed] update link to react-router-bootstrap in README
890- [0fb9b57](../../commit/0fb9b57) [changed] Updated extract-text-webpack-plugin. Dev dependency.
891- [ca689c0](../../commit/ca689c0) [changed] Updated eslint dev-dependency
892- [0f90799](../../commit/0f90799) [added] react-hot-loader when developing docs
893- [4cd5845](../../commit/4cd5845) [added] FormGroup/Input bsSize now propgates correctly as form-group-\* classes
894- [6ce8870](../../commit/6ce8870) [added] Introduction Page.
895- [1c6c74b](../../commit/1c6c74b) [fixed] Modal div.modal-content should not have hidden class
896- [51a205f](../../commit/51a205f) [changed] collapsable => collapsible property
897- [f77c955](../../commit/f77c955) [changed] Updated classnames dependency
898- [5a76e94](../../commit/5a76e94) [added] favicon
899- [8da11b4](../../commit/8da11b4) [added] convenience factories for non-JSX users in lib/factories
900
901
902v0.21.2 - Fri, 01 May 2015 19:36:56 GMT
903---------------------------------------
904
905- [a07aa20](../../commit/a07aa20) [fixed] Bug introduced by new deprecation code.
906- [fef8984](../../commit/fef8984) [fixed] #597 able to set ID on ListGroup
907
908
909v0.21.1 - Wed, 29 Apr 2015 21:44:50 GMT
910---------------------------------------
911
912- [3767c43](../../commit/3767c43) [added] Added buttonClassName to DropdownButton
913- [e59c4f8](../../commit/e59c4f8) [added] Clarification about implementing components.
914- [0105127](../../commit/0105127) [changed] Renamed Collapsable* => Collapsible*
915- [6b9c250](../../commit/6b9c250) [fixed] Fix for bug 547 in tools/release.
916- [b86e03e](../../commit/b86e03e) [fixed] ListGroup rendering a ul when ListGroupItem has onClick handler
917- [ddc8a85](../../commit/ddc8a85) [changed] Updated eslint dev-dependency
918- [18c22ba](../../commit/18c22ba) [changed] Updated style-loader dev-dependency
919- [01c16c1](../../commit/01c16c1) [changed] Updated css-loader dev-dependency
920- [c295a9a](../../commit/c295a9a) [fixed] ModalTrigger passes onFocus prop and onBlur prop to child
921- [131669b](../../commit/131669b) [fixed] ModalTrigger passes onMouseOver prop and onMouseOut prop to child
922- [1249eff](../../commit/1249eff) [fixed] OverlayTrigger passes onClick prop to child
923- [5f565b9](../../commit/5f565b9) [added] Docs example of passing component to navbar brand.
924- [7811ce2](../../commit/7811ce2) [added] Dry run and verbose options to release process
925- [22da8f9](../../commit/22da8f9) [fixed] ListGroup children array bugs. Fixes #548
926- [b17a7b3](../../commit/b17a7b3) [added] release-docs script
927- [4fedc95](../../commit/4fedc95) [fixed] Bug in Server vs Client side rendering of Navbar
928- [1d8b7c7](../../commit/1d8b7c7) [fixes] #516 [added] TabbedArea NavItem renderTab() className
929- [725deaa](../../commit/725deaa) [changed] Updated css-loader dev-dependency
930- [eb29b11](../../commit/eb29b11) [changed] Updated style-loader dev-dependency
931- [bc8cd5c](../../commit/bc8cd5c) [fixed] Fix for bug507.
932
933
934v0.21.0 - Tue, 21 Apr 2015 13:38:38 GMT
935---------------------------------------
936
937- [e92a64b](../../commit/e92a64b) [fixed] Handle multiple children in Badge
938- [c1b189f](../../commit/c1b189f) [changed] Updated babel* tools. dev-dependency
939- [a58eab5](../../commit/a58eab5) [fixed] Fix 'import from' => 'import'
940- [276c2bc](../../commit/276c2bc) [fixed] ProgressBar percentage issue when stacked
941- [e1c95b3](../../commit/e1c95b3) [changed] Renamed constants to styleMaps and added styleMaps.addStyle()
942- [20b608f](../../commit/20b608f) [fixed] Add missed semicolons.
943- [2111799](../../commit/2111799) [fixed] Remove unused variables.
944- [0e6b62a](../../commit/0e6b62a) [fixed] typo
945- [0c87128](../../commit/0c87128) [fixed] `ListGroup` outputs `<ul>` or `<div>` depending on `ListGroupItem` (defaults to `<ul>` if no `ListGroupItem`). `ListGroupItem` outputs `<li>` or `<a>` if `href` prop is set.
946
947
948v0.20.3 - Fri, 10 Apr 2015 19:50:22 GMT
949---------------------------------------
950
951- [3ecd393](../../commit/3ecd393) [fixed] Missing PropType Validations
952- [8a9e95c](../../commit/8a9e95c) [fixed] Include missing PropType validations
953- [6dfcf36](../../commit/6dfcf36) [changed] Internal variables classSet to classNames
954
955
956v0.20.2 - Tue, 07 Apr 2015 01:51:55 GMT
957---------------------------------------
958
959- [723ee4d](../../commit/723ee4d) [fixed] Release scripts usage of rimraf
960- [7175431](../../commit/7175431) [fixed] Don't try to access .ownerDocument on null
961- [a58cff9](../../commit/a58cff9) [fixed] Numerous ESlint warnings (Removes 145 warnings)
962- [c6c4108](../../commit/c6c4108) [added] Twitter follow link to docs page footer
963- [20472b9](../../commit/20472b9) [fixed] Windows build
964
965
966v0.20.1 - Sat, 04 Apr 2015 14:22:18 GMT
967---------------------------------------
968
969- [a060fbc](../../commit/a060fbc) [fixed] Re-add missing constants to public API
970
971
972v0.20.0 - Tue, 31 Mar 2015 13:04:40 GMT
973---------------------------------------
974
975- [f1438b5](../../commit/f1438b5) [changed] Updated eslint-plugin-react dev-dependency
976- [c8dda3f](../../commit/c8dda3f) [added] HuBoard badge and link
977- [ee0382e](../../commit/ee0382e) [fixed] Use .ownerDocument instead of root document
978- [182344a](../../commit/182344a) [changed] Updated express dev-dependency
979- [6edadbd](../../commit/6edadbd) [changed] Updated mocha dev-dependency
980- [64ac86d](../../commit/64ac86d) [changed] React dependency from 0.13.0 -> 0.13.1
981- [367b870](../../commit/367b870) [changed] Updated karma-chai dev-dependency
982- [1956d2a](../../commit/1956d2a) [changed] Updated style-loader dev-dependency
983- [76c87bf](../../commit/76c87bf) [changed] Updated ESLint dev-dependency
984- [84b9113](../../commit/84b9113) [changed] Update Bootstrap to 3.3.4
985- [bfb3e6c](../../commit/bfb3e6c) [added] `standalone` prop to Input, which will not render the `form-group` class
986- [721aacc](../../commit/721aacc) [fixed] Documentation on react install
987- [6907e03](../../commit/6907e03) [changed] Renamed src/main.js -> src/index.js
988- [5118b42](../../commit/5118b42) [added] Test for carousel control behaviour with wrap=true
989- [ea479db](../../commit/ea479db) [fixed] show carousel controls if wrap is enabled
990
991
992v0.19.1 - Thu, 26 Mar 2015 19:37:01 GMT
993---------------------------------------
994
995- [2b7d235](../../commit/2b7d235) [fixed] Re-added CollapsableNav to public API
996
997
998v0.19.0 - Wed, 25 Mar 2015 21:25:57 GMT
999---------------------------------------
1000
1001- [98ee978](../../commit/98ee978) [changed] Source to ES6 using Babel and Webpack
1002
1003
1004v0.18.0 - Tue, 24 Mar 2015 02:56:15 GMT
1005---------------------------------------
1006
1007- [728c2b0](../../commit/728c2b0) [fixed] docs CodeMirror scroll height too big
1008- [d282621](../../commit/d282621) [fixed] Split buttons with React 0.13
1009- [549da6e](../../commit/549da6e) [added] react-router dependency for docs
1010- [804c24a](../../commit/804c24a) [added] Support for React 0.13.x
1011- [4c26075](../../commit/4c26075) [fixed] Build status badge
1012- [70f8596](../../commit/70f8596) [added] Travis CI Optimization
1013
1014
1015v0.17.0 - Tue, 17 Mar 2015 15:03:27 GMT
1016---------------------------------------
1017
1018- [4fae871](../../commit/4fae871) [added] CollapsableNav implements bootstrap markup for navbar-collapse
1019- [befed83](../../commit/befed83) [fixed] All panel-* classes dynamic based on bsStyle prop
1020- [de6f7dd](../../commit/de6f7dd) [fixed] CollapsableMixin fixed size
1021- [7cc4747](../../commit/7cc4747) [fixed] Added role="button" to NavItem for aria compliance.
1022- [3b6ba7a](../../commit/3b6ba7a) [fixed] Col Offset/Pull/Push of zero. Fixes #406
1023- [66c439f](../../commit/66c439f) [fixed] OverlayTrigger improvement related to #353 . Helps reduce browser reflows for lots of multiple OverlayTriggers being rendered at once. Before: http://i.imgur.com/e4UZ5l6.png , http://i.imgur.com/Tw39F9t.png After: http://i.imgur.com/bU0f7VY.png
1024
1025
1026v0.16.1 - Tue, 03 Mar 2015 23:04:19 GMT
1027---------------------------------------
1028
1029- [71ff264](../../commit/71ff264) [added] bsSize prop to Input, supporting input groups
1030
1031
1032v0.16.0 - Fri, 27 Feb 2015 14:01:37 GMT
1033---------------------------------------
1034
1035- [25b4143](../../commit/25b4143) [fixed] Define toggleNavKey in the propTypes
1036- [1a4ae1d](../../commit/1a4ae1d) [fixed] Fix rendering Navbar header when toggleNavKey is 0
1037- [13f395d](../../commit/13f395d) [added] bsStyle prop support for Modal to set the header color
1038- [c822837](../../commit/c822837) [removed] non-standard onClick props for ListGroup and ListGroupItem
1039- [1556e63](../../commit/1556e63) [added] Example for collapsable Navbar in docs.
1040
1041
1042v0.15.1 - Tue, 17 Feb 2015 14:30:54 GMT
1043---------------------------------------
1044
1045- [587a34f](../../commit/587a34f) [fixed] Include .npmignore so compile lib dir is published
1046
1047
1048v0.15.0 - Mon, 16 Feb 2015 02:41:59 GMT
1049---------------------------------------
1050
1051- [1ef51cb](../../commit/1ef51cb) [added] Changelog generation from commit messages
1052- [13baeaa](../../commit/13baeaa) [added] Release task to push and tag docs and bower repos
1053- [0193046](../../commit/0193046) [changed] Move built components to lib directory