Commit Graph

3684 Commits

Author SHA1 Message Date
Feanil Patel
9acad23fc4 Remove snakefood and our usage of it.
Unfortunately snakefood is not supported in python3 so I'm removing it
and the tools built on top of it for now as they are not in active use.

If you're looking at this wishing it still existed,

Check out https://github.com/bwohlberg/jonga or https://pypi.org/project/findimports/
2019-09-12 10:18:46 -04:00
DawoudSheraz
652dee611f send grace period info to edx-proctoring 2019-09-12 15:01:32 +05:00
Kyle McCormick
8d3ea33bb9 Upgrade requirements, specifically ora2==2.3.1 (#21614)
The 2.3.0 ORA-2 release did not regenerate .min.js
files, so the changes did not appear on Stage or
Production.

EDUCATOR-4635
2019-09-10 15:50:58 -04:00
Alex Dusenbery
34c1493577 upgrade; bump edx-bulk-grades to 0.6.0 2019-09-10 15:29:49 -04:00
Kyle McCormick
78d563c7ae Upgrade requirements, specifically ora2
The ora2 upgrade increases the assignment upload
limit from 10MB to 20MB.

Due to a request from a Master's partner who reports
that the current 10MB limit is not enough for their
degree programs.

EDUCATOR-4635
2019-09-09 20:53:58 -04:00
atesker
2ef94247b2 update bulk grades version 2019-09-09 13:34:29 -04:00
Brittney Exline
d35218a820 ENT-2230 Upgrade edx-enterprise to 1.9.12 2019-09-09 08:52:01 -06:00
Mushtaq Ali
79801affdc Upgrade packages 2019-09-05 15:44:30 +05:00
Brittney Exline
7f727b4d65 Upgrading edx-enterprise to the latest version (1.9.9) 2019-08-30 08:57:17 -06:00
Albert (AJ) St. Aubin
920f0dcf45 Upgrading the edx-enterprise version in support of new
feature roles and permissions
2019-08-29 14:50:17 -04:00
Michael Roytman
6ff132e7d8 bump version of edx-bulk-grades to 0.5.9 2019-08-29 10:53:26 -04:00
Michael Roytman
021b48b063 bump edx-proctoring version to 2.0.7 2019-08-28 11:44:28 -04:00
atesker
e3919eac39 bump bulk-grades version 2019-08-23 12:21:29 -04:00
Hasnain Naveed
58802c34a2 Merge pull request #21431 from edx/hasnain-naveed/ENT-2158-version-bump
ENT-2158 | edx-enterprise version bump to 1.9.6.
2019-08-23 19:18:38 +05:00
hasnain-naveed
1d286530a7 ENT-2158 | edx-enterprise version bump to 1.9.6. 2019-08-23 16:32:10 +05:00
aarif
1873f9b821 updated (make-upgrade) the requirements to use latest version of edx-submissions and edx-ora2 2019-08-22 20:27:07 +05:00
Chris Pappas
b351c5e6c0 Bumping enteprise via make upgrade to 1.9.5 (#21404) 2019-08-21 16:25:22 -04:00
Jeremy Bowman
76035c37bc Downgrade transifex-client to upgrade other packages (#21403) 2019-08-21 16:16:15 -04:00
Christopher Pappas
20b4cf2488 Bumping enteprise via make upgrade to 1.9.5 2019-08-21 15:48:40 -04:00
atesker
ed3e3a7bbc updated bulk grades version 2019-08-21 12:06:29 -04:00
Chris Pappas
c3da1374bf Running make upgrade to bump edx-enterprise (#21390) 2019-08-20 16:02:19 -04:00
atesker
ff5f49b89f updated bulk grades version 2019-08-20 13:56:00 -04:00
Christie Rice
abe12c89b8 ENT-1321 Upgrade requirements (#21386) 2019-08-20 12:49:45 -04:00
Chris Pappas
b22f08a414 Removing edx-enterprise from constraints and running make upgrade to bump version to 1.9.1 (#21377) 2019-08-19 17:32:46 -04:00
Matt Hughes
b897f58ae6 bug fix blocking gradebook
JIRA:PROD-553
2019-08-19 15:10:57 -04:00
Waheed Ahmed
8dc9ccd2ec Newrelic released a patch, removing constraint.
PROD-533
2019-08-19 14:20:03 +05:00
Matt Hughes
ecd4a95507 Allow interventions CSV download via gradebook to be filtered
JIRA:EDUCATOR-4537
2019-08-16 17:05:06 -04:00
Brittney Exline
c29b1dd92a Reverting to last stable version of edx-enterprise 2019-08-16 13:31:07 -04:00
Ayub
658cd5c62e BOM-70 (#21327)
* Update Financial Assistance logic

Use the zendesk proxy app instead of the unsupported zendesk library.

* Move to pre-fetching the group IDs.

Rather than making extra requests to zendesk to list all groups and find
a specific group ID. Just make a pre-filled list of group IDs for the
groups we care about.  When a group name is passed in, it is checked
against this list and the ticket is created in the correct group so the
right people can respond to it.
2019-08-16 13:05:35 -04:00
Dave St.Germain
a394391a66 Merge pull request #21352 from edx/dcs/upgrade
Upgrade edx-when to fix CR-1089
2019-08-16 10:24:27 -04:00
Matt Hughes
c3a1a70d4f Correct discrepancy between grade data sources for gradebook 2019-08-16 10:02:46 -04:00
Dave St.Germain
ef67067d17 Upgrade edx-when to fix CR-1089 2019-08-16 09:57:14 -04:00
Chris Pappas
4461d978db Running make upgrade to bump edx-enterprise version (#21344)
Fix for test that broke related to DRF;
2019-08-15 14:56:08 -04:00
Matt Hughes
828c2fdc93 Add limit stops for assignment grade filtering for gradebook api
JIRA:EDUCATOR-4541
2019-08-13 15:05:03 -04:00
Feanil Patel
9753eae441 Convert to using ExitStack instead of nested. (#21329)
* Convert to using ExitStack instead of nested.

nested is not available in Python3.

* Use ExitStack from contextlib2.

ExitStack has not been backported to the Python 2.7 standard library and
contextlib.nested is no longer available in Python 3.5.  We need to be
able to use something in both 2 and 3 as we transition so we'll pull in
contextlib2 which has backports of the full python3 contextlib.
2019-08-12 16:55:05 -04:00
Dave St.Germain
05375b40fa Merge pull request #21318 from edx/dcs/missing-when
Added edx-when's FieldData
2019-08-12 12:41:51 -04:00
Dave St.Germain
267be29ab7 Added edx-when's FieldData
EDUCATOR-4554
This fixes a bug where extended due dates were visible in the outline but not reflected on the courseware pages, resulting in problems not being submittable past the due date.
In order for edx-when to work on courseware pages, it has to be more careful about field inheritance, which version 0.2 achieves.
2019-08-12 11:05:44 -04:00
Feanil Patel
b599c807a9 Merge pull request #21325 from edx/awais786/BOM-84-version
BOM-84
2019-08-09 12:17:41 -04:00
Feanil Patel
a2e0acf1e0 Merge pull request #21317 from edx/feanil/upgrade_mongodb_proxy
Feanil/upgrade mongodb proxy
2019-08-09 11:56:18 -04:00
arbisoft
ed1bdf31bd BOM-84
Update the version.
2019-08-09 19:44:32 +05:00
Feanil Patel
b8f8f072b4 Run make upgrade. 2019-08-09 10:02:17 -04:00
Feanil Patel
3cf42a692e Update mongodbproxy. 2019-08-09 09:44:58 -04:00
root
e2213b6712 BOM-79 updated codejail 2019-08-08 16:27:27 -04:00
Ayub
26a1445c93 Revert "BOM-70" 2019-08-08 17:39:45 +05:00
Waheed Ahmed
e81500a25e Downgrade newrelice version from 5.0.0.124 to 4.20.1.121.
Getting 500 error on stage after upgrading to latest version
of newrelice.
2019-08-08 14:15:19 +05:00
Feanil Patel
ea7b0d2d0c Run make upgrade. 2019-08-07 15:04:58 -04:00
Feanil Patel
170c689506 Update to a version of crowdsourcehinter that supports python 3. 2019-08-07 15:04:26 -04:00
Nimisha Asthagiri
4c7d437bdd DEPR-20 Remove django-openid-auth 2019-08-06 14:02:48 -04:00
Ayub
3f2bd0a020 Merge pull request #21229 from edx/BOM-70
BOM-70
2019-08-06 18:48:42 +05:00
Ayub khan
c9080e257e -fixed tests 2019-08-06 15:31:41 +05:00