From f3c813f5053ee3c2f78ff02af97126178619f580 Mon Sep 17 00:00:00 2001 From: Marcos Date: Mon, 29 Apr 2024 15:35:21 -0300 Subject: [PATCH 1/4] chore: Updated Manual Upgrades document --- docs/manual_upgrades.rst | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/docs/manual_upgrades.rst b/docs/manual_upgrades.rst index 8a107c02cb..ddadca4239 100644 --- a/docs/manual_upgrades.rst +++ b/docs/manual_upgrades.rst @@ -8,6 +8,31 @@ 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 +**************************************** + +Several repositories were being deprecated by Open edX (`issue #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: + +- **edx-analytics-dashboard**:: + + git remote set-url origin git@github.com:edx/edx-analytics-dashboard.git + + +- **edx-analytics-data-api**:: + + git remote set-url origin git@github.com:edx/edx-analytics-data-api.git + +- **edx-analytics-data-api-client**:: + + git remote set-url origin git@github.com:edx/edx-analytics-data-api-client.git + + + + + 2024-02-25 - Mongo upgrade from version 4.4 to 5.0 ************************************************** From 3573b43521ff7367e737dc295c5b2805232b0c99 Mon Sep 17 00:00:00 2001 From: Marcos Date: Mon, 29 Apr 2024 17:04:19 -0300 Subject: [PATCH 2/4] chore: Updated repo URLs --- docs/service_list.rst | 4 ++-- repo.sh | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/service_list.rst b/docs/service_list.rst index a4b16e4748..5c0faac5ad 100644 --- a/docs/service_list.rst +++ b/docs/service_list.rst @@ -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 diff --git a/repo.sh b/repo.sh index ab123ac10b..aef06c9c64 100755 --- a/repo.sh +++ b/repo.sh @@ -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=( @@ -58,14 +58,14 @@ ssh_repos=( "git@github.com:openedx/edx-notes-api.git" "git@github.com:openedx/edx-platform.git" "git@github.com:openedx/xqueue.git" - "git@github.com:openedx/edx-analytics-dashboard.git" + "git@github.com:edx/edx-analytics-dashboard.git" "git@github.com:openedx/frontend-app-gradebook.git" "git@github.com:openedx/frontend-app-learner-dashboard.git" "git@github.com:openedx/frontend-app-learner-record.git" "git@github.com:edx/frontend-app-payment.git" "git@github.com:openedx/frontend-app-publisher.git" - "git@github.com:openedx/edx-analytics-dashboard.git" - "git@github.com:openedx/edx-analytics-data-api.git" + "git@github.com:edx/edx-analytics-dashboard.git" + "git@github.com:edx/edx-analytics-data-api.git" ) non_release_ssh_repos=( From d5fc4f8829e2ca9d26414778ebcec7362ee00c86 Mon Sep 17 00:00:00 2001 From: Marcos Date: Mon, 29 Apr 2024 17:49:25 -0300 Subject: [PATCH 3/4] chore: Updated step-by-step instructions on Manual Updates doc --- docs/manual_upgrades.rst | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/docs/manual_upgrades.rst b/docs/manual_upgrades.rst index ddadca4239..d12fb0c6bc 100644 --- a/docs/manual_upgrades.rst +++ b/docs/manual_upgrades.rst @@ -16,22 +16,26 @@ 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: -- **edx-analytics-dashboard**:: - - git remote set-url origin git@github.com:edx/edx-analytics-dashboard.git +To update devstack and the local repositories:: + cd /path/to/devstack + git pull -- **edx-analytics-data-api**:: + cd .. + cd edx-analytics-dashboard + git remote set-url origin git@github.com:edx/edx-analytics-dashboard.git + git pull + cd .. + cd edx-analytics-data-api git remote set-url origin git@github.com:edx/edx-analytics-data-api.git + git pull -- **edx-analytics-data-api-client**:: +If you happen to use `edx-analytics-data-api-client`:: + cd /path/to/edx-analytics-data-api-client git remote set-url origin git@github.com:edx/edx-analytics-data-api-client.git - - - - + git pull 2024-02-25 - Mongo upgrade from version 4.4 to 5.0 ************************************************** From b7489d668e954b9f43dd1c474f9682ea14ea1a34 Mon Sep 17 00:00:00 2001 From: Marcos Rigoli Date: Tue, 30 Apr 2024 09:14:59 -0300 Subject: [PATCH 4/4] chore: Updated title on Manual Upgrades doc --- docs/manual_upgrades.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/manual_upgrades.rst b/docs/manual_upgrades.rst index d12fb0c6bc..0695e09901 100644 --- a/docs/manual_upgrades.rst +++ b/docs/manual_upgrades.rst @@ -8,8 +8,8 @@ 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 -**************************************** +2024-04-29 - Moved Open edX analytics repositories +************************************************** Several repositories were being deprecated by Open edX (`issue #227 `_). We are forking some of those repositories to keep maintaining them.