Skip to content

Commit

Permalink
v25.2.5 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed May 21, 2024
1 parent adcf77b commit 169b1c5
Show file tree
Hide file tree
Showing 37 changed files with 385 additions and 44 deletions.
2 changes: 1 addition & 1 deletion components/barcodegenerator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)

### Barcode

Expand Down
2 changes: 1 addition & 1 deletion components/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-base",
"version": "25.2.3",
"version": "25.2.4",
"description": "A common package of Essential JS 2 base Angular libraries, methods and class definitions",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
183 changes: 183 additions & 0 deletions components/base/releasenotes/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,183 @@
# Release Notes Guidelines

This section contains guidelines on naming files, sections and other document elements.

> **If there is no changes in product, you don't need to mention that in Release Notes.**
## Encoding Format

All Release Notes files should be saved in **Encoding in UTF-8 (Without BOM)** format. You can use Notepad++ to verify the encoding.

![Encoding.png](https://bitbucket.org/repo/j57Gz9/images/2199960455-Encoding.png)

## Release Notes Folder Hierarchy

* Platform [Folder]
* ----ReleaseNotes [Folder]
* --------v13.3.x.x [Folder]
* ------------Control1.md
* ------------Control2.md
* ------------Control3.md
* --------v13.4.x.x [Folder]
* ------------Control1.md
* ------------Control2.md
* ------------Control3.md

### How to write Release Notes?

* Each release markdown files should reside under corresponding version folder in their platform.
* Each product release notes should be created in separate file name.
* File name should be same as the product name.

> **NOTE**: Please do not add any Front Matter information in Release Notes files.
## Markdown File Structure

Each markdown file should have following items.

* Control Name
* Features
* Bug fixes
* Braking Changes
* Known Issues

> Do not add any front matter(triple dashed line) in this markdown.
### Control Name

Control Name should be with prefix `##`. This will be rendered as `H2` in html file.

#### Syntax

```
## <Control-Name>
```

#### Example

```
## ejAccrodion
```

### Features

* Each features should be written in unordered list.
* Feature header should have id in the following format `<control-name>-features`. All characters in **id should be written in lower case.**

#### Syntax

```
### Features
{:#<control-name>-features}
* \#1 - Feature Info
* \#2 - Feature Info
* \#3 - Feature Info
```

#### Example

```
### Features
{:#ejaccordion-features}
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
* \#140303, \#140304 - Accordion provides option to add new items dynamically by using the `addItem` method
```

> **NOTE:**
> * In markdown `#` used to represent headers.
> * By default it will be converted as HTML headers.
> * To display the `#` in html, please use escape sequences [See above example].
### Bug Fixes

* Each bug fix should be written in unordered list.
* Bug fixes header should have id in the following format `<control-name>-bug-fixes`. All characters in **id should be written in lower case.**

#### Syntax

```
### Bug fixes
{:#<control-name-in-lower-case>-bug-fixes}
* \#1 - Bug Fix
* \#2 - Bug Fix
* \#3 - Bug Fix
```

#### Example

```
### Bug Fixes
{:#ejaccordion-bug-fixes}
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
* \#140303 - Accordion provides option to add new items dynamically by using the `addItem` method
* \#140303, \#140304 - Accordion provides option to add new items dynamically by using the `addItem` method
```

> **NOTE:**
> * In markdown `#` used to represent headers.
> * By default it will be converted as HTML headers.
> * To display the `#` in html, please use escape sequences [See above example].
### Breaking Changes

* Each breaking changes should be written in unordered list.
* Breaking changes header should have id in the following format `<control-name>-breaking-changes`. All characters in **id should be written in lower case.**

```
### Breaking Changes
{:#<control-name>-breaking-changes}
* * Breaking Change 1
* * Breaking Change 2
* * Breaking Change 3
```

#### Example

```
### Breaking Changes
{:#ejaccordion-breaking-changes}
* 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
```

> **NOTE:**
> * In markdown `#` used to represent headers.
> * By default it will be converted as HTML headers.
> * To display the `#` in html, please use escape sequences [See above example].
## Incidents and Forums in Release notes

We can represent the Incident ID with I and F for forums in release notes MD files

#### Example


```
## ChromelessWindow
### Bug Fixes
{:#chromelesswindow-bug-fixes}
* \#I336220 - When using `ShowDialog` on a `RibbonWindow`, a `NullReferenceException` will no longer occur.
* \#F166385 - The gap between the bottom of the window and the `TaskBar` is now properly maintained.
```

This is published in the page : https://help.syncfusion.com/wpf/release-notes/v19.3.0.43?type=all#chromelesswindow


## Commit

Same workflow for User Guide applicable to this repository. All the changes needs to be committed in `development` branch.

## Preview Changes

All the changes will be included with User Guide automation and published in Staging Documentation machine.

<http://115.249.201.211:9090>
2 changes: 1 addition & 1 deletion components/buttons/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-buttons",
"version": "25.2.3",
"version": "25.2.4",
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
12 changes: 10 additions & 2 deletions components/calendars/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

## [Unreleased]

## 25.2.4 (2024-05-14)
## 25.2.5 (2024-05-21)

### TimePicker

#### Bug Fixes

- `#I576599` - Issue with "When enabling mask PM value is not updated" has been resolved.
- `#I587516` - Fixed an issue where the timepicker `prevValue` property was holding the current selected value instead of the previous value.

## 25.1.40 (2024-04-16)

Expand Down Expand Up @@ -1241,6 +1241,14 @@ TimePicker component is the pre-filled dropdown list with the time values 12/24
- **Accessibility** - Provided with built-in accessibility support which helps to access all the TimePicker component features through the keyboard, screen readers, or other assistive technology devices.


## 25.2.4 (2024-05-14)

### TimePicker

#### Bug Fixes

- `#I576599` - Issue with "When enabling mask PM value is not updated" has been resolved.

## 19.3.56 (2021-12-02)

### TimePicker
Expand Down
2 changes: 1 addition & 1 deletion components/calendars/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-calendars",
"version": "25.2.3",
"version": "25.2.4",
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
14 changes: 14 additions & 0 deletions components/charts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

## [Unreleased]

## 25.2.5 (2024-05-21)

### Accumulation Chart

#### Bug Fixes

- `#I580553` - Accessibility issues are resolved, and now the score has become stable.

### Chart

#### Bug Fixes

- `#I581265` - Now, the Stacking Bar chart has been exported as a CSV file, and the CSV contains the appropriate data.

## 25.2.4 (2024-05-14)

### Chart
Expand Down
2 changes: 1 addition & 1 deletion components/charts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-charts",
"version": "25.2.3",
"version": "25.2.4",
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
9 changes: 9 additions & 0 deletions components/diagrams/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

## [Unreleased]

## 25.2.5 (2024-05-21)

### Diagram

#### Bug Fixes

- `#I577994` - Now, After zooming and exporting the HTML content, the scroll Padding values are considered.
- `#I586462` - Now, undo redo working properly after editing swimlane child node’s annotation.

## 25.2.4 (2024-05-14)

### Diagram
Expand Down
2 changes: 1 addition & 1 deletion components/diagrams/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-diagrams",
"version": "25.2.3",
"version": "25.2.4",
"description": "Feature-rich diagram control to create diagrams like flow charts, organizational charts, mind maps, and BPMN diagrams. Its rich feature set includes built-in shapes, editing, serializing, exporting, printing, overview, data binding, and automatic layouts. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
13 changes: 13 additions & 0 deletions components/documenteditor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

## [Unreleased]

## 25.2.5 (2024-05-21)

### DocumentEditor

#### Bug Fixes

- `#I584933` - Resolved the Manage Styles is missing from the DocumentEditor.
- `#I585396` - Resolved the odd cursor behaviour with superscript and subscript.
- `#I583968` - Resolved the insert field issue when local paste is enabled.
- `#I587711` - Resolved the spellcheck change all does not work on document opening case.
- `#I586658` - Resolved the backspace issue while deleting list item.
- `#I585406` - Resolved the spellcheck annotation disappears issue when cursor is in range.

## 25.2.4 (2024-05-14)

### DocumentEditor
Expand Down
2 changes: 1 addition & 1 deletion components/documenteditor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-documenteditor",
"version": "25.2.3",
"version": "25.2.4",
"description": "Feature-rich document editor control with built-in support for context menu, options pane and dialogs. for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
21 changes: 21 additions & 0 deletions components/dropdowns/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@

## [Unreleased]

## 25.2.5 (2024-05-21)

### DropDownTree

- `#I586376` - Trigger the "select" event instantly after the item selection in Dropdown Tree popup.

### MultiSelect

#### Bug Fixes

- `#I188132` - Fixed an issue where the 'for' attribute was not being added to the label element of MultiSelect.

### DropDownList

#### Bug Fixes

- `#I583651` - Fixed the issue with the header remaining fixed on the page after scrolling while using dropdown with grouping on a scrollable page.
- `#I583092` - Fixed an issue where the dropdownlist did not retrieve the proper index when dynamically updating the datasource with an index.

- `#I529469` - Resolved the issue where the page would slow down when rendering the component.

## 25.2.4 (2024-05-14)

### MultiSelect
Expand Down
2 changes: 1 addition & 1 deletion components/dropdowns/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-angular-dropdowns",
"version": "25.2.3",
"version": "25.2.4",
"description": "Essential JS 2 DropDown Components for Angular",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
Loading

0 comments on commit 169b1c5

Please sign in to comment.