Skip to content

Commit 9a59022

Browse files
authored
chore: bump @semantic-release/github to ^12.0.6 (#3169)
## Summary Bumps `@semantic-release/github` from 12.0.2 β†’ 12.0.6 (and `semantic-release` 25.0.2 β†’ 25.0.3) so that v13 hotfixes published from `release-v13` stop overwriting the **Latest** badge on the public GitHub release pages. v12.0.6 includes [semantic-release/github#1169](semantic-release/github#1169), which sends `make_latest` on the GitHub release based on the branch type: - **main release branch** (`master` / v14 line) β†’ `make_latest: "true"` (unchanged behavior β€” keeps the Latest badge) - **maintenance branch** (`release-v13`, configured with `range: "13.x"`) β†’ `make_latest: "false"` (no longer claims the Latest badge)
1 parent 5a7b106 commit 9a59022

4 files changed

Lines changed: 68 additions & 266 deletions

File tree

β€Žpackage.jsonβ€Ž

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,7 @@
181181
"@playwright/test": "^1.42.1",
182182
"@semantic-release/changelog": "^6.0.3",
183183
"@semantic-release/git": "^10.0.1",
184+
"@semantic-release/github": "^12.0.6",
184185
"@stream-io/stream-chat-css": "^5.16.1",
185186
"@testing-library/dom": "^10.4.0",
186187
"@testing-library/jest-dom": "^6.6.3",
@@ -233,7 +234,7 @@
233234
"prettier": "^3.5.3",
234235
"react": "^19.0.0",
235236
"react-dom": "^19.0.0",
236-
"semantic-release": "^25.0.2",
237+
"semantic-release": "^25.0.3",
237238
"stream-chat": "^9.41.1",
238239
"ts-jest": "^29.2.5",
239240
"typescript": "^5.4.5",

β€Žsrc/components/Gallery/ModalGallery.tsxβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ export const ModalGallery = (props: ModalGalleryProps) => {
4646
);
4747

4848
return (
49-
// @ts-expect-error ignore the TS error as react-image-gallery was on @types/react@18 while stream-chat-react being upgraded to React 19 (https://github.com/xiaolin/react-image-gallery/issues/809)
5049
<ImageGallery
5150
items={formattedArray}
5251
renderItem={renderItem}

β€Žsrc/components/Message/renderText/renderText.tsxβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export type RenderTextPluginConfigurator = (
2424
) => PluggableList;
2525

2626
export const defaultAllowedTagNames: Array<
27-
keyof JSX.IntrinsicElements | 'emoji' | 'mention'
27+
keyof React.JSX.IntrinsicElements | 'emoji' | 'mention'
2828
> = [
2929
'html',
3030
'text',
@@ -89,7 +89,7 @@ export const markDownRenderers: RenderTextOptions['customMarkDownRenderers'] = {
8989

9090
export type RenderTextOptions = {
9191
allowedTagNames?: Array<
92-
keyof JSX.IntrinsicElements | 'emoji' | 'mention' | (string & {})
92+
keyof React.JSX.IntrinsicElements | 'emoji' | 'mention' | (string & {})
9393
>;
9494
customMarkDownRenderers?: Options['components'] &
9595
Partial<{

0 commit comments

Comments
Β (0)