pageflow 15.0.0 → 15.0.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pageflow might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6454ae1aadba5b85056494269fd413556388ad88df24da2b25e715bc6fa4ec59
4
- data.tar.gz: 60ba991dfef235b247573e854f17d73e09bf2502ff1ec2c18bcdb0a3b145b929
3
+ metadata.gz: dc6754982c92a580ade23684b98718c2319fc7892e8387b69cae815ac8000dcc
4
+ data.tar.gz: 6d73187cdbec44bbdc314c9b6c6a7e5402fc5bf2f1f89717eed73f13fa6b4045
5
5
  SHA512:
6
- metadata.gz: c1ca9dd8e9213b50bedaa9e35b6fb2cd51853f4b81808cb24873d9f9a71bc698276b9aca72b2edf230a334108e1dec80d8f6d776df9a3a7abbab9b86e09fb00f
7
- data.tar.gz: acc99b36465fbc0a012ecf8b453af352230908db127d437ad4d9e50fdb4d6dc37dfff10698b95ed8305c5f84d5bb148a1394bbf58515836f26d0f4ce9de45798
6
+ metadata.gz: d4491c0cbfeeefdcbcdb4b7546c4e9ef6ebdbd3703401adb45083477d9e89d94a6d3c300908e8020c82f07a599efa508c684a692c86779893ad1dafffa08996e
7
+ data.tar.gz: df11aae8856f95e37e8f1763c74df4bd87558c42938c73b77a91d8f7b9157e4778285062b54e963ffa01523716d0f4bcac2e7200bd75de769b360d1376caf581
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ ### Version 15.0.1
4
+
5
+ 2019-11-04
6
+
7
+ [Compare changes](https://github.com/codevise/pageflow/compare/v15.0.0...v15.0.1)
8
+
9
+ - Version 15.0.0 contained an out-of-date Webpack built.
10
+
3
11
  ### Version 15.0.0
4
12
 
5
13
  2019-11-04
@@ -24287,7 +24287,7 @@ pageflow = typeof pageflow === "object" ? pageflow : {}; pageflow["react"] =
24287
24287
  function autoTextTrackFile(textTrackFiles, defaultTextTrackFileId, locale, volume) {
24288
24288
  if (defaultTextTrackFileId) {
24289
24289
  var defaultTextTrackFile = textTrackFiles.find(function (textTrackFile) {
24290
- return textTrackFile.id == defaultTextTrackFileId;
24290
+ return textTrackFile.permaId == defaultTextTrackFileId;
24291
24291
  });
24292
24292
 
24293
24293
  if (defaultTextTrackFile) {
@@ -29932,7 +29932,8 @@ pageflow = typeof pageflow === "object" ? pageflow : {}; pageflow["react"] =
29932
29932
  collectionName: (0, _utils.camelize)(collectionName),
29933
29933
  dispatch: dispatch,
29934
29934
 
29935
- attributes: ['id', 'basename', 'variants', 'is_ready', 'parent_file_id', 'parent_file_model_type', 'width', 'height', 'duration_in_ms', 'rights', 'created_at'],
29935
+ idAttribute: 'perma_id',
29936
+ attributes: ['id', 'perma_id', 'basename', 'variants', 'is_ready', 'parent_file_id', 'parent_file_model_type', 'width', 'height', 'duration_in_ms', 'rights', 'created_at'],
29936
29937
  includeConfiguration: true
29937
29938
  });
29938
29939
  });
@@ -29950,7 +29951,9 @@ pageflow = typeof pageflow === "object" ? pageflow : {}; pageflow["react"] =
29950
29951
  return {
29951
29952
  files: (0, _redux.combineReducers)(Object.keys(files).reduce(function (result, collectionName) {
29952
29953
  collectionName = (0, _utils.camelize)(collectionName);
29953
- result[collectionName] = (0, _collections.createReducer)(collectionName);
29954
+ result[collectionName] = (0, _collections.createReducer)(collectionName, {
29955
+ idAttribute: 'permaId'
29956
+ });
29954
29957
  return result;
29955
29958
  }, {})),
29956
29959
 
@@ -24281,7 +24281,7 @@ pageflow = typeof pageflow === "object" ? pageflow : {}; pageflow["react"] =
24281
24281
  function autoTextTrackFile(textTrackFiles, defaultTextTrackFileId, locale, volume) {
24282
24282
  if (defaultTextTrackFileId) {
24283
24283
  var defaultTextTrackFile = textTrackFiles.find(function (textTrackFile) {
24284
- return textTrackFile.id == defaultTextTrackFileId;
24284
+ return textTrackFile.permaId == defaultTextTrackFileId;
24285
24285
  });
24286
24286
 
24287
24287
  if (defaultTextTrackFile) {
@@ -29910,7 +29910,8 @@ pageflow = typeof pageflow === "object" ? pageflow : {}; pageflow["react"] =
29910
29910
  collectionName: (0, _utils.camelize)(collectionName),
29911
29911
  dispatch: dispatch,
29912
29912
 
29913
- attributes: ['id', 'basename', 'variants', 'is_ready', 'parent_file_id', 'parent_file_model_type', 'width', 'height', 'duration_in_ms', 'rights', 'created_at'],
29913
+ idAttribute: 'perma_id',
29914
+ attributes: ['id', 'perma_id', 'basename', 'variants', 'is_ready', 'parent_file_id', 'parent_file_model_type', 'width', 'height', 'duration_in_ms', 'rights', 'created_at'],
29914
29915
  includeConfiguration: true
29915
29916
  });
29916
29917
  });
@@ -29928,7 +29929,9 @@ pageflow = typeof pageflow === "object" ? pageflow : {}; pageflow["react"] =
29928
29929
  return {
29929
29930
  files: (0, _redux.combineReducers)(Object.keys(files).reduce(function (result, collectionName) {
29930
29931
  collectionName = (0, _utils.camelize)(collectionName);
29931
- result[collectionName] = (0, _collections.createReducer)(collectionName);
29932
+ result[collectionName] = (0, _collections.createReducer)(collectionName, {
29933
+ idAttribute: 'permaId'
29934
+ });
29932
29935
  return result;
29933
29936
  }, {})),
29934
29937
 
@@ -1,3 +1,3 @@
1
1
  module Pageflow
2
- VERSION = '15.0.0'.freeze
2
+ VERSION = '15.0.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pageflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.0.0
4
+ version: 15.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Codevise Solutions Ltd