Skip to content

Releases: remp2020/crm-gopay-module

3.0.0

22 Jan 20:54
Compare
Choose a tag to compare
  • BREAKING: Fixed class namespaces to follow PSR4 specification. remp/crm#2228
    • Use package remp/crm-rector:^3.0 to automatically fix these renames.
  • Fixed errors reported by PHPStan (level 3). remp/crm#2988
  • Fixed return types of GoPayRecurrent after interface changed. remp/crm#2988
  • Added use statements for classes where we used FQN. remp/crm#2228

2.1.0

25 Nov 14:05
Compare
Choose a tag to compare
  • Fixed notify URL API link generation. remp/crm#2645

1.2.3

02 Nov 14:04
Compare
Choose a tag to compare
  • Fixed notify URL API link generation. remp/crm#2645

2.0.0

26 Aug 13:50
Compare
Choose a tag to compare
  • BREAKING: Changed PHP version requirement to 8.0. remp/crm#2519

1.0.0

31 Mar 08:40
Compare
Choose a tag to compare

Changelog

  • Changed translation files. remp/crm#2276
    • Fix EOF newlines.
    • Switch tabs to 4 spaces. Weblate can parse only YAML format (doesn't support tabs).
    • Change extension from NEON to YML.
  • Changed API handlers (non breaking). remp/crm#2342
    • Changed return type of handle() from Crm\ApiModule\Response\ApiResponseInterface to Tomaj\NetteApi\Response\ResponseInterface.
    • Changed deprecated Crm\ApiModule\Api\JsonResponse to Tomaj\NetteApi\Response\JsonApiResponse.

Nette 3.0

  • Changed Compiler::loadDefinitions() (deprecated) to CompilerExtension->loadDefinitionsFromConfig(). remp/crm#1979

Nette 3.1

  • Changed deprecated Nette\Application\IResponse to Nette\Application\Response. remp/crm#1979
  • Changed deprecated Nette\Database classes. Nette\Database\IRow and Nette\Database\Table\IRow are deprecated. Using Nette\Database\Table\ActiveRow instead. remp/crm#1979
  • Changed deprecated Nette\Localization\ITranslator to Nette\Localization\Translator. remp/crm#1979

0.38.0

11 Feb 23:10
Compare
Choose a tag to compare
  • Added Gopay::GATEWAY_CODE and GopayRecurrent::GATEWAY_CODE constants to reference the gateways in other modules. remp/crm#2189
  • Fixed directory names to follow PSR-4 standard. Namespaces weren't changed (no breaking change). remp/crm#2228

0.37.0

09 Dec 21:51
Compare
Choose a tag to compare
  • Added index for transaction_reference column. #12

0.35.0

25 Oct 12:04
Compare
Choose a tag to compare
  • BREAKING: Bump minimal PHP version to 7.4. remp/crm#2068

0.31.0

21 May 10:03
Compare
Choose a tag to compare
  • Fixed possible error in charge processing if state parameter is not provided by Gopay (for not obvious reson). remp2020/crm-gopay-module!10

0.30.0

24 Mar 08:59
Compare
Choose a tag to compare
  • Fixed possibly incorrect handling of PAYMENT_METHOD_CHOSEN state. If it appeared within recurrent charge process, payment was incorrectly labeled as failed. #8
  • Moved Gopay notification handler to the base class, so it can be utilized by other Gopay implementations extending the base class. #9
  • Changed Gopay notification API handler to determine gateway based on the provided payment instead of using hardcoded gateway. This is necessary for correct notification processing if one extends BaseGoPay and implements own gateway. #9