mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
Merge pull request #3455 from gradido/release-2_5_1-beta
chore(release): v2.5.1 beta
This commit is contained in:
commit
1b815fd05d
@ -4,8 +4,15 @@ 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).
|
||||
|
||||
#### [2.4.5](https://github.com/gradido/gradido/compare/2.3.1...2.4.5)
|
||||
#### [2.5.1](https://github.com/gradido/gradido/compare/2.3.1...2.5.1)
|
||||
|
||||
- refactor(frontend): contribution form refactor [`#3442`](https://github.com/gradido/gradido/pull/3442)
|
||||
- feat(backend): correct user data transfer to gms [`#3433`](https://github.com/gradido/gradido/pull/3433)
|
||||
- feat(backend): switch marker colors of community location and user location [`#3445`](https://github.com/gradido/gradido/pull/3445)
|
||||
- feat(backend): darker email font for content [`#3441`](https://github.com/gradido/gradido/pull/3441)
|
||||
- fix(other): clear also ~/.cache/yarn [`#3362`](https://github.com/gradido/gradido/pull/3362)
|
||||
- refactor(backend): test refactor better bun compatibility [`#3438`](https://github.com/gradido/gradido/pull/3438)
|
||||
- chore(release): v2.4.5 beta [`#3435`](https://github.com/gradido/gradido/pull/3435)
|
||||
- feat(backend): add answer button inside E-Mail [`#3431`](https://github.com/gradido/gradido/pull/3431)
|
||||
- feat(other): build config in deployment [`#3430`](https://github.com/gradido/gradido/pull/3430)
|
||||
- fix(dht): and federation using config in bare-metal setup [`#3434`](https://github.com/gradido/gradido/pull/3434)
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
"description": "Administration Interface for Gradido",
|
||||
"main": "index.js",
|
||||
"author": "Moriz Wahl",
|
||||
"version": "2.4.5",
|
||||
"version": "2.5.1",
|
||||
"license": "Apache-2.0",
|
||||
"scripts": {
|
||||
"start": "node run/server.js",
|
||||
|
||||
@ -26,9 +26,9 @@
|
||||
</li>
|
||||
</ul>
|
||||
<b-pagination
|
||||
v-if="result && pagination.total > ITEMS_PER_PAGE"
|
||||
v-model="pagination.page"
|
||||
:total-rows="pagination.total"
|
||||
v-if="result && paginationTotal > ITEMS_PER_PAGE"
|
||||
v-model="paginationPage"
|
||||
:total-rows="paginationTotal"
|
||||
:per-page="ITEMS_PER_PAGE"
|
||||
aria-controls="list-humhub-spaces"
|
||||
@update:model-value="refetch({ page: $event })"
|
||||
@ -60,7 +60,8 @@ const selectedSpaceId = ref(props.modelValue)
|
||||
const { result, refetch } = useQuery(spacesQuery, { page: page.value, limit: ITEMS_PER_PAGE })
|
||||
|
||||
const spaces = computed(() => result.value?.spaces?.results || [])
|
||||
const pagination = computed(() => result.value?.spaces?.pagination || {})
|
||||
const paginationTotal = computed(() => result.value?.spaces?.pagination?.total || 0)
|
||||
const paginationPage = computed(() => result.value?.spaces?.pagination?.page || 1)
|
||||
|
||||
onMounted(() => {
|
||||
if (props.modelValue) {
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradido-backend",
|
||||
"version": "2.4.5",
|
||||
"version": "2.5.1",
|
||||
"description": "Gradido unified backend providing an API-Service for Gradido Transactions",
|
||||
"main": "src/index.ts",
|
||||
"repository": "https://github.com/gradido/gradido/backend",
|
||||
|
||||
@ -96,8 +96,7 @@ export class ProjectBrandingResolver {
|
||||
if (!humhub) {
|
||||
throw new LogError('HumHub client not initialized')
|
||||
}
|
||||
const offset = (page - 1) * limit
|
||||
const spaces = await humhub.spaces(offset, limit)
|
||||
const spaces = await humhub.spaces(page, limit)
|
||||
if (!spaces) {
|
||||
throw new LogError('Error requesting spaces from HumHub')
|
||||
}
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradido-database",
|
||||
"version": "2.4.5",
|
||||
"version": "2.5.1",
|
||||
"description": "Gradido Database Tool to execute database migrations",
|
||||
"main": "src/index.ts",
|
||||
"repository": "https://github.com/gradido/gradido/database",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradido-dht-node",
|
||||
"version": "2.4.5",
|
||||
"version": "2.5.1",
|
||||
"description": "Gradido dht-node module",
|
||||
"main": "src/index.ts",
|
||||
"repository": "https://github.com/gradido/gradido/",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradido-dlt-connector",
|
||||
"version": "2.4.5",
|
||||
"version": "2.5.1",
|
||||
"description": "Gradido DLT-Connector",
|
||||
"main": "src/index.ts",
|
||||
"repository": "https://github.com/gradido/gradido/",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradido-federation",
|
||||
"version": "2.4.5",
|
||||
"version": "2.5.1",
|
||||
"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",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "bootstrap-vue-gradido-wallet",
|
||||
"version": "2.4.5",
|
||||
"version": "2.5.1",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "node run/server.js",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "gradido",
|
||||
"version": "2.4.5",
|
||||
"version": "2.5.1",
|
||||
"description": "Gradido",
|
||||
"main": "index.js",
|
||||
"repository": "git@github.com:gradido/gradido.git",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user