From c71cbd7c4d3f0ce007f37f0712e868c1d84417f9 Mon Sep 17 00:00:00 2001 From: Jason Irish Date: Wed, 30 Oct 2019 09:25:19 -0500 Subject: [PATCH] CHANGELOG 1.0.0 README badges --- CHANGELOG.md | 41 +++++++++++++++++++++++++++++++++++++++++ README.md | 12 ++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..83d9df9 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,41 @@ +# Changelog + +## [1.0.0](https://github.com/dynamic/silverstripe-products/tree/1.0.0) (2019-10-30) + +[Full Changelog](https://github.com/dynamic/silverstripe-products/compare/a5895a9d58b0cc52f8d77c7467192d7e6b5700b0...1.0.0) + +**Implemented enhancements:** + +- FEATURE RelatedProductsDataExtension - add get method that's sorted [\#19](https://github.com/dynamic/silverstripe-products/issues/19) + +**Fixed bugs:** + +- BUG many\_many relations with SortOrder don't use sort column [\#14](https://github.com/dynamic/silverstripe-products/issues/14) + +**Closed issues:** + +- ProductCategoryController - change PaginatedList method name [\#10](https://github.com/dynamic/silverstripe-products/issues/10) + +**Merged pull requests:** + +- FEATURE updateProductList - include $categories [\#21](https://github.com/dynamic/silverstripe-products/pull/21) ([jsirish](https://github.com/jsirish)) +- RelatedProductsDataExtension - getRelatedProductsList\(\) [\#20](https://github.com/dynamic/silverstripe-products/pull/20) ([jsirish](https://github.com/jsirish)) +- Jenkins setup [\#18](https://github.com/dynamic/silverstripe-products/pull/18) ([jsirish](https://github.com/jsirish)) +- ProductFile - set restrictions on UploadFields for FIle, Image [\#17](https://github.com/dynamic/silverstripe-products/pull/17) ([jsirish](https://github.com/jsirish)) +- BUGFIX Product getImage\(\) - sort images before returning first [\#16](https://github.com/dynamic/silverstripe-products/pull/16) ([jsirish](https://github.com/jsirish)) +- BUGFIX set default sort for many relations on Product [\#15](https://github.com/dynamic/silverstripe-products/pull/15) ([muskie9](https://github.com/muskie9)) +- Product - fix getImage method [\#12](https://github.com/dynamic/silverstripe-products/pull/12) ([jsirish](https://github.com/jsirish)) +- refactor - ProductCategory - rename method to ProductPaginatedList\(\) [\#11](https://github.com/dynamic/silverstripe-products/pull/11) ([jsirish](https://github.com/jsirish)) +- ProductFileAdmin - update namespace [\#9](https://github.com/dynamic/silverstripe-products/pull/9) ([jsirish](https://github.com/jsirish)) +- Product - rename Code to SKU [\#8](https://github.com/dynamic/silverstripe-products/pull/8) ([jsirish](https://github.com/jsirish)) +- feature - related products dataextension [\#7](https://github.com/dynamic/silverstripe-products/pull/7) ([jsirish](https://github.com/jsirish)) +- ProductCategory - created PaginatedList of Products [\#6](https://github.com/dynamic/silverstripe-products/pull/6) ([jsirish](https://github.com/jsirish)) +- template adjustments [\#5](https://github.com/dynamic/silverstripe-products/pull/5) ([jsirish](https://github.com/jsirish)) +- initial README [\#4](https://github.com/dynamic/silverstripe-products/pull/4) ([jsirish](https://github.com/jsirish)) +- ProductCategory.ss - loop $Children [\#3](https://github.com/dynamic/silverstripe-products/pull/3) ([jsirish](https://github.com/jsirish)) +- Product File initial build [\#2](https://github.com/dynamic/silverstripe-products/pull/2) ([jsirish](https://github.com/jsirish)) +- Feature/product files [\#1](https://github.com/dynamic/silverstripe-products/pull/1) ([jsirish](https://github.com/jsirish)) + + + +\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* diff --git a/README.md b/README.md index 16ce967..2a84e32 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,18 @@ A module to display a product catalog in your website. +[![Build Status](https://travis-ci.org/dynamic/silverstripe-products.svg?branch=master)](https://travis-ci.org/dynamic/silverstripe-products) +[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/dynamic/silverstripe-products/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/dynamic/silverstripe-products/?branch=master) +[![Build Status](https://scrutinizer-ci.com/g/dynamic/silverstripe-products/badges/build.png?b=master)](https://scrutinizer-ci.com/g/dynamic/silverstripe-products/build-status/master) +[![codecov](https://codecov.io/gh/dynamic/silverstripe-products/branch/master/graph/badge.svg)](https://codecov.io/gh/dynamic/silverstripe-products) + +[![Latest Stable Version](https://poser.pugx.org/dynamic/silverstripe-products/v/stable)](https://packagist.org/packages/dynamic/silverstripe-products) +[![Total Downloads](https://poser.pugx.org/dynamic/silverstripe-products/downloads)](https://packagist.org/packages/dynamic/silverstripe-products) +[![Latest Unstable Version](https://poser.pugx.org/dynamic/silverstripe-products/v/unstable)](https://packagist.org/packages/dynamic/silverstripe-products) +[![License](https://poser.pugx.org/dynamic/silverstripe-products/license)](https://packagist.org/packages/dynamic/silverstripe-products) + +## Overview + Products are created as pages in your website, and can be organized by Product Categories. Product files, such as the included Brochures, can be attached to products. With the Product File Collection page, you can display a filterable list of all brochures across the system. Instructions to create custom product files are included below.