Merge remote-tracking branch 'origin/master' into 3213-feature-x-com-sendcoins-31-insert-recipient-as-foreign-user-in-users-table-after-x-com-sendcoins

This commit is contained in:
Claus-Peter Huebner 2023-10-09 12:14:26 +02:00
commit e62e803541
13 changed files with 36 additions and 20 deletions

View File

@ -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

View File

@ -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

View File

@ -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)

View File

@ -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": {

View File

@ -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",

View File

@ -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",

View File

@ -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/",

View File

@ -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/",

View File

@ -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",

View File

@ -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

View File

@ -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",

View File

@ -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"

View File

@ -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",