pageflow 15.0.0.beta1 → 15.0.0.beta2
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 +4 -4
- data/CHANGELOG.md +7 -39
- data/lib/pageflow/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5219177ac3ed7d7f1727e3f669cc687d160a63942e34c89d1e3aee7f9beff9ce
|
4
|
+
data.tar.gz: c54857b1b2dc21afb8543ddc35a2b5d9ffdfd3df68ceeb9c553762584c47f5e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a5eb4cfadae67dd795a2fb151c95135202aa22a024710b8f6e287fd9afd028f5aa16e2e1549ae3b4c2f47bf1e7a86931dcfc4d1ba347569432f63ecc85eb7c3
|
7
|
+
data.tar.gz: 9bb8fcff78f53f24d64bb00507fa2a5b485f1445c29c031326fdd0fc3e789dd506b4d72019042fc02d488cc372c7ae0e793b0a16cb720246f6d77c81244c7982
|
data/CHANGELOG.md
CHANGED
@@ -1,48 +1,16 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
-
### Version 15.0.0.
|
3
|
+
### Version 15.0.0.beta2
|
4
4
|
|
5
|
-
2019-
|
5
|
+
2019-08-01
|
6
6
|
|
7
|
-
[Compare changes](https://github.com/codevise/pageflow/compare/14-x-stable...v15.0.0.
|
7
|
+
[Compare changes](https://github.com/codevise/pageflow/compare/14-x-stable...v15.0.0.beta2)
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
([#1180](https://github.com/codevise/pageflow/pull/1180))
|
13
|
-
|
14
|
-
This version includes various refactorings and class renamings.
|
15
|
-
If you include any of the files or modules below, you need to update your code accordingly.
|
16
|
-
|
17
|
-
##### File modules:
|
18
|
-
HostedFile => UploadableFile (concerning uploading of files)\
|
19
|
-
UploadedFile => ReusableFile (concerning usage of files)
|
20
|
-
|
21
|
-
##### StateMachines:
|
22
|
-
ProcessedFileStateMachine => ImageAndTextTrackProcessingStateMachine\
|
23
|
-
EncodedFileStateMachine => MediaEncodingStateMachine
|
24
|
-
|
25
|
-
##### StateMachineJobs:
|
26
|
-
ProcessFileJob => ProcessImageOrTextTrackJob
|
27
|
-
|
28
|
-
- Introduce PermaId on FileUsage, change file lookup to PermaId throughout Pageflow codebase.
|
29
|
-
([#1179](https://github.com/codevise/pageflow/pull/1179))
|
30
|
-
|
31
|
-
File lookup is now done via the `perma_id` of the files usage within the revisions scope.
|
32
|
-
Therefore it is strongly advised to change file lookup to the new RevisionFileHelper:
|
33
|
-
|
34
|
-
I.e.
|
35
|
-
```
|
36
|
-
Pageflow::Imagefile.find(some_id)
|
37
|
-
```
|
38
|
-
will become
|
39
|
-
```
|
40
|
-
include RevisionFileHelper
|
41
|
-
[...]
|
42
|
-
find_file_in_entry(Pageflow::Imagefile, image_file_usage_perma_id)
|
43
|
-
```
|
9
|
+
- Move UsedFileTestHelper to support directory
|
10
|
+
in order to make it available in Plugins.
|
11
|
+
Require it in spec_helper to keep it available in Pageflow itself.
|
44
12
|
|
45
|
-
|
13
|
+
([#1194](https://github.com/codevise/pageflow/pull/1194))
|
46
14
|
|
47
15
|
See
|
48
16
|
[14-x-stable branch](https://github.com/codevise/pageflow/blob/14-x-stable/CHANGELOG.md)
|
data/lib/pageflow/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.0.beta2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Codevise Solutions Ltd
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-08-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|