Releases: WISE-Community/WISE-DEPRECATED
5.16.3
Fixed a console error that occurred when clicking a WISE link. #2628
Refactored createWISELinkLinkElement and createWISELinkButtonElement functions. #2626
Extracted common methods from StudentDataService and TeacherDataService into DataService. #2620
Replaced openWISELinkChooser and createWISELink events with function calls. #2621
Replaced currentPeriodChanged event with observables #2616
5.16.2
Replaced currentNodeChanged and currentStepChanged events with an observable #2618
Replaced openAssetChooser and assetSelected events with function calls. #2614
Fixed the thumbnails for some of the outside resources. #2521
Extracted edit node rubric feature from NodeAuthoringController into its own route. #2610
5.16.1
Limit first name and last name to English alphabet characters when creating an account
Implement Match component latest revision export
Update code in preparation for AngularJS -> Angular upgrade
Code clean up
5.16
- Student gating: teachers can now lock/unlock students from accessing lessons. They can lock all periods in the class, or only specific periods. Changes are propagated to the students in real-time when a run is in session.
- Bug fixes
- Code refactoring
5.15.3
Bug fixes
5.15.2
Bug fixes
5.15.1
Minor bug fixes
5.15
Upgrade instructions:
Clear the Redis database by running
$ redis-cli
flushall
Major changes:
- Upgrade to Spring-Boot 2.3.2
- Upgrading services, components to Angular
- Replacing events with Observables
- Refactoring
All issues: https://github.com/WISE-Community/WISE/milestone/20?closed=1
5.14.1
5.14.0
Major changes:
- WorkgroupTag
- Upgrade Services to Angular
- Refactor
DB update query
alter table `wise_database`.`tags` add column `runId` bigint null after `name`;
create table workgroups_related_to_tags (
workgroups_fk bigint not null,
tags_fk integer not null,
constraint workgroups_related_to_tagsTagFK foreign key (tags_fk) references tags (id),
constraint workgroups_related_to_tagsWorkgroupFK foreign key (workgroups_fk) references workgroups (id),
primary key (workgroups_fk, tags_fk)
);
All issues: https://github.com/WISE-Community/WISE/milestone/19?closed=1