workarea 3.5.17 → 3.5.18
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +133 -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: fcdbd6652646920730267f54167ad2a9b21a93e6d493407071f2a582077c9070
|
4
|
+
data.tar.gz: 6d56267bd238a34dd139ca782a655af668fa5c1e7917fea85d89c3d9e20661e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c418107191ab420c3410d039c4ac9b1d420f9211fccd892e1b666df0b03805db5046729a432b45f8a24682b64d14632818a28e869fbd498aa61698e301e4c47d
|
7
|
+
data.tar.gz: 2dacbf6f593f2c33c8170a8ed48c54427b3ab12083c316198232eb8bb65eb9596ef8d7e46b8d4a5a92a5884ad96c3498790f73f0061d1e9a739c77f9ea73513b
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,136 @@
|
|
1
|
+
Workarea 3.5.18 (2020-09-01)
|
2
|
+
--------------------------------------------------------------------------------
|
3
|
+
|
4
|
+
* Set Default Inventory Policy to "Standard" in Create Product Workflow
|
5
|
+
|
6
|
+
When creating a new product through the workflow, setting the
|
7
|
+
"Inventory" on a particular SKU would still cause the `Inventory::Sku`
|
8
|
+
to be created with the "Ignore" policy rather than "Standard". Setting
|
9
|
+
inventory on a SKU now automatically causes the `Inventory::Sku` record
|
10
|
+
to be created with a policy of "Standard" so as to deduct the given
|
11
|
+
inventory to the varaint. When no inventory is given, Workarea will fall
|
12
|
+
back to the default of "Ignore".
|
13
|
+
|
14
|
+
WORKAREA-265
|
15
|
+
|
16
|
+
Tom Scott
|
17
|
+
|
18
|
+
* Fix Admin Configuration for Email Addresses
|
19
|
+
|
20
|
+
The hard-coded `config.email_from` and `config.email_to` settings
|
21
|
+
conflict with the out-of-box administrable configuration for the "Email
|
22
|
+
From" and "Email To" settings. This causes a warning for admins that
|
23
|
+
explain why the settings on "Email To" and "Email From" won't take
|
24
|
+
effect. Since the whole purpose of moving these settings to admin
|
25
|
+
configuration was to let admins actually change them, the
|
26
|
+
`config.email_from` and `config.email_to` settings have been removed
|
27
|
+
from both default configuration and the `workarea:install` generator.
|
28
|
+
|
29
|
+
WORKAREA-270
|
30
|
+
|
31
|
+
Tom Scott
|
32
|
+
|
33
|
+
* Add Permissions To Admin::ConfigurationsController
|
34
|
+
|
35
|
+
Admins without "Settings" access are no longer able to access the
|
36
|
+
administrable configuration settings defined in a Workarea application's
|
37
|
+
initializer.
|
38
|
+
|
39
|
+
WORKAREA-261
|
40
|
+
|
41
|
+
Tom Scott
|
42
|
+
|
43
|
+
* Handle missing or invalid current impersonation
|
44
|
+
|
45
|
+
This surfaced as a random failing test, this should make the feature more robust.
|
46
|
+
|
47
|
+
Ben Crouse
|
48
|
+
|
49
|
+
* Fix wrong sorting on default admin index pages
|
50
|
+
|
51
|
+
The query for an admin index page can end up inadvertantly introduce a
|
52
|
+
scoring variation, which can cause results to not match the `updated_at`
|
53
|
+
default sort.
|
54
|
+
|
55
|
+
This makes `updated_at` the true default sort, and allows the general
|
56
|
+
admin search to override, where `_score` is still the desired default
|
57
|
+
sort.
|
58
|
+
|
59
|
+
Ben Crouse
|
60
|
+
|
61
|
+
* Visually improve changesets card when no changesets
|
62
|
+
|
63
|
+
|
64
|
+
Ben Crouse
|
65
|
+
|
66
|
+
* Add modifier for better disabled workflow button display
|
67
|
+
|
68
|
+
This makes it visually clearer that a workflow button is disabled.
|
69
|
+
|
70
|
+
Ben Crouse
|
71
|
+
|
72
|
+
* Add asset index view heading append point
|
73
|
+
|
74
|
+
|
75
|
+
Ben Crouse
|
76
|
+
|
77
|
+
* Pass user into append point
|
78
|
+
|
79
|
+
|
80
|
+
Ben Crouse
|
81
|
+
|
82
|
+
* Add append point for storefront admin toolbar
|
83
|
+
|
84
|
+
|
85
|
+
Ben Crouse
|
86
|
+
|
87
|
+
* Add Rack env key for checking whether it's an asset request
|
88
|
+
|
89
|
+
This is useful for plugins like site builder. This also reduces
|
90
|
+
allocations by moving the regex into a constant and consolidates the
|
91
|
+
check from multiple spots.
|
92
|
+
|
93
|
+
This also skips force passing Rack::Cache for asset requests if you're
|
94
|
+
an admin (minor performance improvement).
|
95
|
+
|
96
|
+
Ben Crouse
|
97
|
+
|
98
|
+
* Add param to allow disabling the admin toolbar in the storefront
|
99
|
+
|
100
|
+
Used in the site builder plugin. Add disable_admin_toolbar=true to the
|
101
|
+
query string to turn off the admin toolbar for that page.
|
102
|
+
|
103
|
+
Ben Crouse
|
104
|
+
|
105
|
+
* Add minor remote selects features to support site builder
|
106
|
+
|
107
|
+
This includes an option for the dropdown parent, and an option to allow
|
108
|
+
autosubmitting a remote select upon selection.
|
109
|
+
|
110
|
+
Ben Crouse
|
111
|
+
|
112
|
+
* Fix constant loading error related to metrics
|
113
|
+
|
114
|
+
Sometimes an error will be raised when Workarea middleware is doing
|
115
|
+
segmentation logic around `Metrics::User`.
|
116
|
+
|
117
|
+
Ben Crouse
|
118
|
+
|
119
|
+
* Move rake task logic into modules
|
120
|
+
|
121
|
+
This will allow decorating this logic for plugins or builds that need
|
122
|
+
to. For example, site builder needs to search-index resources that are
|
123
|
+
unique per-site.
|
124
|
+
|
125
|
+
Ben Crouse
|
126
|
+
|
127
|
+
* Add append point for admin top of page
|
128
|
+
|
129
|
+
|
130
|
+
Ben Crouse
|
131
|
+
|
132
|
+
|
133
|
+
|
1
134
|
Workarea 3.5.17 (2020-08-19)
|
2
135
|
--------------------------------------------------------------------------------
|
3
136
|
|
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.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ben Crouse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-01 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.18
|
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.18
|
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.18
|
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.18
|
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.18
|
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.18
|
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.18
|
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.18
|
69
69
|
description: Workarea is an enterprise-grade Ruby on Rails commerce platform.
|
70
70
|
email:
|
71
71
|
- bcrouse@workarea.com
|