Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Releases: vuestorefront/magento2-vsbridge-indexer

1.25.2

17 Nov 15:40
eee89f7
Compare
Choose a tag to compare

Setting allowed_stores show in website scope change

Vue Storefront Magento Vsbridge Indexer 2.0.0

04 Nov 19:00
b4a2b2b
Compare
Choose a tag to compare

Overview
Version 1.x
Pull Requests should be made against 1.x branch. Changes from this branch won't be merge to main branch. Only fixes will be accepted.

Version 2.0
Support ES5 and ES6+.

What changed: https://github.com/DivanteLtd/magento2-vsbridge-indexer/blob/main/CHANGELOG.MD#20
How to upgrade to 2.0: https://github.com/DivanteLtd/magento2-vsbridge-indexer/blob/main/docs/upgrade-to-2.0.md

Vue Storefront Magento Vsbridge Indexer 1.20.1

31 Jul 16:56
3658db3
Compare
Choose a tag to compare
Merge pull request #326 from DivanteLtd/bugfix/fix-reset-command-name

vsbridge:reset - change command name in di.xml

Vue Storefront Magento Vsbridge Indexer 1.16.1

30 Apr 17:05
70587d3
Compare
Choose a tag to compare
Merge pull request #268 from DivanteLtd/hotfix/export-category-attrib…

Vue Storefront Magento Vsbridge Indexer 1.10.1

05 Feb 18:47
Compare
Choose a tag to compare

[1.10.0] (2020.02.05)

Fixed

  • Fixed max_sale_qty getting wrong value when set per-product. @rain2o (#201)
  • Fixed exporting products for Magento Commerce: Bundle products and Linked products(#202)

Vue Storefront Magento Vsbridge Indexer 1.9.0

05 Feb 18:46
96a3673
Compare
Choose a tag to compare

[1.9.0] (2020.01.28)

Fixed

  • Emulate store when rebuilding cms block and pages. (#179)
  • Fix modules sequence declaration
  • Fixes for clean magento install with sample data modules.
  • Collecting attributes values when there is no default value (#160)

Added

  • Product indexer - add dependencies, add dynamic catalogrule_product_price dependencies for Magento <= 2.2.4 (#176)
  • Reindexing products which have beed modified by mass action on product grid when indexers are 'On Save (#157)

Vue Storefront Magento Vsbridge Indexer 1.8.3

20 Jan 16:17
c171485
Compare
Choose a tag to compare
Merge pull request #178 from DivanteLtd/develop

Merge develop branch

Vue Storefront Magento Vsbridge Indexer 1.8.0

20 Jan 16:16
Compare
Choose a tag to compare
Merge remote-tracking branch 'upstream/develop'

Vue Storefront Magento Vsbridge Indexer 1.6.0

07 Nov 12:20
2d08499
Compare
Choose a tag to compare

Added

  • Add support for Visual Swatches. (#15)
    Attribute options
"options": [
    {
      "swatch": {
        "type": 1,
        "value": "#ffd500"
      },
      "value": "60",
      "label": "Yellow",
      "sort_order": 12
    },
    {
      "swatch": {
        "type": 3,
        "value": null
      },
      "value": "105",
      "label": "purple",
      "sort_order": 13
    },
    {
      "swatch": {
        "type": 2,
        "value": "/4/2/4245592.png"
      },
      "value": "106",
      "label": "File",
      "sort_order": 14
    }
]

Product configurable option values

"values": [
    {
      "value_index": "50",
      "label": "blue defaul",
      "swatch": {
        "type": 1,
        "value": "#1857f7"
      }
    },
    {
      "value_index": "49",
      "label": "Black",
      "swatch": {
        "type": 1,
        "value": "#000000"
      }
    }
  ]
  • Add new command vsbridge:index to run indexer for one product, cms block, etc.
    bin/magento vsbridge:index vsbridge_product_indexer default 1
    vsbridge_product_indexer -> indexer code
    default -> store code
    1 -> entity id (in this particular example - product id)
    Useful for testing.

Vue Storefront Magento Vsbridge Indexer 1.5.1

23 Oct 15:08
Compare
Choose a tag to compare

[1.5.1]

Fixes

  • Fix Notice: Undefined index: value in ConfigurableData.php on line 254 (#139)
  • Switch indices when all types will be reindex (#138)
  • Change method name AbstractEavAttributes:canReindex to 'AbstractEavAttributes:canIndexAttribute