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

Club Vector Embeddings #180

Merged
merged 15 commits into from
Feb 17, 2024
Merged

Conversation

michael-brennan2005
Copy link
Contributor

@michael-brennan2005 michael-brennan2005 commented Feb 9, 2024

Description

SAC 30

How Has This Been Tested?

4 tests in tests/embeddings_test.go

Checklist

  • I have performed a self-review of my code
  • I have reached out to another developer to review my code
  • I have commented my code, particularly in hard-to-understand areas
  • New and existing unit tests pass locally with my changes

backend/src/embeddings/openai.go Fixed Show fixed Hide fixed
backend/src/embeddings/openai.go Fixed Show fixed Hide fixed
backend/src/embeddings/pinecone.go Fixed Show fixed Hide fixed
@michael-brennan2005 michael-brennan2005 marked this pull request as ready for review February 12, 2024 23:11
Copy link
Contributor

@DOOduneye DOOduneye left a comment

Choose a reason for hiding this comment

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

some nits and general design choices, but overall fantastic work from both of yall

@@ -73,7 +73,7 @@ func (m *MiddlewareService) Authorize(requiredPermissions ...types.Permission) f
return errors.FailedToParseAccessToken.FiberError(c)
}

userPermissions := types.GetPermissions(models.UserRole(*role))
userPermissions := models.GetPermissions(models.UserRole(*role))
Copy link
Contributor

Choose a reason for hiding this comment

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

GetPermissions/permissions in general is not a model, possibly not a type--can be put in the auth folder instead

}

func (c *Club) EmbeddingString() string {
return c.Name + " " + c.Name + " " + c.Name + " " + c.Name + " " + c.Description
Copy link
Contributor

Choose a reason for hiding this comment

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

Should be a formatted string; fmt.Sprintf

Copy link
Contributor

Choose a reason for hiding this comment

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

see above

Copy link
Contributor

Choose a reason for hiding this comment

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

nit but solution should be on a new line


embeddingBody, _ := json.Marshal(map[string]interface{}{
"input": payload,
"model": "text-embedding-ada-002",
Copy link
Contributor

Choose a reason for hiding this comment

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

would prefer this to be a config option,

}

func NewOpenAiClient() *OpenAiClient {
apiKey, _ := mattress.NewSecret(os.Getenv("SAC_OPENAI_API_KEY"))
Copy link
Contributor

Choose a reason for hiding this comment

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

should be in config as well, i assume @garrettladley

})
requestBody := bytes.NewBuffer(embeddingBody)

req, err := http.NewRequest("POST", fmt.Sprintf("https://api.openai.com/v1/embeddings"), requestBody)
Copy link
Contributor

Choose a reason for hiding this comment

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

these lines below are repeated over in your guys code, would prefer this to be generalized and exported into a utility function

}

func NewPineconeClient[T OpenAiClient](openAiClient *OpenAiClient) *PineconeClient {
indexHost, _ := mattress.NewSecret(os.Getenv("SAC_PINECONE_INDEX_HOST"))
Copy link
Contributor

Choose a reason for hiding this comment

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

same as above should be apart of config

})
requestBody := bytes.NewBuffer(upsertBody)

req, err := http.NewRequest("POST", fmt.Sprintf("%s/vectors/upsert", c.indexHost.Expose()), requestBody)
Copy link
Contributor

Choose a reason for hiding this comment

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

same as above

