Skip to content

Prepare for release 2025.05.20.1 #379

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 57 commits into from
May 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
b071d2d
Explore circuits - json and api (#297)
loris-olivier-obi May 1, 2025
127f28e
Creation of single circuit page base (#304)
loris-olivier-obi May 1, 2025
f811075
Added the header content of the detail view with metadata and paramet…
loris-olivier-obi May 1, 2025
125cee9
Circuit detail view hero image preview section (#307)
loris-olivier-obi May 2, 2025
5bebbe7
Removed currency dropdown (#287)
loris-olivier-obi May 5, 2025
5909389
Componisation of circuit table (#308)
loris-olivier-obi May 5, 2025
953171c
Circuit detail view fixed the typo in fetching individual circuits (#…
loris-olivier-obi May 5, 2025
85b01a3
Changed the name of the api circuit for explore-circuits (#312)
loris-olivier-obi May 5, 2025
1c7b827
Circuit detail view bottom sections (#311)
loris-olivier-obi May 6, 2025
a58b50a
Fixed the circuit count (#315)
loris-olivier-obi May 6, 2025
5b2a36c
Fix circuit layout (#317)
pgetta May 6, 2025
5951646
Fix detailed view scroll and top level layout (#318)
pgetta May 6, 2025
ad1c2f8
Added reset search input when closing search bar (#321)
loris-olivier-obi May 6, 2025
eb4973d
Fix simulate page filter (#323)
g-bar May 7, 2025
3ada413
Fix all lint issues (#324)
tolokoban May 7, 2025
dbd7852
189/prevent emails not approved by insurance (#326)
tolokoban May 7, 2025
63a0be6
Removed the component of search bar and filter options (#325)
loris-olivier-obi May 7, 2025
6352839
remove redandunt imports
bilalesi May 7, 2025
2d857c0
Subcircuit issue with download (#327)
loris-olivier-obi May 7, 2025
3ca87aa
Fix subcircuit url in two cases (#332)
loris-olivier-obi May 8, 2025
eb2b355
Fix download for 3rd depth level subcircuits (#333)
loris-olivier-obi May 8, 2025
3272d72
Use both @id and @id.keyword fields for query (#331)
pgetta May 8, 2025
3726804
Literature search tool has a new output format now (#337)
tolokoban May 9, 2025
83309ec
Get the searchParams when changing route to a new URL (#320)
loris-olivier-obi May 9, 2025
b79285e
allow user to accept invites without active paid subscription
bilalesi May 6, 2025
960f667
remove checking for pro subscription when invite to vlab
bilalesi May 9, 2025
ee89edf
Fix type validation with public project artifact table type (#341)
loris-olivier-obi May 13, 2025
bb110b0
add commit hooks using lefthook
bilalesi May 10, 2025
3533289
Download options for circuits (#347)
loris-olivier-obi May 13, 2025
27a0b00
Removed deleted and reserved countries. Sort by name (#345)
jdcourcol May 13, 2025
4537afc
Add filter to circuit tables (#349)
loris-olivier-obi May 13, 2025
5e58c6f
Circuit detail active link licence parent circuit (#351)
loris-olivier-obi May 13, 2025
df9635f
Search bar for circuits (#350)
loris-olivier-obi May 13, 2025
eb7f6b3
Circuit table add published in column (#355)
loris-olivier-obi May 14, 2025
34cd566
Circuit table hierarchical and flat list views (#354)
loris-olivier-obi May 14, 2025
e308f42
Circuit detail view greyed out disabled button icon (#356)
loris-olivier-obi May 14, 2025
00f68b3
Circuits format number with comma (#353)
loris-olivier-obi May 14, 2025
95e348b
Circuit detail view download panel (#352)
loris-olivier-obi May 14, 2025
160394e
62/ai more suggestions (#359)
tolokoban May 14, 2025
0195379
Filter circuits by brain region
g-bar May 14, 2025
79671e6
Section not set (#362)
g-bar May 14, 2025
843f933
fix sanity dataset env
bilalesi May 14, 2025
fe5ef96
Ciruit table hide non matching filtered circuits (#365)
loris-olivier-obi May 15, 2025
228ea6f
rename literature search to AI Assistant (#358)
jdcourcol May 15, 2025
2addb9e
change launch to launch price in the subscription pill (#361)
jdcourcol May 15, 2025
29e067e
fix user journey order and unwanted reset of current session
bilalesi May 15, 2025
1301fe0
limit the number of entries to store in indexdb, less then the defaul…
bilalesi May 15, 2025
1b63d25
Circuit metada update contributor published in registration date (#367)
loris-olivier-obi May 15, 2025
e5c681c
Handle view all for contributors and institutions (#368)
loris-olivier-obi May 15, 2025
aaedab9
Circuit list remove contributor capitalize published in (#370)
loris-olivier-obi May 16, 2025
e472d00
replace mailto support by url to support page (#373)
jdcourcol May 16, 2025
740d3be
Implement back to list in circuit detail (#372)
loris-olivier-obi May 16, 2025
0b81e07
Reduce the journey size from 10 to 3 (#374)
tolokoban May 16, 2025
d47d924
rename Assistance to Assistant (#375)
jdcourcol May 19, 2025
17cf97d
Circuits detail text corrections (#378)
loris-olivier-obi May 20, 2025
5671e3d
Merge branch 'develop' into chore/prepare-for-release-2025.05.20.1
pgetta May 20, 2025
a081b1d
Resolve MR conflicts
pgetta May 20, 2025
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
15 changes: 15 additions & 0 deletions lefthook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
pre-commit:
parallel: true
commands:
eslint:
glob: '*.{js,jsx,ts,tsx}'
run: npx eslint --fix {staged_files}
prettier:
glob: '*.{js,jsx,ts,tsx,json}'
run: npx prettier --write {staged_files} && git add {staged_files}

pre-push:
parallel: true
commands:
typescript:
run: npm run typecheck
164 changes: 164 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lefthook": "^1.11.12",
"msw": "^2.0.5",
"postcss": "^8.4.23",
"prettier": "^3.2.4",
Expand Down
2 changes: 1 addition & 1 deletion public/circuits/ALL_CIRCUITS.json

Large diffs are not rendered by default.

Loading