Skip to content

v0.8.0

Compare
Choose a tag to compare
@jpham005 jpham005 released this 18 Oct 06:00
· 50 commits to main since this release

μ‹ κ·œ κΈ°λŠ₯ ✨

  • Project 에 pdfUrl μΆ”κ°€
type Project {
  pdfUrl: String
  # ...
}
  • ProjectPreview 에 difficulty μΆ”κ°€
type ProjectPreview {
  difficulty: Int
  # ...
}
  • getHomeCoalition 에 winCountPerCoalition μΆ”κ°€
query {
  getHomeCoalition {
    winCountPerCoalition: IntPerCoalitionDateRanged!
  }
}
  • λͺ¨λ“  LeaderboardElement λ₯Ό λ°˜ν™˜ν•˜λŠ” Query 에 promoList μΆ”κ°€
type Promo {
  promo: Int!
  beginAt: DateTime!
  userCount: Int!
}

query {
  getLeaderboardSomething {
    promoList: [Promo!]!
}
  • λͺ¨λ“  LeaderboardElement λ₯Ό λ°˜ν™˜ν•˜λŠ” Query 에 promo 인자 μΆ”κ°€
type GetLeaderboardElementArgs {
  promo: Int
  # ...
}

query {
  getLeaderboardSomething {
    byDateTemplate (promo: 1) {
      # ...
    }
  }
}
  • getLeaderboardComment μΆ”κ°€
query {
  getLeaderboardComment {
    promoList: [Promo!]!
    byDateTemplate: LeaderboardElementDateRanged!
  }
}

κΈ°μ‘΄ api λ³€κ²½ 사항 ♻️

  • getHomeTeam 의 teamCloseRecords 의 λ°˜ν™˜ κ°’μ—μ„œ exam 을 μ œμ™Έ

버그 μˆ˜μ • πŸ›

  • 42 μ„œμšΈ 학생이 μ•„λ‹ˆλ©΄ λ‘œκ·ΈμΈμ„ ν•  수 μ—†λ˜ 문제 μˆ˜μ •
  • Internship λ“± ν‰κ°€μžλ₯Ό νŠΉμ •ν•  수 μ—†λŠ” 경우 μƒκΈ°λ˜ 문제 μˆ˜μ •
  • getPersonalEval 의 destinyUserRanking μ—μ„œ ν‰κ°€μžμ™€ νŒ€μ› 사이에 점수 집계가 μ œλŒ€λ‘œ 이루어지지 μ•Šλ˜ 문제 μˆ˜μ •
  • getHomeCoalition 의 scoreRecordsPerCoalition μ—μ„œ νšλ“ν•œ μ½”μ•Œλ¦¬μˆ‘ μ μˆ˜κ°€ μ—†λŠ” 경우 ν•΄λ‹Ή 월에 λŒ€ν•œ 기둝이 λ°˜ν™˜λ˜μ§€ μ•ŠλŠ” 문제 μˆ˜μ •

지원 쀑단 πŸ—‘οΈ

μ‚­μ œ πŸ”₯

μ„ΈλΆ€ λ³€κ²½ 사항 πŸ“

Full Changelog: v0.7.0...v0.8.0