@artsy/cohesion 4.385.0 → 4.386.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
name: Link PR to Notion
|
|
2
|
+
on:
|
|
3
|
+
pull_request:
|
|
4
|
+
types: [opened, edited]
|
|
5
|
+
jobs:
|
|
6
|
+
link:
|
|
7
|
+
uses: artsy/duchamp/.github/workflows/link-pr-to-notion.yml@main
|
|
8
|
+
secrets:
|
|
9
|
+
notion-token: ${{ secrets.NOTION_TOKEN }}
|
|
10
|
+
root-page-id: ${{ secrets.NOTION_ROOT_PAGE_ID }}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
# v4.386.1 (Tue Jul 14 2026)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- feat: add "fairs" as a SelectedFromDrawerSubject [#732](https://github.com/artsy/cohesion/pull/732) ([@claude](https://github.com/claude) [@MounirDhahri](https://github.com/MounirDhahri))
|
|
6
|
+
|
|
7
|
+
#### Authors: 2
|
|
8
|
+
|
|
9
|
+
- Claude ([@claude](https://github.com/claude))
|
|
10
|
+
- Mounir Dhahri ([@MounirDhahri](https://github.com/MounirDhahri))
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# v4.386.0 (Fri Jul 10 2026)
|
|
15
|
+
|
|
16
|
+
#### 🚀 Enhancement
|
|
17
|
+
|
|
18
|
+
- chore: add link-pr-to-notion workflow [#730](https://github.com/artsy/cohesion/pull/730) ([@rabidpaul](https://github.com/rabidpaul))
|
|
19
|
+
|
|
20
|
+
#### Authors: 1
|
|
21
|
+
|
|
22
|
+
- Paul Sanders ([@rabidpaul](https://github.com/rabidpaul))
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
1
26
|
# v4.385.0 (Tue Jul 07 2026)
|
|
2
27
|
|
|
3
28
|
#### 🚀 Enhancement
|
|
@@ -68,7 +68,7 @@ export interface TappedArtworkList {
|
|
|
68
68
|
* }
|
|
69
69
|
* ```
|
|
70
70
|
*/
|
|
71
|
-
export type SelectedFromDrawerSubject = "artists" | "
|
|
71
|
+
export type SelectedFromDrawerSubject = "artists" | "categories" | "fairs" | "galleries" | "shows";
|
|
72
72
|
export interface SelectedFromDrawer {
|
|
73
73
|
action: ActionType.selectedFromDrawer;
|
|
74
74
|
context_screen: OwnerType.favoritesFollows;
|