Skip to content

Commit 64bf465

Browse files
authored
Merge pull request #2289 from IntersectMBO/test
GovTool v1.0.24
2 parents f082062 + d711f61 commit 64bf465

File tree

11 files changed

+34
-14
lines changed

11 files changed

+34
-14
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,24 @@ changes.
2626

2727
-
2828

29+
## [v1.0.24](https://github.com/IntersectMBO/govtool/releases/tag/v1.0.24) 2024-10-31
30+
31+
### Added
32+
33+
-
34+
35+
### Fixed
36+
37+
- Fix infinite DRep list loading [Issue 2285](https://github.com/IntersectMBO/govtool/issues/2285)
38+
39+
### Changed
40+
41+
-
42+
43+
### Removed
44+
45+
-
46+
2947
## [v1.0.23](https://github.com/IntersectMBO/govtool/releases/tag/v1.0.23) 2024-10-29
3048

3149
### Added

govtool/backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ FROM $BASE_IMAGE_REPO:$BASE_IMAGE_TAG
44
WORKDIR /src
55
COPY . .
66
RUN cabal build
7-
RUN cp dist-newstyle/build/x86_64-linux/ghc-9.2.7/vva-be-1.0.23/x/vva-be/build/vva-be/vva-be /usr/local/bin
7+
RUN cp dist-newstyle/build/x86_64-linux/ghc-9.2.7/vva-be-1.0.24/x/vva-be/build/vva-be/vva-be /usr/local/bin

govtool/backend/Dockerfile.qovery

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FROM $BASE_IMAGE_REPO:$BASE_IMAGE_TAG
44
WORKDIR /src
55
COPY . .
66
RUN cabal build
7-
RUN cp dist-newstyle/build/x86_64-linux/ghc-9.2.7/vva-be-1.0.23/x/vva-be/build/vva-be/vva-be /usr/local/bin
7+
RUN cp dist-newstyle/build/x86_64-linux/ghc-9.2.7/vva-be-1.0.24/x/vva-be/build/vva-be/vva-be /usr/local/bin
88

99
# Expose the necessary port
1010
EXPOSE 9876

govtool/backend/vva-be.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 3.6
22
name: vva-be
3-
version: 1.0.23
3+
version: 1.0.24
44

55
-- A short (one-line) description of the package.
66
-- synopsis:

govtool/frontend/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

govtool/frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@govtool/frontend",
33
"private": true,
4-
"version": "1.0.23",
4+
"version": "1.0.24",
55
"type": "module",
66
"scripts": {
77
"build": "vite build",
@@ -109,5 +109,5 @@
109109
"typescript": "^5.0.2"
110110
},
111111
"readme": "ERROR: No README data found!",
112-
"_id": "[email protected].23"
112+
"_id": "[email protected].24"
113113
}

govtool/frontend/src/context/dataActionsBar.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ const DataActionsBarProvider: FC<ProviderProps> = ({ children }) => {
7575

7676
useEffect(() => {
7777
if (
78-
(userMovedToDifferentAppArea && !userOpenedGADetailsFromCategoryPage) ||
78+
(!pathname.includes("drep_directory") &&
79+
userMovedToDifferentAppArea &&
80+
!userOpenedGADetailsFromCategoryPage) ||
7981
userMovedFromGAListToCategoryPage
8082
) {
8183
resetState();
@@ -116,7 +118,7 @@ const DataActionsBarProvider: FC<ProviderProps> = ({ children }) => {
116118
);
117119

118120
return (
119-
<DataActionsBarContext.Provider value={contextValue}>
121+
<DataActionsBarContext.Provider value={contextValue} key={pathname}>
120122
{children}
121123
</DataActionsBarContext.Provider>
122124
);

govtool/frontend/src/hooks/queries/useGetDRepListQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export const useGetDRepListInfiniteQuery = (
3333
pendingTransaction.registerAsDrep ||
3434
pendingTransaction.retireAsDirectVoter ||
3535
pendingTransaction.retireAsDrep
36-
)?.transactionHash ?? 'noPendingTransaction',
36+
)?.transactionHash ?? "noPendingTransaction",
3737
filters.length ? filters : "",
3838
searchPhrase ?? "",
3939
sorting ?? "",

govtool/metadata-validation/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

govtool/metadata-validation/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@govtool/metadata-validation",
3-
"version": "1.0.23",
3+
"version": "1.0.24",
44
"description": "",
55
"author": "",
66
"private": true,

0 commit comments

Comments
 (0)