lcms-engine 0.5.3 → 0.5.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 448c9e0e07427f3975b5cad0e24a669623d7a4551103d62c7b5f3ed147d6b7d5
4
- data.tar.gz: ecb18bd614114f6ce53e9f9c679c901413c63c9384c31ab1929b1ce6745c0b64
3
+ metadata.gz: 9cd6b181b972a0cc4c6f70dbf4d6a67c9a0f5d60d07e4ded502704a803b59281
4
+ data.tar.gz: d2d820a67b7ab2b4722b55d5eb93a71befa56cbc2b1ec5c3b9b158e2d19a2ba0
5
5
  SHA512:
6
- metadata.gz: c89ed38ed3a52f2b3f4fb9dad36e974cdd7a3566152d6bbe964b7041134f078e004995399c60ff3f506370ec46f10ce6aaf5fca57c94e0c558ed4fbee1726232
7
- data.tar.gz: 7ded2c4ee58724a8e145bf6d918c079cdaf9ac793a190afc6db4cacbf5a9163e7122e486576f00e88c56083d5f26121d11e92df26b54e35160d767cd1988035c
6
+ metadata.gz: 5237a36f91b0e43f4fd5dfcc0f83452a5b748b40d0081ae2302bc9fcfc147fec444e3cf6506fe20bfb435a842b444b89595dee69578833f84cbe62aa66810dd3
7
+ data.tar.gz: b9c2f19ec26c09185db3db0e1becfee83c81bfedf4a7cd451d13426eb0cf0c96f51bab749aa6f0d6fa41ac1beda3bafbb10133f964902f40ea034eecf22ec6b7
data/CHANGELOG.md CHANGED
@@ -4,9 +4,17 @@ All notable changes to this project will be documented in this file.
4
4
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
- ## [Unreleased](https://github.com/learningtapestry/lcms-engine/compare/v0.5.3...HEAD)
7
+ ## [Unreleased](https://github.com/learningtapestry/lcms-engine/compare/v0.5.4...HEAD)
8
8
 
9
- ## [0.5.2](https://github.com/learningtapestry/lcms-engine/compare/v0.5.2...v0.5.3) - 2022.12.13
9
+ ## [0.5.4](https://github.com/learningtapestry/lcms-engine/compare/v0.5.3...v0.5.4) - 2022.12.30
10
+
11
+ ### Changed
12
+
13
+ - Bump loofah from 2.19.0 to 2.19.1 - [@paranoicsan](https://github.com/paranoicsan)
14
+ - Bump rails-html-sanitizer from 1.4.3 to 1.4.4 - [@paranoicsan](https://github.com/paranoicsan)
15
+ - [Security updates](https://github.com/learningtapestry/lcms-engine/commit/79a496e867435898fb442e35916308f36b897ade) - [@paranoicsan](https://github.com/paranoicsan)
16
+
17
+ ## [0.5.3](https://github.com/learningtapestry/lcms-engine/compare/v0.5.2...v0.5.3) - 2022.12.13
10
18
 
11
19
  ### Changed
12
20
 
data/Gemfile.lock CHANGED
@@ -420,7 +420,7 @@ GEM
420
420
  jwt (2.5.0)
421
421
  launchy (2.5.0)
422
422
  addressable (~> 2.7)
423
- loofah (2.19.0)
423
+ loofah (2.19.1)
424
424
  crass (~> 1.0.2)
425
425
  nokogiri (>= 1.5.9)
426
426
  lt-google-api (0.2.4)
@@ -528,8 +528,8 @@ GEM
528
528
  rails-dom-testing (2.0.3)
529
529
  activesupport (>= 4.2.0)
530
530
  nokogiri (>= 1.6)
531
- rails-html-sanitizer (1.4.3)
532
- loofah (~> 2.3)
531
+ rails-html-sanitizer (1.4.4)
532
+ loofah (~> 2.19, >= 2.19.1)
533
533
  railties (6.1.7)
534
534
  actionpack (= 6.1.7)
535
535
  activesupport (= 6.1.7)
@@ -3,6 +3,7 @@ import PaginationBoxView from '../../paginate/PaginationBoxView';
3
3
 
4
4
  // eslint-disable-next-line no-unused-vars
5
5
  function pickerWindowWrapper(WrappedComponent, path) {
6
+ // eslint-disable-next-line react/display-name
6
7
  return class extends React.Component {
7
8
  constructor(props) {
8
9
  super(props);
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Lcms
4
4
  module Engine
5
- VERSION = '0.5.3'
5
+ VERSION = '0.5.4'
6
6
  RAILS_5_VERSION = 5.2
7
7
  end
8
8
  end