Skip to content

Commit 9514da2

Browse files
committed
2.1.0 release (+ changelogs)
1 parent be5d02f commit 9514da2

File tree

3 files changed

+26
-35
lines changed

3 files changed

+26
-35
lines changed

DevDocs/DeveloperNotes/GettingStarted/GettingStarted.md

+3-34
Original file line numberDiff line numberDiff line change
@@ -58,41 +58,10 @@ Current location of the codebase is https://github.com/rspace-os/rspace-web
5858
It's best to use a Git client to download and update source code.
5959
Alternatively, for one-off installation, you can download project directly from the page as a zip package.
6060

61-
#### Download required non-public RSpace dependencies (temporary solution before official open-source version)
61+
#### (only if running RSpace version < 2.1.0) Download required non-public RSpace dependencies
6262

63-
Not all of RSpace dependencies are yet publicly available, you need to download an additional package
64-
of dependencies for your release from https://github.com/rspace-os/rspace-web/releases page.
65-
66-
The .zip archive contains folder `rspace_os_local_dependencies` with dependencies from com.researchspace and com.github.rspace-os namespace.
67-
The archive need to be unpacked into location that maven will be able to read from, e.g. into your `.m2` folder.
68-
Note this location, as it will be required in next step.
69-
70-
#### Configuring local repository for required non-public RSpace dependencies (temporary solution before official open-source version)
71-
72-
In your `.m2` home folder create a file called `settings.xml` (if it's not there yet) and insert this content.
73-
E.g. on a Mac this would be in `Users/myusername/.m2/settings.xml`.
74-
If you already have a `settings.xml`, add the 'profile' or 'profiles' tag from the fragment above into your file, and save it.
75-
76-
```xml
77-
<settings>
78-
<profiles>
79-
<profile>
80-
<id>rspacelocalrepo</id>
81-
<activation>
82-
<activeByDefault>true</activeByDefault>
83-
</activation>
84-
<repositories>
85-
<repository>
86-
<id>rspace-os-local-dependencies-repo</id>
87-
<url>file://path-to-unzipped-dependencies-folder>/rspace_os_local_dependencies</url>
88-
</repository>
89-
</repositories>
90-
</profile>
91-
</profiles>
92-
</settings>
93-
```
94-
95-
Then update repository url in the fragment above so it point to the `rspace_os_local_dependencies` folder you unzipped before.
63+
This is no longer needed for RSpace 2.1.0 version (or later), but if you're trying to run an older version, check the historical revision of this document,
64+
which describes how to download and install an additional package of dependencies from https://github.com/rspace-os/rspace-web/releases page.
9665

9766
#### Sanity check
9867

DevDocs/public/Changelog-OS.md

+22
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@ This document records significant changes to RSpace.
22
It includes a summary of new features, bugfixes and server-side configuration changes.
33
The intended audience is on-prem RSpace technical administrators who maintain RSpace.
44

5+
You can find official changelog at https://documentation.researchspace.com/article/mx11qvqg0i-changelog
6+
7+
# 2.1.0 2024-07-26
8+
9+
### ELN Features
10+
11+
- improved performance of API document search, and of Workspace UI 'View All' listing
12+
- mentions feature in document editor ('@') now shows longer list of users
13+
14+
### ELN Bugfix
15+
16+
- RSDEV-240 PDF export now correctly handle option about restarting page numbering for each document
17+
- RSDEV-273 sysadmin 'delete user' action is now enabled only if the functionality is enabled in deployment properties
18+
19+
### Inventory Features
20+
21+
- RSDEV-260 sample views include details about subsamples
22+
- RSDEV-81, RSDEV-279, RSDEV-282 various UI/UX changes when displaying samples that contain just one subsample
23+
- RSDEV-280 when sample deletion is blocked due to subsamples being in container, list details of these subsamples
24+
25+
Additionally: all rspace-os dependencies required for building 2.1.0 version are now available through jitpack.io.
26+
527
# 2.0.0 2024-06-26
628

729
- first public release of open-source RSpace

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<artifactId>researchspace</artifactId>
88
<groupId>com.github.rspace-os</groupId>
99
<packaging>war</packaging>
10-
<version>2.1.0-SNAPSHOT-${timestamp}</version><!-- appVersionID don't remove this comment it identifies this version -->
10+
<version>2.1.0</version><!-- appVersionID don't remove this comment it identifies this version -->
1111
<name>ResearchSpace</name>
1212
<url>http://www.researchspace.com</url>
1313

0 commit comments

Comments
 (0)