Skip to content

Commit

Permalink
Merge pull request #10296 from archesproject/626_release_prep
Browse files Browse the repository at this point in the history
Add release notes and update versions for 6.2.6 release
  • Loading branch information
johnatawnclementawn authored Nov 27, 2023
2 parents c4e358f + 9b8e257 commit 041542f
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Issue reports are encouraged! [Please read this article](http://polite.technolog
* [Report a Bug](https://github.com/archesproject/arches/issues/new?template=bug.md)
* [File a Feature Ticket](https://github.com/archesproject/arches/issues/new?template=feature.md)

[Version 6.2.5 release notes](https://github.com/archesproject/arches/blob/dev/6.2.x/releases/6.2.5.md)
[Version 6.2.6 release notes](https://github.com/archesproject/arches/blob/dev/6.2.x/releases/6.2.6.md)

#### Quick Install

Expand Down
2 changes: 1 addition & 1 deletion arches/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
except ModuleNotFoundError as e:
print(e)

VERSION = (6, 2, 5, "beta", 0) # VERSION[3] options = "alpha", "beta", "rc", or "final"
VERSION = (6, 2, 6, "beta", 0) # VERSION[3] options = "alpha", "beta", "rc", or "final"

__version__ = get_version(VERSION)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arches",
"version": "6.2.5",
"version": "6.2.6",
"repository": {
"url": "[email protected]:archesproject/arches.git",
"type": "git"
Expand Down
49 changes: 49 additions & 0 deletions releases/6.2.6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
Arches 6.2.6 release notes
------------------------
### Bug Fixes and Enhancements

- Fixes is required constraint of resource instance and file-list nodes #10077
- Fixes undefined graph error in resource instance widget #10152
- Adds missing file renderers to project template #10171
- Fixes multiple EDTF nodes in single card used in advanced search returning too many records #10202
- Fixes error when handling multiple subcard levels in search export #10214

### Dependency changes:
```
None
```

### Upgrading Arches
1. You must be upgraded to at least version 6.2.0 before proceeding.

2. Upgrade to Arches 6.2.6

If using a virtual environment, be sure to activate it:

pip install --upgrade arches==6.2.6

3. Update your Javascript dependencies

Navigate to the directory with your project's package.json file. This is located in the same directory as your project's settings.py file.
Ensure your arches dependency points to either `#archesproject/arches#dev/6.2.x` or `#archesproject/arches#stable/6.2.6`.\
For example:

"dependencies": {
"arches": "archesproject/arches#dev/6.2.x"
}

If upgrading from version <= 6.2.3 run:

yarn install

1. If you are running Arches on Apache, be sure to run:

```
python manage.py collectstatic
```
and restart your server.
```
sudo service apache2 reload
```
2. Finally, If you are running Celery, you should also restart your Celery worker(s). The process for doing this depends on how Celery is being run.

0 comments on commit 041542f

Please sign in to comment.