diff --git a/.github/workflows/test_admin_interface.yml b/.github/workflows/test_admin_interface.yml index a163af4e9..160c819d2 100644 --- a/.github/workflows/test_admin_interface.yml +++ b/.github/workflows/test_admin_interface.yml @@ -45,7 +45,7 @@ jobs: uses: actions/checkout@v3 - name: Admin Interface | Unit tests - run: cd admin && yarn && yarn run test + run: cd admin && yarn global add node-gyp && yarn && yarn run test lint: if: needs.files-changed.outputs.admin == 'true' @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@v3 - name: Admin Interface | Lint - run: cd admin && yarn && yarn run lint + run: cd admin && yarn global add node-gyp && yarn && yarn run lint stylelint: if: needs.files-changed.outputs.admin == 'true' @@ -69,7 +69,7 @@ jobs: uses: actions/checkout@v3 - name: Admin Interface | Stylelint - run: cd admin && yarn && yarn run stylelint + run: cd admin && yarn global add node-gyp && yarn && yarn run stylelint locales: if: needs.files-changed.outputs.admin == 'true' @@ -81,4 +81,4 @@ jobs: uses: actions/checkout@v3 - name: Admin Interface | Locales - run: cd admin && yarn && yarn run locales + run: cd admin && yarn global add node-gyp && yarn && yarn run locales diff --git a/.github/workflows/test_frontend.yml b/.github/workflows/test_frontend.yml index 6dd527079..44137216b 100644 --- a/.github/workflows/test_frontend.yml +++ b/.github/workflows/test_frontend.yml @@ -45,7 +45,7 @@ jobs: uses: actions/checkout@v3 - name: Frontend | Unit tests - run: cd frontend && yarn && yarn run test + run: cd frontend && yarn global add node-gyp && yarn && yarn run test lint: if: needs.files-changed.outputs.frontend == 'true' @@ -57,7 +57,7 @@ jobs: uses: actions/checkout@v3 - name: Frontend | Lint - run: cd frontend && yarn && yarn run lint + run: cd frontend && yarn global add node-gyp && yarn && yarn run lint stylelint: if: needs.files-changed.outputs.frontend == 'true' @@ -69,7 +69,7 @@ jobs: uses: actions/checkout@v3 - name: Frontend | Stylelint - run: cd frontend && yarn && yarn run stylelint + run: cd frontend && yarn global add node-gyp && yarn && yarn run stylelint locales: if: needs.files-changed.outputs.frontend == 'true' @@ -81,4 +81,4 @@ jobs: uses: actions/checkout@v3 - name: Frontend | Locales - run: cd frontend && yarn && yarn run locales + run: cd frontend && yarn global add node-gyp && yarn && yarn run locales diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bea722dc..997233ca8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,24 @@ 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.23.3](https://github.com/gradido/gradido/compare/1.23.2...1.23.3) + +- feat(backend): x-sendcoins: filter on authenticated communities for selection [`#3203`](https://github.com/gradido/gradido/pull/3203) +- feat(frontend): make community switch looking similar to other inputs [`#3202`](https://github.com/gradido/gradido/pull/3202) +- fix(frontend): prevent showing edit link in contribution community view [`#3197`](https://github.com/gradido/gradido/pull/3197) +- fix(frontend): show links even when all expired [`#3198`](https://github.com/gradido/gradido/pull/3198) +- feat(frontend): add community switch to send coins [`#3195`](https://github.com/gradido/gradido/pull/3195) +- refactor(backend): validation with class-validator [`#3171`](https://github.com/gradido/gradido/pull/3171) +- feat(database): x-sendcoins-2: add pending transactions table for x-community-tx [`#3190`](https://github.com/gradido/gradido/pull/3190) +- feat(admin): update hashtag ui [`#3182`](https://github.com/gradido/gradido/pull/3182) +- fix(backend): contribution filtering by memo [`#3181`](https://github.com/gradido/gradido/pull/3181) +- feat(federation): x com 4 introduce public community info handshake [`#2957`](https://github.com/gradido/gradido/pull/2957) + #### [1.23.2](https://github.com/gradido/gradido/compare/1.23.1...1.23.2) +> 17 August 2023 + +- chore(release): v1.23.2 [`#3180`](https://github.com/gradido/gradido/pull/3180) - feat(admin): contribution filtering by memo [`#3174`](https://github.com/gradido/gradido/pull/3174) - feat(backend): after transaction creations trigger to send them to dlt-connector [`#3152`](https://github.com/gradido/gradido/pull/3152) diff --git a/admin/package.json b/admin/package.json index e5a3e5e3c..fa473b9b7 100644 --- a/admin/package.json +++ b/admin/package.json @@ -3,7 +3,7 @@ "description": "Administraion Interface for Gradido", "main": "index.js", "author": "Moriz Wahl", - "version": "1.23.2", + "version": "1.23.3", "license": "Apache-2.0", "private": false, "scripts": { diff --git a/backend/package.json b/backend/package.json index 116dcce35..91eac2bc7 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "gradido-backend", - "version": "1.23.2", + "version": "1.23.3", "description": "Gradido unified backend providing an API-Service for Gradido Transactions", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/backend", diff --git a/database/package.json b/database/package.json index f220f765c..1cb2d2d45 100644 --- a/database/package.json +++ b/database/package.json @@ -1,6 +1,6 @@ { "name": "gradido-database", - "version": "1.23.2", + "version": "1.23.3", "description": "Gradido Database Tool to execute database migrations", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/database", diff --git a/dht-node/package.json b/dht-node/package.json index d6d2d90f9..62f97c540 100644 --- a/dht-node/package.json +++ b/dht-node/package.json @@ -1,6 +1,6 @@ { "name": "gradido-dht-node", - "version": "1.23.2", + "version": "1.23.3", "description": "Gradido dht-node module", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/", diff --git a/dlt-connector/package.json b/dlt-connector/package.json index 1e54cc44d..47e9136ff 100644 --- a/dlt-connector/package.json +++ b/dlt-connector/package.json @@ -1,6 +1,6 @@ { "name": "gradido-dlt-connector", - "version": "1.23.2", + "version": "1.23.3", "description": "Gradido DLT-Connector", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/", diff --git a/federation/package.json b/federation/package.json index aaeaff08d..9de75c0fa 100644 --- a/federation/package.json +++ b/federation/package.json @@ -1,6 +1,6 @@ { "name": "gradido-federation", - "version": "1.23.2", + "version": "1.23.3", "description": "Gradido federation module providing Gradido-Hub-Federation and versioned API for inter community communication", "main": "src/index.ts", "repository": "https://github.com/gradido/gradido/federation", diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 1a4d8ca5c..4b21fd2ea 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -63,7 +63,7 @@ FROM base as build # Copy everything COPY . . # npm install -RUN yarn install --production=false --frozen-lockfile --non-interactive +RUN yarn global add node-gyp && yarn install --production=false --frozen-lockfile --non-interactive # npm build RUN yarn run build diff --git a/frontend/package.json b/frontend/package.json index 838ae2872..30e9803f7 100755 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "bootstrap-vue-gradido-wallet", - "version": "1.23.2", + "version": "1.23.3", "private": true, "scripts": { "start": "node run/server.js", diff --git a/frontend/yarn.lock b/frontend/yarn.lock index 8eff12aaf..0ee8e4e1c 100644 --- a/frontend/yarn.lock +++ b/frontend/yarn.lock @@ -4623,9 +4623,9 @@ caniuse-api@^3.0.0: lodash.uniq "^4.5.0" caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001181, caniuse-lite@^1.0.30001280, caniuse-lite@^1.0.30001286: - version "1.0.30001442" - resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001442.tgz" - integrity sha512-239m03Pqy0hwxYPYR5JwOIxRJfLTWtle9FV8zosfV5pHg+/51uD4nxcUlM8+mWWGfwKtt8lJNHnD3cWw9VZ6ow== + version "1.0.30001546" + resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001546.tgz" + integrity sha512-zvtSJwuQFpewSyRrI3AsftF6rM0X80mZkChIt1spBGEvRglCrjTniXvinc8JKRoqTwXAgvqTImaN9igfSMtUBw== capture-exit@^2.0.0: version "2.0.0" diff --git a/package.json b/package.json index 0a421b54d..aaec08e3d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gradido", - "version": "1.23.2", + "version": "1.23.3", "description": "Gradido", "main": "index.js", "repository": "git@github.com:gradido/gradido.git",