Skip to content

Commit 06782e9

Browse files
committed
Merge branch 'release/24.06.0'
2 parents 6718a6d + 09be32c commit 06782e9

File tree

73 files changed

+1962
-1515
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+1962
-1515
lines changed

.github/actions/start-build/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ runs:
2727
- name: Copy Settings
2828
shell: bash
2929
run: |
30-
cp website/settings/local-travis.py website/settings/local.py
31-
cp api/base/settings/local-travis.py api/base/settings/local.py
30+
cp website/settings/local-ci.py website/settings/local.py
31+
cp api/base/settings/local-ci.py api/base/settings/local.py
3232
mkdir -p ~/preprints
3333
touch ~/preprints/index.html
3434
- name: PIP install
@@ -41,7 +41,7 @@ runs:
4141
shell: bash
4242
run: |
4343
# bumped psycopg to match requirements.txt, as otherwise build would fail
44-
poetry run python3 -m invoke travis-addon-settings
44+
poetry run python3 -m invoke ci-addon-settings
4545
pip uninstall uritemplate.py --yes
4646
# use yarn add --exact to match versions in yarn.lock w/o installing all deps
4747
yarn add --exact bower@^1.8.8

.github/workflows/test-build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v2
5353
- uses: ./.github/actions/start-build
5454
- name: Run tests
55-
run: poetry run python3 -m invoke test-travis-addons -n 1 --junit
55+
run: poetry run python3 -m invoke test-ci-addons -n 1 --junit
5656
- name: Upload report
5757
if: (github.event_name != 'pull_request') && (success() || failure()) # run this step even if previous step failed
5858
uses: ./.github/actions/gen-report
@@ -79,7 +79,7 @@ jobs:
7979
- uses: actions/checkout@v2
8080
- uses: ./.github/actions/start-build
8181
- name: Run tests
82-
run: poetry run python3 -m invoke test-travis-website -n 1 --junit
82+
run: poetry run python3 -m invoke test-ci-website -n 1 --junit
8383
- name: Upload report
8484
if: (github.event_name != 'pull_request') && (success() || failure()) # run this step even if previous step failed
8585
uses: ./.github/actions/gen-report
@@ -108,7 +108,7 @@ jobs:
108108
- name: NVM & yarn install
109109
run: poetry run python3 -m invoke assets --dev
110110
- name: Run test
111-
run: poetry run python3 -m invoke test-travis-api1-and-js -n 1 --junit
111+
run: poetry run python3 -m invoke test-ci-api1-and-js -n 1 --junit
112112
- name: Upload report
113113
if: (github.event_name != 'pull_request') && (success() || failure()) # run this step even if previous step failed
114114
uses: ./.github/actions/gen-report
@@ -135,7 +135,7 @@ jobs:
135135
- uses: actions/checkout@v2
136136
- uses: ./.github/actions/start-build
137137
- name: Run tests
138-
run: poetry run python3 -m invoke test-travis-api2 -n 1 --junit
138+
run: poetry run python3 -m invoke test-ci-api2 -n 1 --junit
139139
- name: Upload report
140140
if: (github.event_name != 'pull_request') && (success() || failure()) # run this step even if previous step failed
141141
uses: ./.github/actions/gen-report
@@ -163,7 +163,7 @@ jobs:
163163
- uses: actions/checkout@v2
164164
- uses: ./.github/actions/start-build
165165
- name: Run tests
166-
run: poetry run python3 -m invoke test-travis-api3-and-osf -n 1 --junit
166+
run: poetry run python3 -m invoke test-ci-api3-and-osf -n 1 --junit
167167
- name: Upload report
168168
if: (github.event_name != 'pull_request') && (success() || failure()) # run this step even if previous step failed
169169
uses: ./.github/actions/gen-report

.travis.yml

Lines changed: 0 additions & 185 deletions
This file was deleted.

CHANGELOG

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
We follow the CalVer (https://calver.org/) versioning scheme: YY.MINOR.MICRO.
44

5+
24.06.0 (2024-09-12)
6+
====================
7+
8+
- Fix duplicate notifications for contributor-add failures
9+
- Allow Read and Write contributors to view a project's draft registrations
10+
- Change how files for withdrawn registrations are surfaced in the API
11+
- Fix date displayed in citation for a registration
12+
- New API endpoint /users/me/draft_preprints/
13+
- Add button to admin to move preprint from initial to pending
14+
- Update language in notifications to indicate preprint resubmission
15+
- Fix Preprint emails so they are sent as expected
16+
- Fix ORCiD email by sending them after changes are committed to DB
17+
- Remove references of TravisCI
18+
519
24.05.0 (2024-07-22)
620
====================
721
- Bump base python version from py3.6 to py3.12.

0 commit comments

Comments
 (0)