Skip to content

Commit a1220af

Browse files
committed
Adding changelog for v2.3.0 and extracting older changelog to separate file.
1 parent 4564879 commit a1220af

File tree

2 files changed

+93
-87
lines changed

2 files changed

+93
-87
lines changed

changelog.txt

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
= 1.1.5 :: 2023-03-08 =
2+
* Fix: fix error when plugins override delete_transient function not returning boolean value
3+
4+
= 1.1.4 :: 2023-01-20 =
5+
(redo deployment because of broken build pipe)
6+
* Fix: fixed error on thank you page for separate payment methods.
7+
* Dev: updating Docker to latest WP and WC versions.
8+
* Dev: switch Github action for checkout to v3.
9+
10+
= 1.1.3 :: 2023-01-20 =
11+
* Fix: fixed error on thank you page for separate payment methods.
12+
* Dev: updating Docker to latest WP and WC versions.
13+
* Dev: switch Github action for checkout to v3.
14+
15+
= 1.1.2 :: 2022-12-09 =
16+
* Fix existing invoice check, wrongly marking invoice invalid on some use cases.
17+
* Add check for cURL PHP extension.
18+
* Make sure generated gateways exist on filesystem.
19+
20+
= 1.1.1 :: 2022-09-12 =
21+
* Update missing metadata
22+
23+
= 1.1.0 :: 2022-09-12 =
24+
* Feature: Sats-Mode, currency SAT for Satoshis/Sats now available.
25+
* Settings, adding more links to docs.
26+
27+
= 1.0.3 :: 2022-08-17 =
28+
* New order state: Payment received after invoice has been expired.
29+
* Order metadata restructure, also list multiple payments separated.
30+
* Add plugin action links for settings, logs, docs, support.
31+
* Show notice when BTCPay Server is not fully synched yet.
32+
* Add BTCPay Server info to debug log.
33+
* Update Readme with development instructions.
34+
* Docker: Update to latest WP and WC versions.
35+
* Pin BTCPay Server PHP library stable version.
36+
37+
= 1.0.2 :: 2022-04-08 =
38+
* Fix plugin meta docblock version update, pump version once more.
39+
40+
= 1.0.1 :: 2022-04-08 =
41+
* Fix bug if the custom uploaded payment gateway icon is deleted from filesystem.
42+
* Added information about Tor proxy for Umbrel and other self-hosted nodes to BTCPay settings page.
43+
44+
= 1.0.0 :: 2022-03-27 =
45+
* Reflect stability with release 1.0.0.
46+
* Create a new invoice (and mark the old invalid) if the user uses browser back button and changes the payment method (relevant for separate payment gateway feature).
47+
* Added plugin loader singleton.
48+
* Added missing docs link to separate payment gateways feature.
49+
* Added checkbox to enable/disable gateway from within gateway settings.
50+
* Updated README.md
51+
52+
= 0.2.5 :: 2022-03-13 =
53+
* Load media library and JS only on payment gateway settings page.
54+
55+
= 0.2.4 :: 2022-03-04 =
56+
* Fix possible problem with CamelCased headers on PHP-FPM and/or Nginx.
57+
* Do not log hitting the cache on debug log to avoid clutter.
58+
59+
= 0.2.3 :: 2022-02-28 =
60+
* Adding irrelevant GitHub workflow files to .distignore.
61+
* Updating installation instructions with new material.
62+
63+
= 0.2.2 :: 2022-02-28 =
64+
* Fix fatal error, make sure is_plugin_active() is available.
65+
66+
= 0.2.1 :: 2022-02-21 =
67+
* Replace SVG by PNG logo to avoid scaling it on themes without proper CSS rules for payment gateway icons.
68+
69+
= 0.2.0 :: 2022-02-18 =
70+
* Fix Cash on delivery, Bank transfer gateways missing after plugin activation.
71+
72+
= 0.1.10 :: 2022-02-15 =
73+
* Make sure custom endpoint works without nice url enabled.
74+
* Better description for setting.
75+
* Update translation strings.
76+
77+
= 0.1.9 :: 2022-02-08 =
78+
* Make sure custom endpoint works by flushing rewrite rules on plugin activation.
79+
* Replacing usage of WC_Admin_Settings::addMessage() with our own.
80+
81+
= 0.1.1 :: 2022-01-13 =
82+
* Admin notice if legacy plugin is installed
83+
* Admin notice on missing WooCommerce / PHP version lower 7.4
84+
* Minor changes metadata / readme.txt
85+
86+
= 0.1.0 :: 2022-01-13 =
87+
* First public release for testing.

readme.txt

Lines changed: 6 additions & 87 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,11 @@ You'll find extensive documentation and answers to many of your questions on [BT
104104

105105
== Changelog ==
106106

