Skip to content

chore: update changelog for v2.0.0-beta.4 #363

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

Merged
merged 2 commits into from
Jul 15, 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
31 changes: 7 additions & 24 deletions web/src/changelog.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,16 @@
{
"Go - General": [
"Interface - Code Editor": [
{
"issueId": 324,
"url": "issues/324",
"description": "Add workaround for Playground API unit tests bug"
"issueId": 362,
"url": "pull/362",
"description": "Support package paths autocomplete in import section"
}
],
"Go - WebAssembly": [
{
"issueId": 348,
"url": "/issues/348",
"description": "Disable Yaegi Go interpreter"
}
],
"Interface - General": [
{
"issueId": 354,
"url": "pull/354",
"description": "Add file deletion confirm dialog"
},
{
"issueId": 347,
"url": "pull/347",
"description": "Add DarkReader extension support"
},
{
"issueId": 346,
"url": "pull/346",
"description": "Disable broken service worker"
"issueId": 359,
"url": "pull/359",
"description": "Add unit tests support in WebAssembly environment"
}
]
}
3 changes: 0 additions & 3 deletions web/src/components/modals/AboutModal/ChangeLog/ChangeLog.css

This file was deleted.

6 changes: 2 additions & 4 deletions web/src/components/modals/AboutModal/ChangeLog/ChangeLog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import { Link } from '@fluentui/react/lib/Link'
import changelog from '~/changelog.json'
import environment from '~/environment'

import './ChangeLog.css'

interface Props extends Pick<React.HTMLProps<HTMLDivElement>, 'className' | 'style'> {}

export const ChangeLog: React.FC<Props> = ({ className, ...props }) => {
Expand All @@ -18,10 +16,10 @@ export const ChangeLog: React.FC<Props> = ({ className, ...props }) => {
<ul>
{items.map(({ issueId, url, description }) => (
<li key={issueId}>
<Link className="ChangeLog__issue-url" href={`${environment.urls.github}/${url}`} target="_blank">
<Link href={`${environment.urls.github}/${url}`} target="_blank">
#{issueId}
</Link>
<span>{description}</span>
<span> - {description}</span>
</li>
))}
</ul>
Expand Down
Loading