Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1441 ariadna 1
=== 4.5 Onwards ===
2
 
3
This file has been replaced by UPGRADING.md. See MDL-81125 for further information.
4
 
5
===
1 efrain 6
This files describes API changes in the lti code.
7
 
8
=== 4.3 ===
9
 
10
* The `lti_libxml_disable_entity_loader` method is deprecated, as it is no longer required from PHP 8.0
11
* The `mod_lti_mod_form` constructor will now throw an exception if called without passing a typeid as manual configuration of
12
  instances is now unsupported.
13
* The `lti_get_lti_types_by_course` method is deprecated. Please use mod_lti\local\types_helper::get_lti_types_by_course instead.
14
* The capability `mod/lti:addmanualinstance` is now deprecated. Since manual instance creation is no longer supported, there is no
15
  substitute for this capability.
16
 
17
=== 4.2 ===
18
 
19
* get_jwt_claim_mappings() function has been added to service_base class. It allows a service subplugin to be
20
  compatible with LTI 1.3 by exposing its 1.1 custom parameters to LTI 1.3 claim mapping.
21
* The `serialise_tool_proxy` method, deprecated since 3.10, has been removed and can no longer be used
22
 
23
=== 4.1 ===
24
 
25
* The callback get_shortcuts() is now removed. Please use get_course_content_items and get_all_content_items instead.
26
* Services can now implement the override_endpoint function to replace the launch url and/or the custom parameters.
27
 
28
=== 3.10 ===
29
 
30
* Select Content supports multiple, allowing a tool to return more than one link at a time.
31
  Parameter multiple in function lti_build_content_item_selection_request() is now set to true.
32
* Deprecated unused function after external function, 'get_tool_proxies()', was refactored:
33
    - serialise_tool_proxy()
34
 
35
=== 3.8 ===
36
 
37
* The following functions have been finally deprecated and can not be used anymore:
38
    * lti_scale_used()
39
 
40
=== 3.7 ===
41
 
42
* Deprecated functions to add support for LTI 1 tools to access services:
43
    - mod_lti\local\ltiservice\service_base->check_tool_proxy()
44
    - mod_lti\local\ltiservice\service_base->check_type()
45
    - mod_lti\local\ltiservice\resource_base->check_tool_proxy()
46
    - mod_lti\local\ltiservice\resource_base->check_type()
47
    - mod_lti_edit_types_form->get_lti_advantage_services()
48
  replaced by:
49
    - mod_lti\local\ltiservice\service_base->check_tool()
50
    - mod_lti\local\ltiservice\resource_base->check_tool()
51
    - mod_lti_edit_types_form->get_lti_services()
52
* Deprecated unused function:
53
    - mod_lti\local\ltiservice\service_base->get_configuration_parameter_names()
54
* Deprecated functions to simplify implementation of LTI scopes for accessing services:
55
    - mod_lti\local\ltiservice\resource_base->get_permissions()
56
    - ltiservice_gradebookservices\local\resources\lineitem\get_permissions()
57
    - ltiservice_gradebookservices\local\resources\lineitems\get_permissions()
58
    - ltiservice_gradebookservices\local\resources\results\get_permissions()
59
    - ltiservice_gradebookservices\local\resources\scores\get_permissions()
60
    - ltiservice_memberships\local\resources\contextmemberships\get_permissions()
61
    replaced by:
62
    - mod_lti\local\ltiservice\service_base->get_permitted_scopes()
63
    - ltiservice_gradebookservices\local\service\gradebookservices->get_permitted_scopes()
64
    - ltiservice_memberships\local\service\memberships\->get_permitted_scopes()
65
* Deprecated function to remove definition as static:
66
    - ltiservice_memberships\local\service\memberships\get_users_json()
67
    replaced by:
68
    - ltiservice_memberships\local\service\memberships\get_members_json()
69
 
70
=== 3.4 ===
71
 
72
* The following functions, previously used (exclusively) by upgrade steps are not available
73
  anymore because of the upgrade cleanup performed for this version. See MDL-57432 for more info:
74
    - mod_lti_upgrade_custom_separator()
75
 
76
=== 3.2 ===
77
 
78
* Support for LTI ContentItem message type.
79
* New function lti_build_content_item_selection_request() for building an LTI ContentItemSelectionRequest.
80
* New Select content button in External tool configuration page that lets the user configure an external tool by fetching tool
81
  configuration content from the preconfigured tool's content selection interface.
82
 
83
=== 3.1 ===
84
 
85
* When requesting a grade from the outcome service, and empty grade will now be returned as
86
  an empty grade in accordance with the spec. Previously a grade of 0 would be returned.
87
 
88
=== 3.0 ===
89
 
90
* Function lti_view (locallib.php) was renamed to lti_launch_tool.
91
  A new and different lti_view function was created in the module lib.php containing the code
92
  for launching events and update the completion status for the module.
93
 
94
 
95
=== 2.8 ===
96
 
97
* Support for LTI 2 added, including extensible services implemented as ltiservice plugins.
98
* Function sendOAuthBodyPOST removed from OAuthBody.php because it was not being used.
99
* The field 'grade' in the table {lti} is now an integer rather than a numeric to bring it
100
  in line with the 'grade' field in other activities.
101
 
102
=== 2.7 ===
103
 
104
* mod_lti\event\unknown_service_api_called now has less data stored in 'other'
105
  but everything is still available for event observers via method get_message_data()