107+
= 2.3.0 :: 2023-09-06 =
108+
* Support for high performance order storage (HPOS)
109+
110+
Note: This is opt-in but brings performance improvements. Follow instructions [here](https://github.com/woocommerce/woocommerce/wiki/High-Performance-Order-Storage-Upgrade-Recipe-Book#how-to-enable-hpos) if you want to use it.
111+
107112
= 2.2.3 :: 2023-08-22 =
108113
* Automatically create webhook after redirect.
109114

@@ -127,90 +132,4 @@ See this link for more information: https://docs.btcpayserver.org/WooCommerce/#c
127132

128133
If you do NOT use refunds. You do NOT need to do anything, your existing API key and setup will continue to work as before.
129134

130-
= 1.1.5 :: 2023-03-08 =
131-
* Fix: fix error when plugins override delete_transient function not returning boolean value
132-
133-
= 1.1.4 :: 2023-01-20 =
134-
(redo deployment because of broken build pipe)
135-
* Fix: fixed error on thank you page for separate payment methods.
136-
* Dev: updating Docker to latest WP and WC versions.
137-
* Dev: switch Github action for checkout to v3.
138-
139-
= 1.1.3 :: 2023-01-20 =
140-
* Fix: fixed error on thank you page for separate payment methods.
141-
* Dev: updating Docker to latest WP and WC versions.
142-
* Dev: switch Github action for checkout to v3.
143-
144-
= 1.1.2 :: 2022-12-09 =
145-
* Fix existing invoice check, wrongly marking invoice invalid on some use cases.
146-
* Add check for cURL PHP extension.
147-
* Make sure generated gateways exist on filesystem.
148-
149-
= 1.1.1 :: 2022-09-12 =
150-
* Update missing metadata
151-
152-
= 1.1.0 :: 2022-09-12 =
153-
* Feature: Sats-Mode, currency SAT for Satoshis/Sats now available.
154-
* Settings, adding more links to docs.
155-
156-
= 1.0.3 :: 2022-08-17 =
157-
* New order state: Payment received after invoice has been expired.
158-
* Order metadata restructure, also list multiple payments separated.
159-
* Add plugin action links for settings, logs, docs, support.
160-
* Show notice when BTCPay Server is not fully synched yet.
161-
* Add BTCPay Server info to debug log.
162-
* Update Readme with development instructions.
163-
* Docker: Update to latest WP and WC versions.
164-
* Pin BTCPay Server PHP library stable version.
165-
166-
= 1.0.2 :: 2022-04-08 =
167-
* Fix plugin meta docblock version update, pump version once more.
168-
169-
= 1.0.1 :: 2022-04-08 =
170-
* Fix bug if the custom uploaded payment gateway icon is deleted from filesystem.
171-
* Added information about Tor proxy for Umbrel and other self-hosted nodes to BTCPay settings page.
172-
173-
= 1.0.0 :: 2022-03-27 =
174-
* Reflect stability with release 1.0.0.
175-
* Create a new invoice (and mark the old invalid) if the user uses browser back button and changes the payment method (relevant for separate payment gateway feature).
176-
* Added plugin loader singleton.
177-
* Added missing docs link to separate payment gateways feature.
178-
* Added checkbox to enable/disable gateway from within gateway settings.
179-
* Updated README.md
180-
181-
= 0.2.5 :: 2022-03-13 =
182-
* Load media library and JS only on payment gateway settings page.
183-
184-
= 0.2.4 :: 2022-03-04 =
185-
* Fix possible problem with CamelCased headers on PHP-FPM and/or Nginx.
186-
* Do not log hitting the cache on debug log to avoid clutter.
187-
188-
= 0.2.3 :: 2022-02-28 =
189-
* Adding irrelevant GitHub workflow files to .distignore.
190-
* Updating installation instructions with new material.
191-
192-
= 0.2.2 :: 2022-02-28 =
193-
* Fix fatal error, make sure is_plugin_active() is available.
194-
195-
= 0.2.1 :: 2022-02-21 =
196-
* Replace SVG by PNG logo to avoid scaling it on themes without proper CSS rules for payment gateway icons.
197-
198-
= 0.2.0 :: 2022-02-18 =
199-
* Fix Cash on delivery, Bank transfer gateways missing after plugin activation.
200-
201-
= 0.1.10 :: 2022-02-15 =
202-
* Make sure custom endpoint works without nice url enabled.
203-
* Better description for setting.
204-
* Update translation strings.
205-
206-
= 0.1.9 :: 2022-02-08 =
207-
* Make sure custom endpoint works by flushing rewrite rules on plugin activation.
208-
* Replacing usage of WC_Admin_Settings::addMessage() with our own.
209-
210-
= 0.1.1 :: 2022-01-13 =
211-
* Admin notice if legacy plugin is installed
212-
* Admin notice on missing WooCommerce / PHP version lower 7.4
213-
* Minor changes metadata / readme.txt
214-
215-
= 0.1.0 :: 2022-01-13 =
216-
* First public release for testing.
135+
Changelog of older releases can be found [here](https://github.com/btcpayserver/woocommerce-greenfield-plugin/blob/master/changelog.txt)

0 commit comments

Comments
 (0)