Release notes for WeBWorK 2.18

From WeBWorK_wiki
Jump to navigation Jump to search

New WeBWorK Features

  • UI Changes for WeBWorK
    • The overall layout of WeBWorK has changed a bit with the sidebar navigation menu scrolling independently of the main content.
    • The page Help (which was a ? icon in the navigation list) has been moved to a ? next to the page title. The page help for each page has been improved.
    • The instructor Tools is more clearly a separate page rather than a Header for other tools.
    • The Set Assigner and Problem Editor can now be directly accessed from the sidebar navigation.
    • The Student Progress page has a new option to show 'Time remaining' for tests.
    • The Stats page has been rewritten for layout and clarity.
    • PG problem editor improvements
      • The layout of the page is updated to include a source editor and viewer in a side-by-side manner.
      • There is a new Generate Hardcopy tab from which you can generate a PDF displaying only the problem being edited. This makes it much easier to test hardcopy generation for problems.
      • There are new problem viewing output formats (TeX and PTX -- PreTeXt).
      • The Update/New Version tab options are now called Save/Save As...
      • There are options to save backups for pg problems. (documentation?)
    • The date/time widget (flatpicker) now includes a "Now" and "Today" button to set the date/time to now or adjust the date only respectively.
  • A new LTI version 1.3 authentication module has been added that utilizes some of the LTI Advantage tool set. The LTI version 1.1 authentication module is still available.
  • A new status called "observer" has been added. This can be used for TAs and professors or others to ensure that they don't show up in scoring, statistics and student progress views. They will be shown in green in the Classlist Editor.
  • Gateway quizzes are now called Tests.
  • Hardcopy generation has been revamped. A new hardcopy theme system has been devised. Each theme is contained in a single XML file. These theme files can be edited from the PG problem editor. There are eleven themes distributed with webwork2. See Hardcopy Themes.
  • The ability to save/retrieve data within pg problems on a user-set level has been added. (Needs documentation)
  • Essay answers
    • There is now an equation editor to insert math via MathQuill (similar in nature to the MathView equation editor).
    • This equation editor is also available for manual graders.
  • When using the problem grader, there is now an option for using points (default), percent or both. This is a new option in the Problem Display/Answer Checking tab of the Course Configuration.
  • The Wiris Math Editor has been removed. It was never functional and input is better handled by MathQuill.

New PG Features

  • Mathquill changes
    • Typing deg will automatically turn into a degree symbol. So for example, if 23degF is typed it will become 23°F.
    • Trigonometric functions such as sin, cos, tan, arcsin, arccos, etc, and logarithmic functions ln and log will now automatically wrap the function argument in parentheses. Exponents (or subscripts) on these functions can be typed before the parentheses or after.
    • Double and triple click selection behavior has been implemented for MathQuill inputs.
  • Changes to Units:
    • Students can enter °C or °F instead of degC or degF for Celsius and Fahrenheit degrees. This can be done easily if MathQuill is enabled as described above. Students may also paste unicode characters for these from other websites.
    • Several new units have been added, including angstroms, microseconds, nanoseconds, picometers, femtometers, tera electron volts, Megawatts, milliwatts, milliCoulombs, microCoulombs, nanoCoulombs, milli-amperes, milli-teslas, Becquerels, (US) gallons, (US) quarts, and (US) pints.
    • Many unicode characters for units have been added.
    • More forms of units are now allowed including plural forms. For example, one may enter 30 ft, 30 feet, or 1 foot.

Deprecated PG

  • Deprecated Macros:
    • AnswerFormatHelp.pl: Authors should now use the helpLink function from PGbasicmacros.pl instead.
    • unionInclude.pl: This was used for random problems.
    • Although not officially deprecated at this point, unionTables.pl should not be used due to accessibility and html validation issues. Use niceTables.pl instead.
  • Other Deprecation
    • $BEGIN_ONE_COLUMN and $END_ONE_COLUMN: These have often been used in set header files. These variables are now defined to be the empty string, and no longer actually start or end one column mode. Set headers are now always inserted in one column mode in hardcopy.

Security/Advanced Features

The backend of WeBWorK has been relying on mod_perl for nearly two decades. However, mod_perl is deprecated and has not been updated since 2011. Many Linux distributions no longer support mod_perl, and it is becoming increasing difficult to install it on some of them. The server part of WeBWorK is now implemented with Mojolicious, which includes a stand alone web server (hypnotoad) written completely in Perl.

