Skip to content

Commit 793fc8c

Browse files
author
pipeline
committed
v23.2.6 is released
1 parent b1b7b96 commit 793fc8c

File tree

32 files changed

+353
-23
lines changed

32 files changed

+353
-23
lines changed

components/barcodegenerator/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 23.2.5 (2023-11-23)
5+
## 23.2.6 (2023-11-28)
66

77
### Barcode
88

components/base/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-base",
3-
"version": "23.2.4",
3+
"version": "23.2.5",
44
"description": "A common package of Essential JS 2 base Vue libraries, methods and class definitions",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
+183
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,183 @@
1+
# Release Notes Guidelines
2+
3+
This section contains guidelines on naming files, sections and other document elements.
4+
5+
> **If there is no changes in product, you don't need to mention that in Release Notes.**
6+
7+
## Encoding Format
8+
9+
All Release Notes files should be saved in **Encoding in UTF-8 (Without BOM)** format. You can use Notepad++ to verify the encoding.
10+
11+
![Encoding.png](https://bitbucket.org/repo/j57Gz9/images/2199960455-Encoding.png)
12+
13+
## Release Notes Folder Hierarchy
14+
15+
* Platform [Folder]
16+
* ----ReleaseNotes [Folder]
17+
* --------v13.3.x.x [Folder]
18+
* ------------Control1.md
19+
* ------------Control2.md
20+
* ------------Control3.md
21+
* --------v13.4.x.x [Folder]
22+
* ------------Control1.md
23+
* ------------Control2.md
24+
* ------------Control3.md
25+
26+
### How to write Release Notes?
27+
28+
* Each release markdown files should reside under corresponding version folder in their platform.
29+
* Each product release notes should be created in separate file name.
30+
* File name should be same as the product name.
31+
32+
> **NOTE**: Please do not add any Front Matter information in Release Notes files.
33+
34+
## Markdown File Structure
35+
36+
Each markdown file should have following items.
37+
38+
* Control Name
39+
* Features
40+
* Bug fixes
41+
* Braking Changes
42+
* Known Issues
43+
44+
> Do not add any front matter(triple dashed line) in this markdown.
45+
46+
### Control Name
47+
48+
Control Name should be with prefix `##`. This will be rendered as `H2` in html file.
49+
50+
#### Syntax
51+
52+
```
53+
## <Control-Name>
54+
```
55+
56+
#### Example
57+
58+
```
59+
## ejAccrodion
60+
```
61+
62+
### Features
63+
64+
* Each features should be written in unordered list.
65+
* Feature header should have id in the following format `<control-name>-features`. All characters in **id should be written in lower case.**
66+
67+
#### Syntax
68+
69+
```
70+
### Features
71+
{:#<control-name>-features}
72+
73+
* \#1 - Feature Info
74+
* \#2 - Feature Info
75+
* \#3 - Feature Info
76+
```
77+
78+
#### Example
79+
80+
```
81+
### Features
82+
{:#ejaccordion-features}
83+
84+
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
85+
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
86+
* \#140303, \#140304 - Accordion provides option to add new items dynamically by using the `addItem` method
87+
```
88+
89+
> **NOTE:**
90+
> * In markdown `#` used to represent headers.
91+
> * By default it will be converted as HTML headers.
92+
> * To display the `#` in html, please use escape sequences [See above example].
93+
94+
### Bug Fixes
95+
96+
* Each bug fix should be written in unordered list.
97+
* Bug fixes header should have id in the following format `<control-name>-bug-fixes`. All characters in **id should be written in lower case.**
98+
99+
#### Syntax
100+
101+
```
102+
### Bug fixes
103+
{:#<control-name-in-lower-case>-bug-fixes}
104+
105+
* \#1 - Bug Fix
106+
* \#2 - Bug Fix
107+
* \#3 - Bug Fix
108+
```
109+
110+
#### Example
111+
112+
```
113+
### Bug Fixes
114+
{:#ejaccordion-bug-fixes}
115+
116+
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
117+
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
118+
* \#140303, \#140304 - Accordion provides option to add new items dynamically by using the `addItem` method
119+
```
120+
121+
> **NOTE:**
122+
> * In markdown `#` used to represent headers.
123+
> * By default it will be converted as HTML headers.
124+
> * To display the `#` in html, please use escape sequences [See above example].
125+
126+
### Breaking Changes
127+
128+
* Each breaking changes should be written in unordered list.
129+
* Breaking changes header should have id in the following format `<control-name>-breaking-changes`. All characters in **id should be written in lower case.**
130+
131+
```
132+
### Breaking Changes
133+
{:#<control-name>-breaking-changes}
134+
135+
* * Breaking Change 1
136+
* * Breaking Change 2
137+
* * Breaking Change 3
138+
```
139+
140+
#### Example
141+
142+
```
143+
### Breaking Changes
144+
{:#ejaccordion-breaking-changes}
145+
146+
* Now, Circular series end angle will not be adjusted based on the start angle, so the output will be like semi-circle instead of full circle. In order to render the complete circular series with customized start angle, you have to add the start angle value to end angle property now. This break will occur only if you have specified startAngle already
147+
```
148+
149+
> **NOTE:**
150+
> * In markdown `#` used to represent headers.
151+
> * By default it will be converted as HTML headers.
152+
> * To display the `#` in html, please use escape sequences [See above example].
153+
154+
## Incidents and Forums in Release notes
155+
156+
We can represent the Incident ID with I and F for forums in release notes MD files
157+
158+
#### Example
159+
160+
161+
```
162+
## ChromelessWindow
163+
164+
### Bug Fixes
165+
{:#chromelesswindow-bug-fixes}
166+
167+
* \#I336220 - When using `ShowDialog` on a `RibbonWindow`, a `NullReferenceException` will no longer occur.
168+
* \#F166385 - The gap between the bottom of the window and the `TaskBar` is now properly maintained.
169+
170+
```
171+
172+
This is published in the page : https://help.syncfusion.com/wpf/release-notes/v19.3.0.43?type=all#chromelesswindow
173+
174+
175+
## Commit
176+
177+
Same workflow for User Guide applicable to this repository. All the changes needs to be committed in `development` branch.
178+
179+
## Preview Changes
180+
181+
All the changes will be included with User Guide automation and published in Staging Documentation machine.
182+
183+
<http://115.249.201.211:9090>

components/calendars/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 23.2.6 (2023-11-28)
6+
7+
### Calendar
8+
9+
#### Bug Fixes
10+
11+
- `#I521911` - Fixed an issue where an exception was occurring when changing the culture dynamically.
12+
513
## 23.1.41 (2023-10-17)
614

715
### DateRangePicker

components/charts/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 23.2.6 (2023-11-28)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I520071` - Now, `cluster` selection is working properly in the scatter series.
12+
- `#I522808` - Fixed console error that was thrown when using the name property in the axis for a polar chart.
13+
- `#I523059` - Now, the period selector's selected index is highlighted properly whenever we resize the screen.
14+
515
## 23.2.5 (2023-11-23)
616

717
### AccumulationChart

components/charts/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-charts",
3-
"version": "23.2.4",
3+
"version": "23.2.5",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/diagrams/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
## [Unreleased]
44

5+
## 23.2.6 (2023-11-28)
6+
7+
### Diagram
8+
9+
#### Bug Fixes
10+
11+
- `#I515562` - Now, the swimlane renders properly while dragging it from palette with multiple page enabled.
12+
- `#515563` - Exception while serializing the BPMN Group shape with child has been resolved.
13+
- `#I520515` - Now, the connector target decorator renders properly after calling doLayout with line-routing.
14+
- `#I518456` - Now, the Subprocess node and child node dragging is proper after serialization.
15+
516
## 23.2.4 (2023-11-20)
617

718
### Diagram

components/documenteditor/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
## [Unreleased]
44

5+
## 23.2.6 (2023-11-28)
6+
7+
### DocumentEditor
8+
9+
#### Bug Fixes
10+
11+
- `#I515528` - Resolved the strange behaviour of track changes on backspace and delete action.
12+
- `#I517039` - Resolved the cut issue in table when track changes is enabled.
13+
- `#I518614` - Resolved the hyperlink removing issue.
14+
- `#I513222` - Resolved the script error issue when opening attached document.
15+
- `#I513443` - Resolved the Exception issue when disable toolbar in blazor.
16+
- `#I507772` - Resolved the spellcheck underline issue on editing text.
17+
- `#I518011` - Resolved the find and replace issue for restricted document.
18+
519
## 23.2.5 (2023-11-23)
620

721
### DocumentEditor

components/documenteditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-documenteditor",
3-
"version": "23.2.4",
3+
"version": "23.2.5",
44
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/gantt/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- `#I515425` - Issue with observable data binding in Gantt chart issue has been fixed.
1313
- `#I520146` - Timeline render in advance the project start date while resizing taskbar issue has been fixed.
1414
- `#I521906` - Milestone not working properly while drop at weekend issue has been fixed.
15+
- `#I516954` - Dependency line not render after adding child record issue has been fixed.
1516

1617
## 23.2.4 (2023-11-20)
1718

components/gantt/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-gantt",
3-
"version": "23.2.4",
3+
"version": "23.2.5",
44
"description": "Essential JS 2 Gantt Component for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/grids/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
## [Unreleased]
44

5+
## 23.2.6 (2023-11-28)
6+
7+
### Grid
8+
9+
#### Bug fixes
10+
11+
- `#I517762` - Resolved the issue with paste functionality of the Grid on Mac devices.
12+
- `#I520019` - The filter dialog `popup` is closed when no records are found during the search and press Enter key has been fixed.
13+
- `#I514004` - Fixed an issue with the space between the arrow in the tooltip and the content.
14+
- `#I511050` - Error thrown while sorting columns after filtering has been resolved.
15+
- `#I464878` - The issue where the focus style for checkbox items was not applying to the spreadsheet component has been resolved.
16+
- `#F185039` - Resolved a problem where the grid would not display all records when the filter was cleared.
17+
- `#I513685` - Aria-label for `SelectAllCheckbox` is now descriptive for accessibility.
18+
19+
- `#I517762` - Resolved the issue with paste functionality of the Grid on Mac devices.
20+
- `#I514004` - Fixed an issue with the space between the arrow in the tooltip and the content.
21+
- `#I511050` - Error thrown while sorting columns after filtering has been resolved.
22+
- `#I464878` - The issue where the focus style for checkbox items was not applying to the spreadsheet component has been resolved.
23+
- `#F185039` - Resolved a problem where the grid would not display all records when the filter was cleared.
24+
- `#I513685` - Aria-label for `SelectAllCheckbox` is now descriptive for accessibility.
25+
526
## 23.2.4 (2023-11-20)
627

728
### Grid

components/imageeditor/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 23.2.6 (2023-11-28)
6+
7+
### ImageEditor
8+
9+
#### Bug Fixes
10+
11+
- Issue with "Zoom public method not working properly" has been resolved.
12+
- Issue with "Resize numeric textbox placeholder value not updated properly in rotated state" has been resolved.
13+
514
## 23.2.5 (2023-11-23)
615

716
### ImageEditor

components/imageeditor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-image-editor",
3-
"version": "23.2.4",
3+
"version": "23.2.5",
44
"description": "Essential JS 2 ImageEditor for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/inplaceeditor/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 23.2.5 (2023-11-23)
6+
7+
### In-place Editor
8+
9+
#### Bug Fixes
10+
11+
- `#I501296` - Fixed an issue where the width of the in-place-editor was affected when attempting to remove values from it.
12+
513
## 20.4.54 (2023-03-14)
614

715
### In-place Editor

components/inplaceeditor/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-inplace-editor",
3-
"version": "23.1.41",
3+
"version": "23.2.5",
44
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",
@@ -28,7 +28,7 @@
2828
"source-map-loader": "^0.2.1",
2929
"@types/chai": "^3.4.28",
3030
"@types/es6-promise": "0.0.28",
31-
"@types/jasmine": "^2.2.29",
31+
"@types/jasmine": "2.8.22",
3232
"@types/jasmine-ajax": "^3.1.27",
3333
"@types/requirejs": "^2.1.26",
3434
"vue": "2.6.14",

components/kanban/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 23.2.5 (2023-11-23)
5+
## 23.2.4 (2023-11-20)
66

77
### Kanban
88

0 commit comments

Comments
 (0)