Skip to content

Commit 13a9f62

Browse files
committed
merged upstream develelop
2 parents a7978a5 + 76359d1 commit 13a9f62

184 files changed

Lines changed: 7046 additions & 1180 deletions

File tree

Some content is hidden

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

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Set update schedule for GitHub Actions
2+
# https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/keeping-your-actions-up-to-date-with-dependabot
3+
4+
version: 2
5+
updates:
6+
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
# Check for updates to GitHub Actions daily
11+
interval: "daily"

.github/workflows/container_app_pr.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ jobs:
2020
if: ${{ github.repository_owner == 'IQSS' }}
2121
steps:
2222
# Checkout the pull request code as when merged
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424
with:
2525
ref: 'refs/pull/${{ github.event.client_payload.pull_request.number }}/merge'
26-
- uses: actions/setup-java@v3
26+
- uses: actions/setup-java@v4
2727
with:
2828
java-version: "17"
2929
distribution: 'adopt'
30-
- uses: actions/cache@v3
30+
- uses: actions/cache@v4
3131
with:
3232
path: ~/.m2
3333
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -87,7 +87,7 @@ jobs:
8787
:ship: [See on GHCR](https://github.com/orgs/gdcc/packages/container). Use by referencing with full name as printed above, mind the registry name.
8888
8989
# Leave a note when things have gone sideways
90-
- uses: peter-evans/create-or-update-comment@v3
90+
- uses: peter-evans/create-or-update-comment@v4
9191
if: ${{ failure() }}
9292
with:
9393
issue-number: ${{ github.event.client_payload.pull_request.number }}

.github/workflows/container_app_push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ jobs:
6868
if: ${{ github.event_name != 'pull_request' && github.ref_name == 'develop' && github.repository_owner == 'IQSS' }}
6969
runs-on: ubuntu-latest
7070
steps:
71-
- uses: actions/checkout@v3
72-
- uses: peter-evans/dockerhub-description@v3
71+
- uses: actions/checkout@v4
72+
- uses: peter-evans/dockerhub-description@v4
7373
with:
7474
username: ${{ secrets.DOCKERHUB_USERNAME }}
7575
password: ${{ secrets.DOCKERHUB_TOKEN }}
7676
repository: gdcc/dataverse
7777
short-description: "Dataverse Application Container Image providing the executable"
7878
readme-filepath: ./src/main/docker/README.md
79-
- uses: peter-evans/dockerhub-description@v3
79+
- uses: peter-evans/dockerhub-description@v4
8080
with:
8181
username: ${{ secrets.DOCKERHUB_USERNAME }}
8282
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/guides_build_sphinx.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
docs:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
- uses: uncch-rdmc/sphinx-action@master
1515
with:
1616
docs-folder: "doc/sphinx-guides/"

.github/workflows/pr_comment_commands.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: Dispatch
12-
uses: peter-evans/slash-command-dispatch@v3
12+
uses: peter-evans/slash-command-dispatch@v4
1313
with:
1414
# This token belongs to @dataversebot and has sufficient scope.
1515
token: ${{ secrets.GHCR_TOKEN }}

.github/workflows/reviewdog_checkstyle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Checkstyle job
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v4
1414
- name: Run check style
1515
uses: nikitasavinov/checkstyle-action@master
1616
with:

.github/workflows/shellcheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
permissions:
2222
pull-requests: write
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
- name: shellcheck
2626
uses: reviewdog/action-shellcheck@v1
2727
with:

.github/workflows/shellspec.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- name: Install shellspec
2121
run: curl -fsSL https://git.io/shellspec | sh -s ${{ env.SHELLSPEC_VERSION }} --yes
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2323
- name: Run Shellspec
2424
run: |
2525
cd tests/shell
@@ -30,7 +30,7 @@ jobs:
3030
container:
3131
image: rockylinux/rockylinux:9
3232
steps:
33-
- uses: actions/checkout@v2
33+
- uses: actions/checkout@v4
3434
- name: Install shellspec
3535
run: |
3636
curl -fsSL https://github.com/shellspec/shellspec/releases/download/${{ env.SHELLSPEC_VERSION }}/shellspec-dist.tar.gz | tar -xz -C /usr/share
@@ -47,7 +47,7 @@ jobs:
4747
steps:
4848
- name: Install shellspec
4949
run: curl -fsSL https://git.io/shellspec | sh -s 0.28.1 --yes
50-
- uses: actions/checkout@v2
50+
- uses: actions/checkout@v4
5151
- name: Run Shellspec
5252
run: |
5353
cd tests/shell

.github/workflows/spi_release.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ jobs:
3737
runs-on: ubuntu-latest
3838
if: github.event_name == 'pull_request' && needs.check-secrets.outputs.available == 'true'
3939
steps:
40-
- uses: actions/checkout@v3
41-
- uses: actions/setup-java@v3
40+
- uses: actions/checkout@v4
41+
- uses: actions/setup-java@v4
4242
with:
4343
java-version: '17'
4444
distribution: 'adopt'
4545
server-id: ossrh
4646
server-username: MAVEN_USERNAME
4747
server-password: MAVEN_PASSWORD
48-
- uses: actions/cache@v2
48+
- uses: actions/cache@v4
4949
with:
5050
path: ~/.m2
5151
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -63,20 +63,20 @@ jobs:
6363
runs-on: ubuntu-latest
6464
if: github.event_name == 'push' && needs.check-secrets.outputs.available == 'true'
6565
steps:
66-
- uses: actions/checkout@v3
67-
- uses: actions/setup-java@v3
66+
- uses: actions/checkout@v4
67+
- uses: actions/setup-java@v4
6868
with:
6969
java-version: '17'
7070
distribution: 'adopt'
71-
- uses: actions/cache@v2
71+
- uses: actions/cache@v4
7272
with:
7373
path: ~/.m2
7474
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
7575
restore-keys: ${{ runner.os }}-m2
7676

7777
# Running setup-java again overwrites the settings.xml - IT'S MANDATORY TO DO THIS SECOND SETUP!!!
7878
- name: Set up Maven Central Repository
79-
uses: actions/setup-java@v3
79+
uses: actions/setup-java@v4
8080
with:
8181
java-version: '17'
8282
distribution: 'adopt'

README.md

Lines changed: 73 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,81 @@
11
Dataverse®
22
===============
33

4-
Dataverse is an [open source][] software platform for sharing, finding, citing, and preserving research data (developed by the [Dataverse team](https://dataverse.org/about) at the [Institute for Quantitative Social Science](https://iq.harvard.edu/) and the [Dataverse community][]).
4+
![Dataverse-logo](https://github.com/IQSS/dataverse-frontend/assets/7512607/6c4d79e4-7be5-4102-88bd-dfa167dc79d3)
55

6-
[dataverse.org][] is our home on the web and shows a map of Dataverse installations around the world, a list of [features][], [integrations][] that have been made possible through [REST APIs][], our [project board][], our development [roadmap][], and more.
6+
## Table of Contents
77

8-
We maintain a demo site at [demo.dataverse.org][] which you are welcome to use for testing and evaluating Dataverse.
8+
1. [❓ What is Dataverse?](#what-is-dataverse)
9+
2. [✔ Try Dataverse](#try-dataverse)
10+
3. [🌐 Features, Integrations, Roadmaps, and More](#website)
11+
4. [📥 Installation](#installation)
12+
5. [🏘 Community and Support](#community-and-support)
13+
6. [🧑‍💻️ Contributing](#contributing)
14+
7. [⚖️ Legal Information](#legal-informations)
915

10-
To install Dataverse, please see our [Installation Guide][] which will prompt you to download our [latest release][]. Docker users should consult the [Container Guide][].
16+
<a name="what-is-dataverse"></a>
1117

12-
To discuss Dataverse with the community, please join our [mailing list][], participate in a [community call][], chat with us at [chat.dataverse.org][], or attend our annual [Dataverse Community Meeting][].
18+
## ❓ What is Dataverse?
1319

14-
We love contributors! Please see our [Contributing Guide][] for ways you can help.
20+
Welcome to Dataverse®, the [open source][] software platform designed for sharing, finding, citing, and preserving research data. Developed by the Dataverse team at the [Institute for Quantitative Social Science](https://iq.harvard.edu/) and the [Dataverse community][], our platform makes it easy for research organizations to host, manage, and share their data with the world.
21+
22+
<a name="try-dataverse"></a>
23+
24+
## ✔ Try Dataverse
25+
26+
We invite you to explore our demo site at [demo.dataverse.org][]. This site is ideal for testing and evaluating Dataverse in a risk-free environment.
27+
28+
<a name="website"></a>
29+
30+
## 🌐 Features, Integrations, Roadmaps, and More
31+
32+
Visit [dataverse.org][], our home on the web, for a comprehensive overview of Dataverse. Here, you will find:
33+
34+
- An interactive map showcasing Dataverse installations worldwide.
35+
- A detailed list of [features][].
36+
- Information on [integrations][] that have been made possible through our [REST APIs][].
37+
- Our [project board][] and development [roadmap][].
38+
- News, events, and more.
39+
40+
<a name="installation"></a>
41+
42+
## 📥 Installation
43+
44+
Ready to get started? Follow our [Installation Guide][] to download and install the latest release of Dataverse.
45+
46+
If you are using Docker, please refer to our [Container Guide][] for detailed instructions.
47+
48+
<a name="community-and-support"></a>
49+
50+
## 🏘 Community and Support
51+
52+
Engage with the vibrant Dataverse community through various channels:
53+
54+
- **[Mailing List][]**: Join the conversation on our [mailing list][].
55+
- **[Community Calls][]**: Participate in our regular [community calls][] to discuss new features, ask questions, and share your experiences.
56+
- **[Chat][]**: Connect with us and other users in real-time at [dataverse.zulipchat.com][].
57+
- **[Dataverse Community Meeting][]**: Attend our annual [Dataverse Community Meeting][] to network, learn, and collaborate with peers and experts.
58+
- **[DataverseTV][]**: Watch the video content from the Dataverse community on [DataverseTV][] and on [Harvard's IQSS YouTube channel][].
59+
60+
<a name="contributing"></a>
61+
## 🧑‍💻️ Contribute to Dataverse
62+
63+
We love contributors! Whether you are a developer, researcher, or enthusiast, there are many ways you can help.
64+
65+
Visit our [Contributing Guide][] to learn how you can get involved.
66+
67+
Join us in building and enhancing Dataverse to make research data more accessible and impactful. Your support and participation are crucial to our success!
68+
69+
<a name="legal-informations"></a>
70+
## ⚖️ Legal Information
1571

1672
Dataverse is a trademark of President and Fellows of Harvard College and is registered in the United States.
1773

74+
---
75+
For more detailed information, visit our website at [dataverse.org][].
76+
77+
Feel free to [reach out] with any questions or feedback. Happy researching!
78+
1879
[![Dataverse Project logo](src/main/webapp/resources/images/dataverseproject_logo.jpg "Dataverse Project")](http://dataverse.org)
1980

2081
[![API Test Status](https://jenkins.dataverse.org/buildStatus/icon?job=IQSS-dataverse-develop&subject=API%20Test%20Status)](https://jenkins.dataverse.org/job/IQSS-dataverse-develop/)
@@ -37,6 +98,11 @@ Dataverse is a trademark of President and Fellows of Harvard College and is regi
3798
[Contributing Guide]: CONTRIBUTING.md
3899
[mailing list]: https://groups.google.com/group/dataverse-community
39100
[community call]: https://dataverse.org/community-calls
40-
[chat.dataverse.org]: https://chat.dataverse.org
101+
[Chat]: https://dataverse.zulipchat.com
102+
[dataverse.zulipchat.com]: https://dataverse.zulipchat.com
41103
[Dataverse Community Meeting]: https://dataverse.org/events
42104
[open source]: LICENSE.md
105+
[community calls]: https://dataverse.org/community-calls
106+
[DataverseTV]: https://dataverse.org/dataversetv
107+
[Harvard's IQSS YouTube channel]: https://www.youtube.com/@iqssatharvarduniversity8672
108+
[reach out]: https://dataverse.org/contact

0 commit comments

Comments
 (0)