Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release-notes): added release notes of recent releases #404

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion src/components/ReleaseNotesGenerator.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@
name: 'perf',
color: '#5555aa',
label: 'Performance',
}
},
{
name: 'enhancements',
color: '#8e8ee5',
label: 'Enhancements',
},
];

function convertHtmlTagsInTextToReactTags(text) {
Expand All @@ -43,7 +48,7 @@
const htmlTagRegex = /<\s*\/?\s*([a-z][a-z0-9-]*)(\s[^>]*?)?\s*\/?>/g;

// Function to convert each html tag to React-like tag name
const convertTag = (match, tagName, attributes, offset, string) => {

Check warning on line 51 in src/components/ReleaseNotesGenerator.jsx

View workflow job for this annotation

GitHub Actions / lint

'offset' is defined but never used

Check warning on line 51 in src/components/ReleaseNotesGenerator.jsx

View workflow job for this annotation

GitHub Actions / lint

'string' is defined but never used
// Convert tagName to React-like tag name
let reactTagName = tagName
.split('-')
Expand Down
28 changes: 28 additions & 0 deletions static/release-notes/react-web-core.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,32 @@
[
{
"version": "2.1.12-13",
"createdAt": "1732086657",
"fixes": [
"Improve audio,video subscription speed and reliability",
"Fixed the issue where participant call report was not generated due to ip detection failure",
"Fixed livestream socket reconnection issues for viewer"
],
"enhancements": [
"Added stats such as bitrate, packet loss on `mediaScoreUpdate` event.",
"Livestream now supports direct ingestion via RTMP. Use `meeting.livestream.start({ manualIngestion: true })`"
]
},
{
"version": "2.1.11",
"createdAt": "1731944143",
"fixes": [
"Added additional metadata required for whiteboard plugin",
"Fixed pip error `addSource of undefined`"
]
},
{
"version": "2.1.10",
"createdAt": "1730705555",
"fixes": [
"The connected meeting feature, previously gated behind a feature flag, is now available to all users without additional configuration"
]
},
{
"version": "2.1.9",
"createdAt": "1729752332",
Expand Down
67 changes: 67 additions & 0 deletions static/release-notes/ui-kit.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,71 @@
[
{
"version": "2.1.0-1",
"createdAt": 1732087718,
"features": [
"Added media troubleshooter in more menu"
],
"perf": [
"Implemented virtualization in the participants' list to improve performance and responsiveness when rendering a large number of participants."
]
},
{
"version": "2.0.6",
"createdAt": 1730705348,
"fixes": [
"Removed the feature flag for private chat, making it accessible by default for all users."
]
},
{
"version": "2.0.5",
"createdAt": 1728381516,
"fixes": [
"Fixed an issue where the device selector was not updating after granting media permissions on the setup screen."
]
},
{
"version": "2.0.4",
"createdAt": 1727864194,
"fixes": [
"Fixed an issue where the device selector was not updating after granting media permissions on macOS.",
"Fixed PIP race cases where PIP was not initialised in time and participants feeds were not added to PIP",
"Fixed PIP issue where preview video was shown in PIP",
"Fixed `<dyte-avatar>` z-index issues"
]
},
{
"version": "2.0.3",
"createdAt": 1725947806,
"fixes": [
"Corrected styling issues with `<dyte-button>` when the `disabled` key was set to `false`."
]
},
{
"version": "2.0.2",
"createdAt": 1727864194,
"fixes": [
"Fixed `<dyte-chat-toggle>` to display the unread message count only after joining a meeting."
]
},
{
"version": "2.0.1",
"createdAt": 1724994414,
"fixes": [
"Removed the waitlisted notification for participants after they were accepted into the meeting."
]
},
{
"version": "2.0.0",
"createdAt": 1722423085,
"features": [
"Added compatibility with web-core 2.0."
],
"breaking-changes": [
"Removed `<dyte-debugger>` component",
"Dropped support for the v1 API",
"Removed usages of deprecated stage APIs"
]
},
{
"version": "1.66.0",
"createdAt": 1709193540,
Expand Down
28 changes: 28 additions & 0 deletions static/release-notes/web-core.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,32 @@
[
{
"version": "2.1.12-13",
"createdAt": "1732086657",
"fixes": [
"Improve audio,video subscription speed and reliability",
"Fixed the issue where participant call report was not generated due to ip detection failure",
"Fixed livestream socket reconnection issues for viewer"
],
"enhancements": [
"Added stats such as bitrate, packet loss on `mediaScoreUpdate` event.",
"Livestream now supports direct ingestion via RTMP. Use `meeting.livestream.start({ manualIngestion: true })`"
]
},
{
"version": "2.1.11",
"createdAt": "1731944143",
"fixes": [
"Added additional metadata required for whiteboard plugin",
"Fixed pip error `addSource of undefined`"
]
},
{
"version": "2.1.10",
"createdAt": "1730705555",
"fixes": [
"The connected meeting feature, previously gated behind a feature flag, is now available to all users without additional configuration"
]
},
{
"version": "2.1.9",
"createdAt": "1729752332",
Expand Down
Loading