workarea-package_products 3.3.3

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.
Files changed (128) hide show
  1. checksums.yaml +7 -0
  2. data/.editorconfig +20 -0
  3. data/.github/ISSUE_TEMPLATE/bug_report.md +37 -0
  4. data/.github/ISSUE_TEMPLATE/documentation-request.md +17 -0
  5. data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  6. data/.gitignore +15 -0
  7. data/CHANGELOG.md +343 -0
  8. data/CODE_OF_CONDUCT.md +3 -0
  9. data/CONTRIBUTING.md +3 -0
  10. data/Gemfile +16 -0
  11. data/LICENSE +52 -0
  12. data/README.md +40 -0
  13. data/Rakefile +52 -0
  14. data/app/assets/javascripts/workarea/storefront/package_products/modules/family_product_add_to_cart.js +83 -0
  15. data/app/assets/javascripts/workarea/storefront/package_products/templates/family_add_to_cart_checkbox.jst.ejs +1 -0
  16. data/app/assets/stylesheets/workarea/admin/package_products/components/_product_cards.scss +7 -0
  17. data/app/assets/stylesheets/workarea/storefront/package_products/components/_product_detail_packaged_products.scss +11 -0
  18. data/app/controllers/workarea/admin/create_catalog_package_products_controller.rb +150 -0
  19. data/app/controllers/workarea/admin/create_catalog_products_controller.decorator +25 -0
  20. data/app/controllers/workarea/storefront/cart_items_controller.decorator +29 -0
  21. data/app/controllers/workarea/storefront/products_controller.decorator +8 -0
  22. data/app/models/workarea/catalog/product.decorator +44 -0
  23. data/app/models/workarea/search/admin/catalog_product.decorator +20 -0
  24. data/app/models/workarea/search/storefront/package_product.rb +40 -0
  25. data/app/queries/workarea/search/product_entries.decorator +8 -0
  26. data/app/seeds/workarea/package_product_seeds.rb +41 -0
  27. data/app/services/workarea/add_package_to_cart.rb +79 -0
  28. data/app/view_models/workarea/admin/product_view_model.decorator +35 -0
  29. data/app/view_models/workarea/storefront/product_templates/family_view_model.rb +6 -0
  30. data/app/view_models/workarea/storefront/product_templates/package_view_model.rb +33 -0
  31. data/app/view_models/workarea/storefront/product_view_model.decorator +13 -0
  32. data/app/views/workarea/admin/catalog_products/_create_package_button.html.haml +1 -0
  33. data/app/views/workarea/admin/catalog_products/_packaged_products_card.html.haml +26 -0
  34. data/app/views/workarea/admin/create_catalog_package_products/categorization.html.haml +64 -0
  35. data/app/views/workarea/admin/create_catalog_package_products/content.html.haml +54 -0
  36. data/app/views/workarea/admin/create_catalog_package_products/details.html.haml +87 -0
  37. data/app/views/workarea/admin/create_catalog_package_products/images.html.haml +57 -0
  38. data/app/views/workarea/admin/create_catalog_package_products/packaged_products.html.haml +79 -0
  39. data/app/views/workarea/admin/create_catalog_package_products/publish.html.haml +61 -0
  40. data/app/views/workarea/admin/create_catalog_package_products/setup.html.haml +68 -0
  41. data/app/views/workarea/admin/create_catalog_products/select.html.haml +34 -0
  42. data/app/views/workarea/storefront/cart_items/package.html.haml +59 -0
  43. data/app/views/workarea/storefront/products/package_show.html.haml +49 -0
  44. data/app/views/workarea/storefront/products/templates/_family.html.haml +42 -0
  45. data/app/views/workarea/storefront/products/templates/_package.html.haml +36 -0
  46. data/app/workers/workarea/update_package_products.rb +21 -0
  47. data/bin/rails +16 -0
  48. data/config/initializers/appends.rb +31 -0
  49. data/config/initializers/configuration.rb +6 -0
  50. data/config/initializers/seeds.rb +1 -0
  51. data/config/locales/en.yml +45 -0
  52. data/config/routes.rb +30 -0
  53. data/lib/tasks/sample_data.rake +16 -0
  54. data/lib/workarea/package_products.rb +10 -0
  55. data/lib/workarea/package_products/engine.rb +8 -0
  56. data/lib/workarea/package_products/version.rb +5 -0
  57. data/test/dummy/Rakefile +6 -0
  58. data/test/dummy/app/assets/config/manifest.js +4 -0
  59. data/test/dummy/app/assets/images/.keep +0 -0
  60. data/test/dummy/app/assets/javascripts/application.js +13 -0
  61. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  62. data/test/dummy/app/controllers/application_controller.rb +3 -0
  63. data/test/dummy/app/controllers/concerns/.keep +0 -0
  64. data/test/dummy/app/helpers/application_helper.rb +2 -0
  65. data/test/dummy/app/jobs/application_job.rb +2 -0
  66. data/test/dummy/app/mailers/application_mailer.rb +4 -0
  67. data/test/dummy/app/models/concerns/.keep +0 -0
  68. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  69. data/test/dummy/app/views/layouts/mailer.html.erb +13 -0
  70. data/test/dummy/app/views/layouts/mailer.text.erb +1 -0
  71. data/test/dummy/bin/bundle +3 -0
  72. data/test/dummy/bin/rails +4 -0
  73. data/test/dummy/bin/rake +4 -0
  74. data/test/dummy/bin/setup +34 -0
  75. data/test/dummy/bin/update +29 -0
  76. data/test/dummy/config.ru +5 -0
  77. data/test/dummy/config/application.rb +18 -0
  78. data/test/dummy/config/boot.rb +5 -0
  79. data/test/dummy/config/cable.yml +9 -0
  80. data/test/dummy/config/environment.rb +5 -0
  81. data/test/dummy/config/environments/development.rb +54 -0
  82. data/test/dummy/config/environments/production.rb +83 -0
  83. data/test/dummy/config/environments/test.rb +43 -0
  84. data/test/dummy/config/initializers/application_controller_renderer.rb +6 -0
  85. data/test/dummy/config/initializers/assets.rb +11 -0
  86. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  87. data/test/dummy/config/initializers/cookies_serializer.rb +5 -0
  88. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  89. data/test/dummy/config/initializers/inflections.rb +16 -0
  90. data/test/dummy/config/initializers/mime_types.rb +4 -0
  91. data/test/dummy/config/initializers/session_store.rb +3 -0
  92. data/test/dummy/config/initializers/workarea.rb +5 -0
  93. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  94. data/test/dummy/config/locales/en.yml +23 -0
  95. data/test/dummy/config/puma.rb +47 -0
  96. data/test/dummy/config/routes.rb +5 -0
  97. data/test/dummy/config/secrets.yml +22 -0
  98. data/test/dummy/db/seeds.rb +2 -0
  99. data/test/dummy/lib/assets/.keep +0 -0
  100. data/test/dummy/log/.keep +0 -0
  101. data/test/dummy/public/404.html +67 -0
  102. data/test/dummy/public/422.html +67 -0
  103. data/test/dummy/public/500.html +66 -0
  104. data/test/dummy/public/apple-touch-icon-precomposed.png +0 -0
  105. data/test/dummy/public/apple-touch-icon.png +0 -0
  106. data/test/dummy/public/favicon.ico +1 -0
  107. data/test/integration/workarea/admin/create_catalog_package_products_integration_test.rb +139 -0
  108. data/test/integration/workarea/storefront/package_cart_items_integration_test.rb +47 -0
  109. data/test/integration/workarea/storefront/products_integration_test.decorator +19 -0
  110. data/test/models/workarea/catalog/package_product_test.rb +68 -0
  111. data/test/models/workarea/search/storefront/package_product_test.rb +44 -0
  112. data/test/queries/workarea/search/product_entries_test.decorator +15 -0
  113. data/test/services/workarea/add_package_to_cart_test.rb +46 -0
  114. data/test/system/workarea/admin/activity_system_test.decorator +53 -0
  115. data/test/system/workarea/admin/package_product_copy_system_test.rb +27 -0
  116. data/test/system/workarea/admin/package_products_system_test.rb +101 -0
  117. data/test/system/workarea/admin/product_copy_system_test.decorator +28 -0
  118. data/test/system/workarea/admin/products_system_test.decorator +69 -0
  119. data/test/system/workarea/storefront/categories_with_packages_system_test.rb +172 -0
  120. data/test/system/workarea/storefront/family_product_system_test.rb +58 -0
  121. data/test/system/workarea/storefront/package_product_system_test.rb +42 -0
  122. data/test/test_helper.rb +10 -0
  123. data/test/view_models/workarea/admin/package_product_view_model_test.rb +41 -0
  124. data/test/view_models/workarea/storefront/package_product_view_model_test.rb +27 -0
  125. data/test/view_models/workarea/storefront/package_templates/package_view_model_test.rb +34 -0
  126. data/test/workers/workarea/update_package_products_test.rb +27 -0
  127. data/workarea-package_products.gemspec +24 -0
  128. metadata +189 -0
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 2b2fcfcc6b16cbf28a8751ee13d532d65045cf3f7f744672437f30faf06eff82
4
+ data.tar.gz: d4431dcecbcf8ddc08a905aa4e2b5b5980c9ad6cf8a1109f28054da81ca55e47
5
+ SHA512:
6
+ metadata.gz: b8b30ddb14ef5aa6d9934ed180f06dd9fc53f015111e36fe36e4c4e002d785bcd84b42d1df9ca99a5528cf59f9c907cf4de46974fd34c09ff9b8cca8552fb331
7
+ data.tar.gz: 932d0c2a6a5193c51967af61c23eaa3a34a4ec096afa6f09abef68fb057d9db39998fc3d47d7649d8eed1c1d8c08431f83430dae68e668066b06772c407dcc21
@@ -0,0 +1,20 @@
1
+ # editorconfig.org
2
+ root = true
3
+
4
+ [*]
5
+ charset = utf-8
6
+ indent_style = space
7
+ end_of_line = lf
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+
11
+ [{*.rb,*.haml,*.decorator,*.yml,*.yaml,*.jbuilder}]
12
+ indent_size = 2
13
+ indent_style = space
14
+
15
+ [{*.js,*.jst,*.ejs,*.scss}]
16
+ indent_size = 4
17
+
18
+ [*.md]
19
+ indent_size = 4
20
+ trim_trailing_whitespace = false
@@ -0,0 +1,37 @@
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve Workarea
4
+ title: ''
5
+ labels: bug
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ ⚠️**Before you create**⚠️
11
+ Please verify the issue you're experiencing is not part of your Workarea project customizations. The best way to do this is with a [vanilla Workarea installation](https://developer.workarea.com/articles/create-a-new-host-application.html). This will help us spend time on fixes/improvements for the whole community. Thank you!
12
+
13
+ **Describe the bug**
14
+ A clear and concise description of what the bug is.
15
+
16
+ **To Reproduce**
17
+ Steps to reproduce the behavior:
18
+ 1. Go to '...'
19
+ 2. Click on '....'
20
+ 3. Scroll down to '....'
21
+ 4. See error
22
+
23
+ **Expected behavior**
24
+ A clear and concise description of what you expected to happen.
25
+
26
+ **Workarea Setup (please complete the following information):**
27
+ - Workarea Version: [e.g. v3.4.6]
28
+ - Plugins [e.g. workarea-blog, workarea-sitemaps]
29
+
30
+ **Attachments**
31
+ If applicable, add any attachments to help explain your problem, things like:
32
+ - screenshots
33
+ - Gemfile.lock
34
+ - test cases
35
+
36
+ **Additional context**
37
+ Add any other context about the problem here.
@@ -0,0 +1,17 @@
1
+ ---
2
+ name: Documentation request
3
+ about: Suggest documentation
4
+ title: ''
5
+ labels: documentation
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Is your documentation related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm confused by [...]
12
+
13
+ **Describe the article you'd like**
14
+ A clear and concise description of what would be in the documentation article.
15
+
16
+ **Additional context**
17
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for Workarea
4
+ title: ''
5
+ labels: enhancement
6
+ assignees: ''
7
+
8
+ ---
9
+
10
+ **Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12
+
13
+ **Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ **Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ **Additional context**
20
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,15 @@
1
+ .bundle/
2
+ log/*.log
3
+ pkg/
4
+ test/dummy/db/*.sqlite3
5
+ test/dummy/db/*.sqlite3-journal
6
+ test/dummy/log/*.log
7
+ test/dummy/tmp/
8
+ test/dummy/.sass-cache
9
+ Gemfile.lock
10
+ test/dummy/public/system/*
11
+ .DS_STORE
12
+ node_modules
13
+ test/reports
14
+ package.json
15
+ yarn.lock
@@ -0,0 +1,343 @@
1
+ Workarea Package Products 3.3.3 (2019-08-21)
2
+ --------------------------------------------------------------------------------
3
+
4
+ * Open Source!
5
+
6
+
7
+
8
+ Workarea Package Products 3.3.2 (2019-06-25)
9
+ --------------------------------------------------------------------------------
10
+
11
+ * Omit Browse Option Products From Packaged Product Search Indexing
12
+
13
+ When a packaged product is updated in the search index, prevent an error
14
+ being thrown when one of the IDs given in `Catalog::Product#product_ids`
15
+ is a browse option of a parent product. These products already appear in
16
+ the index, so there's no need to throw an error if it cann't be found.
17
+ Instead of using a `.find` and passing an Array of IDs in, use an `$in`
18
+ query with `.where` to find all products matching the array of IDs,
19
+ omitting any that don't exist.
20
+
21
+ PACKAGEPDP-59
22
+ Tom Scott
23
+
24
+
25
+
26
+ Workarea Package Products 3.3.1 (2019-04-16)
27
+ --------------------------------------------------------------------------------
28
+
29
+ * Fix pricing method being private
30
+
31
+ This isn't private on the base `Storefront::ProductViewModel` so it
32
+ shouldn't be private in this view model.
33
+
34
+ PACKAGEPDP-58
35
+ Ben Crouse
36
+
37
+
38
+
39
+ Workarea Package Products 3.3.0 (2019-03-13)
40
+ --------------------------------------------------------------------------------
41
+
42
+ * Fix reference to deprecated testing product template
43
+
44
+ This was removed from base in v3.4 since we have some out of the box
45
+ templates you can use now.
46
+ Ben Crouse
47
+
48
+ * Fix test for v3.4 insights changes
49
+
50
+ Ben Crouse
51
+
52
+ * Require Workarea 3.4 to fix testing dependency
53
+
54
+ This plugin overrides a test needed in v3.4 that won't pass in earlier
55
+ minors, so this should be enforced in the dependencies.
56
+ Ben Crouse
57
+
58
+ * Add via param for metrics tracking
59
+
60
+ ECOMMERCE-6630
61
+ Ben Crouse
62
+
63
+ * Add product-details__heading class for direct styling hook
64
+
65
+ ECOMMERCE-6363
66
+ Curt Howard
67
+
68
+ * Update for workarea v3.4 compatibility
69
+
70
+ PACKAGEPDP-55
71
+ Matt Duffy
72
+
73
+
74
+
75
+ Workarea Package Products 3.2.1 (2018-10-03)
76
+ --------------------------------------------------------------------------------
77
+
78
+ * Prevent Exception When Adding "Displayable When Out Of Stock" Product in Family to Cart
79
+
80
+ Products using the `DisplayableWhenOutOfStock` policy which were not
81
+ actually available to sell caused an exception when a user attempted to
82
+ add them to cart. Workarea now prevents this error by ensuring that all
83
+ order items passed into the `AddPackageToCart` command are actually in
84
+ the order (since inventory checks may have removed items due to being
85
+ out of stock) before rendering order items to the screen in the cart.
86
+
87
+ PACKAGEPDP-50
88
+ Tom Scott
89
+
90
+ * Compact filters in seeds
91
+
92
+ If the products are created from other sample data where there isn't any
93
+ color or size filters, the seeds would create a filter where the value
94
+ was `[nil]`, breaking analytics seeds.
95
+
96
+ PACKAGEPDP-53
97
+ Eric Pigeon
98
+
99
+ * Fix JS linting
100
+
101
+ ECOMMERCE-6125
102
+ Ben Crouse
103
+
104
+
105
+
106
+ Workarea Package Products 3.2.0 (2018-05-24)
107
+ --------------------------------------------------------------------------------
108
+
109
+ * Update worflow view to link to new import page, setup for minor.
110
+
111
+ PACKAGEPDP-52
112
+ Matt Duffy
113
+
114
+ * Leverage Workarea Changelog task
115
+
116
+ ECOMMERCE-5355
117
+ Curt Howard
118
+
119
+
120
+
121
+ Workarea Package Products 3.1.4 (2018-02-20)
122
+ --------------------------------------------------------------------------------
123
+
124
+ * Add append point to alt images on package and family template
125
+
126
+ * Allow plugins, such as product videos, to append alt images to the PDP
127
+
128
+ PACKAGEPDP-47
129
+ Jake Beresford
130
+
131
+ * Lock plugin down to Workarea v3.0.x
132
+
133
+ PACKAGEPDP-43
134
+ Curt Howard
135
+
136
+ * Remove duplicate IDs in add to cart dialog confirmation
137
+
138
+ Fixes failing test
139
+
140
+ PACKAGEPDP-38
141
+ Curt Howard
142
+
143
+
144
+ Workarea Package Products 3.1.3 (2018-01-09)
145
+ --------------------------------------------------------------------------------
146
+
147
+ * Add ids to fields to prevent duplicate ids, update template test for plugin friendliness
148
+
149
+ PACKAGEPDP-45
150
+ Matt Duffy
151
+
152
+ * Fix packaged generic product inline refresh
153
+
154
+ When the generic product template refreshes itself upon a SKU change, it
155
+ was replacing the `.product-details` element on the page with one that
156
+ didn't include a `data-packaged-product-id`, thus causing the JS module
157
+ that adds packaged products in a family to the cart to think that the
158
+ item was not actually selected. We're now wrapping the
159
+ `.product-details` for each packaged product with a
160
+ `.packaged-product-details` element that includes the
161
+ `data-packaged-product-id`, ensuring that the ID will always be on the
162
+ page right after the checkbox.
163
+
164
+ PACKAGEPDP-44
165
+ Tom Scott
166
+
167
+
168
+ Workarea Package Products 3.1.2 (2017-10-03)
169
+ --------------------------------------------------------------------------------
170
+
171
+ * Fix pageview event firing for package products.
172
+
173
+ The package product was being passed into the analytics helper for each product within the package.
174
+ This caused the pageview event to be fired on the package product the same number of times as products within the package.
175
+ Products within the package are now sending the appropriate product to the analytics helper
176
+
177
+ PACKAGEPDP-28
178
+ Brian Berg
179
+
180
+
181
+ Workarea Package Products 3.1.1 (2017-09-26)
182
+ --------------------------------------------------------------------------------
183
+
184
+ * Standardize plugin configuration
185
+
186
+ PACKAGEPDP-41
187
+ Matt Duffy
188
+
189
+
190
+ Workarea Package Products 3.1.0 (2017-09-15)
191
+ --------------------------------------------------------------------------------
192
+
193
+ * Fix headings in package product create workflow
194
+
195
+ PACKAGEPDP-39
196
+ Curt Howard
197
+
198
+ * Remove duplicate IDs in add to cart dialog confirmation
199
+
200
+ Fixes failing test
201
+
202
+ PACKAGEPDP-38
203
+ Curt Howard
204
+
205
+ * Remove product id from packages when packaged product is deleted
206
+
207
+ PACKAGEPDP-36
208
+ Matt Duffy
209
+
210
+ * Add logic to handle copying package products properly
211
+
212
+ PACKAGEPDP-34
213
+ Matt Duffy
214
+
215
+
216
+ Workarea Package Products 3.0.5 (2017-09-26)
217
+ --------------------------------------------------------------------------------
218
+
219
+ * Standardize plugin configuration
220
+
221
+ PACKAGEPDP-41
222
+ Matt Duffy
223
+
224
+
225
+ Workarea Package Products 3.0.4 (2017-09-06)
226
+ --------------------------------------------------------------------------------
227
+
228
+ * Remove product id from packages when packaged product is deleted
229
+
230
+ PACKAGEPDP-36
231
+ Matt Duffy
232
+
233
+
234
+ Workarea Package Products 3.0.3 (2017-06-08)
235
+ --------------------------------------------------------------------------------
236
+
237
+ * Fix missing translations
238
+
239
+ PACKAGEPDP-33
240
+ Dave Barnow
241
+
242
+
243
+ Workarea Package Products 3.0.2 (2017-05-26)
244
+ --------------------------------------------------------------------------------
245
+
246
+ * Move seeds config to an initializer, seed after product data
247
+
248
+ PACKAGEPDP-31
249
+ Dave Barnow
250
+
251
+
252
+ Workarea Package Products 3.0.1 (2017-05-19)
253
+ --------------------------------------------------------------------------------
254
+
255
+ * Fix broken base tests
256
+
257
+ PACKAGEPDP-30
258
+ Ben Crouse
259
+
260
+ * Adjust Admin::ProductViewModel#templates to not require a model
261
+
262
+ PACKAGEPDP-27
263
+ Matt Duffy
264
+
265
+
266
+ Workarea Package Products 3.0.0 (2017-05-04)
267
+ --------------------------------------------------------------------------------
268
+
269
+ * Update for workarea v3 compatiblity
270
+
271
+
272
+ WebLinc Package Products 2.0.0 (2016-10-12)
273
+ --------------------------------------------------------------------------------
274
+
275
+ * Fix package products indexing errors
276
+
277
+ Package products are being saved in the admin with an empty string as one of the packaged product ids. This causes the indexing to break since there is a hard find in the product mapper for package products to grab all the packaged products by id.
278
+
279
+ Add: Validation to clean up all blank entries in the packaged_product_ids field
280
+
281
+ PACKAGEPDP-18
282
+ David Freiman
283
+
284
+ * Restrict results for packaged products to exclude other package products.
285
+
286
+ PACKAGEPDP-13
287
+ Matt Duffy
288
+
289
+ * Add a note to Package Product's Active toggle
290
+
291
+ PACKAGEPDP-3
292
+ Curt Howard
293
+
294
+ * Ensure ordering of packaged products is consistent throughout app
295
+
296
+ PACKAGEPDP-9
297
+ Matt Duffy
298
+
299
+ * Isolate template types between standard and package products.
300
+
301
+ PACKAGEPDP-10
302
+ Matt Duffy
303
+
304
+ * Resolve issues with package product editing and display.
305
+
306
+ PACKAGEPDP-4
307
+ fixes: PACKAGEPDP-5, PACKAGEPDP-7, PACKAGEPDP-8
308
+ Matt Duffy
309
+
310
+
311
+ WebLinc Package Products 1.0.3 (2016-09-13)
312
+ --------------------------------------------------------------------------------
313
+
314
+ * Fix package products indexing errors
315
+
316
+ Package products are being saved in the admin with an empty string as one of the packaged product ids. This causes the indexing to break since there is a hard find in the product mapper for package products to grab all the packaged products by id.
317
+
318
+ Add: Validation to clean up all blank entries in the packaged_product_ids field
319
+
320
+ PACKAGEPDP-18
321
+ David Freiman
322
+
323
+
324
+ WebLinc Package Products 1.0.2 (2016-04-05)
325
+ --------------------------------------------------------------------------------
326
+
327
+
328
+ WebLinc Package Products 1.0.1 (2016-03-11)
329
+ --------------------------------------------------------------------------------
330
+
331
+ * Namespace product decorator
332
+
333
+ Product decorator is missing `with` keyword argument. Add the argument
334
+ to properly namespace the decorator to the plugin.
335
+
336
+ PACKAGEPDP-1
337
+ Chris Cressman
338
+
339
+
340
+ WebLinc Package Products 1.0.0 (2016-01-13)
341
+ --------------------------------------------------------------------------------
342
+
343
+ * First release