workarea-storefront 3.4.31 → 3.4.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 688b10056415b2e71288ba5898f835970ae7d8e19499b0bff0ee149af3a1e3f6
4
- data.tar.gz: e16f0d4d08d396dff12da2d1579c75d63f932ed8727eb885ef84b684b7db2923
3
+ metadata.gz: 53bb9ee0070810d6da25f88ddeba3052c5e9f34146b09b0c1df015eadfe65c01
4
+ data.tar.gz: ee821579897a8fbe195cb3b0dfa7debc34bb288c3112799a631c867552880221
5
5
  SHA512:
6
- metadata.gz: a365225a86ccff17b85c72aff436bdb4630d231e14d280e4f74ab23e3f43d8688972d09536fb8fe47cea1b42c76131cc9523b8775e7a705523fdab74dc14c3db
7
- data.tar.gz: 551bf76be5c0e05beadb4cdb4ceb865d7b77b6d30449245b34e408b5305df43782f67784e48452ef8c0de9186ceb477de96d60b7ac5dae28de752959d7c6619f
6
+ metadata.gz: fbbd9cf0b9be7a012e683e8b88f2267c45639cb3f08bd568571ffd8524b4f54acb4215ab5111ef991379865d07930850c47b702827805b2d2a62fb0291f73894
7
+ data.tar.gz: 01ee70b9c145be3c74b2774e7f2575d7e5371568792e5e8d610c1493ec1b85475b695f2ed197cbb1228b4d59b6c35e22ead024927316c8b670e3479fc7c56dc1
@@ -27,7 +27,7 @@ module Workarea
27
27
 
28
28
  def search_query
29
29
  @search_query ||= Search::CategoryBrowse.new(
30
- options.merge(
30
+ options.except(:per_page).merge(
31
31
  category_ids: [model.id],
32
32
  rules: model.product_rules,
33
33
  terms_facets: terms_facets - %w(category),
@@ -1,7 +1,7 @@
1
1
  = append_partials('storefront.fulfillment_shipped_mailer.top')
2
2
 
3
3
  - content_for :preheader_text do
4
- = t('workarea.storefront.email.order_cancellation.heading', order_id: @order.id)
4
+ = t('workarea.storefront.email.order_shipped.heading', order_id: @order.id)
5
5
 
6
6
  %tr
7
7
  %td
@@ -201,13 +201,14 @@ en:
201
201
  credit_card_update_error: There were errors updating your credit card.
202
202
  credit_card_removed: Your credit card has been removed.
203
203
  password_reset_expired: This password reset is expired.
204
- password_reset_email_sent: If a valid e-mail address was entered, instructions to reset your password have been sent to "%{email}"
204
+ password_reset_email_sent: If a valid email address was entered, instructions to reset your password have been sent to "%{email}"
205
205
  password_reset: Your password has been reset.
206
206
  old_password_invalid: Your old password is not valid.
207
207
  password_required: Password is required.
208
208
  items_required: You must add an item to your cart to checkout
209
209
  order_custom_pricing: Your cart has custom pricing, you cannot edit the contents of your cart.
210
- no_available_shipping_options: There are no available shipping options for your shipping adddress.
210
+ no_available_shipping_options: There are no available shipping options for your shipping address.
211
+ download_unavailable: This download is no longer available. Contact customer support for more information.
211
212
 
212
213
  forms:
213
214
  required: '*'
@@ -16,6 +16,16 @@ module Workarea
16
16
  get storefront.category_path(create_category(active: false))
17
17
  assert(response.ok?)
18
18
  end
19
+
20
+ def test_not_accepting_per_page_param
21
+ products = [create_product, create_product]
22
+ category = create_category(product_ids: products.map(&:id))
23
+
24
+ get storefront.category_path(category, page: 1, per_page: 1)
25
+ assert(response.ok?)
26
+ assert_includes(response.body, storefront.product_path(products.first))
27
+ assert_includes(response.body, storefront.product_path(products.second))
28
+ end
19
29
  end
20
30
  end
21
31
  end
@@ -123,6 +123,16 @@ module Workarea
123
123
  assert_includes(response.body, 'Foo A')
124
124
  assert_includes(response.body, 'Foo B')
125
125
  end
126
+
127
+ def test_not_accepting_per_page_param
128
+ one = create_product(name: 'Foo A')
129
+ two = create_product(name: 'Foo B')
130
+
131
+ get storefront.search_path(q: 'foo', page: 1, per_page: 1)
132
+ assert(response.ok?)
133
+ assert_includes(response.body, storefront.product_path(one))
134
+ assert_includes(response.body, storefront.product_path(two))
135
+ end
126
136
  end
127
137
  end
128
138
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: workarea-storefront
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.31
4
+ version: 3.4.32
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-04-15 00:00:00.000000000 Z
11
+ date: 2020-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: workarea-core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 3.4.31
19
+ version: 3.4.32
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.4.31
26
+ version: 3.4.32
27
27
  description: Provides user-facing ecommerce storefront functionality for the Workarea
28
28
  Commerce Platform.
29
29
  email: