Skip to content

Commit 5e6dcfd

Browse files
authored
Merge branch 'master' into bf-1594
2 parents 8aeb6a0 + 1aee654 commit 5e6dcfd

26 files changed

+163
-49
lines changed

.autorc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"email": "dandibot@mit.edu",
55
"noVersionPrefix": true,
66
"plugins": [
7+
"protected-branch",
78
"git-tag",
89
[
910
"exec",

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
id-token: write
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929
with:
3030
fetch-depth: 1
3131

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828

2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v3

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
#- 3.11
1818
steps:
1919
- name: Check out repository
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v5
2121
with:
2222
# Fetch all commits so that versioneer will return something compatible
2323
# with semantic-version

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Set up environment
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515
- name: Set up Python

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
1414
steps:
1515
- name: Checkout source
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919

@@ -33,12 +33,14 @@ jobs:
3333

3434
- name: Create release
3535
run: |
36+
echo "@${{ github.actor }} is creating a release triggered by ${{ github.event_name }}"
3637
if [ "${{ github.event_name }}" = workflow_dispatch ]
3738
then opts=
3839
else opts=--only-publish-with-release-label
3940
fi
4041
~/auto shipit -vv $opts
4142
env:
43+
PROTECTED_BRANCH_REVIEWER_TOKEN: ${{ secrets.GH_TOKEN }}
4244
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4345
TWINE_USERNAME: __token__
4446
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
steps:
6363
- name: Set up environment
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v5
6565
with:
6666
# Fetch all commits so that versioneer will return something compatible
6767
# with semantic-version

.github/workflows/typing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Check out repository
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
fetch-depth: 0
1515

.github/workflows/update-year.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
run:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919
- uses: FantasticFiasco/action-update-license-year@v3

CHANGELOG.md

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,71 @@
1+
# 0.71.0 (Fri Aug 22 2025)
2+
3+
#### 🚀 Enhancement
4+
5+
- Rename dandiarchive `staging` => `sandbox` [#1668](https://github.com/dandi/dandi-cli/pull/1668) ([@mvandenburgh](https://github.com/mvandenburgh))
6+
7+
#### 🐛 Bug Fix
8+
9+
- BF: fix upload of zarrs when connection sockets time out -- retry [#1675](https://github.com/dandi/dandi-cli/pull/1675) ([@yarikoptic](https://github.com/yarikoptic) [@CodyCBakerPhD](https://github.com/CodyCBakerPhD))
10+
- BF: fix upload of zarrs when we do not use minted upload URLs in time [#1674](https://github.com/dandi/dandi-cli/pull/1674) ([@yarikoptic](https://github.com/yarikoptic) [@CodyCBakerPhD](https://github.com/CodyCBakerPhD))
11+
- organize: operate on unique file-paths in case of multiple paths leading to the same file(s) [#1673](https://github.com/dandi/dandi-cli/pull/1673) ([@yarikoptic](https://github.com/yarikoptic))
12+
13+
#### 🏠 Internal
14+
15+
- Revert back to use of GITHUB_TOKEN for actual push of PR to be merged with changelog [#1688](https://github.com/dandi/dandi-cli/pull/1688) ([@yarikoptic](https://github.com/yarikoptic))
16+
- Fix auto release [#1684](https://github.com/dandi/dandi-cli/pull/1684) ([@CodyCBakerPhD](https://github.com/CodyCBakerPhD))
17+
- Bring 0.70.0 tag into the "master" git line [#1682](https://github.com/dandi/dandi-cli/pull/1682) ([@dandibot](https://github.com/dandibot) [@yarikoptic](https://github.com/yarikoptic))
18+
- [gh-actions](deps): Bump actions/checkout from 4 to 5 [#1679](https://github.com/dandi/dandi-cli/pull/1679) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@yarikoptic](https://github.com/yarikoptic))
19+
20+
#### 📝 Documentation
21+
22+
- Merge 0.70.0 tag (CHANGELOG) into master [#1681](https://github.com/dandi/dandi-cli/pull/1681) ([@dandibot](https://github.com/dandibot) [@yarikoptic](https://github.com/yarikoptic))
23+
24+
#### 🧪 Tests
25+
26+
- Update `dandi-archive` docker env vars [#1678](https://github.com/dandi/dandi-cli/pull/1678) ([@mvandenburgh](https://github.com/mvandenburgh) [@yarikoptic](https://github.com/yarikoptic))
27+
28+
#### Authors: 5
29+
30+
- [@dependabot[bot]](https://github.com/dependabot[bot])
31+
- Cody Baker ([@CodyCBakerPhD](https://github.com/CodyCBakerPhD))
32+
- Dandi Bot ([@dandibot](https://github.com/dandibot))
33+
- Mike VanDenburgh ([@mvandenburgh](https://github.com/mvandenburgh))
34+
- Yaroslav Halchenko ([@yarikoptic](https://github.com/yarikoptic))
35+
36+
---
37+
38+
# 0.70.0 (Sat Jul 26 2025)
39+
40+
#### 🚀 Enhancement
41+
42+
- Expand Zarr dependency to include version 3 [#1653](https://github.com/dandi/dandi-cli/pull/1653) ([@kabilar](https://github.com/kabilar))
43+
44+
#### 🐛 Bug Fix
45+
46+
- Fix bug when running metadata extraction on BIDS with NWB [#1656](https://github.com/dandi/dandi-cli/pull/1656) ([@CodyCBakerPhD](https://github.com/CodyCBakerPhD) [@yarikoptic](https://github.com/yarikoptic))
47+
48+
#### 🏠 Internal
49+
50+
- Use name/email corresponding to our dandibot so we could allow it to push releases [#1669](https://github.com/dandi/dandi-cli/pull/1669) ([@yarikoptic](https://github.com/yarikoptic))
51+
- Adjust CI to differentiate obolibrary tests [#1657](https://github.com/dandi/dandi-cli/pull/1657) ([@CodyCBakerPhD](https://github.com/CodyCBakerPhD) [@yarikoptic](https://github.com/yarikoptic))
52+
- Improve `follow_redirect()` so that it has a singular checkpoint for limiting number of attempts and clearer logic [#1634](https://github.com/dandi/dandi-cli/pull/1634) ([@candleindark](https://github.com/candleindark))
53+
- [Chore] Fix MyPy [#1654](https://github.com/dandi/dandi-cli/pull/1654) ([@CodyCBakerPhD](https://github.com/CodyCBakerPhD))
54+
55+
#### 🧪 Tests
56+
57+
- RF: in our example skip going through all dandisets/assets! [#1667](https://github.com/dandi/dandi-cli/pull/1667) ([@yarikoptic](https://github.com/yarikoptic))
58+
- Upgrade Windows image for test CI [#1655](https://github.com/dandi/dandi-cli/pull/1655) ([@kabilar](https://github.com/kabilar))
59+
60+
#### Authors: 4
61+
62+
- Cody Baker ([@CodyCBakerPhD](https://github.com/CodyCBakerPhD))
63+
- Isaac To ([@candleindark](https://github.com/candleindark))
64+
- Kabilar Gunalan ([@kabilar](https://github.com/kabilar))
65+
- Yaroslav Halchenko ([@yarikoptic](https://github.com/yarikoptic))
66+
67+
---
68+
169
# 0.69.3 (Wed Jun 04 2025)
270

371
#### 🐛 Bug Fix

0 commit comments

Comments
 (0)