Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
- Migrated asset pipeline from Sprockets to Propshaft (#7970)
- Simplified Chart.js usage: removed the `DataChart` wrapper component, converted `chart_config.js` to an ES module, and replaced `registerables` with a minimal set of Chart.js components (#7987)
- Added missing foreign keys in seed data (#8006)
- Bump jwt from 2.10.3 to 3.2.0 (#8039)

## [v2.10.0]

Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ GEM
jekyll-include-cache
jekyll-seo-tag (>= 2.0)
rake (>= 12.3.1)
jwt (2.10.3)
jwt (3.2.0)
base64
kgio (2.11.4)
kramdown (2.5.2)
Expand Down
2 changes: 1 addition & 1 deletion spec/support/lti_controller_examples.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
let(:mock_roles) { [LtiDeployment::LTI_ROLES[:instructor]] }

def create_pub_jwk
@create_pub_jwk ||= JWT::JWK.new(OpenSSL::PKey::RSA.new(1024))
@create_pub_jwk ||= JWT::JWK.new(OpenSSL::PKey::RSA.new(2048))
end

def generate_payload(roles, nonce)
Expand Down