diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cf0b061ef..92ac77d86 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -212,7 +212,7 @@ jobs: report_name: Coverage Frontend type: lcov result_path: ./coverage/lcov.info - min_coverage: 19 + min_coverage: 20 token: ${{ github.token }} #test: diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b03c78d5..a71ad2fd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,36 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [1.0.2](https://github.com/gradido/gradido/compare/1.0.1...1.0.2) + +- fix: GDD Amount is Always Displayed with Two Digits [`#468`](https://github.com/gradido/gradido/pull/468) +- fix: Date Time Formats [`#469`](https://github.com/gradido/gradido/pull/469) +- Community ipv6 localhost [`#466`](https://github.com/gradido/gradido/pull/466) +- Login html pages autoparse [`#464`](https://github.com/gradido/gradido/pull/464) +- everything I find and fix crash related in login server this week (kw 20) [`#448`](https://github.com/gradido/gradido/pull/448) +- 437 bug mobile transaction list is not easy to read [`#462`](https://github.com/gradido/gradido/pull/462) +- Require memo in send [`#455`](https://github.com/gradido/gradido/pull/455) +- bug: Thx Page Shows Content Dependent of Route From [`#459`](https://github.com/gradido/gradido/pull/459) +- bug: responsive display error on pads fixed [`#461`](https://github.com/gradido/gradido/pull/461) +- [Bug] German "Dir" is written with capital D in send validation bug [`#460`](https://github.com/gradido/gradido/pull/460) +- feat: Save Locale in Database [`#450`](https://github.com/gradido/gradido/pull/450) +- attention! notice in send area removed [`#458`](https://github.com/gradido/gradido/pull/458) +- Remove Error Message encoding [`#456`](https://github.com/gradido/gradido/pull/456) +- bug fix:mobile menu closes on logout, probs value problem on logout f… [`#454`](https://github.com/gradido/gradido/pull/454) +- bug-login password change show hide inserted [`#453`](https://github.com/gradido/gradido/pull/453) +- fix sorting and use total count [`#451`](https://github.com/gradido/gradido/pull/451) +- add dynamic error email if transaction failed [`#452`](https://github.com/gradido/gradido/pull/452) +- ceil the last decay [`#449`](https://github.com/gradido/gradido/pull/449) +- feat: Raise Coverage of Frontend Unit Tets to 18% [`#447`](https://github.com/gradido/gradido/pull/447) +- parse cpsp files automatic in build [`a4a12bb`](https://github.com/gradido/gradido/commit/a4a12bb62b4000e035ff15e17c5a5f5861653ff6) +- translate german html encoded error messages to english and use gettext for automatic translation [`d339627`](https://github.com/gradido/gradido/commit/d33962736d94c1cb7a12ff775bc2c8d7505d646e) +- 100% coverage of GddTransactionList [`96fb245`](https://github.com/gradido/gradido/commit/96fb245821c69f4d321204a663247d5eee60d92f) + #### [1.0.1](https://github.com/gradido/gradido/compare/1.0.0...1.0.1) +> 14 May 2021 + +- Login crash fix [`#444`](https://github.com/gradido/gradido/pull/444) - add try catch blocks to prevent login-server from crashing [`22ff220`](https://github.com/gradido/gradido/commit/22ff22072956f8b843037c75c5b16b7ff5d6a2a3) - fix [`14a4243`](https://github.com/gradido/gradido/commit/14a424347817b1fe6912a113bffd70e55d688112) diff --git a/community_server/config/routes.php b/community_server/config/routes.php index 322825c87..3b0dfedc1 100644 --- a/community_server/config/routes.php +++ b/community_server/config/routes.php @@ -65,8 +65,9 @@ Router::scope('/', function (RouteBuilder $routes) { if($entry == 'ElopageWebhook' || $entry == 'AppRequests') { return true; } - if($request->clientIp() == '127.0.0.1' || $request->clientIp() == 'localhost' || $request->clientIp() == '') { - return true; + $allowedIpLocalhost = ['127.0.0.1', 'localhost', '', '::1']; + if(in_array($clientIp, $allowedIpLocalhost)) { + return true; } $allowedCaller = Configure::read('API.allowedCaller'); $ipPerHost = []; diff --git a/frontend/package.json b/frontend/package.json index 21b02ee2e..4371a6a57 100755 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "bootstrap-vue-gradido-wallet", - "version": "1.0.1", + "version": "1.0.2", "private": true, "scripts": { "start": "node run/server.js", diff --git a/frontend/src/components/SidebarPlugin/SideBar.vue b/frontend/src/components/SidebarPlugin/SideBar.vue index f1e2a4455..60d835a1a 100755 --- a/frontend/src/components/SidebarPlugin/SideBar.vue +++ b/frontend/src/components/SidebarPlugin/SideBar.vue @@ -10,7 +10,7 @@ ... - {{ pending ? '—' : $n(balance) }} GDD + {{ pending ? '—' : $n(balance, 'decimal') }} GDD