workarea 3.5.2 → 3.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +57 -0
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c34388ffb167240cd086ac400bf19606d401c698749916a3618e6b29cec08a2
|
4
|
+
data.tar.gz: 936d1f69d8c26f9d177dee83e91337a989c88a6774fca2114e5b3fe025490ae4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: de356ccd4d3e78e174e95f9e23e693a18bbf52e6f251c75c0757aa80abc59bab64a6bcbf04f9626d4c6f15b8fdd90b7bea33738a4934a7982cba7467856f8686
|
7
|
+
data.tar.gz: 43df1ec4af064d05a2c4d91dfaefc1c44fc0e8a67a503aab026e68b0385782b8c437d3cfd3009ebf323e0f837a4a29926aae46e59bd11ae06cc70891a52f9650
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,60 @@
|
|
1
|
+
Workarea 3.5.3 (2020-01-07)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Another hardcoded 2020 fix
|
5
|
+
|
6
|
+
We've all learned our lesson, right?
|
7
|
+
Ben Crouse
|
8
|
+
|
9
|
+
* Pin version for wysihtml-rails
|
10
|
+
|
11
|
+
Setting the version to 0.6.0.beta2 fixes the dependency issues that arose after the new version of Bundler.
|
12
|
+
Jeff Yucis
|
13
|
+
|
14
|
+
* Fix some references to 2020
|
15
|
+
|
16
|
+
These were causing build failures. Assuming these fixes got lost in a
|
17
|
+
merge.
|
18
|
+
Ben Crouse
|
19
|
+
|
20
|
+
* Reuse new Activity UI for main dashboard in Admin
|
21
|
+
|
22
|
+
WORKAREA-138
|
23
|
+
Curt Howard
|
24
|
+
|
25
|
+
* Use the Rack session ID cookie value for user activity session IDs
|
26
|
+
|
27
|
+
Rack >= 2.0.8 adds the idea private/public session IDs to prevent timing
|
28
|
+
attacks where a session ID can be stolen. This is big for sessions stored
|
29
|
+
in databases because the session can then be stolen.
|
30
|
+
|
31
|
+
Workarea only supports a cookie session store, so we can continue to
|
32
|
+
safely use the cookie value of the session ID for metrics lookups.
|
33
|
+
|
34
|
+
You can learn more about the Rack vulnerability here:
|
35
|
+
https://github.com/rack/rack/security/advisories/GHSA-hrqr-hxpp-chr3
|
36
|
+
Ben Crouse
|
37
|
+
|
38
|
+
* Disallow multiple form submissions throughout the Admin
|
39
|
+
|
40
|
+
Disable any submit button within a form after submission to prevent
|
41
|
+
multiple clicks. Also be less opinionated with disabled inputs and
|
42
|
+
buttons, applying only an opacity and a cursor style, which allows
|
43
|
+
relevant component's disabled states to more easily be inherited.
|
44
|
+
|
45
|
+
WORKAREA-133
|
46
|
+
Curt Howard
|
47
|
+
|
48
|
+
* Fix Performance Test Task
|
49
|
+
|
50
|
+
Instead of using a Boolean `true` value, use the String `"true"` so Ruby
|
51
|
+
won't complain when running the task.
|
52
|
+
|
53
|
+
WORKAREA-156
|
54
|
+
Tom Scott
|
55
|
+
|
56
|
+
|
57
|
+
|
1
58
|
Workarea 3.5.2 (2019-12-19)
|
2
59
|
--------------------------------------------------------------------------------
|
3
60
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: workarea
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.5.
|
4
|
+
version: 3.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Crouse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-01-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: workarea-core
|
@@ -16,56 +16,56 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.5.
|
19
|
+
version: 3.5.3
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.5.
|
26
|
+
version: 3.5.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: workarea-storefront
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 3.5.
|
33
|
+
version: 3.5.3
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 3.5.
|
40
|
+
version: 3.5.3
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: workarea-admin
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 3.5.
|
47
|
+
version: 3.5.3
|
48
48
|
type: :runtime
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - '='
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 3.5.
|
54
|
+
version: 3.5.3
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: workarea-testing
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 3.5.
|
61
|
+
version: 3.5.3
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 3.5.
|
68
|
+
version: 3.5.3
|
69
69
|
description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
|
70
70
|
email:
|
71
71
|
- bcrouse@workarea.com
|