Skip to content

Commit c6b32db

Browse files
authored
Merge pull request #37 from packbackbooks/changelog-update
Updating CHANGELOG with changes from every release
2 parents 87cbaaa + 3315bd5 commit c6b32db

File tree

2 files changed

+50
-5
lines changed

2 files changed

+50
-5
lines changed

CHANGELOG.md

Lines changed: 48 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,61 @@
1-
## 3.0
1+
## 4.1.0
2+
3+
* Allowed `getGrades()` to be called without a line item. ([#34](https://github.com/packbackbooks/lti-1-3-php-library/pull/34))
4+
* Fixed fetching of line items and eliminated a PHP warning for missing key. ([#35](https://github.com/packbackbooks/lti-1-3-php-library/pull/35))
5+
* Included the `resourceLinkId` attribute when creating a line item. ([#36](https://github.com/packbackbooks/lti-1-3-php-library/pull/36))
6+
7+
## 4.0.0
8+
9+
* Added a new method to `ILtiServiceConnector`: `setDebuggingMode()`. ([#32](https://github.com/packbackbooks/lti-1-3-php-library/pull/32))
10+
11+
## 3.0.3
12+
13+
* Added response/request logging to LtiServiceConnector. ([#31](https://github.com/packbackbooks/lti-1-3-php-library/pull/31))
14+
15+
Note: Upgrade to 4.0.0 for this logging to be disabled by default.
16+
17+
## 3.0.2
18+
19+
* Fixed grades with a score of 0 not being synced. ([#30](https://github.com/packbackbooks/lti-1-3-php-library/pull/30))
20+
21+
## 3.0.1
22+
23+
* Fixed a few minor errors related to array indexes. ([#27](https://github.com/packbackbooks/lti-1-3-php-library/pull/27), [#28](https://github.com/packbackbooks/lti-1-3-php-library/pull/28), [#29](https://github.com/packbackbooks/lti-1-3-php-library/pull/29))
24+
* Increased test coverage on the LtiMessageLaunch. ([#28](https://github.com/packbackbooks/lti-1-3-php-library/pull/28))
25+
26+
## 3.0.0
227

328
* Added a new method to `ICache`: `clearAccessToken()`.
429
* Modified the constructor arguments for `LtiServiceConnector`, `LtiAssignmentGradesService`, `LtiCourseGroupsService`, and `LtiNamesRolesProvisioningService`.
530

6-
## 2.0
31+
## 2.0.3
32+
33+
* Made an optimization to the logic added in 2.0.2. ([#19](https://github.com/packbackbooks/lti-1-3-php-library/pull/19))
34+
35+
## 2.0.2
36+
37+
* Fixed pagination of lineitems in the `LtiAssignmentGradesService` and makes it possible to get all lineitems with a single function call. ([#17](https://github.com/packbackbooks/lti-1-3-php-library/pull/17))
38+
39+
## 2.0.1
40+
41+
* Fixed a bug in the `LtiServiceConnector` that was causing double-encoded JSON to be sent in POST bodies, introduced in 2.0.0. ([#15](https://github.com/packbackbooks/lti-1-3-php-library/pull/15))
42+
43+
## 2.0.0
744

845
* A standard naming convention was implemented for all interfaces.
946
* Added two new methods to `ICache`: `cacheAccessToken()` and `getAccessToken()`.
1047
* Optimized how the `LtiServiceConnector` caches access tokens to reduce the likelihood of being rate limited by Canvas.
1148

1249
For upgrading from 1.0 to 2.0, view the [Upgrade Guide](UPGRADES.md)
1350

14-
## 1.0
51+
## 1.1.1
52+
53+
* Added a `text` parameter to `LtiDeepLinkResource` ([#5](https://github.com/packbackbooks/lti-1-3-php-library/pull/5))
54+
55+
## 1.1.0
56+
57+
* Added a custom Canvas extension to `LtiGrade` ([#3](https://github.com/packbackbooks/lti-1-3-php-library/pull/3))
58+
59+
## 1.0.0
1560

1661
* Initial release. View the [Laravel Implementation Guide](https://github.com/packbackbooks/lti-1-3-php-library/wiki/Laravel-Implementation-Guide).

UPGRADES.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
## 3.0 to 4.0
22

3-
### New method implemented on the `ILtiServiceConnecetor`
3+
### New method implemented on the `ILtiServiceConnector`
44

5-
Version 4.0 introduced changes to the `Packback\Lti1p3\Interfaces\ILtiServiceConnecetor` interface, adding one method: `setDebuggingMode()`.
5+
Version 4.0 introduced changes to the `Packback\Lti1p3\Interfaces\ILtiServiceConnector` interface, adding one method: `setDebuggingMode()`.
66

77
## 2.0 to 3.0
88

0 commit comments

Comments
 (0)