Upgrade Instructions

  • It is recommended to back up your current webwork2 configuration files before proceeding. Do this with
    > cp -r /opt/webwork/webwork2/conf /opt/webwork/webwork2/conf.bak
  • Now update the webwork2 and pg code. For this run
    > cd /opt/webwork/webwork2
    > git fetch origin
    > git checkout main
    > git pull
    > cd /opt/webwork/pg
    > git fetch origin
    > git checkout main
    > git pull
  • Update the javascript and css assets for webwork2 and pg with
    > cd /opt/webwork/webwork2/htdocs
    > npm ci
    > cd /opt/webwork/pg/htdocs
    > npm ci
  • The following perl packages will need to be installed (run bin/check_modules.pl to ensure you have all programs/modules)
    • Mojolicious (on Ubuntu 22.04 install the package libmojolicious-perl, on earlier versions of Ubuntu install from cpan)
    • Future::AsyncAwait (on Ubuntu 22.04 install the package libfuture-asyncawait-perl, on earlier versions of Ubuntu install from cpan)
    • SVG (on Ubuntu install libsvg-perl)
    • Data::Structure::Util (on Ubuntu install libdata-structure-util-perl)
    • Crypt::JWT (on Ubuntu install libcrypt-jwt-perl)
    • Crypt::PK::RSA (on Ubuntu install libcryptx-perl)
    • Math::Random::Secure (on Ubuntu install libmath-random-secure-perl)
    • Mojolicious::Plugin::NotYAMLConfig (this is included in libmojolicious-perl on Ubuntu 22.04, on earlier versions of Ubuntu install from cpan)
    • Mojolicious::Plugin::RenderFile (on Ubuntu install libmojolicious-plugin-renderfile-perl)
    • Minion (on Ubuntu install libminion-perl)
    • Minion::Backend::SQLite (on Ubuntu install libminion-backend-sqlite-perl)
    • Perl::Tidy (install using cpanm with sudo cpanm Perl::Tidy@20220613)
    • Pandoc and the pandoc application (on Ubuntu install libpandoc-wrapper-perl for both)
  • Hardcopy generation now requires that the mhchem LaTeX package be installed. (on Ubuntu install texlive-science.)
  • Delete the old apache2 configuration file /opt/webwork/webwork2/conf/webwork.apache2.4-config and the link to it in /etc/apache2/conf-enabled with
    > rm /opt/webwork/webwork2/conf/webwork.apache2.4-config
    > sudo rm /etc/apache2/conf-enabled/webwork.conf
  • Compare your site.conf file to site.conf.dist, and your localOverrides.conf file to localOverrides.conf.dist and update as needed.
    • Note that if you have used lighttpd to serve static files previously, then you should remove anything related to that from your configuration files. Although it is still technically possible to do that if you are proxying via apache2, that is not recommended, and we do not offer instructions on how to do so.
  • Enable new apache2 modules that are needed with
    > sudo a2enmod proxy_http headers
  • Switch from mpm_prefork to mpm_event. This step is optional but recommended. The only reason we have been using mpm_prefork is because it is required for mod_perl2. The mpm_event module is a threaded module that is better with memory management and high server loads. Another option that may be better in some cases is the mpm_worker module. In general it is not recommended to use the mpm_prefork module anymore. There are no advantages, only disadvantages.
    • Disable the apache2 mpm_prefork module and enable mpm_event with
    > sudo a2dismod mpm_prefork
    > sudo a2enmod mpm_event
  • Next set up the new apache2 configuration.
    > cp /opt/webwork/webwork2/conf/webwork2.apache2.4.dist.conf /opt/webwork/webwork2/conf/webwork2.apache2.4.conf
    > sudo ln -s /opt/webwork/webwork2/conf/webwork2.apache2.4.conf /etc/apache2/conf-enabled/webwork2.conf
  • Restart apache2 to make all of the apache2 changes take effect with
    > sudo systemctl restart apache2
  • Note that at this point webwork2 is not running, and you will not be able to access the usual pages. The webwork2 service now needs to be set up for this to work. Start by copying the systemd service .dist file for webwork2.
    > cp /opt/webwork/webwork2/conf/webwork2.dist.service /opt/webwork/webwork2/conf/webwork2.service
  • Now enable and start the service with
    > sudo systemctl enable /opt/webwork/webwork2/conf/webwork2.service
    > sudo systemctl start webwork2
  • You should now be able to visit http://your.server.edu/webwork2 (the usual url for your server) and see webwork2 in action.
  • Note that anytime prior to this upgrade that you would have restarted apache2 to make changes to code or configuration take effect, you will instead now run sudo systemctl restart webwork2. You will rarely need to restart apache2.
  • Make sure to upgrade courses from the admin course to relegate changes to the database.
  • If you have course archives located in /opt/webwork/courses, then you will need to move them to /opt/webwork/courses/admin/archives. That directory probably will not exist, so you will also need to create it. You can do this with
    sudo mkdir /opt/webwork/courses/admin/archives
    sudo cp /opt/webwork/courses/*.tar.gz /opt/webwork/courses/admin/archives/
    These files will also now be available from the "File Manager" in the admin course.
  • This final step is optional. Some long running processes are not directly run by the webwork2 app. Particularly mass grade updates via LTI and sending of instructor emails. Instead these tasks are executed via the webwork2 Minion job queue. If the users of your system will be utilizing either of those features, then you will need to set up the webwork2 job queue. If those features will not be utilized by the users of your system, then you can skip this step. See Installation Manual for 2.18 on Ubuntu#Set Up the Webwork2 Job Queue for instructions on how to set up the job queue.

Release Details

                                    WeBWorK                                    
                         Online Homework Delivery System                        
                                  Version 2.18                          

                    Copyright 2000-2023, The WeBWorK Project                    
                              All rights reserved.                              

Details
-------

Release date:  July 20, 2023

Commits: The webwork2 main branch was modified by 792 commits in merging the WeBWorKk-2.18 branch into main, and the pg main branch was modified by 504 commits in merging the PG-2.18 branch into main.

Github repository:  https://github.com/openwebwork
Modules:            webwork2 pg

Release team:
* Glenn Rice, Missouri Western State University
* Danny Glin, University of Calgary, technical manager for The WeBWorK Project (TWP)
* K. Andrew Parker, New York City College of Technology (“City Tech”), City University of New York
* Nathan Wallach, Technion - Israel Institute of Technology
* Alex Jordan, Portland Community College (PCC)
* Peter Staab, Fitchburg State University
* Mike Gage, University of Rochester
* Jaimos Skriletz, Boise State University