Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Manual upgrades update #9

Merged
merged 4 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions docs/manual_upgrades.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,35 @@ Please add new instructions to the top, include a date, and make a post in the `
(If you just need to update your devstack to the latest version of everything, see :doc:`updating_devstack`.)


2024-04-29 - Moved Open edX repositories
rijuma marked this conversation as resolved.
Show resolved Hide resolved
****************************************

Several repositories were being deprecated by Open edX (`issue #227 <https://github.com/openedx/public-engineering/issues/227>`_).
We are forking some of those repositories to keep maintaining them.

If you use any of the following repositories, please make sure to update the remote URLs:

To update devstack and the local repositories::

cd /path/to/devstack
git pull

cd ..
cd edx-analytics-dashboard
git remote set-url origin [email protected]:edx/edx-analytics-dashboard.git
git pull

cd ..
cd edx-analytics-data-api
git remote set-url origin [email protected]:edx/edx-analytics-data-api.git
git pull

If you happen to use `edx-analytics-data-api-client`::

cd /path/to/edx-analytics-data-api-client
git remote set-url origin [email protected]:edx/edx-analytics-data-api-client.git
git pull

2024-02-25 - Mongo upgrade from version 4.4 to 5.0
**************************************************

Expand Down
4 changes: 2 additions & 2 deletions docs/service_list.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,5 @@ Some common service combinations include:
.. _xqueue: https://github.com/openedx/xqueue
.. _coursegraph: https://github.com/openedx/edx-platform/tree/master/cms/djangoapps/coursegraph#coursegraph-support
.. _frontend-app-ora-grading: https://github.com/edx/frontend-app-ora-grading
.. _insights: https://github.com/openedx/edx-analytics-dashboard
.. _analyticsapi: https://github.com/openedx/edx-analytics-data-api
.. _insights: https://github.com/edx/edx-analytics-dashboard
.. _analyticsapi: https://github.com/edx/edx-analytics-data-api
12 changes: 6 additions & 6 deletions repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ repos=(
"https://github.com/openedx/edx-notes-api.git"
"https://github.com/openedx/edx-platform.git"
"https://github.com/openedx/xqueue.git"
"https://github.com/openedx/edx-analytics-dashboard.git"
"https://github.com/edx/edx-analytics-dashboard.git"
"https://github.com/openedx/frontend-app-gradebook.git"
"https://github.com/openedx/frontend-app-learner-dashboard"
"https://github.com/openedx/frontend-app-learner-record"
"https://github.com/edx/frontend-app-payment.git"
"https://github.com/openedx/frontend-app-publisher.git"
"https://github.com/openedx/edx-analytics-dashboard.git"
"https://github.com/openedx/edx-analytics-data-api.git"
"https://github.com/edx/edx-analytics-dashboard.git"
"https://github.com/edx/edx-analytics-data-api.git"
)

non_release_repos=(
Expand All @@ -58,14 +58,14 @@ ssh_repos=(
"[email protected]:openedx/edx-notes-api.git"
"[email protected]:openedx/edx-platform.git"
"[email protected]:openedx/xqueue.git"
"[email protected]:openedx/edx-analytics-dashboard.git"
"[email protected]:edx/edx-analytics-dashboard.git"
"[email protected]:openedx/frontend-app-gradebook.git"
"[email protected]:openedx/frontend-app-learner-dashboard.git"
"[email protected]:openedx/frontend-app-learner-record.git"
"[email protected]:edx/frontend-app-payment.git"
"[email protected]:openedx/frontend-app-publisher.git"
"[email protected]:openedx/edx-analytics-dashboard.git"
"[email protected]:openedx/edx-analytics-data-api.git"
"[email protected]:edx/edx-analytics-dashboard.git"
"[email protected]:edx/edx-analytics-data-api.git"
)

non_release_ssh_repos=(
Expand Down
Loading