lcms-engine 0.5.0 → 0.5.1

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: aa522908e0892715f7b2fa01f4563e143f96504d6323a30c44ad136fd35506db
4
- data.tar.gz: fcdcffc89fc90071562dfd454ac700b3ffd25906fe9ebe6377475b2a9c5fdbd4
3
+ metadata.gz: 29899e01425a60c7ad9477e9a9d790ccf733368990f2563c836ab4195bcb77a5
4
+ data.tar.gz: 9547214fa89d172998f86718bd2db9acd8fa5f9e6e82e769c0bc07166c7d2075
5
5
  SHA512:
6
- metadata.gz: e3670c15ccc335e9a39178446629cd76d52d8df7f0c51540a5eb4d8b1b39fa194bd5df1e025f08005ae63bc7038e05eb7b27be9ec735c7a67ee543fa7acd4a67
7
- data.tar.gz: 7766b9cbe3be659ca6ac4ea3b5e0633a99f6ac85347165b9fe5dea07591f2e10d021b6bb5b7fe97d28e0708f1b8ac3146b8cc19ea083581e95acb722b3eab629
6
+ metadata.gz: a3912c329a05e2c7cc6b03d1a005f4b2e30308dade0ccef25f405a920c368cf4dbbce8de6748705512a27ef60b8c313bedc089f46bd4a988720c1b3cc297eb6b
7
+ data.tar.gz: a777f70d071a29efb3546674d960b4f39333dc517ea0e170d91fc2fb6d1637e3c3133d1d973f229b93375a3162d8534f4c617d7b39b62ba37717cf3301f5f301
data/CHANGELOG.md CHANGED
@@ -4,7 +4,13 @@ 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.0...HEAD)
7
+ ## [Unreleased](https://github.com/learningtapestry/lcms-engine/compare/v0.5.1...HEAD)
8
+
9
+ ## [0.5.1](https://github.com/learningtapestry/lcms-engine/compare/v0.5.0...v0.5.1) - 2022.10.25
10
+
11
+ ### Fixed
12
+
13
+ - Fix JS to remove ES6 keyword - [@paranoicsan](https://github.com/paranoicsan)
8
14
 
9
15
  ## [0.5.0](https://github.com/learningtapestry/lcms-engine/compare/v0.4.2...v0.5.0) - 2022.10.21
10
16
 
data/Gemfile.lock CHANGED
@@ -10,7 +10,7 @@ GIT
10
10
  PATH
11
11
  remote: .
12
12
  specs:
13
- lcms-engine (0.4.2)
13
+ lcms-engine (0.5.1)
14
14
  active_model_serializers (~> 0.10.10)
15
15
  activejob-retry (~> 0.6.3)
16
16
  acts-as-taggable-on (~> 7.0)
@@ -162,10 +162,10 @@ GEM
162
162
  autoprefixer-rails (9.8.6.5)
163
163
  execjs
164
164
  aws-eventstream (1.2.0)
165
- aws-partitions (1.646.0)
165
+ aws-partitions (1.650.0)
166
166
  aws-record (2.8.0)
167
167
  aws-sdk-dynamodb (~> 1.18)
168
- aws-sdk-core (3.160.0)
168
+ aws-sdk-core (3.164.0)
169
169
  aws-eventstream (~> 1, >= 1.0.2)
170
170
  aws-partitions (~> 1, >= 1.525.0)
171
171
  aws-sigv4 (~> 1.1)
@@ -183,7 +183,7 @@ GEM
183
183
  aws-sessionstore-dynamodb (~> 2)
184
184
  concurrent-ruby (~> 1)
185
185
  railties (>= 5.2.0)
186
- aws-sdk-s3 (1.114.0)
186
+ aws-sdk-s3 (1.116.0)
187
187
  aws-sdk-core (~> 3, >= 3.127.0)
188
188
  aws-sdk-kms (~> 1)
189
189
  aws-sigv4 (~> 1.4)
@@ -303,7 +303,7 @@ GEM
303
303
  erubi (1.11.0)
304
304
  et-orbi (1.2.7)
305
305
  tzinfo
306
- excon (0.93.0)
306
+ excon (0.93.1)
307
307
  execjs (2.8.1)
308
308
  factory_bot (5.2.0)
309
309
  activesupport (>= 4.2.0)
@@ -14,7 +14,7 @@ document.addEventListener('turbolinks:load', function () {
14
14
  });
15
15
 
16
16
  if (typeof CKEDITOR === 'undefined' && document.getElementsByClassName('ckeditor').length) {
17
- let script = document.createElement('script');
17
+ var script = document.createElement('script');
18
18
  script.src = 'https://cdn.ckeditor.com/4.20.0/standard/ckeditor.js';
19
19
  document.head.append(script);
20
20
  }
@@ -2,7 +2,7 @@
2
2
 
3
3
  module Lcms
4
4
  module Engine
5
- VERSION = '0.5.0'
5
+ VERSION = '0.5.1'
6
6
  RAILS_5_VERSION = 5.2
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lcms-engine
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alexander Kuznetsov
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2022-10-21 00:00:00.000000000 Z
13
+ date: 2022-10-25 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activejob-retry