Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat : Implemented field connection resolver for organization events #2532

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
9d1141a
pagination on eventsorg
AnshulKahar2729 Sep 15, 2024
16c3996
Merge branch 'develop' into events/pagination
AnshulKahar2729 Sep 15, 2024
9939f3f
lint fix
AnshulKahar2729 Sep 15, 2024
dd74c7b
Merge branch 'events/pagination' of https://github.com/AnshulKahar272…
AnshulKahar2729 Sep 15, 2024
bd58553
fix
AnshulKahar2729 Sep 18, 2024
08b5d71
Revert "lint fix"
AnshulKahar2729 Sep 18, 2024
4c7e067
created (#2455)
gautam-divyanshu Aug 21, 2024
d863973
done (#2457)
gautam-divyanshu Aug 21, 2024
959eadc
Added Caddy Support to Talawa API Cloud Instance (#2430)
vasujain275 Aug 21, 2024
f2f9e02
fix: add ts-doc comments (#2475)
meetulr Aug 23, 2024
4e50694
Update feature-request.md
palisadoes Aug 24, 2024
618d7ff
Update bug-report.md
palisadoes Aug 24, 2024
1fe1515
dedchange (#2481)
prayanshchh Aug 24, 2024
0108389
chore(deps): bump lint-staged from 15.2.7 to 15.2.9 (#2487)
dependabot[bot] Aug 26, 2024
27bcef6
chore(deps): bump vitest and @vitest/coverage-v8 (#2488)
dependabot[bot] Aug 26, 2024
4a0b1c4
chore(deps): bump @types/lodash from 4.17.6 to 4.17.7 (#2489)
dependabot[bot] Aug 26, 2024
877148f
chore(deps): bump @typescript-eslint/eslint-plugin from 8.0.1 to 8.2.…
dependabot[bot] Aug 26, 2024
6a36756
chore(deps): bump husky from 9.1.4 to 9.1.5 (#2486)
dependabot[bot] Aug 26, 2024
b372775
ci: add parallelism to reduce tests CI time (#2490)
syedali237 Aug 30, 2024
d10af39
Add changes for CodeRabbit.AI (#2495)
ARYANSHAH1567 Sep 1, 2024
ba500f3
chore(deps): bump lint-staged from 15.2.9 to 15.2.10 (#2498)
dependabot[bot] Sep 2, 2024
16b0428
chore(deps): bump tsx from 4.17.0 to 4.19.0 (#2499)
dependabot[bot] Sep 2, 2024
8bef2d2
chore(deps): bump @apollo/server from 4.10.5 to 4.11.0 (#2501)
dependabot[bot] Sep 2, 2024
a506e5e
chore(deps): bump @types/node from 20.14.9 to 22.5.2 (#2500)
dependabot[bot] Sep 2, 2024
9c1c5dd
Update .node-version
palisadoes Sep 2, 2024
d2a3c6b
Update pull-request.yml
palisadoes Sep 2, 2024
bb05f4b
Update push.yml
palisadoes Sep 2, 2024
6404ab8
Remove Deprecated ESLint Config (#2504)
GlenDsza Sep 2, 2024
70f9470
Update Action Item & Category Resolvers (#2508)
GlenDsza Sep 7, 2024
97e92f8
Added Sample Data For AgendaCategory & Removed Delete Fund/Campaign M…
GlenDsza Sep 8, 2024
0b7ccbf
chore(deps): bump graphql-markdown from 7.0.0 to 7.1.0 (#2513)
dependabot[bot] Sep 9, 2024
81462cd
chore(deps): bump @types/node from 22.5.2 to 22.5.4 (#2514)
dependabot[bot] Sep 9, 2024
5cc8ac5
chore(deps): bump @types/yargs from 17.0.32 to 17.0.33 (#2516)
dependabot[bot] Sep 9, 2024
c77633f
chore(deps): bump concurrently from 8.2.2 to 9.0.0 (#2517)
dependabot[bot] Sep 9, 2024
3352664
Added the field Identifier (#2509)
ARYANSHAH1567 Sep 9, 2024
2806504
Fixed setup script (#2512)
ARYANSHAH1567 Sep 9, 2024
eb6dd33
Merge branch 'events/pagination' of https://github.com/AnshulKahar272…
AnshulKahar2729 Sep 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker-compose.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
redis-stack-server:
image: redis/redis-stack-server:latest
ports:
- 6379:6379
- 6380:6379
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tip

Codebase Verification

Port change inconsistency detected across project files

The change of the Redis external port from 6379 to 6380 in docker-compose.dev.yaml appears to be inconsistent with other parts of the project:

  • The production environment (docker-compose.prod.yaml) still uses port 6379 for both internal and external mapping.
  • Both development and production environments set REDIS_PORT=6379 as an environment variable.
  • The INSTALLATION.md file still refers to 6379 as the default Redis port in multiple places.

Please review the following action items:

  1. Determine if the port change to 6380 in docker-compose.dev.yaml is intentional.
  2. If intentional, update all relevant files for consistency:
    • Update docker-compose.prod.yaml to use the new port (6380).
    • Update the REDIS_PORT environment variable in both docker-compose.dev.yaml and docker-compose.prod.yaml.
    • Update the INSTALLATION.md file to reflect the new port number.
  3. If unintentional, revert the change in docker-compose.dev.yaml back to 6379.
  4. After making the necessary changes, review the application code to ensure it uses the correct port for Redis connections.
Analysis chain

Verify the reason for the Redis port change and ensure consistency.

The external port for the Redis service has been changed from 6379 to 6380. While this change does not affect the internal workings of the Redis container, it may impact how clients connect to the service.

Please provide the reason for this port change. Additionally, ensure that this change is consistently applied across the codebase, including any configuration files, connection strings, or documentation that references the Redis port.

To verify the impact of this change, please run the following script:

If the script yields any results, please update those instances to use the new port (6380) to maintain consistency across the project.

Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash

# Search for occurrences of the old Redis port (6379) in YAML files
echo "Searching for occurrences of the old Redis port (6379) in YAML files..."
rg --type yaml $'6379'

# Search for occurrences of the old Redis port (6379) in JavaScript files
echo "Searching for occurrences of the old Redis port (6379) in JavaScript files..."
rg --type js $'6379'

# Search for occurrences of the old Redis port (6379) in Markdown files (documentation)
echo "Searching for occurrences of the old Redis port (6379) in Markdown files..."
rg --type md $'6379'

Length of output: 1103

volumes:
- redis-data:/data/redis

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
"import:sample-data": "tsx ./src/utilities/loadSampleData.ts",
"import:sample-data:prod": "node ./build/utilities/loadSampleData.js",
"gen:schema": "graphql-inspector introspect ./src/typeDefs/**/**/*.ts --write ./schema.graphql ",
"update:toc": "node scripts/githooks/update-toc.js"
"update:toc": "node scripts/githooks/update-toc.js",
"docker:dev" : "sudo /usr/libexec/docker/cli-plugins/docker-compose -f docker-compose.dev.yaml up"
},
"repository": {
"type": "git",
Expand Down
Loading
Loading