Skip to content

Commit c73a29b

Browse files
Move beta-versions release notes in major release 17.2.3 (#646)
* Add a description of using jQuery in breaking changes * Move beta-versions release notes in major release * Updated description of jQuery integration * Update changelog
1 parent 3bc317b commit c73a29b

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

CHANGELOG.md

Lines changed: 7 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,14 @@
1313

1414
## <a name="17.2.3"></a>17.2.3 (2017-11-16)
1515

16-
### Bug Fixes
16+
### Features
17+
18+
- Update `typescript` version to 2.4.2
19+
20+
### Breaking changes
21+
- TypeScript declarations have become strict, which can cause a build failure. Use correct types to prevent this.
22+
- The jQuery dependency has been removed ([#46](https://github.com/DevExpress/devextreme-angular/issues/46)). To use jQuery, you need to manually install the jquery npm package and include the jQuery integration module in your application. For more information, please see: [Include jQuery integration](https://github.com/DevExpress/devextreme-angular#include-jquery-integration)
1723

18-
[Open the list of closed bugs](https://github.com/DevExpress/devextreme-angular/milestone/26?closed=1)
1924

2025
### Deprecations
2126
- The `dxo-data-source` nested component is deprecated. Use the `dataSource` option instead.
@@ -42,16 +47,6 @@ Currently, this will be used like simple property:
4247

4348
- DevExtreme dependency has been updated to the 17.2.2-pre-beta
4449

45-
## 17.2.1-beta.4 (2017-10-31)
46-
47-
### Breaking changes
48-
- TypeScript declarations have become strict, which can cause a build failure. Use correct types to prevent this.
49-
50-
## 17.2.1-beta.3 (2017-10-25)
51-
52-
### Breaking changes
53-
- The jQuery dependency has been removed ([#46](https://github.com/DevExpress/devextreme-angular/issues/46)). You can include jQuery integration into your application to use jQuery. For more information, please see: [Include jQuery integration](https://github.com/DevExpress/devextreme-angular#include-jquery-integration)
54-
5550
## 17.2.1-beta.2 (2017-10-10)
5651

5752
### Features

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ This project allows you to use [DevExtreme Widgets](http://js.devexpress.com/Dem
1111
* [DevExtreme installation](#add-to-existing-app)
1212
* [Starting a new application](#create-application)
1313
* [Running the local examples](#running-examples)
14+
* [Include jQuery integration](#jquery-integration)
1415
* [Usage samples](#usage-samples)
1516
* [Static string option value](#static-option)
1617
* [Static non-string option value](#static-non-string-option)
@@ -139,8 +140,12 @@ npm start
139140

140141
Navigate to [http://127.0.0.1:8875/examples/](http://127.0.0.1:8875/examples/) in the opened browser window. Explore the **examples** folder of this repository for the examples source code.
141142

142-
### <a name="jquery integration"></a>Include jQuery integration ###
143-
Starting with version 17.2, DevExtreme doesn't depend on jQuery. It means that our widgets work without jQuery elements. If you need to use jQuery, you can include the jQuery integration as described below:
143+
### <a name="jquery-integration"></a>Include jQuery integration ###
144+
Starting with version 17.2, DevExtreme doesn't depend on jQuery. It means that our widgets work without jQuery elements. If you need to use jQuery, you can manually install the jquery npm package and include the jQuery integration as described below:
145+
146+
```js
147+
npm install --save jquery
148+
```
144149

145150
```js
146151
import 'devextreme/integration/jquery';

0 commit comments

Comments
 (0)