Skip to content

Latest commit

 

History

History
186 lines (99 loc) · 6.38 KB

File metadata and controls

186 lines (99 loc) · 6.38 KB

Release Notes

v2.8.1 - 2025-02-24

What's Changed

  • Rename BoxCode with Sku for enhancing Good's by @cable8mm in #28

Full Changelog: https://github.com/cable8mm/good-code/compare/v2.8.0...v2.8.1

v2.8.0 - 2025-02-24

What's Changed

Full Changelog: https://github.com/cable8mm/good-code/compare/v2.7.0...v2.8.0

v2.7.0 - 2025-02-23

What's Changed

  • Add Location class for locationCode() method by @cable8mm in #23

Full Changelog: https://github.com/cable8mm/good-code/compare/v2.6.0...v2.7.0

v2.6.0 - 2025-02-21

What's Changed

Full Changelog: https://github.com/cable8mm/good-code/compare/v2.5.1...v2.6.0

v2.5.1 - 2025-02-21

What's Changed

  • Set of() to be nullable in ReceiptCode by @cable8mm in #21

Full Changelog: https://github.com/cable8mm/good-code/compare/v2.5.0...v2.5.1

v2.5.0 - 2025-02-20

What's Changed

Full Changelog: https://github.com/cable8mm/good-code/compare/v2.4.0...v2.5.0

v2.4.0 - 2025-02-04

What's Changed

Full Changelog: https://github.com/cable8mm/good-code/compare/v2.3.0...v2.4.0

v2.3.0 - 2025-02-03

What's Changed

Full Changelog: https://github.com/cable8mm/good-code/compare/v2.2.0...v2.3.0

v2.2.0 - 2025-02-03

What's Changed

  • Make GoodCodeType enum and GoodCodeType::of() method by @cable8mm in #15

Full Changelog: https://github.com/cable8mm/good-code/compare/v2.1.0...v2.2.0

v2.1.0 - 2025-02-01

What's Changed

Full Changelog: https://github.com/cable8mm/good-code/compare/v2.0.0...v2.1.0

v2.0.0 - 2025-01-21

What's Changed

Full Changelog: https://github.com/cable8mm/good-code/compare/v1.0.3...v2.0.0

v1.0.3 - 2024-03-09

What's Changed

Full Changelog: https://github.com/cable8mm/good-code-parser/compare/v1.0.2...v1.0.3

v1.0.2 - 2024-03-09

What's Changed

  • Add classes and methods comments for API Documentation by @cable8mm in #9
  • Organizing various document wordings by @cable8mm in #10

Full Changelog: https://github.com/cable8mm/good-code-parser/compare/v1.0.1...v1.0.2

v1.0.1 - 2024-03-03

What's Changed

Full Changelog: https://github.com/cable8mm/good-code-parser/compare/v1.0.0...v1.0.1

v1.0.0 - 2024-03-03

What's Changed

Full Changelog: https://github.com/cable8mm/good-code-parser/compare/v0.8...v1.0.0

v0.8 - 2023-07-19

What's Changed

  • Change namespace by @cable8mm in #1

New Contributors

  • @cable8mm made their first contribution in #1

Full Changelog: https://github.com/cable8mm/good-code-parser/compare/0.7.1...v0.8

v0.7.1 - 2021-11-09

Feature : Setcode default value. The patch apply setcode default value.

    public function test_세트코드_축약버전_파싱이_되는지()
    {
        // Arrange
        $input = 'set107253x1ZZ102257ZZ104128x2';
        $expect = [
            '107253' => 1,
            '102257' => 1, // 이 값은 코드에 없기 때문에 1(default value)로 처리됨.
            '104128' => 2,
        ];

        // Act
        $parsed = (new GoodCodeParser($input))->with(SetGood::class)->get();

        // Assert
        $this->assertEquals($parsed, $expect);
    }













v0.7.0 - 2020-05-22

Launch code parser for Ecommerce