@garrettladley garrettladley merged commit e82aa62 into main Feb 17, 2024
5 checks passed
@garrettladley garrettladley deleted the SAC-30-Club-Event-Vector-Embeddings branch February 17, 2024 03:13
DOOduneye added a commit that referenced this pull request Feb 20, 2024
commit cf87502
Author: Garrett Ladley <[email protected]>
Date:   Mon Feb 19 15:31:35 2024 -0500

    Fix: Backend CI Failing  (#243)

commit 7b0500b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:18:32 2024 -0500

    Bump @tanstack/react-query from 5.17.9 to 5.22.2 in /frontend/sac-mobile (#240)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 4e89a47
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:18:15 2024 -0500

    Bump zustand from 4.5.0 to 4.5.1 in /frontend/sac-mobile (#239)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit b040e5b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:17:54 2024 -0500

    Bump github.com/garrettladley/mattress from 0.2.2 to 0.3.2 in /backend (#234)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit e611dcf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:17:05 2024 -0500

    Bump gorm.io/gorm from 1.25.6 to 1.25.7 in /backend (#235)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 26ada9f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:16:49 2024 -0500

    Bump expo from 50.0.6 to 50.0.7 in /frontend/sac-mobile (#238)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit a7498e2
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:16:21 2024 -0500

    Bump postcss from 8.4.33 to 8.4.35 in /frontend/sac-mobile (#237)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 37f2831
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:15:56 2024 -0500

    Bump gorm.io/driver/postgres from 1.5.4 to 1.5.6 in /backend (#233)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 5b0c484
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:15:31 2024 -0500

    Bump @react-navigation/native from 6.1.9 to 6.1.10 in /frontend/sac-mobile (#236)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit fda30ba
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:15:11 2024 -0500

    Bump @types/node from 20.11.17 to 20.11.19 in /frontend/sac-web (#232)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 9d3c7c7
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:14:50 2024 -0500

    Bump @types/react from 18.2.55 to 18.2.56 in /frontend/sac-web (#231)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 882f0a9
Author: Garrett Ladley <[email protected]>
Date:   Sun Feb 18 22:39:59 2024 -0500

    CI: Bump Go to 1.22 (#229)

commit d904e21
Author: David Oduneye <[email protected]>
Date:   Sat Feb 17 15:33:20 2024 -0500

    string formatting (#223)

commit ca9d0b4
Author: David Oduneye <[email protected]>
Date:   Sat Feb 17 15:30:15 2024 -0500

    unauthorized when you have no cookies (#221)

commit a4e2e62
Author: Garrett Ladley <[email protected]>
Date:   Sat Feb 17 15:26:15 2024 -0500

    Fix CI: Backend Tests .env File Pathing (#220)

commit 65e6512
Author: Sunny <[email protected]>
Date:   Sat Feb 17 15:19:37 2024 -0500

    SAC-24 Event CRUD (#193)

    Co-authored-by: OJisMe <[email protected]>
    Co-authored-by: Olivier Ndjike Nzia <[email protected]>
    Co-authored-by: Garrett Ladley <[email protected]>
    Co-authored-by: garrettladley <[email protected]>
    Co-authored-by: Alder Whiteford <[email protected]>

commit 928d567
Author: David Oduneye <[email protected]>
Date:   Sat Feb 17 15:15:34 2024 -0500

    script cleanup (#217)

commit e82aa62
Author: Michael Brennan <[email protected]>
Date:   Fri Feb 16 22:13:13 2024 -0500

    Club Vector Embeddings (#180)

    Co-authored-by: Garrett Ladley <[email protected]>
    Co-authored-by: garrettladley <[email protected]>

commit e319ab1
Author: Melody Yu <[email protected]>
Date:   Fri Feb 16 19:47:35 2024 -0500

    Club endpoint filters (#197)

    Co-authored-by: Zack Lassetter <[email protected]>
    Co-authored-by: Melody Yu <[email protected]>
    Co-authored-by: Garrett Ladley <[email protected]>
    Co-authored-by: garrettladley <[email protected]>

commit ba51de5
Author: Garrett Ladley <[email protected]>
Date:   Thu Feb 15 19:49:22 2024 -0500

    Testing: Club Tag (#216)

commit 8ae0892
Author: Garrett Ladley <[email protected]>
Date:   Thu Feb 15 16:25:01 2024 -0500

    Use Append Instead of Replace in Transactions (#215)

commit 7d874a1
Author: Garrett Ladley <[email protected]>
Date:   Thu Feb 15 12:29:18 2024 -0500

    Testing: Complete Membership | Delete Nonexistent Edge from 204 -> 404 (#213)

commit f806439
Author: Garrett Ladley <[email protected]>
Date:   Wed Feb 14 19:00:29 2024 -0500

    Testing: Complete Follower (#212)
DOOduneye added a commit that referenced this pull request Feb 20, 2024
commit a903b26
Author: David Oduneye <[email protected]>
Date:   Mon Feb 19 23:13:07 2024 -0500

    Frontend (#246)

commit cf87502
Author: Garrett Ladley <[email protected]>
Date:   Mon Feb 19 15:31:35 2024 -0500

    Fix: Backend CI Failing  (#243)

commit 7b0500b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:18:32 2024 -0500

    Bump @tanstack/react-query from 5.17.9 to 5.22.2 in /frontend/sac-mobile (#240)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 4e89a47
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:18:15 2024 -0500

    Bump zustand from 4.5.0 to 4.5.1 in /frontend/sac-mobile (#239)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit b040e5b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:17:54 2024 -0500

    Bump github.com/garrettladley/mattress from 0.2.2 to 0.3.2 in /backend (#234)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit e611dcf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:17:05 2024 -0500

    Bump gorm.io/gorm from 1.25.6 to 1.25.7 in /backend (#235)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 26ada9f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:16:49 2024 -0500

    Bump expo from 50.0.6 to 50.0.7 in /frontend/sac-mobile (#238)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit a7498e2
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:16:21 2024 -0500

    Bump postcss from 8.4.33 to 8.4.35 in /frontend/sac-mobile (#237)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 37f2831
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:15:56 2024 -0500

    Bump gorm.io/driver/postgres from 1.5.4 to 1.5.6 in /backend (#233)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 5b0c484
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:15:31 2024 -0500

    Bump @react-navigation/native from 6.1.9 to 6.1.10 in /frontend/sac-mobile (#236)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit fda30ba
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:15:11 2024 -0500

    Bump @types/node from 20.11.17 to 20.11.19 in /frontend/sac-web (#232)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 9d3c7c7
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:14:50 2024 -0500

    Bump @types/react from 18.2.55 to 18.2.56 in /frontend/sac-web (#231)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 882f0a9
Author: Garrett Ladley <[email protected]>
Date:   Sun Feb 18 22:39:59 2024 -0500

    CI: Bump Go to 1.22 (#229)

commit d904e21
Author: David Oduneye <[email protected]>
Date:   Sat Feb 17 15:33:20 2024 -0500

    string formatting (#223)

commit ca9d0b4
Author: David Oduneye <[email protected]>
Date:   Sat Feb 17 15:30:15 2024 -0500

    unauthorized when you have no cookies (#221)

commit a4e2e62
Author: Garrett Ladley <[email protected]>
Date:   Sat Feb 17 15:26:15 2024 -0500

    Fix CI: Backend Tests .env File Pathing (#220)

commit 65e6512
Author: Sunny <[email protected]>
Date:   Sat Feb 17 15:19:37 2024 -0500

    SAC-24 Event CRUD (#193)

    Co-authored-by: OJisMe <[email protected]>
    Co-authored-by: Olivier Ndjike Nzia <[email protected]>
    Co-authored-by: Garrett Ladley <[email protected]>
    Co-authored-by: garrettladley <[email protected]>
    Co-authored-by: Alder Whiteford <[email protected]>

commit 928d567
Author: David Oduneye <[email protected]>
Date:   Sat Feb 17 15:15:34 2024 -0500

    script cleanup (#217)

commit e82aa62
Author: Michael Brennan <[email protected]>
Date:   Fri Feb 16 22:13:13 2024 -0500

    Club Vector Embeddings (#180)

    Co-authored-by: Garrett Ladley <[email protected]>
    Co-authored-by: garrettladley <[email protected]>

commit e319ab1
Author: Melody Yu <[email protected]>
Date:   Fri Feb 16 19:47:35 2024 -0500

    Club endpoint filters (#197)

    Co-authored-by: Zack Lassetter <[email protected]>
    Co-authored-by: Melody Yu <[email protected]>
    Co-authored-by: Garrett Ladley <[email protected]>
    Co-authored-by: garrettladley <[email protected]>

commit ba51de5
Author: Garrett Ladley <[email protected]>
Date:   Thu Feb 15 19:49:22 2024 -0500

    Testing: Club Tag (#216)

commit 8ae0892
Author: Garrett Ladley <[email protected]>
Date:   Thu Feb 15 16:25:01 2024 -0500

    Use Append Instead of Replace in Transactions (#215)

commit 7d874a1
Author: Garrett Ladley <[email protected]>
Date:   Thu Feb 15 12:29:18 2024 -0500

    Testing: Complete Membership | Delete Nonexistent Edge from 204 -> 404 (#213)

commit f806439
Author: Garrett Ladley <[email protected]>
Date:   Wed Feb 14 19:00:29 2024 -0500

    Testing: Complete Follower (#212)
DOOduneye added a commit that referenced this pull request Feb 20, 2024
commit a903b26
Author: David Oduneye <[email protected]>
Date:   Mon Feb 19 23:13:07 2024 -0500

    Frontend (#246)

commit cf87502
Author: Garrett Ladley <[email protected]>
Date:   Mon Feb 19 15:31:35 2024 -0500

    Fix: Backend CI Failing  (#243)

commit 7b0500b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:18:32 2024 -0500

    Bump @tanstack/react-query from 5.17.9 to 5.22.2 in /frontend/sac-mobile (#240)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 4e89a47
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:18:15 2024 -0500

    Bump zustand from 4.5.0 to 4.5.1 in /frontend/sac-mobile (#239)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit b040e5b
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:17:54 2024 -0500

    Bump github.com/garrettladley/mattress from 0.2.2 to 0.3.2 in /backend (#234)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit e611dcf
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:17:05 2024 -0500

    Bump gorm.io/gorm from 1.25.6 to 1.25.7 in /backend (#235)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 26ada9f
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:16:49 2024 -0500

    Bump expo from 50.0.6 to 50.0.7 in /frontend/sac-mobile (#238)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit a7498e2
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:16:21 2024 -0500

    Bump postcss from 8.4.33 to 8.4.35 in /frontend/sac-mobile (#237)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 37f2831
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:15:56 2024 -0500

    Bump gorm.io/driver/postgres from 1.5.4 to 1.5.6 in /backend (#233)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 5b0c484
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:15:31 2024 -0500

    Bump @react-navigation/native from 6.1.9 to 6.1.10 in /frontend/sac-mobile (#236)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit fda30ba
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:15:11 2024 -0500

    Bump @types/node from 20.11.17 to 20.11.19 in /frontend/sac-web (#232)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Garrett Ladley <[email protected]>

commit 9d3c7c7
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Date:   Mon Feb 19 15:14:50 2024 -0500

    Bump @types/react from 18.2.55 to 18.2.56 in /frontend/sac-web (#231)

    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

commit 882f0a9
Author: Garrett Ladley <[email protected]>
Date:   Sun Feb 18 22:39:59 2024 -0500

    CI: Bump Go to 1.22 (#229)

commit d904e21
Author: David Oduneye <[email protected]>
Date:   Sat Feb 17 15:33:20 2024 -0500

    string formatting (#223)

commit ca9d0b4
Author: David Oduneye <[email protected]>
Date:   Sat Feb 17 15:30:15 2024 -0500

    unauthorized when you have no cookies (#221)

commit a4e2e62
Author: Garrett Ladley <[email protected]>
Date:   Sat Feb 17 15:26:15 2024 -0500

    Fix CI: Backend Tests .env File Pathing (#220)

commit 65e6512
Author: Sunny <[email protected]>
Date:   Sat Feb 17 15:19:37 2024 -0500

    SAC-24 Event CRUD (#193)

    Co-authored-by: OJisMe <[email protected]>
    Co-authored-by: Olivier Ndjike Nzia <[email protected]>
    Co-authored-by: Garrett Ladley <[email protected]>
    Co-authored-by: garrettladley <[email protected]>
    Co-authored-by: Alder Whiteford <[email protected]>

commit 928d567
Author: David Oduneye <[email protected]>
Date:   Sat Feb 17 15:15:34 2024 -0500

    script cleanup (#217)

commit e82aa62
Author: Michael Brennan <[email protected]>
Date:   Fri Feb 16 22:13:13 2024 -0500

    Club Vector Embeddings (#180)

    Co-authored-by: Garrett Ladley <[email protected]>
    Co-authored-by: garrettladley <[email protected]>

commit e319ab1
Author: Melody Yu <[email protected]>
Date:   Fri Feb 16 19:47:35 2024 -0500

    Club endpoint filters (#197)

    Co-authored-by: Zack Lassetter <[email protected]>
    Co-authored-by: Melody Yu <[email protected]>
    Co-authored-by: Garrett Ladley <[email protected]>
    Co-authored-by: garrettladley <[email protected]>

commit ba51de5
Author: Garrett Ladley <[email protected]>
Date:   Thu Feb 15 19:49:22 2024 -0500

    Testing: Club Tag (#216)

commit 8ae0892
Author: Garrett Ladley <[email protected]>
Date:   Thu Feb 15 16:25:01 2024 -0500

    Use Append Instead of Replace in Transactions (#215)

commit 7d874a1
Author: Garrett Ladley <[email protected]>
Date:   Thu Feb 15 12:29:18 2024 -0500

    Testing: Complete Membership | Delete Nonexistent Edge from 204 -> 404 (#213)

commit f806439
Author: Garrett Ladley <[email protected]>
Date:   Wed Feb 14 19:00:29 2024 -0500

    Testing: Complete Follower (#212)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants