CHANGES 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861
  1. 23.6.2
  2. ------
  3. ### Escalating Issues V1 (ongoing)
  4. This will allow marking an issue as archived until escalating.
  5. By: @scttcper (#51765, #51852, #52048, #51766, #51735, #51671, #51158, #51185, #51187)
  6. ### Grouping Release (2023-01-01 config)
  7. Added new language/platform specific stack trace grouping enhancements rules that should make the default grouping experience better. This includes JavaScript, Python, PHP, Go, Java and Kotlin.
  8. By: @armenzg (#51040)
  9. ### Search Shortcuts (ongoing)
  10. Make common searches more accessible and discoverable for users. [notion page](https://www.notion.so/sentry/Search-Shortcuts-fka-Assignee-Filter-on-Issue-Stream-648954e782d04805bc64f1983e5cbd16?pvs=4)
  11. By: @scttcper (#51564, #51565, #51194)
  12. ### Various fixes & improvements
  13. - meta(routing) Sync with product-owners.yml in security-as-code@4447d434 (#52367) by @getsantry
  14. - fix(ui): Set lazy calendar component type (#52381) by @scttcper
  15. - chore(gh-comments): Drop pr window to 7 days for rollout (#51837) by @AniketDas-Tekky
  16. - ref(autocomplete): convert test to tsx (#52357) by @JonasBa
  17. - feat(functions): Tune function trends default threshold (#52346) by @Zylphrex
  18. - fix(starfish): Time spent local was always querying light time spent (#52374) by @shruthilayaj
  19. - ref(tests): convert test to tsx (#52368) by @JonasBa
  20. - feat(slack): slack channel lookup via schedule message (#52034) by @chloeho7
  21. - feat(crons): Change crons groupcategory name (#52037) by @rjo100
  22. - feat(perf-detector-threshold-configuration) Added frontend changes for more threshold configurations. (#52262) by @Abdkhan14
  23. - fix(hc): Prevent exception from siloed_atomic (#52326) by @RyanSkonnord
  24. - feat(escalating-issues): Update MsTeams integration to use Group substates (#51756) by @NisanthanNanthakumar
  25. - ref(crons): Remove references to crons-issue-platform flag (#52036) by @rjo100
  26. - Ref(generic-metrics): set default for index-tag-values to False (#52370) by @john-z-yang
  27. - feat(github-comments): use internal feature flag (#52002) by @cathteng
  28. - fix(ui): Export named constants from forms (#52361) by @scttcper
  29. - fix(mute-metric-alerts): Use incident link in metric alert emails for muting (#52363) by @roggenkemper
  30. - feat(starfish): API module consistency and continuity updaes (#52347) by @edwardgou-sentry
  31. - fix(mute-metric-alerts): Add query params to incident redirect (#52362) by @roggenkemper
  32. - fix(github-comments): update option toggle copy (#52354) by @cathteng
  33. - nit: Update fly build config (#52301) by @nhsiehgit
  34. - ref: django 3.x does not pass None groups to views any more (#52341) by @asottile-sentry
  35. - meta(routing) Sync with product-owners.yml in security-as-code@3d4fceac (#52355) by @getsantry
  36. - ref: make app label an identifier (#52342) by @asottile-sentry
  37. _Plus 790 more_
  38. 23.6.1
  39. ------
  40. ### Various fixes & improvements
  41. - chore(hybrid-cloud): Fix get_webhook_payload_from_outbox classmethod (#51113) by @dashed
  42. - ref(js): Convert access.spec to tsx (#51106) by @evanpurkhiser
  43. - ref(js): Convert feature.spec to tsx (#51107) by @evanpurkhiser
  44. - ref(js): Convert breadcrumbs.spec to tsx (#51109) by @evanpurkhiser
  45. - ref(js): Convert dateTime.spec to tsx (#51111) by @evanpurkhiser
  46. - fix(crons): Properly send fingerprint array through issue platform (#51103) by @rjo100
  47. - ref(hc): Updates org deletion code to queue an org mapping outbox update (#51004) by @GabeVillalobos
  48. - meta: Snuba team owns the post process forwarder (#51090) by @lynnagara
  49. - ref: Remove dead code from post process forwarder (#51079) by @lynnagara
  50. - ref: Remove spammy debug logs (#51001) by @untitaker
  51. - fix: Use unified CLI for metrics indexer in devserver (#51046) by @untitaker
  52. - feat(mute-metric-alerts): Add mute button to metric alerts page (#50967) by @roggenkemper
  53. - fix(hc): Serialize the organization via RPC to json (#51078) by @corps
  54. - fix(compactSelect): Escape quotes inside option values (#51007) by @vuluongj20
  55. - fix(hybridcloud) Drain outbox after transaction completes (#51059) by @markstory
  56. - feat(gh-comments): Queuing Logic (#50865) by @AniketDas-Tekky
  57. - Added pretty printing to dump command (#51065) by @kneeyo1
  58. - chore(ui): Upgrade to typescript 5.1 (#51073) by @scttcper
  59. - feat(crons): Add hover to rows (#51012) by @evanpurkhiser
  60. - feat(ts): Add LinkButton alias (#51013) by @evanpurkhiser
  61. - feat(starfish): Changes the web service view throughput chart to be a line chart (#51053) by @edwardgou-sentry
  62. - fix(starfish): use span.self_time instead of span.duration (#51051) by @DominikB2014
  63. - feat(debug): Add Metric Alert Trigger (#51060) by @roggenkemper
  64. - fix(ui): Remove xAxis boundaryGap from profilingMeasurements (#51008) by @scttcper
  65. _Plus 14 more_
  66. 23.6.0
  67. ------
  68. ### Escalating Issues V1 (ongoing)
  69. This will allow marking an issue as archived until escalating.
  70. By: @scttcper (#50456)
  71. ### Escalating Issues V2 (EA) (ongoing)
  72. This is a placeholder milestone for tracking post-v1 work for escalating issues.
  73. See the RFC: https://github.com/getsentry/rfcs/blob/main/text/0078-escalating-issues.md
  74. There's also discussions about escalation in here:
  75. https://github.com/getsentry/sentry/discussions/43039
  76. V2 will focus on moving ongoing issues (upcoming) into the state archived-until-escalating after an issue being in the `ongoing` state for 14 days.
  77. By: @scttcper (#50896)
  78. ### JS Project Cleanup (ongoing)
  79. By: @scttcper (#50684, #50682, #50670)
  80. ### Various fixes & improvements
  81. - fix(issues): Switch to item kind on search autocomplete (#51045) by @scttcper
  82. - feat(consumer): Make max poll time configurable (#51020) by @ayirr7
  83. - fix(api) Don't fail on invalid queries to organization_teams endpoint (#51042) by @markstory
  84. - feat(starfish): Cleanup (#50957) by @DominikB2014
  85. - feat(hybridcloud) Run celery workers for each silo (#50821) by @markstory
  86. - fix(hybrid-cloud): Allow enums to serialize in RPC calls (#50913) by @mikejihbe
  87. - ref: Make model cache replica db preference configurable (#51027) by @beezz
  88. - fix(crons): Properly specify occurrence data (#50974) by @rjo100
  89. - ref(starfish): Remove all references to scraped data SQL (#51033) by @gggritso
  90. - feat(graphql): Add has_graphql_request analytics property to issue/event (#50949) by @malwilley
  91. - fix(perf-issues): Require space in N+1 ext span description (#50994) by @mjq-sentry
  92. - fix(starfish): issues table reloads when span type changes (#50970) by @DominikB2014
  93. - feat(dynamic-sampling): Improve AM2 compatibility check (#51039) by @iambriccardo
  94. - ref(replay): Deduplicate components used in Replay Details>Error & Network tabs (#50884) by @ryan953
  95. - fix(traces): Return empty array when accessing offender span ids (#51037) by @narsaynorath
  96. - feat(discover-tags): Add page_size and cursor to endpoint (#50971) by @narsaynorath
  97. - fix(hybrid-cloud): Fix normalizeUrl (#51014) by @dashed
  98. - feat(starfish): Switch use_case_id for spans (#50757) by @wmak
  99. - fix(mocks) Fix load-mocks usage or OrganizationMember (#50942) by @markstory
  100. - fix(profiling): Ensure there are symbolicated frames for profile (#50999) by @Zylphrex
  101. - fix(starfish): Special cursor name for span table cursor (#50966) by @shruthilayaj
  102. - feat(starfish): Span category chart error and loading status (#50946) by @shruthilayaj
  103. - ref(starfish): Remove scraped data query fallbacks (#50972) by @gggritso
  104. - fix(native/unreal): Don't overwrite a previously set event level (#50717) by @bitsandfoxes
  105. _Plus 669 more_
  106. 23.5.2
  107. ------
  108. ### Escalating Issues V1 (ongoing)
  109. This will allow marking an issue as archived until escalating.
  110. By: @scttcper (#50020), @armenzg (#49907)
  111. ### Issue States and Filters (ongoing)
  112. By: @scttcper (#49642, #49626, #49517, #49587, #49582)
  113. ### Various fixes & improvements
  114. - feat(replay): Change min version in replay onboarding (#50072) by @billyvg
  115. - bug(replays): Fix Replay Search box overflow/wrapping (#50074) by @ryan953
  116. - feat(replays): add replay clicks field to replay index endpoint (#49873) by @JoshFerge
  117. - fix(analytics): Change actor_id to user_id in slack status analytic (#49966) by @jangjodi
  118. - dep(relay): Upgrade librelay to 0.8.25 (#50063) by @iker-barriocanal
  119. - chore(HC): Remove org mapping write paths in preparation of organization mapping updates (#50015) by @GabeVillalobos
  120. - feat(escalating-issues): Define analytic for escalating feedback (#50000) by @jangjodi
  121. - chore(profiling): Add referrers to profiling queries frontend (#49923) by @Zylphrex
  122. - feat(starfish) Hook up span view filter selectors to production data (#49987) by @gggritso
  123. - fix(hybridcloud) Fix serialization errors in RPC responses (#49922) by @markstory
  124. - feat(dashboar-widget-description) Added description field to Widget model (#49992) by @Abdkhan14
  125. - fix(starfish) Small fixes to spans table (#50001) by @gggritso
  126. - chore(profiling) Add referrers to profiling queries backend (#49924) by @Zylphrex
  127. - Revert "ref(project_creation): Add project deletion to the go back button (#49844)" (fda9548a) by @getsentry-bot
  128. - ref(sessionstorage): use wrapper (#50051) by @JonasBa
  129. - ref(project_creation): Add project deletion to the go back button (#49844) by @priscilawebdev
  130. - feat: Return how an artifact was resolved (#49959) by @loewenheim
  131. - fix(clusterer): Fix clusterer datasource in test endpoint (#50040) by @iker-barriocanal
  132. - ref(spans): Sample all discovered rules (#49970) by @iker-barriocanal
  133. - ref(js): Remove unnecessary AsyncComponent props (#50034) by @evanpurkhiser
  134. - ref(js): Remove unnecessary extends AsyncComponentProps (#50031) by @evanpurkhiser
  135. - fix(dynamic-sampling): Fix logging with missing parameter (#50038) by @iambriccardo
  136. - fix(js): Avoid anchor nesting in monitor edit page (#50026) by @evanpurkhiser
  137. - ref(js): Add IGNORED_SPANS_BY_DESCRIPTION in initializeSdk (#50025) by @evanpurkhiser
  138. _Plus 268 more_
  139. 23.5.1
  140. ------
  141. ### Issue States and Filters (ongoing)
  142. By: @scttcper (#49578, #49157)
  143. ### JS Project Cleanup (ongoing)
  144. By: @scttcper (#49381, #49255, #49210, #49159)
  145. ### Various fixes & improvements
  146. - fix(hc): Change integration search endpoint to control silo (#49589) by @RyanSkonnord
  147. - fix(starfish): Zerofill round up (#49598) by @shruthilayaj
  148. - feat(starfish): Update endpoint overview to be consistent (#49607) by @shruthilayaj
  149. - ref(performance): Move metrics histogram outlier filtering (#48731) by @mjq-sentry
  150. - feat(starfish): Add top endpoints chart to web service view (#49603) by @shruthilayaj
  151. - feat(starfish): Fix span summary chart styling (#49463) by @0Calories
  152. - feat(starfish): Updated WSV span group chart (#49499) by @shruthilayaj
  153. - ref(perf): Mark long-task with sentry-tracing-init (#49481) by @k-fish
  154. - chore(profiling): Add flags for more profiling features (#49461) by @Zylphrex
  155. - feat(starfish): Switch top graph to p50 (#49510) by @wmak
  156. - feat(starfish): adds synchronized axis markers to starfish charts (#49504) by @edwardgou-sentry
  157. - deps: bump profiling to alpha.6 (#49127) by @JonasBa
  158. - feat(create-project): Add framework selection modal tests (#49305) by @priscilawebdev
  159. - chore(discover-transactions-cell-action): Removed go to summary cell … (#49406) by @Abdkhan14
  160. - Add index on sentry_monitorchecking.date_added to avoid seq scans during cleanup (#49310) by @beezz
  161. - Add a utility to query the memory usage percentage of a configured redis cluster (#49459) by @Swatinem
  162. - ref(createProject): convert test from jsx to tsx (#49304) by @priscilawebdev
  163. - ref(project-creation): Convert overview from class to func (#49303) by @priscilawebdev
  164. - feat(project-creation): Add framework selection modal (#49300) by @priscilawebdev
  165. - chore(js): Use FormFieldProps vs FormField['props'] (#49591) by @evanpurkhiser
  166. - feat(hybrid-cloud): Update api invite helper (#48829) by @dashed
  167. - chore(js): Convert Form to a FC (#49525) by @evanpurkhiser
  168. - ref(js): Convert SentryAppExternalIssueForm for a FC (#49581) by @evanpurkhiser
  169. - feat(issue-states): auto transition new and regressed issues to ongoing (#49522) by @barkbarkimashark
  170. _Plus 306 more_
  171. 23.5.0
  172. ------
  173. ### Escalating Issues V1 (ongoing)
  174. This will allow marking an issue as archived until escalating.
  175. By: @scttcper (#48498, #47408), @armenzg (#48257, #48369, #48332, #48272, #48247, #48102, #48104, #47626, #47822, #47625), @jangjodi (#47954, #47843, #47716, #47601, #47593, #47586, #47578, #47496, #47419), @snigdhas (#47789, #47681, #47437), @NisanthanNanthakumar (#47799, #47749)
  176. ### Issue States and Filters (ongoing)
  177. By: @scttcper (#48047), @barkbarkimashark (#47691, #48042, #47881, #48043, #47753, #47720), @snigdhas (#48289, #47909, #48164, #47785, #47832, #47689, #47687, #47604, #47603, #47420)
  178. ### JS Project Cleanup (ongoing)
  179. By: @lobsterkatie (#49060, #49045), @scttcper (#48873, #48883, #48841, #48825, #48379)
  180. ### Various fixes & improvements
  181. - fix(onboarding): Add missing `useEffect` dependency (#49105) by @lobsterkatie
  182. - ref(api): Rename `handleXhrErrorResponse` to `getXhrErrorResponseHandler` (#49100) by @lobsterkatie
  183. - chore(starfish): Remove the count if query (#49097) by @shruthilayaj
  184. - fix(issue-platform): Fix `get_event_by_id` to correctly return occurrence information for transactions (#49059) by @wedamija
  185. - feat(starfish): Compare span samples to p50 baseline in table column (#48959) by @0Calories
  186. - feat(source-maps): adds new case for source map debugging (#49061) by @scefali
  187. - feat(starfish): Add releases to db module (#48782) by @wmak
  188. - ref(trends): Impose strict top event limit (#49098) by @udameli
  189. - feat(replays): Log to stdout when a slow click event is detected (#48775) by @cmanallen
  190. - fix(txnames): Revert high threshold for running the clusterer (#49087) by @jjbayer
  191. - instr(txnames): Count number of discovered rules (#49085) by @jjbayer
  192. - Allow defining different symbolicator for JS LPQ (#49072) by @Swatinem
  193. - feat(transaction-summary): Add analytics to track biases sufficiency assessment (#48865) by @priscilawebdev
  194. - chore(hybrid-cloud): save outbox messages when creating them for org members (#49055) by @dashed
  195. - feat(api): Allow overriding default pagination limits for testing (#49056) by @evanpurkhiser
  196. - feat(js): Add useMembers hook (#49043) by @evanpurkhiser
  197. - feat(issues): Add archived issue tag (#49044) by @scttcper
  198. - fix(issues): Remove resolve/archive/ignore action icons (#49058) by @scttcper
  199. - ref(pageFilters): Add ability to disable persistence (#49048) by @vuluongj20
  200. - ref(js): Export useTeams as a named export (#49052) by @evanpurkhiser
  201. - chore(roles): Pixel Matters for Project/Team Settings Pages (#49042) by @leedongwei
  202. - ref(hc): Create ControlOption to support cross silo options (#48833) by @corps
  203. - chore(issue-platform): Remove project level option for creating issues via platform (#48911) by @wedamija
  204. - fix(issue-states): increase time limits for auto transitioning to ongoing issues (#49033) by @barkbarkimashark
  205. _Plus 1059 more_
  206. 23.4.0
  207. ------
  208. ### Codecov Integration V2
  209. This is the work post-MVP release for the Codecov Integration, with UI and performance improvements and a new CTA.
  210. By: @snigdhas (#46523, #46463, #46460, #46420, #46421, #46416, #46414, #46401, #46294), @scttcper (#46234), @armenzg (#46257)
  211. ### JavaScript SDK Dynamic Loader (ongoing)
  212. By: @mydea (#46996, #46995, #46994)
  213. ### Escalating Issues V1 (ongoing)
  214. This will allow marking an issue as archived until escalating.
  215. By: @jangjodi (#47333, #46636), @snigdhas (#47129, #47039, #46845), @barkbarkimashark (#47101, #47100, #47094, #47058, #47053), @armenzg (#46517), @scttcper (#46705, #46639), @NisanthanNanthakumar (#46205, #45971)
  216. ### Various fixes & improvements
  217. - fix(crons): Pass environment to edit monitor page (#47435) by @davidenwang
  218. - chore(js): Convert PackageLink to a FC (#47299) by @evanpurkhiser
  219. - chore(deps): bump cronstrue from 2.23.0 to 2.26.0 (#47431) by @dependabot
  220. - feat(worflow): Track unmerge issue usage (#47423) by @scttcper
  221. - feat(rulesnooze): Update endpoint to include info about if snooze is for all (#47414) by @roggenkemper
  222. - feat(analytics): Add user feedback info to issue analytics (#47296) by @malwilley
  223. - fix(issue-platform): Fix bug where searching by issue shortname in discover returns too many results (#47406) by @wedamija
  224. - feat(perf-issues): initialize giant http payload detector (#47264) by @DominikB2014
  225. - feat(rulesnooze): Don't notify if rule is snoozed (#47197) by @roggenkemper
  226. - feat(trends): Update the breakpoint endpoint and request shape (#47412) by @udameli
  227. - Document 'download' query parameter (#47247) by @alyssa-glean
  228. - feat(replays): Add replays/:id/clicks/ endpoint for searching for click node and timestamp metadata (#47332) by @cmanallen
  229. - feat(code mapping): Derive code mappings for more distinct issues (#47345) by @lobsterkatie
  230. - chore(profiling): End profiling beta alert (#47249) by @Zylphrex
  231. - feat(profiling): Link from profile summary to transaction summary (#47328) by @Zylphrex
  232. - chore(perf): Remove old feature flag (#47394) by @udameli
  233. - feat(releasehealth): Switch mget to get for Redis Cluster compatibility (#46210) by @ayirr7
  234. - fix(breadcrumbs): Resize breadcrumb rows when expanding object properties (#47369) by @malwilley
  235. - ref(escalating-issues): Add logs and increase freq of cron job (#47403) by @jangjodi
  236. - deps(ui): Upgrade to TypeScript v5 (#47405) by @scttcper
  237. - feat(email): Add X-SMTPAPI category to email headers (#47352) by @mbauer404
  238. - chore(js): Add comment to js-sdk-loader eslint config (#47340) by @evanpurkhiser
  239. - fix(ui): Check type is number when using `>` `<` (#47360) by @scttcper
  240. - feat(hc): Send and receive RPCs over network (#47046) by @RyanSkonnord
  241. _Plus 745 more_
  242. 23.3.1
  243. ------
  244. ### Various fixes & improvements
  245. - fix(dynamic-sampling):Set low volume transaction boost default to True (#46179) by @RaduW
  246. - feat(replays): Add backend support for `session-replay-network-details` feature (#46200) by @ryan953
  247. - fix(roles): check for existence of org roles from team (#46197) by @cathteng
  248. - feat(escalating-issues): Add escalating group status (#45965) by @NisanthanNanthakumar
  249. - feat: Add a simple endpoint to lookup artifacts (#45757) by @Swatinem
  250. - fix(profiling): fix profiling timeout (#46193) by @JonasBa
  251. - fix(db-issue): Add db detector (#46154) by @wmak
  252. - chore(hybrid-cloud): Add outbox_runner to outbox tests (#46155) by @dashed
  253. - chore(hybrid-cloud): Update user type for sync_assignee_outbound (#46160) by @dashed
  254. - ref(profiling): Replace DataDog metric by a Sentry tag (#46156) by @phacops
  255. - fix(dashboards): Clear GroupStore when unmounting dashboard (#46189) by @edwardgou-sentry
  256. - fix(profiling): Show p75 only for suspect functions table (#46140) by @Zylphrex
  257. - feat(flag): Add flag for onboarding product selection - (#46184) by @priscilawebdev
  258. - ref(sourcemaps): Add date_uploaded field to bundle (#46172) by @iambriccardo
  259. - fix(sourcemaps): Change reverse sql type (#46180) by @iambriccardo
  260. - ref(sourcemaps): Remove date_last_accessed field from db (#46118) by @iambriccardo
  261. - chore(oss): add license to api docs spectacular ports (#46164) by @JoshFerge
  262. - fix(test): fix flake when time rolls to the next day (#46166) by @barkbarkimashark
  263. - feat(issue-platform): Hook up noise reduction config to occurrence ingestion (#46159) by @wedamija
  264. - chore(issue-platform): Remove unused features (#46161) by @wedamija
  265. - fix(codecov): Change endpoint for has_integration check (#46127) by @snigdhas
  266. - fix(profiling): Typo in format name sampled vs sample (#46150) by @Zylphrex
  267. - chore: Add missing license for jsonfield (#46148) by @markstory
  268. - fix(workflow): Add `ref_fallback` to issue details analytics (#46125) by @scttcper
  269. _Plus 233 more_
  270. 23.3.0
  271. ------
  272. ### Stacktrace Codecov V2 (ongoing)
  273. This is the work post-MVP release.
  274. By: @armenzg (#44827)
  275. ### JavaScript SDK Dynamic Loader (ongoing)
  276. By: @AbhiPrasad (#44496)
  277. ### Various fixes & improvements
  278. - fix(ecosystem): Preserve codeowners filters on update (#45810) by @scttcper
  279. - chore(trace_view): Add perf issues to the mock trace (#45794) by @wmak
  280. - feat(dynamic-sampling): Add prioritise low volume transaction rules [TET-736] (#45635) by @RaduW
  281. - ref(onboarding): Update experiment segments (#45843) by @priscilawebdev
  282. - ref(onboarding): Update copy (#45830) by @priscilawebdev
  283. - ref(dynamic-sampling): Update Health Check copy (#45826) by @ale-cota
  284. - chore(commit-context): Flag cleanup (#45804) by @snigdhas
  285. - ref(compactSelect): Maintain menu width while searching (#45356) by @vuluongj20
  286. - ref(outcomes) Add methods to build outcomes queries without django (#45730) by @markstory
  287. - feat(compactSelect): Add optional menu footer (#45339) by @vuluongj20
  288. - ref(dynamic-sampling): Add onboarding experiement to the ds page (temp test) - (#45827) by @priscilawebdev
  289. - chore(view-hierarchy): Remove frontend feature flags (#45761) by @narsaynorath
  290. - chore(dashboards): Reintroduce release widget feature flag (#45791) by @shruthilayaj
  291. - fix (dyn-sampling): Change schedule interval for prioritise by project task [TET-788] (#45821) by @andriisoldatenko
  292. - chore(hybrid-cloud): Deprecate mediator destroyers (#45656) by @corps
  293. - feat(onboarding): Add view sample error button new design - (#45820) by @priscilawebdev
  294. - feat(onboarding): Add feature flag to control the View Sample Error button - (#45818) by @priscilawebdev
  295. - fix(onboarding): Fix issue when first error sent (#45817) by @priscilawebdev
  296. - feat(source-maps): Add debug ids UI - (#45711) by @priscilawebdev
  297. - feat(sourcemaps): Add endpoint for listing all artifact bundles of a project (#45751) by @iambriccardo
  298. - chore(hybrid-cloud): Backfill installation_id to service hooks (#45800) by @corps
  299. - fix(issue-platform): Explicitly pass `culprit` as part of the occurrence, and store `subtitle` correctly (#45809) by @wedamija
  300. - feat(crons): Explain crontab syntax in monitor form (#45801) by @davidenwang
  301. - ref(hybrid-cloud): Denormalize user avatars 1/3 (#45685) by @mikejihbe
  302. _Plus 792 more_
  303. 23.2.0
  304. ------
  305. ### Stacktrace Codecov MVP
  306. Related to https://github.com/getsentry/sentry/discussions/42399
  307. By: @snigdhas (#43819, #43667, #43675), @jangjodi (#43746)
  308. ### JavaScript SDK Dynamic Loader (ongoing)
  309. By: @AbhiPrasad (#44492, #44346, #44228)
  310. ### Various fixes & improvements
  311. - perf(sentry): Add optional referrer to query.search for granularity (#44585) by @k-fish
  312. - bug(replay): Do not render the list page until project data has loaded (#44623) by @ryan953
  313. - fix(ui) Fix navigation between customer-domain accounts (#44625) by @markstory
  314. - feat(codeowners): [BE] Allow project members to edit project owner rules (#44508) by @jangjodi
  315. - ref(heartbeat): Update modal copy (#44658) by @priscilawebdev
  316. - Reverts for INC-307 (#44654) by @beezz
  317. - bump(dynamic-sampling): Bump sentry-relay to 0.8.18 (#44648) by @iambriccardo
  318. - feat(contexts): Add OpenTelemetry context (#44605) by @AbhiPrasad
  319. - fix: Avoid logging a `bad_report` for .NET events (#44291) by @Swatinem
  320. - chore(hybrid-cloud): Api* => Rpc* (#44646) by @corps
  321. - ref(hybrid-cloud): Isolate alert rules functionality by silo (#44644) by @mikejihbe
  322. - fix(api): Don't try and convert_args when http_method_not_allowed (#44635) by @evanpurkhiser
  323. - ref(api): Consistent relative endpoints import (#44640) by @evanpurkhiser
  324. - feat(profile-issues): Add profile category/type to search autocomplete (#44548) by @malwilley
  325. - fix(ui): Bring back Australia timezone (#44634) by @evanpurkhiser
  326. - feat: Deprecate legacy post process forwarder (#44631) by @lynnagara
  327. - fix(api): Remove inclusion of CHECKIN_ID in monitor check-in POST (#44630) by @evanpurkhiser
  328. - fix(source-maps): fixes too many values to unpack error in ArtifactSource (#44624) by @roggenkemper
  329. - ref(rules): Catch environment not existing (#44553) by @ceorourke
  330. - feat(analytics): improve analytics for soure map debugging (#44626) by @scefali
  331. - ref(tabs): Export `Item` as property of `TabList` & `TabPanels` (#44620) by @vuluongj20
  332. - feat(ui): Switch translate tct return type to react element (#44610) by @scttcper
  333. - feat: adds tracking for setup wizard (#44619) by @scefali
  334. - feat(team-roles): Amend PUT on OrganizationMemberDetailsEndpoint (#44599) by @leedongwei
  335. _Plus 637 more_
  336. 23.1.1
  337. ------
  338. ### Post-GA fixes and improvements for derived code mappings
  339. This will track work that are known issues that will be handled after the GA.
  340. See related RFC: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  341. By: @armenzg (#43323, #43325, #43310)
  342. ### Stacktrace Codecov MVP (ongoing)
  343. Related to https://github.com/getsentry/sentry/discussions/42399
  344. By: @snigdhas (#43650, #43649, #43404, #43353, #43201), @jangjodi (#43032, #43517, #43407, #43116)
  345. ### Various fixes & improvements
  346. - ci(acceptance): Replace selenium finalizer with yield (#43711) by @mattgauntseo-sentry
  347. - test(profiles): test sample stats and raw weights across formats (#43685) by @JonasBa
  348. - fix(release_health) : bad granularity was causing limit validation error in MetricsLayer (#43729) by @RaduW
  349. - ref: upgrade structlog (#43680) by @asottile-sentry
  350. - ref(ui) Remove error for missing router context (#43693) by @markstory
  351. - ref(perf-issues): Increase unc asset duration threshold (#43722) by @k-fish
  352. - hotfix: handle empty series returns from get_series. (#43721) by @RaduW
  353. - Revert "feat(codecov): Get commit sha from Git blame (#42978)" (7d918eb7) by @getsentry-bot
  354. - feat(perf-issues) Add project options for consecutive db (#43701) by @DominikB2014
  355. - fix(perf-issues): ensure php is not allowed to detect issues (#43694) by @DominikB2014
  356. - feat(codecov): Get commit sha from Git blame (#42978) by @jangjodi
  357. - ref(mep): Allow up to 10 custom measurements (#43719) by @jan-auer
  358. - (perf-issues) Add detection rate project option to UI (#43698) by @DominikB2014
  359. - fix(txnames): Skip deleted projects (#43716) by @jjbayer
  360. - feat(release-health): Switch release health backend to MetricsLayer (#43545) by @RaduW
  361. - chore(hybrid-cloud): remove region to control, use outbox (#43361) by @corps
  362. - feat(hc): Use hybrid cloud services in AuthIdentityHandler (#43035) by @RyanSkonnord
  363. - fix(sourcemaps): ease check on valid url and add data for invalid url issue (#43709) by @roggenkemper
  364. - test(acceptance): Reduce flakiness by waiting for requests to complete (#43486) by @mattgauntseo-sentry
  365. - ref(hybrid-cloud): test for both urls in MonitorCheckinDetails (#43690) by @cathyteng17
  366. - ui(codecov): Fix codecov legend border (#43704) by @snigdhas
  367. - fix(tasks): Do not ignore exception by default (#43696) by @Zylphrex
  368. - ref: retry on 500s in docker pulls (#43700) by @asottile-sentry
  369. - Revert "CI(dispatch): Switch to merge commit sha where possible (#43570)" (f2dd50ad) by @getsentry-bot
  370. _Plus 285 more_
  371. 23.1.0
  372. ------
  373. ### Derived Code Mappings (GA Release - JS and Python)
  374. Python is in EA already. We will first add JS to EA and then GA both of them.
  375. For JS, this will only apply to stacktraces that have source maps applied, otherwise, it is not possible to derive code mappings.
  376. Read https://github.com/getsentry/rfcs/pull/16 for more details.
  377. By: @armenzg (#42302)
  378. ### Stacktrace linking and code mapping improvements (ongoing)
  379. Various improvements to configuring Code Mappings by a customer.
  380. This milestones is simply to track the various related PRs.
  381. By: @armenzg (#43105, #43104, #42810)
  382. ### Post-GA fixes and improvements for derived code mappings (ongoing)
  383. This will track work that are known issues that will be handled after the GA.
  384. See related RFC: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  385. By: @armenzg (#43265, #43199, #42554, #42510, #42544, #42540, #42511, #42487)
  386. ### Stacktrace Codecov Integration (ongoing)
  387. Related to https://github.com/getsentry/sentry/discussions/42399
  388. By: @snigdhas (#43114, #43025, #43024, #43015)
  389. ### Various fixes & improvements
  390. - Revert "fix(domains) Remove usage or params.orgId in search (#43205)" (2fc1398b) by @getsentry-bot
  391. - ref(js): Convert events/userFeedback to a FC (#43283) by @evanpurkhiser
  392. - feat(replays): Remove calendar icon from Replays list table (#43252) by @ryan953
  393. - feat(replays): Remove the icon from the "Open Replay" preview in Issues (#43251) by @ryan953
  394. - ref(ui): Visually improve PageHeadingQuestionTooltip (#43277) by @evanpurkhiser
  395. - chore(ui): Upgrade babel, babel-loader, core-ui (#43286) by @scttcper
  396. - ref(scim): Use transaction instead of span (#43287) by @AniketDas-Tekky
  397. - feat(modal) Consolidate close prevention props (#43258) by @malwilley
  398. - fix(integrations): Use services to get organization data (#43284) by @leeandher
  399. - fix(useOverlay): Only enable maxSize modifier when open (#43193) by @vuluongj20
  400. - fix(domains) Use routing params in join-request route (#43271) by @markstory
  401. - fix(integrations): Use organization_id for finding the integration (#43279) by @leeandher
  402. - ref(js): Remove default Button export (#43280) by @evanpurkhiser
  403. - ref(js): Consistent spacing in eventEntry (#43230) by @evanpurkhiser
  404. - ref(replays): Rename Replay API fields to be snake_case and new names (#43206) by @ryan953
  405. - feat(replays): Convert fields to snake-case and add additional query aliases (#43194) by @cmanallen
  406. - feat(anr-rate): Update ANR rate defaults on project details (#43248) by @shruthilayaj
  407. - bug: Fix import of button (#43272) by @ryan953
  408. - Revert "ref(js): Remove default Button export (#43254)" (9f77d654) by @getsentry-bot
  409. - ci: Skip pip install when we have a cache hit in venv action (#43267) by @mattgauntseo-sentry
  410. - security(codeql): set codeql to weekly scans, on prs, and on master b… (#43213) by @mdtro
  411. - revert-revert: feat(hybrid-cloud): Move Integration/OrgIntegration to Control and implement IntegrationService (#43183) by @leeandher
  412. - chore: Add $schema to package.json + tsconfig.json (#43235) by @evanpurkhiser
  413. - ref(js): Export named Alert (#43255) by @evanpurkhiser
  414. _Plus 621 more_
  415. 22.12.0
  416. -------
  417. ### Derived Code Mappings (EA release - Python only)
  418. This adds the ability of deriving code mappings automatically for all orgs using Python and Github at first.
  419. See RFC for details: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  420. By: @armenzg (#41562, #41523, #41466, #41464, #41384)
  421. ### Derived Code Mappings (GA Release - JS and Python) (ongoing)
  422. Python is in EA already. We will first add JS to EA and then GA both of them.
  423. For JS, this will only apply to stacktraces that have source maps applied, otherwise, it is not possible to derive code mappings.
  424. Read https://github.com/getsentry/rfcs/pull/16 for more details.
  425. By: @armenzg (#42293, #42249, #42155, #42161, #42147, #42130, #42082, #42069, #41777, #41933, #41909, #41794, #41771, #41733, #41706, #41718, #41639, #41671, #41648), @jangjodi (#42192)
  426. ### Stacktrace linking and code mapping improvements (ongoing)
  427. Various improvements to configuring Code Mappings by a customer.
  428. This milestones is simply to track the various related PRs.
  429. By: @scttcper (#41582, #41585, #41529, #41512, #41474, #41299, #41403, #41372), @snigdhas (#41465), @armenzg (#41409)
  430. ### Post-GA fixes and improvements for derived code mappings (ongoing)
  431. This will track work that are known issues that will be handled after the GA.
  432. See related RFC: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  433. By: @armenzg (#42348, #41857)
  434. ### Stacktrace linking: Mobile Support (ongoing)
  435. By: @jangjodi (#42117, #41936)
  436. ### Various fixes & improvements
  437. - ref(js): Remove enforceActOnUseLegacyStoreHook hack (#42370) by @evanpurkhiser
  438. - feat(java): Add feature flag for deobfuscating java exception values (#42353) by @edwardgou-sentry
  439. - feat(profiling): add profiling-flamechart-spans flag (#42357) by @eliashussary
  440. - feat(node): fix package for windows path (#42325) by @JonasBa
  441. - feat(profiling): add transaction context (#42347) by @JonasBa
  442. - ref(replays): Move replay-events-meta test into correct folder (#42324) by @ryan953
  443. - Revert "chore(routes): Remove support for deprecated pre-Sentry 10 routes" (#42374) by @dashed
  444. - chore(anr-rate): Add option for abnormal_mechanism extraction flag (#42367) by @shruthilayaj
  445. - chore(hybrid-cloud): test model decorators and fk breakage (#42254) by @corps
  446. - chore(transactions): Set the entity argument to default "false" (#42371) by @olksdr
  447. - ref(contexts): Convert chunck from class to function (#42246) by @priscilawebdev
  448. - feat(txnames): Sort rules in project options (#42372) by @jjbayer
  449. - chore(js): useApi in groupEventDetails (#42355) by @evanpurkhiser
  450. - fix(profiling): remove wasteful rect (#42351) by @JonasBa
  451. - feat(issues): Add frontend typings for issue occurrence data (#42329) by @malwilley
  452. - ref(hybrid-cloud): use organization_slug in MonitorCheckIns (#42356) by @cathyteng17
  453. - ref(replays): Create NetworkHeaderCell for Replay Details (#42240) by @ryan953
  454. - ref(profiling): rm profiling-onboarding-checklist feature flag (#42354) by @eliashussary
  455. - ref(replays): Refactor Replay network table sorting (#42235) by @ryan953
  456. - fix(profiling): fix zoom when frame is in view (#42350) by @JonasBa
  457. - feat(discover-quick-context): Added issue title (#42343) by @Abdkhan14
  458. - chore(hybrid-cloud): use organization_slug in MonitorDetails (#42300) by @cathyteng17
  459. - (perf-issues) add fingerprinting to consecutive db detector (#42339) by @DominikB2014
  460. - frontend(invite): update invite link helper text (#42344) by @mdtro
  461. _Plus 731 more_
  462. 22.11.0
  463. -------
  464. ### Derived code mappings (Internal Release) (ongoing)
  465. This milestones add support for creating Python code mappings automatically for orgs with the Github integration installed.
  466. This milestone initially focuses on Python projects.
  467. Future work described in this RFC: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  468. By: @snigdhas (#41147, #41036, #40882, #40973, #40934, #40881, #40717, #40528, #40465, #40271), @armenzg (#41131, #41067, #40892, #40781, #40764, #40729, #40671, #40461, #40190, #40101), @scttcper (#40593)
  469. ### Derived code mappings (EA release - Python only) (ongoing)
  470. This adds the ability of deriving code mappings automatically for all orgs using Python and Github at first.
  471. See RFC for details: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  472. By: @armenzg (#41313, #41199, #41132, #41125, #41083), @snigdhas (#41097, #41038, #41080, #41003, #41000, #40991, #40979)
  473. ### Various fixes & improvements
  474. - feat(profiling): Add release to profile payload (#41282) by @Zylphrex
  475. - fix(tests): escape `.` in regex passed to findByText (#41391) by @mdtro
  476. - test(js): Convert DashboardList to RTL (#41375) by @malwilley
  477. - test(js): Convert SentryApplicationDetails to RTL (#41378) by @evanpurkhiser
  478. - feat(profiling): profiling onboarding sidebar (#41322) by @eliashussary
  479. - feat(useStacktraceLink): add hook to fetch stack trace link (#41269) by @JonasBa
  480. - dep(profiling): Bump sentry sdk for updated profiler (#41324) by @Zylphrex
  481. - feat(analytics): Record analytics for first profile sent (#41315) by @Zylphrex
  482. - perf(users-endpoint): Improve users endpoint performance more (#41347) by @Zylphrex
  483. - fix(metrics): Use parameterize instead of for loop in test (#41316) by @iambriccardo
  484. - ref(perf-issues): Add projectoption for enabling individual detector (#41328) by @k-fish
  485. - ref(contexts): Prettify only known contexts - (#41379) by @priscilawebdev
  486. - ci(jest): regenerate jest-balance.json (#41377) by @getsentry-bot
  487. - fix(code-mappings): Always add a trailing backslash for codemappings (#41330) by @snigdhas
  488. - fix(replays): Adjust Replay Details layout(s) dimensions (#41331) by @jesus4497
  489. - test(js): Convert ManageDashboards test to RTL (#41352) by @malwilley
  490. - feat(monitors): Tag error events with monitor id (#41291) by @davidenwang
  491. - ref(access): Dataclass to represent (requires_sso, sso_is_valid) pairs (#41239) by @RyanSkonnord
  492. - test(js): Convert organizationAuthList to RTL (#41309) by @evanpurkhiser
  493. - feat(hybrid-cloud): Add /user-feedback/* Django route (#41326) by @dashed
  494. - test(js): Convert teamKeyTransactionButton to RTL (#41308) by @evanpurkhiser
  495. - Customize pip-compile header (#41334) by @atugushev
  496. - ref: fix typing in sentry.integrations.slack (#41314) by @asottile-sentry
  497. - feat(hybrid-cloud): Add /issues/* Django route (#41333) by @dashed
  498. _Plus 1017 more_
  499. 22.10.0
  500. -------
  501. ### Automatic code mappings for Python/Github projects (ongoing)
  502. This milestones add support for creating Python code mappings automatically for orgs with the Github integration installed.
  503. Future work described in this RFC: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  504. By: @armenzg (#39975, #39750)
  505. ### Various fixes & improvements
  506. - Revert "feat(commit-context): Refactor Issue Owner auto-assignment (#40048)" (#40081) by @wedamija
  507. - ref(emails): Update perf issue email subject (#40072) by @ceorourke
  508. - test(js): Convert AcceptOrganizationInvite to RTL (#39809) by @evanpurkhiser
  509. - ref: improve pin_github_action ref matching (#40067) by @asottile-sentry
  510. - test(ui): Convert SelectAsyncField test to RTL (#40060) by @malwilley
  511. - test(js): Convert TableField test to RTL (#40064) by @malwilley
  512. - deps(ui): Upgrade to jest v29 (#40070) by @scttcper
  513. - test: Use initialProps when testing hooks with reactHooks.renderHook (#39532) by @ryan953
  514. - feat(hybrid-cloud): Add a test for file upload (#39931) by @AniketDas-Tekky
  515. - feat(ui): Add aria-describedby to form inputs (#40037) by @evanpurkhiser
  516. - feat(commit-context): Refactor Issue Owner auto-assignment (#40048) by @NisanthanNanthakumar
  517. - chore(hybrid-cloud): ORM decorators updated. (#40022) by @corps
  518. - ref(email): Add performance issue alert email template (#39948) by @ceorourke
  519. - test(js): Rebalance tests (#40036) by @evanpurkhiser
  520. - fix(all-events) issue where events tab makes extra api call (#40056) by @DominikB2014
  521. - feat(all-events) Add minidump all events (#40049) by @DominikB2014
  522. - feat(perf_issues): Only send error issues to digests system (#40050) by @wedamija
  523. - feat(commit-context): Support GitLab (#39381) by @NisanthanNanthakumar
  524. - ref: Mark batching kafka consumer as deprecated (#40044) by @lynnagara
  525. - ref(gitlab): No need to show token (#40045) by @armenzg
  526. - Add all inclusive resources (#40047) by @0Calories
  527. - feat(charts): Add auto-generated aria labels (#39653) by @vuluongj20
  528. - fix(auth): Fix `device-failed` position (#40011) by @vuluongj20
  529. - feat(replays): Add Slowest Transaction Column To Transaction Replay Table (#39930) by @danecando
  530. _Plus 916 more_
  531. 22.9.0
  532. ------
  533. ### Various fixes & improvements
  534. - fix(js): Avoid constructing API inside fetchOrganizationDetails (#38859) by @evanpurkhiser
  535. - feat(codeowners): Add assignee dropdown codeowners copy (#38832) by @scttcper
  536. - test(ui): Convert project install tests to RTL (#38866) by @scttcper
  537. - feat(dashboards): widgets use mep setting provider to determine if requests should be metricsEnhanced or not (#38810) by @edwardgou-sentry
  538. - feat(replays): Change replay event tags type and update UI (#38604) by @jesus4497
  539. - ref: Continue typing eventstream (#38858) by @lynnagara
  540. - feat(sidebar): open up broadcasts if #whats-new is the hash (#38838) by @scefali
  541. - Added question tooltip beside processed baseline toggle. (#38875) by @Abdkhan14
  542. - feat(perf-issues): Add analytics event to count num of perf issues on issues stream page (#38876) by @0Calories
  543. - feat(metrics): Add `count_web_vitals` to metrics layer [TET-161] (#38873) by @ahmedetefy
  544. - feat(dashboard): Flip top level query filter flag (#38829) by @narsaynorath
  545. - ref(dashboards): Delete deprecated dashboard tests (#38872) by @edwardgou-sentry
  546. - chore(perf-issues): Add issue creation rate limiter metrics (#38874) by @udameli
  547. - ref(perf-issues): prettify test event JSON (#38871) by @mjq-sentry
  548. - feat(perf_issues): Make `GroupTagKeyValuesEndpoint` work with perf issues (#38865) by @wedamija
  549. - feat(profiling): add links to profiledetails (#38824) by @eliashussary
  550. - fix(perf-issues): N+1 with odd number of potential sources missed (#38862) by @mjq-sentry
  551. - feat(perf_issues): Default `sentry:performance_issue_creation_rate` to 1.0, and gate perf issue creation using `performance-issues-ingest` (#38864) by @wedamija
  552. - feat(perf_issues): Explicitly hide performance issues from search if feature flag is disabled (#38863) by @wedamija
  553. - feat(perf-issues): Add Performance Issues analytics (#38807) by @0Calories
  554. - feat(dashboards): Flip grid layout feature flag (#38827) by @narsaynorath
  555. - feat(metrics): Support rate for derived metric [TET-129 TET-127] (#38792) by @ahmedetefy
  556. - feat(metrics): Register new option [sns-1660] (#38816) by @untitaker
  557. - fix(datascrubbing): Limit sensitiveFields (#38803) by @jjbayer
  558. _Plus 746 more_
  559. 22.8.0
  560. ------
  561. ### Various fixes & improvements
  562. - fix(breadcrumbsFilter): Fix level tag crop issue (#37777) by @vuluongj20
  563. - ref(dropdownMenu): Mark as deprecated (#37319) by @vuluongj20
  564. - feat(workflow): Remove `duplicate-alert-rule` flag (#37489) by @scttcper
  565. - fix(dashboards): Fix custom metrics not displaying with units correctly in widget viewer(#37807) by @edwardgou-sentry
  566. - feat(replays): New column size and improve of a11y (#37765) by @jesus4497
  567. - ref(perf): Add duplicate detection on group hash (#37787) by @k-fish
  568. - fix(profiling): Profiling stats response for no projects (#37772) by @Zylphrex
  569. - feat(replays): Normalize resources with client expectations (#37708) by @cmanallen
  570. - feat(dashboard-filters): Save and expose releaseId in dashboards (#37779) by @narsaynorath
  571. - ref: upgrade confluent-kafka to 1.9.2 (#37733) by @asottile-sentry
  572. - pass resolution time to get_files_changed_in_releases() (#37800) by @komal-saini
  573. - don't call flagr on this feature flag since we'll be hard-coding the handler (#37799) by @barkbarkimashark
  574. - fix(suspect-resolutions): Get files changed in releases within 5h time-window (#37789) by @komal-saini
  575. - fix: explicitly define app label (#37795) by @MeredithAnya
  576. - fix(integrations): don't remove functions before they're actually removed (#37793) by @vpandiarajan20
  577. - ref(indexer): Add postgres, cloudspanner modules (#37771) by @MeredithAnya
  578. - Sentry Functions: Backend Webhook Integration (#37205) by @vpandiarajan20
  579. - ref(indexer): Deprecate DbKey (#37790) by @lynnagara
  580. - ref(suspect-resolutions): refactor code around (#37775) by @barkbarkimashark
  581. - fix(dashboard): Pass location to handleAddQueryToDashboard (#37785) by @shruthilayaj
  582. - fix(releases): filter out releases with projects by project membership instead of access (#37495) by @barkbarkimashark
  583. - feat(suspect-resolutions): track the suspect resolutions algo changes in analytics events (#37778) by @barkbarkimashark
  584. - Revert "fix(mep): Missed a tag resolver (#37768)" (#37782) by @k-fish
  585. - fix(ui): integrations text alignment (#37776) by @robinrendle
  586. _Plus 789 more_
  587. 22.7.0
  588. ------
  589. ### Various fixes & improvements
  590. - ref(replays): Refactor MouseTracking component into a react hook (#36710) by @ryan953
  591. - feat(release-activity): backend support for tracking release activity (#36608) by @barkbarkimashark
  592. - feat(grouping): Add support for automatic grouping updates (#36358) by @mitsuhiko
  593. - feat(replays): add session replays endpoints, proxy logic (#36631) by @JoshFerge
  594. - fix(dashboards): Open in Discover missing in Default Dashboard (#36728) by @narsaynorath
  595. - chore(deps): Upgrade @sentry/* JS SDKs from 7.6.0 to 7.7.0 (#36727) by @AbhiPrasad
  596. - fix(mep): Remove the granularity hacks (#36724) by @wmak
  597. - chore(deps): Bump eslint-config-sentry 1.94 -> 1.95 (#36693) by @NisanthanNanthakumar
  598. - fix(test) Allow the connection name to be defined by migration tests (#36712) by @markstory
  599. - fix(perf) Disabled performance settings if denied access (#36675) by @DominikB2014
  600. - fix: Remove potentially unnecessary pip installs (#36649) by @untitaker
  601. - fix: Fix unbound variable if DEVENV_NO_REPORT=1 (#36650) by @untitaker
  602. - test(issue-details): Fix issue details create comment test (#36715) by @Zylphrex
  603. - ref(tags): Refactor the Tags table so the rows are independant of the styled title (#36711) by @ryan953
  604. - fix(ci): include workdir to cache-dependency-path in setup-sentry (#36718) by @joshuarli
  605. - bug(replays): Remove the custom replays navTabs, use core nav which supports with dark-mode (#36709) by @ryan953
  606. - feat(replays): Cleanup unneeded tabs from the Replay Details page (#36706) by @ryan953
  607. - feat(alert): Create metric alerts on project creation (#36582) by @Neo-Zhixing
  608. - fix(devserver): Start both string indexers when metrics are enabled (#36682) by @untitaker
  609. - feat(profiling): Ingest profile call trees (#36268) by @Zylphrex
  610. - ref: replace legacy compat.map with list comprehensions (api) (#36694) by @asottile-sentry
  611. - feat(integrations): Endpoint for SentryFunctions creation page (#36557) by @vpandiarajan20
  612. - tests(mep): Add missing tests for entity subscription helper functions (#36689) by @wedamija
  613. - feat(mep): Add `PerformanceMetricsEntitySubscription` for use with MEP alerts (#36653) by @wedamija
  614. _Plus 760 more_
  615. 22.6.0
  616. ------
  617. ### Various fixes & improvements
  618. - ref: replace `import_submodules` with explicit `*` imports (#35677) by @asottile-sentry
  619. - ref: fix linting of fixtures namespace (#35684) by @asottile-sentry
  620. - ref(sentry app): Rewrite Sentry App Tests (#35664) by @ceorourke
  621. - feat(discover): Support sum function while querying metrics in discover (#35576) by @edwardgou-sentry
  622. - ref: re-enable pyc files now that we're on python 3 (#35678) by @asottile-sentry
  623. - ref: allow explicit relative imports `from .json` (#35676) by @asottile-sentry
  624. - fix(replays): fix error/durations on Replays for page >1 (#35647) by @SDaian
  625. - ref(virtualizedtree): compute startindex and avoid wasteful iterations (#35621) by @JonasBa
  626. - feat: Thread names (#35620) by @loewenheim
  627. - Revert "Revert "ref: simplify and type flake8 plugin (#35645)" (#35651)" (#35673) by @asottile-sentry
  628. - fix(cra-metrics): Count all users in metrics alerts (#34957) by @jjbayer
  629. - feat: Run csharp/il2cpp events through symbolicator (#35615) by @Swatinem
  630. - ref: upgrade boto* packages to fix conflicts (#34524) by @asottile-sentry
  631. - ref(stack-trace): Update header style (#35670) by @priscilawebdev
  632. - fix(relay): Defer cache invalidation up until after DB transaction (#35523) by @untitaker
  633. - feat(dashboard): Add field options for table cols to config (#35622) by @shruthilayaj
  634. - fix(projectconfig): Invalidation task deals with deleted project (#35668) by @flub
  635. - ref(stack-trace): Add new design changes - (#35617) by @priscilawebdev
  636. - chore(deps): bump @sentry/release-parser from 1.3.0 to 1.3.1 (#35657) by @dependabot
  637. - chore(deps): bump core-js from 3.22.7 to 3.23.1 (#35656) by @dependabot
  638. - ref(widget-builder): Replace Feedback Button with FeatureFeedback component (#35571) by @priscilawebdev
  639. - chore(deps): bump echarts from 5.3.1 to 5.3.3 (#35658) by @dependabot
  640. - build(deps): bump css-what from 5.0.0 to 5.1.0 (#35623) by @dependabot
  641. - build(deps-dev): bump @types/node from 17.0.38 to 17.0.42 (#35598) by @dependabot
  642. _Plus 746 more_
  643. 22.5.0
  644. ------
  645. ### Replays v0 (ongoing)
  646. By: @billyvg (#34407, #34388)
  647. ### Various fixes & improvements
  648. - ref(js): Convert DateTime to a FC (#34628) by @evanpurkhiser
  649. - chore: Update logo for dark or light theme (#34229) by @mattjohnsonpint
  650. - ref(js): Convert U2fContainer to a FC (#34630) by @evanpurkhiser
  651. - ref(js): Convert discover eventsV2 Breadcrumbs to a FC (#34629) by @evanpurkhiser
  652. - ref(js): Convert ProjectPerformanceContainer to a FC (#34624) by @evanpurkhiser
  653. - ref(js): Convert gridEditable/sortLink to a FC (#34615) by @evanpurkhiser
  654. - ref(js): Convert LoadingError to a FC (#34626) by @evanpurkhiser
  655. - ref(js): Convert UnlinkedAlert to a FC (#34632) by @evanpurkhiser
  656. - ref(js): Convert TagDistributionMeter to a FC (#34627) by @evanpurkhiser
  657. - style(js): Small formatting adjustment to projectSettingsLayout (#34625) by @evanpurkhiser
  658. - ref(js): Convert TeamAvatar to a FC (#34623) by @evanpurkhiser
  659. - ref(js): Convert ValueComponent to a FC (#34620) by @evanpurkhiser
  660. - ref(js): Convert BreadcrumbTitle to a FC (#34619) by @evanpurkhiser
  661. - feat(onboarding): Customized cards (#34603) by @Neo-Zhixing
  662. - ref(js): Convert OnboardingWizardSidebar to a FC (#34609) by @evanpurkhiser
  663. - chore(dashboard): Default RH field to crash_free_rate (#34285) by @shruthilayaj
  664. - fix(dashboard): Remove session.status as a filter tag (#34593) by @shruthilayaj
  665. - fix(discover): Fix bug preventing saving queries with equation (#34580) by @wmak
  666. - feat(crash_rate_alerts): Add logic to enforce session -> metric alerts (#34534) by @wedamija
  667. - feat(replays): Better console messages + add string formatting (#34501) by @billyvg
  668. - fix(dev): also patch invalid escape sequences in selenium.* (#34577) by @asottile-sentry
  669. - Revert "fix(notifications): Use `metrics_key` (#34572)" (04f013dd) by @getsentry-bot
  670. - ref(integrations): Update GH and GL feature descriptions (#34578) by @ceorourke
  671. - feat(alertWizard): Show My Projects in project selector in alert wizard (#34583) by @mikellykels
  672. _Plus 732 more_
  673. 22.4.0
  674. ------
  675. ### Replays v0 (ongoing)
  676. By: @ryan953 (#33313)
  677. ### Various fixes & improvements
  678. - debug(tests): Added some debugging for flakey ado test (#33632) by @AniketDas-Tekky
  679. - ref(rate limits): Tag DD metric w/ rate limit type (#33621) by @ceorourke
  680. - ref(access log): Add Datadog metrics (#33644) by @ceorourke
  681. - ref(reflux): remove index signature (#33407) by @JonasBa
  682. - feat(flamechart): allow rendering the chart on arbitrary x axis (#33577) by @JonasBa
  683. - fix(ui): typo on languages (#33628) by @23RoMax
  684. - fix(ui): Don't show project picker for alert wizard v3 (#33634) by @taylangocmen
  685. - JSON syntax and OpenAPI spec fixes, to silence (some) swagger/openapi codegen errors. (#28396) by @tesueret-msft
  686. - fix(alertStatus): Handle alert details page when no project (#33635) by @mikellykels
  687. - fix(rate limit): Format 429 response correctly (#33629) by @ceorourke
  688. - fix(workflow): Format metric date to number from query params (#33633) by @scttcper
  689. - fix(ui): Add % to crash free sessions tooltip (#33624) by @mikellykels
  690. - feat(replay): Implement the View in Fullscreen button (#33566) by @ryan953
  691. - feat(workflow): Tidy up projects page design (#33608) by @mikellykels
  692. - fix(sudo modal): no longer trying to log superuser access on sudo (#33622) by @maxiuyuan
  693. - feat(perf): Add MEP to transaction summary (#32773) by @k-fish
  694. - feat(dashboards): Update Release Health dataset to use sessions v2 (#33582) by @shruthilayaj
  695. - ref(alerts): Use Badge in team filter (#33596) by @vuluongj20
  696. - feat(onboarding): remove welcome page experiment and use new experience (#33616) by @scefali
  697. - feat(workflow): Add Undo to issue removal toast (#33249) by @mikellykels
  698. - ref(page-filters): All environments -> All env (#33568) by @davidenwang
  699. - ref(perf): Move long-tasks to app-wide (#33614) by @k-fish
  700. - fix(new-widget-builder-experience): Unnecessary dashboard visit requests (#33619) by @narsaynorath
  701. - ref(page-filters): Move issues sort options inside table (#33590) by @vuluongj20
  702. _Plus 771 more_
  703. 22.3.0
  704. ------
  705. ### Various fixes & improvements
  706. - feat(perf): Add MEP param to other landing requests (#32575) by @k-fish
  707. - feat(devenv): set sentry SDK default off if dsn not provided and relay off (#32569) by @JoshFerge
  708. - ref(dam): Use cols and aggregates (#32441) by @shruthilayaj
  709. - feat(mep): Introduce p100 to the metric query builder (#32570) by @wmak
  710. - feat(mep): Introduce the count_web_vitals functions to metrics (#32507) by @wmak
  711. - ref(sdk): Move back to 5000ms idleTimeout (#32564) by @k-fish
  712. - feat(dashboards): Widget Viewer beta badge and style (#32588) by @edwardgou-sentry
  713. - chore: Add team-web-backend as CODEOWNERS of SDK (#32033) by @sl0thentr0py
  714. - ref(ui): Improve uage of BookmarkStar (#32553) by @evanpurkhiser
  715. - test(js): Convert organizationGroupDetails/action to RTL (#32598) by @evanpurkhiser
  716. - chore(deps): bump pillow from 8.3.2 to 9.0.1 (#32552) by @dependabot
  717. - chore(js): Upgrade babel from 7.15 -> 7.17 (#32016) by @evanpurkhiser
  718. - feat(onboarding): Add onboarding welcome page experiment (#31733) by @scefali
  719. - feat(codeowners): Decode base64 CODEOWNERS contents to utf-8 (#32582) by @NisanthanNanthakumar
  720. - fix(projects): Use subText for project issues table's heading (#32597) by @vuluongj20
  721. - fix(projects): Use subText for project card's score title (#32595) by @vuluongj20
  722. - fix(ui): fixed size of open in issues button (#32573) by @robinrendle
  723. - fix(ui): copy of alert details chart (#32587) by @robinrendle
  724. - ref(ui): Make small UI changes to Button component (#31903) by @vuluongj20
  725. - ref(page-filters): Add `alignDropdown` prop to environment selector (#32461) by @vuluongj20
  726. - fix(tests): Another attempt to reduce flakiness of event frequency tests (#32580) by @wedamija
  727. - fix(dashboards): Don't display edit button in Widget Viewer for prebuilt dashboards (#32567) by @edwardgou-sentry
  728. - fix(design): Fix code css definition (#32589) by @dashed
  729. - fix(discover): Add to Dashboard test from a Discover Query (#32577) by @edwardgou-sentry
  730. _Plus 605 more_
  731. 22.2.0
  732. ------
  733. ### Various fixes & improvements
  734. - ref(ui) Move forms out of views/settings/components (#31785) by @markstory
  735. - feat(perf): Show link to docs when some web vitals data is missing (#31764) by @0Calories
  736. - feat(dashboard): Add duplicate widget button in dashboard edit mode (#31776) by @edwardgou-sentry
  737. - feat(metrics): Add metrics to series transformer (#31783) by @matejminar
  738. - ref(new-widget-builder-experience): Add visualization & query fields (#31786) by @priscilawebdev
  739. - feat(profiling): add flamegraph tooltip (#31663) by @JonasBa
  740. - ref(endpoints): SentryApp endpoints module (#31749) by @mgaeta
  741. - feat(ui): Add empty state for for review tab (#31782) by @taylangocmen
  742. - ref(models): Move more models to submodules (#31583) by @mgaeta
  743. - Select weekly email template based on feature flag (#31802) by @Neo-Zhixing
  744. - feat(workflow): Add alert-rule-status-page flag (#31796) by @scttcper
  745. - fix(perf): Transaction is missing in perfForSentry (#31801) by @k-fish
  746. - feat(codeowners): add api owners group to CODEOWNERS (#31739) by @JoshFerge
  747. - meta(gha): Deploy workflow issue-routing-helper.yml (#31798) by @chadwhitacre
  748. - chore(auth): Enable automatic IdP migration for all users (#31774) by @RyanSkonnord
  749. - feat(ratelimits): Turn on rate limit enforcement (#31789) by @AniketDas-Tekky
  750. - ref(perf): Switch VC component to use perf.now (#31795) by @k-fish
  751. - ref(api): Refactor organization_member_team_details (#31751) by @RyanSkonnord
  752. - fix(pagerduty): Fix logging params (#31794) by @ceorourke
  753. - feat(dashboards): widget viewer modal feature flags (#31792) by @edwardgou-sentry
  754. - feat(reports): Include transactions in project series histogram (#30839) by @Neo-Zhixing
  755. - feat(apidocs): document SCIM member index post with new tooling (#31695) by @JoshFerge
  756. - feat(apidocs): document SCIM member index get with new tooling (#31694) by @JoshFerge
  757. - fix(alert-rule-action): Initialize formdata with existing values (#31710) by @NisanthanNanthakumar
  758. _Plus 502 more_
  759. 22.1.0
  760. ------
  761. ### Frontend Deploys (ongoing)
  762. By: @billyvg (#28878)
  763. ### Python: Add support for Apple arm64 development (ongoing)
  764. Apple started moving away from their Intel based chipset to arm64 chipsets (aka as Apple Silicon).
  765. In order to do Sentry development on this new architecture we need to do various changes to Sentry's development environment. Some of these changes include using a different Python version (arm64 support was added on Python 3.8.10), upgrading Python packages and hosting some Python wheels that third-party maintainers are not yet releasing.
  766. By: @armenzg (#30071, #29739, #29449, #29315, #29013, #28769, #28607)
  767. ### Docker: Add support for Apple arm64 development (ongoing)
  768. In order to do development for Sentry, we need to spin up various Docker containers.
  769. Apple is moving away from Intel based chipset to arm64 chipsets (aka Apple Silicon).
  770. This milestones track all work required to make sure we can still use these development services on Apple's arm64 architecture.
  771. By: @armenzg (#29494, #29293, #29284, #29157, #29081, #29117, #29084, #28672, #28724)
  772. ### Connecting Dashboards and Discover (ongoing)
  773. Open a Dashboard widget in Discover. Add a Discover Query to a Dashboard.
  774. By: @edwardgou-sentry (#28699, #28827, #28745, #28637)
  775. ### Various fixes & improvements
  776. - ref(ratelimit): Added a config and changed a default (#31141) by @AniketDas-Tekky
  777. - feat(dev): Fix `jest --watch` (#31138) by @billyvg
  778. - ref(auth): Increase sample rate to 1.0 on idpmigration.* metrics (#31139) by @RyanSkonnord
  779. - ref(pageFilters): Constrict types on updateParams better (#31073) by @evanpurkhiser
  780. - feat(notifications): Nudge Notifications (#30409) by @mgaeta
  781. - fix(ui): Team details doesn't load depending on navigation (#31081) by @mikellykels
  782. - fix(snuba-tests): wrap tag key in Column (#31137) by @MeredithAnya
  783. - test(ui): Convert globalSelectionLink to RTL (#31007) by @scttcper
  784. - fix(suspect-spans): Make sure to query for frequency column (#31134) by @Zylphrex
  785. - fix(echarts): Remove type casting from MapSeries (#31130) by @scttcper
  786. - ref(webhooks): Use ApiClient (#31127) by @ceorourke
  787. - fix(dashboard): Set line height on BigNumber to avoid clipping (#31136) by @narsaynorath
  788. - fix(echarts): Use default echarts bar series type (#31129) by @scttcper
  789. - fix(teamStats): Adjust gap between bar charts (#31119) by @scttcper
  790. - fix(dashboards): TopN widgets Open in Discover opens with TopN display type (#31120) by @edwardgou-sentry
  791. - ref(metrics): Consolidate wrappers around string indexer (#31051) by @untitaker
  792. - ref(performance-metrics): Port failure Rate sidebar widget - Summary to metrics (#31014) by @priscilawebdev
  793. - feat(profiling): move flamegraph and differential flamegraph (#30910) by @JonasBa
  794. - ref(ui): Extract LoadingTriangle from LoadingIndicator (#31118) by @evanpurkhiser
  795. - ref(notifications): Prepare Slack for sending Nudges. (#30765) by @mgaeta
  796. - ref(integrations): Split up large file (#30786) by @mgaeta
  797. - ref(analytics): Analytics Refactor + Types (#30555) by @mgaeta
  798. - fix(teamStats): Fix link to alert details from triggered (#31124) by @scttcper
  799. - ref(sentry apps): Don't raise IgnoreableSentryAppError (#31033) by @ceorourke
  800. _Plus 2051 more_
  801. 21.12.0
  802. -------
  803. ### Frontend Deploys (ongoing)
  804. By: @billyvg (#28878)
  805. ### Python: Add support for Apple arm64 development (ongoing)
  806. Apple started moving away from their Intel based chipset to arm64 chipsets (aka as Apple Silicon).
  807. In order to do Sentry development on this new architecture we need to do various changes to Sentry's development environment. Some of these changes include using a different Python version (arm64 support was added on Python 3.8.10), upgrading Python packages and hosting some Python wheels that third-party maintainers are not yet releasing.
  808. By: @armenzg (#30071, #29739, #29449, #29315, #29013, #28769, #28607)
  809. ### Docker: Add support for Apple arm64 development (ongoing)
  810. In order to do development for Sentry, we need to spin up various Docker containers.
  811. Apple is moving away from Intel based chipset to arm64 chipsets (aka Apple Silicon).
  812. This milestones track all work required to make sure we can still use these development services on Apple's arm64 architecture.
  813. By: @armenzg (#29494, #29293, #29284, #29157, #29081, #29117, #29084, #28672, #28724)
  814. ### Connecting Dashboards and Discover (ongoing)
  815. Open a Dashboard widget in Discover. Add a Discover Query to a Dashboard.
  816. By: @edwardgou-sentry (#28699, #28827, #28745, #28637)
  817. ### Various fixes & improvements
  818. - feat(cra-metrics): Adds crash rate alerts over metrics [INGEST-629] [INGEST-632] (#30400) by @ahmedetefy
  819. - fix(perf): Re-add onboarding for landing v3 (#30675) by @k-fish
  820. - fix(performance-metrics): Handle null serie values (#30594) by @priscilawebdev
  821. - feat(snql): Enable snql on facets performance endpoints (#30557) by @wmak
  822. - fix(discover): Updates Discover widget modal to propagate global header selection to the dashboard view when submitting (#30641) by @edwardgou-sentry
  823. - feat(suspect-spans): Allow specifying certain columns (#30576) by @Zylphrex
  824. - fix(chart-unfurl): Fix daily top5 rendering (#30669) by @shruthilayaj
  825. - ref(projectconfig_cache): Delete redis-blaster implementation, execute deletes faster (#30636) by @untitaker
  826. - feat(dashboards): Open Library Modal in edit mode (#30591) by @shruthilayaj
  827. - ref(js): Cleanup GSH getParams / utils (#30658) by @evanpurkhiser
  828. - style(js): Improve comments formatting in AsyncComponent (#30667) by @evanpurkhiser
  829. - ref(js): Convert (some of) redirectDeprecatedProjectRoute to a FC (#30640) by @evanpurkhiser
  830. - ref(js): Convert ScrollToTop to a hook (#30652) by @evanpurkhiser
  831. - ref(js): Remove UNSAFE_componentWillReceiveProps (#30663) by @evanpurkhiser
  832. - ref(js): Remove unused getEndpoint (#30659) by @evanpurkhiser
  833. - fix(ui): Span tree connector design (#30498) by @vuluongj20
  834. - fix(js): Remove double `- Sentry` in Activity route title (#30626) by @evanpurkhiser
  835. - feat(teamStats): Remove some team unresolved issue age buckets (#30650) by @scttcper
  836. - style: Hover & focus state for buttons (#30654) by @vuluongj20
  837. - fix(ui): Fix undefined markline data error (#30655) by @taylangocmen
  838. - ref(js): Convert OrganizationCreate to a FC (#30638) by @evanpurkhiser
  839. - chore(deps): bump typescript from 4.4.4 to 4.5.4 (#30615) by @dependabot
  840. - feat(teamStats): Add team-insights-age-unresolved flag (#30644) by @scttcper
  841. - ref(js): Rename constants/{globalSelectionHeader -> pageFilters} (#30618) by @evanpurkhiser
  842. _Plus 1646 more_
  843. 21.11.0
  844. -------
  845. ### Frontend Deploys (ongoing)
  846. By: @billyvg (#28878)
  847. ### Python: Add support for Apple arm64 development (ongoing)
  848. Apple started moving away from their Intel based chipset to arm64 chipsets (aka as Apple Silicon).
  849. In order to do Sentry development on this new architecture we need to do various changes to Sentry's development environment. Some of these changes include using a different Python version (arm64 support was added on Python 3.8.10), upgrading Python packages and hosting some Python wheels that third-party maintainers are not yet releasing.
  850. By: @armenzg (#29739, #29449, #29315, #28769, #28607)
  851. ### Docker: Add support for Apple arm64 development (ongoing)
  852. In order to do development for Sentry, we need to spin up various Docker containers.
  853. Apple is moving away from Intel based chipset to arm64 chipsets (aka Apple Silicon).
  854. This milestones track all work required to make sure we can still use these development services on Apple's arm64 architecture.
  855. By: @armenzg (#29494, #29293, #29284, #29157, #29081, #29117, #29084, #28672, #28724)
  856. ### Connecting Dashboards and Discover (ongoing)
  857. Open a Dashboard widget in Discover. Add a Discover Query to a Dashboard.
  858. By: @edwardgou-sentry (#28699, #28827, #28745, #28637)
  859. ### Various fixes & improvements
  860. - fix(tests) Remove import that wasn't caught in pr (#30018) by @markstory
  861. - chore(tests) Remove old react-select test helpers (#29998) by @markstory
  862. - ref(tests) Replace usage of predicate in MockApiClient (#29997) by @markstory
  863. - feat(dashboards): Add dashboard widget resizing flag (#30000) by @narsaynorath
  864. - feat(ci): Drop ubuntu from dev env CI (#29956) by @armenzg
  865. - ref(native-stack-trace-v2): Add more adjusts (#30013) by @priscilawebdev
  866. - fix(dev): Patch firefox_profile.py from Selenium package (#29887) by @armenzg
  867. - feat(ui): Add metrics switch to performance page [INGEST-572] (#30011) by @matejminar
  868. - ref(native-stack-trace-v2): Apply design feedback (#29989) by @priscilawebdev
  869. - ref(js): Convert GlobalSelectionHeaderRow to a FC (#30004) by @evanpurkhiser
  870. - meta(py): Upgrade python typing analysis script (#29961) by @mgaeta
  871. - ref(ts): Make GlobalSelectionStore useLegacyStore compatible (#30002) by @evanpurkhiser
  872. - security(issue-alerts): Validate the issue alert owner is a member of the organization (#29962) by @wedamija
  873. - feat(ui): Storybook - Add theme switcher & noBorder option to <Sample /> (#29765) by @vuluongj20
  874. - feat(notifications): Slack Digests (#29677) by @mgaeta
  875. - feat(ui): Release Details Sidebar component update (#29842) by @mikellykels
  876. - feat(release-comparison): Add Regressed tab to issue filter tabs (#27896) by @mikellykels
  877. - adds hook and experiment (#29976) by @scefali
  878. - feat(logo-upload): Update serializer to account for popularity (#29978) by @leeandher
  879. - test(ui): Convert seenByList to RTL (#29983) by @scttcper
  880. - test(ui): Convert collapsible component to RTL (#29982) by @scttcper
  881. - feat(widget-library): Add Library Widgets to Dashboard (#29881) by @shruthilayaj
  882. - feat(tests) Add request matchers to MockApiClient (#29910) by @markstory
  883. - ref(tests) Move tests for MutedBox to RTL (#29967) by @markstory
  884. _Plus 1127 more_
  885. 21.10.0
  886. -------
  887. ### Frontend Deploys (ongoing)
  888. PRs: #28878
  889. ### Python: Add support for Apple arm64 development (ongoing)
  890. Apple started moving away from their Intel based chipset to arm64 chipsets (aka as Apple Silicon).
  891. In order to do Sentry development on this new architecture we need to do various changes to Sentry's development environment. Some of these changes include using a different Python version (arm64 support was added on Python 3.8.10), upgrading Python packages and hosting some Python wheels that third-party maintainers are not yet releasing.
  892. PRs: #28769, #28607
  893. ### Docker: Add support for Apple arm64 development (ongoing)
  894. In order to do development for Sentry, we need to spin up various Docker containers.
  895. Apple is moving away from Intel based chipset to arm64 chipsets (aka Apple Silicon).
  896. This milestones track all work required to make sure we can still use these development services on Apple's arm64 architecture.
  897. PRs: #29293, #29284, #29157, #29081, #29117, #29084, #28672, #28724
  898. ### Connecting Dashboards and Discover (ongoing)
  899. Open a Dashboard widget in Discover. Add a Discover Query to a Dashboard.
  900. PRs: #28699, #28827, #28745, #28637
  901. ### Various fixes & improvements
  902. - feat(workflow): Enable issue-percent-filters flag by default (#29325)
  903. - feat(post-process-forwarder) Allow different types of post process forwarders (#29225)
  904. - ref(search): Enable search without waiting for search groups to load (#29336)
  905. - adds experiment for trial label (#29305)
  906. - fix(discover): Various snql discover fixes (#29219)
  907. - chore(deletion) Drop aborted column (#29323)
  908. - fix(snapshots): Fixes datetime comparison with str issue (#29349)
  909. - fix(ui): Handle empty alert chart (#29348)
  910. - feat(dev): Run dev env workflow when .pre-commit-config.yaml changes (#29331)
  911. - ref(tests): Use screen for querying in RTL (#29312)
  912. - fix(alerts): Fix logic that creates snapshots for crash rate alerts (#29320)
  913. - ref(grouprelease): Buffer GroupRelease.last_seen update per minute (#29328)
  914. - ref(minichart): Add extra empty space on the top - [INGEST-495] (#29321)
  915. - ref(js): Remove unused withProjects on incidentRules/triggers (#29335)
  916. - test(js): Always use our exported act (#29340)
  917. - ref(js): Rewrite Sidebar as a functional component (#29278)
  918. - test(js): Refactor useLegacyStore test to use testing-library/react-hooks (#29338)
  919. - fix(workflow): Filter team release counts by teams projects (#29341)
  920. - feat(team-insights): Add Number of Releases section (#29101)
  921. - Temporarily disable pyright pre-commit checks. (#29326)
  922. - build(deps): bump nth-check from 2.0.0 to 2.0.1 (#29000)
  923. - fix(growth): Select the correct project when showing sample transaction banner (#29324)
  924. - fix(visibility): Unbound errors for visibility files (#29330)
  925. - fix(js): Links should not receive router attributes (#29279)
  926. _Plus 590 more_
  927. 21.9.0
  928. ------
  929. - No documented changes.
  930. 21.8.0
  931. ------
  932. - No documented changes.
  933. 21.7.0
  934. ------
  935. - No documented changes.
  936. 21.6.3
  937. ------
  938. - No documented changes.
  939. 21.6.2
  940. ------
  941. - No documented changes.
  942. 21.7.1
  943. ------
  944. ### Breaking Change
  945. If you are upgrading from a release prior to 10.0.0 you need to first upgrade to 21.6.1 and run migrations.
  946. For more information [see the upgrade guide](https://develop.sentry.dev/self-hosted/#hard-stops).
  947. 21.6.1
  948. ------
  949. - No documented changes.
  950. 21.6.0
  951. ------
  952. ### Deprecation Warning
  953. There will be a future change to where the frontend bundle will be loaded asynchronously. This will be a breaking change that can affect custom plugins that access certain globals in the django template. Please see https://forum.sentry.io/t/breaking-frontend-changes-for-custom-plugins/14184 for more information.
  954. 21.5.1
  955. ------
  956. - No documented changes.
  957. 21.5.0
  958. ------
  959. - No documented changes.
  960. 21.4.1
  961. ------
  962. - No documented changes.
  963. 21.4.0
  964. ------
  965. - No documented changes.
  966. 21.3.1
  967. ------
  968. - No documented changes.
  969. 21.3.0
  970. ------
  971. - No documented changes.
  972. 21.2.0
  973. ------
  974. - No documented changes.
  975. 21.1.0
  976. ------
  977. - No documented changes.
  978. 20.12.1
  979. -------
  980. - No documented changes.
  981. 20.11.1
  982. -------
  983. - No documented changes.
  984. 20.11.0
  985. -------
  986. - No documented changes.
  987. 20.10.1
  988. -------
  989. - No documented changes.
  990. 20.10.0
  991. -------
  992. - No documented changes.
  993. 20.9.0
  994. ------
  995. - No documented changes.
  996. 20.8.0
  997. ------
  998. - No documented changes.
  999. 20.7.1
  1000. ------
  1001. - No documented changes.
  1002. 20.7.0
  1003. ------
  1004. - No documented changes.
  1005. v20.6.0
  1006. -------
  1007. - Switched to CalVer
  1008. v10.0
  1009. -----
  1010. Please refer to our blog post: https://blog.sentry.io/2020/01/07/self-hosted-sentry-10-is-ready-to-serve-get-it-while-its-hot/
  1011. v9.1.2
  1012. ------
  1013. - Bug fixes from 9.1.1 release.
  1014. - See https://github.com/getsentry/sentry/releases/tag/9.1.2 for a summary
  1015. v9.1.1
  1016. ------
  1017. - Bug fixes from 9.1.0 release.
  1018. v9.1
  1019. ----
  1020. The changelog for Sentry 9.1 is summarized. For full details, we recommend reviewing the
  1021. full set of SCM changes on GitHub.
  1022. First, an important preface:
  1023. FUTURE VERSIONS OF SENTRY WILL INTRODUCE BACKWARDS INCOMPATIBLE INFRASTRUCTURE
  1024. This is the last version in the 9.x series, and our next release will migrate many legacy technologies onto standardized versions our SaaS service uses. The most notable, known concerns are:
  1025. - Postgres will be the only supported SQL database
  1026. - Our new search infrastructure (codenamed Snuba) will become required (we'll provide a migration path)
  1027. - Various new infrastructure services will be required (such as Kafka)
  1028. This is required for Sentry to continue to support open source releases in a meaningful way, and ensures we have only a single, standard way of running the services.
  1029. Integrations
  1030. ~~~~~~~~~~~~
  1031. We've added a new global integration concept to Sentry, which raises plugins to the organization level. Access to these integrations are controlled with the `org:integrations` scope, and are granted to any user with an Admin or higher role.
  1032. This release includes integrations for:
  1033. - Azure DevOps
  1034. - BitBucket
  1035. - GitHub
  1036. - GitHub Enterprise
  1037. - GitLab
  1038. - Jira
  1039. - Jira Server
  1040. There is additionally a Slack integration, though it requires a now-deprecated workspace token in order to use.
  1041. Note: a known issue exists where integrations are always shown as enabled, even when you haven't configured the appropriate server settings (such as OAuth keys).
  1042. Native Support
  1043. ~~~~~~~~~~~~~~
  1044. Various improvements for native (compiled) runtimes is included in this release.
  1045. - Improved rendering for native stacktraces.
  1046. - Improved support for Apple crash reports.
  1047. - Added unreal engine 4 crash dump support.
  1048. - Added code identifier support for debug files.
  1049. Security
  1050. ~~~~~~~~
  1051. - Added SAML2 SSO support.
  1052. - Member invitations will now automatically expire after 30 days.
  1053. - Fixed potential settings exposure if sentry was deployed in DEBUG mode.
  1054. Misc
  1055. ~~~~
  1056. - Settings have been greatly improved and updated to allow non-admins read-only access in many areas.
  1057. - Added additional localization configuration for User Feedback dialogs.
  1058. - Added account session history under Account Settings -> Security -> Session History.
  1059. - Event data stored in Redis & RabbitMQ no longer uses pickle to encode data. All data is now encoded in JSON.
  1060. - Various improvements to CSP and other browser Reporting API support.
  1061. - Many features disabled via feature flags now indicate how to enable them in the UI.
  1062. - Improved suspect commit generation for Java projects.
  1063. - Repository access is now coupled to integrations access (`org:integrations`)
  1064. - Various improvements to exception fingerprinting.
  1065. v9.0
  1066. ----
  1067. The changelog for Sentry 9 is summarized. For full details, we recommend reviewing the
  1068. full set of SCM changes on GitHub. There are far too many changes to list in Sentry 9,
  1069. but the major highlights are documented below.
  1070. There are also significant schema and data changes in this release, so plan for a huge amount
  1071. of updates and a measurable increase in utilization of your data stores.
  1072. Note: Major features which are undocumented here should be considered unstable, and are almost
  1073. certainly behind a feature switch which is intended to be disabled.
  1074. Dashboard
  1075. ~~~~~~~~~
  1076. We've removed the project-manager-esque dashboard and brought back a team/card based selection as
  1077. as a new sidebar for quick access. We will continue to iterate on what projects mean in Sentry
  1078. going forward and this is simply a first step towards future changes.
  1079. Settings
  1080. ~~~~~~~~
  1081. A new global settings UI has been introduced. This is an attempt to unify all settings and make
  1082. it easier to find the numerous configuration options throughout Sentry.
  1083. Environments
  1084. ~~~~~~~~~~~~
  1085. Environments have been moved up in the hierarchy and are now a first class citizen. While
  1086. still early, this is intended to replace the need for having separate projects per environment.
  1087. To use environments you simply need to ensure you're configuring the ``environment`` parameter
  1088. in the Sentry SDK, and it should automatically propagate into Sentry proper.
  1089. Owners
  1090. ~~~~~~
  1091. A new owners feature allows you to define per-project rules for declaring explicit ownership.
  1092. Much like GitHub's .gitowners, this helps Sentry understand who is responsible for a specific
  1093. issue, and more importantly lets you limit email alerts to only the relevant parties.
  1094. In addition to explicit owners, the release framework has expanded to support implicit owners
  1095. and suspect commits. This currently only works with GitHub.com hosted repositories, but will be
  1096. expanded to support other providers in future versions of Sentry.
  1097. Teams & Projects
  1098. ~~~~~~~~~~~~~~~~
  1099. Projects can now be associated with many teams, and teams can be referenced in comments and
  1100. assignment as well as the new ownership features.
  1101. Both Team and Project names have been deprecated, and the short name as been promoted as the
  1102. canonical reference. Teams can be mentioned using #team-name.
  1103. Integrations
  1104. ~~~~~~~~~~~~
  1105. The beginnings of the new integration framework (plugin v3) have landed, along with an initial
  1106. version of a new Slack integration.
  1107. The new integrations framework will likely change in upcoming versions of Sentry, and we dont
  1108. suggest building against it yet.
  1109. Some caveats:
  1110. - The Slack integration requires Slack workspace tokens.
  1111. - While there is some early work of other integrations in this release, they are not yet GA nor
  1112. are they exposed.
  1113. API
  1114. ~~~
  1115. Various portions of processing for the API will require additional dependencies and configuration
  1116. (such as symbolic).
  1117. - The 'secret key' for a DSN is no longer required and has been deprecated in SDKs.
  1118. - Added support for Minidumps generated by Breakpad and Crashpad.
  1119. - Added support for Cordova and Electron.
  1120. - A new standard 'security report' endpoint has been exposed, which supports HKPK, CSP,
  1121. Expect-CT, and Expect-Staple reports.
  1122. - Improved reprocessing feature.
  1123. - Improved support for native Debug Symbols (Apple, Linux).
  1124. - The ingestion API is now JSON-schema based (though still fairly flexible).
  1125. - Added setup wizard for various SDKs (e.g. react-native).
  1126. Privacy Changes
  1127. ~~~~~~~~~~~~~~~
  1128. As part of GDPR, the open source version of Sentry now changes the default policy for its beacon
  1129. (the service which tells sentry.io statistics about open source usage) to **not** send the system's
  1130. contact email address by default. You can still opt-in to this, which will allow us to contact you
  1131. in the event of a major security issue.
  1132. Misc
  1133. ~~~~
  1134. - User Feedback will now send an email notification.
  1135. - Almost all major UI components are now driven by the client-side application.
  1136. - Avatars have been added for organizations.
  1137. - Various improvements to issue hashing, specifically for native (iOS) and javascript
  1138. applications.
  1139. - Various improvements to Single Sign-On flows. You should update any external auth extensions
  1140. you're using as part of this (sentry-auth-github, sentry-auth-google).
  1141. - Support for SAML via sentry-auth-saml2.
  1142. - Support for Google Cloud Storage as a storage backend.
  1143. - A new Assistant to help onboard users.
  1144. - Add count estimates to search results.
  1145. - Superuser has been locked down significantlly with idle timeouts and secondary sessions.
  1146. - 2FA can now be enforced for an organization.
  1147. - Various performance around event processing to make up for all the added load we're forcing on
  1148. ya'll. =)
  1149. v8.22
  1150. -----
  1151. - BREAKING: Members will no longer be automatically granted membership to the
  1152. default organization. You should use SSO or the invite flows.
  1153. - Add support for SAML2 authentication through identity providers that
  1154. implement the ``SAML2AuthProvider``. See getsentry/sentry-auth-saml2.
  1155. - BREAKING: Group share urls have all been invalidated and must be regenerated.
  1156. - Added the ability for users to disable workflow notifications on a per-project basis.
  1157. Schema Changes
  1158. ~~~~~~~~~~~~~~
  1159. - Added ``ProjectSymCacheFile`` model.
  1160. - Added index on ``TagValue(project_id, key, last_seen)``
  1161. - Add ``GroupShare`` model.
  1162. API Changes
  1163. ~~~~~~~~~~~
  1164. - Added API endpoint to list members awaiting access
  1165. v8.21
  1166. -----
  1167. - Ignore querystrings when looking up release artifacts
  1168. - Add Visual Studio authentication provider for plugins.
  1169. - Add "team" parameter to the project details API.
  1170. - Added mailing list support (via ``List-Id`` header) to digest emails.
  1171. Schema Changes
  1172. ~~~~~~~~~~~~~~
  1173. - Added ``IdentityProvider`` model.
  1174. - Added ``Identity`` model.
  1175. - Added ``UserIdentity`` model.
  1176. - Added ``ProjectTeam`` model
  1177. v8.20
  1178. -----
  1179. - Make BitBucket repositories enabled by default
  1180. - Add raw data toggle for Additional Data
  1181. - Improved function name resolving for JavaScript sourcemaps
  1182. - Add initial support for Redis Cluster.
  1183. - Support a list of hosts in the ``redis.clusters`` configuration along side
  1184. the traditional dictionary style configuration.
  1185. - Better support for rendering rich JSON and URL encoded HTTP bodies by
  1186. guessing the content type based on format heuristics.
  1187. - Better support for sanitizing of string HTTP bodies.
  1188. Schema Changes
  1189. ~~~~~~~~~~~~~~
  1190. - Added index on ``ProjectPlatform(last_seen)`` column
  1191. - Added index on ``GroupCommitResolution.commit_id``
  1192. - Enable ``citext`` extension in Postgres.
  1193. - Dropped ``TagKey.project_id`` foreign key constraint
  1194. - Dropped ``TagValue.project_id`` foreign key constraint
  1195. - Dropped ``GroupTagKey.project_id`` foreign key constraint
  1196. - Dropped ``GroupTagKey.group_id`` foreign key constraint
  1197. - Dropped ``EventUser.project_id`` foreign key constraint
  1198. - Added ``Email`` model
  1199. - Change ``CommitFileChange.filename`` from varchar to text in PostgreSQL
  1200. v8.19
  1201. -----
  1202. - Hide project filter when there are no projects to list.
  1203. - Added lookup methods to constants to get a unique `integration_id` for a given
  1204. event, and to get information (documention url, human readable name) from that id.
  1205. Schema Changes
  1206. ~~~~~~~~~~~~~~
  1207. - Added ``Integration``, ``OrganizationIntegration``, and ``ProjectIntegration`` models
  1208. - Added ``Repository(integration_id)`` column
  1209. v8.18
  1210. -----
  1211. - Expanded resolution options to allow current and explicit versions.
  1212. - Added proguard support
  1213. - Removed support for global dsyms.
  1214. - Moved Queue admin page to React.
  1215. - Replaced usage of jQuery Flot library with internal graphs.
  1216. - Expanded ignore actions to include deltas and rates for both occurrences and
  1217. users impacted.
  1218. - Add a new option (`auth.allow-registration`) for determining whether registration
  1219. is allowed on an installation.
  1220. - Moved "create organization" into React.
  1221. - Expanded React Form components (Form, ApiForm).
  1222. - Moved "create team" into React.
  1223. - add Slack to supported auth backends in social auth (for plugins)
  1224. - Expanded resolution actions (on stream) to include current release and explicit
  1225. release.
  1226. Schema Changes
  1227. ~~~~~~~~~~~~~~
  1228. - Added Release.commit_count
  1229. - Added Release.last_commit_id
  1230. - Added Release.authors
  1231. - Added Release.total_deploys
  1232. - Added Release.last_deploy_id
  1233. - Added ``FeatureAdoption`` model
  1234. - Removed DSymBundle
  1235. - Removed DSymObject
  1236. - Removed DSymSDK
  1237. - Removed DSymSymbol
  1238. - Removed GlobalDSymFile
  1239. - Added GroupHash.state
  1240. - Drop index on ``ReleaseEnvironment(project_id)``
  1241. - Drop index on ``ReleaseCommit(project_id)``
  1242. - Drop unique constraint on ``ReleaseEnvironment(project_id, release_id, environment_id)``
  1243. - Added GroupResolution.type
  1244. - Added GroupResolution.actor_id
  1245. - Added Project.platform
  1246. - Added GroupSnooze.actor_id
  1247. - Added ScheduledJob
  1248. - Added GroupResolution.actor_id
  1249. - Added ``ScheduledJob`` model
  1250. - Added User.last_active
  1251. API Changes
  1252. ~~~~~~~~~~~
  1253. - Project keys endpoint will include all available keys by default. Use
  1254. ``status=active`` to retain the old behavior.
  1255. v8.17
  1256. -----
  1257. - Added @mentions to comments
  1258. - Initial (internal) analytics abstraction.
  1259. - Turned on reprocessing by default
  1260. - Added basics for Data Forwarding integrations.
  1261. - Changed the grouping and default `in_app` values for cocoa events.
  1262. - Removed global dsym support.
  1263. - Removed support for legacy apple report format.
  1264. - The threads interface now contributes to grouping if it contains a single thread.
  1265. - Added per-key (DSN) rate limits (``project:rate-limits`` feature).
  1266. - Added tsdb statistics for events per-key.
  1267. - Added ``sentry.deletions`` abstraction to improve bulk deletions.
  1268. - Added basic workspace for Visual Studio Code.
  1269. - Added hovercards for Issue IDs in activity entries.
  1270. - Added event count options to ignore.
  1271. - Added user frequency options to ignore.
  1272. Schema Changes
  1273. ~~~~~~~~~~~~~~
  1274. - Dropped ``GroupTagValue.group_id`` foreign key constraint
  1275. - Dropped ``GroupTagValue.project_id`` foreign key constraint
  1276. - Added ``Deploy.notified`` column
  1277. - Added index on ``EventTag.date_added``
  1278. - Added unique index on ``Environment(organization_id, name)``
  1279. - Added unique index on ``ReleaseEnvironment(organization_id, release_id, environment_id)``
  1280. - Added ``EventUser.name`` column
  1281. - Added ``UserReport.event_user_id`` column
  1282. v8.16.1
  1283. -------
  1284. - Fixed issue in migration 0302 that prevented upgrading
  1285. v8.16
  1286. -----
  1287. - Added data migration to create UserEmail objects for users whose primary emails did not have them
  1288. - Time series data (used by graphs and other features) is now updated when groups are merged.
  1289. - Added distributions to the release system to better support mobile apps
  1290. - Update activity entries to reference issues by their short ID.
  1291. - Added user notifications settings for deploy emails.
  1292. Schema Changes
  1293. ~~~~~~~~~~~~~~
  1294. - Added ``Distribution`` model
  1295. - Added ``ReleaseFile.dist`` column
  1296. - Added ``UserOption.organization`` column
  1297. - Added ``CommitAuthor.external_id`` column
  1298. API Changes
  1299. ~~~~~~~~~~~
  1300. - Deprecate `dateStarted` in releases endpoints
  1301. v8.15
  1302. -----
  1303. - Added overview for a release to view a breakdown of files changes, commit authors, new issues, and issues resolved
  1304. - Refactor usage of ``sentry.app`` to use individual modules.
  1305. - Implemented ``--concurrency`` on ``sentry cleanup``
  1306. - Added support for the new symbol server system to support native SDKs better.
  1307. - Added deploy email
  1308. - Added OAuth2 support to the web API.
  1309. - Simplified management of secondary email addresses.
  1310. - Fixed an issue where changing primary email address would remove the pre-existing verified email.
  1311. - Disallow duplicating primary emails for users moving forward.
  1312. - Resolve issues when commits with ``Fixes SHORTID`` are included in releases
  1313. - Added support for associating debug symbols with iTunes applications and builds.
  1314. - Added the ability to claim unassigned issues when resolving them.
  1315. API Changes
  1316. ~~~~~~~~~~~
  1317. - Added CommitFileChangeEndpoint
  1318. - Added IssuesResolvedInReleaseEndpoint
  1319. - Added ReleaseDeploysEndpoint
  1320. - Added OrganizationReleaseCommitsEndpoint
  1321. - Added EventFileCommittersEndpoint
  1322. - Added ReleaseDeploysEndpoint
  1323. Schema Changes
  1324. ~~~~~~~~~~~~~~
  1325. - Added ``Deploy`` model
  1326. - Added ``ApiApplication`` model
  1327. - Added ``ApiAuthorization`` model
  1328. - Added ``ApiGrant`` model
  1329. - Removed ``ApiToken.key`` column
  1330. - Added ``ApiToken.application`` column
  1331. - Added ``ApiToken.refresh_token`` column
  1332. - Added ``ApiToken.expires_at`` column
  1333. - Added ``ApiToken.scope_list`` column
  1334. - Added ``ApiKey.scope_list`` column
  1335. - Added ``ReleaseHeadCommit`` model
  1336. Security
  1337. ~~~~~~~~
  1338. - Added encryption to the following fields:
  1339. - AuthIdentity.data
  1340. - AuthProvider.config
  1341. - Option.value
  1342. - OrganizationOption.value
  1343. - ProjectOption.value
  1344. - UserOption.value
  1345. v8.14.1
  1346. -------
  1347. - Fixed issues related to migrations failing to finish for 8.14
  1348. - Fixed an issue where Release version names were erronously too restrictve.
  1349. - Fixed an issue where "New Issues" counts would have all been 0 for releases created in 8.14.
  1350. v8.14
  1351. -----
  1352. - Added new internal processing interface that supports multiple processing steps per stacktrace (for instance JavaScript + native)
  1353. - Add IE10 legacy browser filter
  1354. - Added data migration to merge legacy releases
  1355. - Added support for symbolizing inlined frames and added heuristics for fixing up native stacktraces.
  1356. - Removed instruction_offset as a frame attribute from stacktraces
  1357. - [BREAKING] Quotas must now instantiate RateLimited and NotRateLimited return values.
  1358. - [BREAKING] Redis quota implementations now return BasicRedisQuota instead of tuples.
  1359. - Commits using the ``Fixes SHORTID`` annotation will now be tracked appropriately.
  1360. - Release functionality is now detected at a project level to enable various features.
  1361. - Added basic encryption facilities (``sentry.utils.encryption``).
  1362. - Added support for "Fixes XXX, YYY" and "Fixes XXX YYY" notations.
  1363. - Added bulk "Resolve in Next Release" to stream actions.
  1364. - Various visual improvements to notifications, including the addition of
  1365. transactions.
  1366. - Plugins can now add tasks that run in sentry as celery workers.
  1367. - Added the ability to verify TLS connections when fetching artifacts.
  1368. - Added data migration to merge environments across an organization
  1369. - Added ``timesSeen`` keyword to issue search.
  1370. - Added feature signals, such as first time release tracking is enabled.
  1371. API Changes
  1372. ~~~~~~~~~~~
  1373. - Added OrganizationReleasesEndpoint.
  1374. - Added context type ``app`` for cocoa events.
  1375. - Added ``assignedTo`` param to ``/projects/{org}/{project}/issues/``.
  1376. - Split out filtered stats onto Inbound Data Filters page
  1377. - Added OrganizationReleasesEndpoint
  1378. - Added OrganizationReleaseFileEndpoint
  1379. Schema Changes
  1380. ~~~~~~~~~~~~~~
  1381. - Added unique index on ``Release(organization_id, version)``
  1382. - Removed unique index on ``Release(project_id, version)``
  1383. - Added ``GroupCommitResolution`` model.
  1384. - Added ``Environment.organization_id`` column.
  1385. - Added ``EnvironmentProject`` model.
  1386. - Added ``Project.flags`` column.
  1387. - Added not null constraint to ``Environment.organization_id`` column.
  1388. - Removed not null constraint on ``Environment.project_id`` and ``ReleaseEnvironment.project_id`` columns
  1389. v8.13
  1390. -----
  1391. - Added individual filters for legacy browsers to improve customization of error filtering based on browser versions
  1392. - Support for setting a custom security header for javascript fetching.
  1393. - start using ReleaseProject and Release.organization instead of Release.project
  1394. - Project quotas are no longer available, and must now be configured via the organizational rate limits.
  1395. - Quotas implementation now requires a tuple of maximum rate and interval window.
  1396. - Added security emails for adding and removing MFA and password changes.
  1397. - Added the ability to download an apple compatible crash report for cocoa events.
  1398. - Add memory and storage information for apple devices
  1399. - The legacy API keys feature is now disabled by default.
  1400. - Show Images Loaded section for cocoa events with version number.
  1401. - Added registers to stacktrace for cocoa exceptions.
  1402. - Fixed bug where workflow notification subject may not include a custom email prefix.
  1403. - Added configurable subject templates for individual alert emails (`mail:subject_template` option).
  1404. - Added data migration to populate ReleaseProject.new_groups
  1405. - Moved organization settings to React.
  1406. - Added support for managing newsletter subscriptions with Sentry.io
  1407. Schema Changes
  1408. ~~~~~~~~~~~~~~
  1409. - Added ``ReleaseProject.new_groups`` column.
  1410. - Moved organization settings to React.
  1411. Schema Changes
  1412. ~~~~~~~~~~~~~~
  1413. - Added ``ReleaseProject.new_groups`` column.
  1414. - Added ``OrganizationAvatar`` model.
  1415. API Changes
  1416. ~~~~~~~~~~~
  1417. - Added avatar and avatarType to ``/organizations/{org}/`` endpoint.
  1418. - Provide commit and author information associated with a given release
  1419. - Provide repository information for commits
  1420. - Added new internal processing interface that supports multiple processing steps per stacktrace (for instance JavaScript + native)
  1421. v8.12
  1422. -----
  1423. - Fix bug where some users would incorrectly not receive workflow notifications for projects they were subscribed to.
  1424. - restructured dSYM processing. It now records errors in the symbolication process
  1425. more accurately and will report system errors them to the internal logger.
  1426. - Added data migration to backfill legacy release data
  1427. - Added data migration to backfill legacy commit data
  1428. - Added data migration to backfill legacy release file and environment data
  1429. - Allow gziped/deflated JavaScript artifacts to be uploaded through the API.
  1430. - Shared issue view no longer shows SDK.
  1431. - Added ``activeSince`` to search (uses ``active_at``).
  1432. - Added ``firstSeen`` to search (uses ``first_seen``).
  1433. - Added ``lastSeen`` to search (uses ``last_seen``).
  1434. - Added ``firstRelease`` to search (uses ``first_release``).
  1435. - Fixed usage (and propagation) of ``Group.first_release``.
  1436. - The + and - datetime search helpers now work with ranges (e.g. ``<=``).
  1437. - Added the ability to download artifacts from releases.
  1438. SDKs
  1439. ~~~~
  1440. - The `repos` interface has been added.
  1441. Schema Changes
  1442. ~~~~~~~~~~~~~~
  1443. - Added ``Release.organization`` column.
  1444. - Added ``ReleaseProject`` model.
  1445. - Added ``ReleaseCommit.organization_id`` column.
  1446. - Added ``ReleaseFile.organization`` column.
  1447. - Added ``ReleaseEnvironment.organization_id`` column.
  1448. v8.11
  1449. -----
  1450. - Ignore a ``null`` ``Origin`` header for authentication.
  1451. - Added the ability to search for issues that you are subscribed to from the stream view.
  1452. - Added the ability to search issues by their last seen timestamp.
  1453. - Improved UI for password and API key fields used in integrations
  1454. - Fixed bug where API responses would include incorrect `isSubscribed` values for issues.
  1455. - Added support for switching to unsymbolicated tracebacks in cocoa.
  1456. - Invalidate user sessions when changing password and 2fa settings.
  1457. - Add configurable password validators to enforce password strength.
  1458. - Send email to specific email when adding a new email rather than sending to all unverified email addresses.
  1459. - Allow user to resend email verification to primary email address.
  1460. - Added additional detail to subscription help text when viewing a group.
  1461. - Add Asana to supported auth backends in social auth (for plugins)
  1462. - Cleaner install UI when creating a new project.
  1463. - Added support for recording symbols separately in frames independent of the function.
  1464. - Reduce noisy Postgres logs from inserting duplicate onboarding rows.
  1465. - Added device icons for Apple Watch and Apple TV
  1466. - Added export action to group tag details.
  1467. - Improved display of user tags.
  1468. - Added 'transaction' tag which automatically populates from explicit culprits.
  1469. - Added beginnings of repository management to UI (behind `organizations:repos` feature).
  1470. Schema Changes
  1471. ~~~~~~~~~~~~~~
  1472. - Added ``User.session_nonce`` column.
  1473. - Added ``CommitFileChange`` model.
  1474. - Added ``Repository.url`` column.
  1475. - Added ``Repository.provider`` column.
  1476. - Added ``Repository.config`` column.
  1477. - Added ``Repository.external_id`` column.
  1478. - Added ``Repository.status`` column.
  1479. API Changes
  1480. ~~~~~~~~~~~
  1481. - Added ``/organizations/{org}/config/repos/`` endpoint.
  1482. - Added ``/organizations/{org}/repos/{repo}/`` endpoint.
  1483. v8.10
  1484. -----
  1485. - New and improved UI.
  1486. - Removed previously deprecated ``sentry celery`` command.
  1487. - Replaced the ``events`` queue with ``events.{preprocess,process,save}_event``.
  1488. - Added Danger (danger/danger) for monitoring various PR requirements.
  1489. - Enabled organization weekly report emails for all organizations.
  1490. - Add S3 filestore backend.
  1491. - ``SENTRY_FILESTORE`` deprecated and replaced with ``filestore.backend``
  1492. - ``SENTRY_FILESTORE_OPTIONS`` deprecated and replaced with ``filestore.options``
  1493. - Add watchOS support for cocoa interface.
  1494. - Fix support for internationalized Origins and raven-js.
  1495. - SSO is now enforced to access data within any org that has it set as a requirement.
  1496. - Improved rendering of weekly report email on mobile devices.
  1497. API Changes
  1498. ~~~~~~~~~~~
  1499. - Add ``/organizations/{org}/repos/`` endpoint.
  1500. - Add ``/organizations/{org}/repos/{repo}/commits/`` endpoint.
  1501. - Add ``/projects/{org}/{project}/releases/{version}/commits/`` endpoint.
  1502. - SSO restrictions are now applied across session-based API authentication.
  1503. Schema Changes
  1504. ~~~~~~~~~~~~~~
  1505. - Added ``Repository`` model.
  1506. - Added ``Commit`` model.
  1507. - Added ``CommitAuthor`` model.
  1508. - Added ``ReleaseCommit`` model.
  1509. - Added index on ``GroupTagValue(project, key, value, last_seen)``.
  1510. - Dropped index on ``GroupTagValue(project, key, value)``.
  1511. v8.9
  1512. ----
  1513. - Added support for Elixir.
  1514. - Improve performance for bulk deletions of Events and Groups.
  1515. - Fix rate limit logic for single organization mode.
  1516. - Added ``--no-repair`` flag for ``sentry upgrade`` for large installs.
  1517. - Fixed bug with merging counters yielding the wrong values.
  1518. - Require password confirmation when enabling/disabling 2fa.
  1519. - Collapse repeated frames in the stacktrace UI.
  1520. - Added weekly report emails behind feature flag.
  1521. - Rebrand Rules as Alerts / Alert Rules.
  1522. - Add frequency to Alerts.
  1523. Schema Changes
  1524. ~~~~~~~~~~~~~~
  1525. - Added unique index on ``Authenticator(user_id, type)``
  1526. v8.8
  1527. ----
  1528. - Added unique user frequency rule condition.
  1529. - Fixed a major performance regression from 8.7 on the ``GroupTagValue`` model.
  1530. - Various security fixes related to CSRF and XSS.
  1531. - Server side filtering of event ingest.
  1532. Schema Changes
  1533. ~~~~~~~~~~~~~~
  1534. - Removed ``HelpPage`` model.
  1535. - Added ``OrganizationMember.token`` column.
  1536. - Removed ``OrganizationMember.counter`` column.
  1537. v8.7
  1538. ----
  1539. - Removed "Replay Request" feature.
  1540. - Upgraded underlying redis library to resolve some networking issues.
  1541. - Added support for minified React exceptions.
  1542. Schema Changes
  1543. ~~~~~~~~~~~~~~
  1544. - Remove index ``GroupTagValue(project_id)``.
  1545. - Added ``Rule.status`` column.
  1546. - Added ``GroupRelease`` model.
  1547. - Added ``Environment`` model.
  1548. - Added ``ReleaseEnvironment`` model.
  1549. v8.6
  1550. ----
  1551. - The ``message`` attribute on Event/Group is now purely used for search storage.
  1552. - The ``sentry.interfaces.Message`` interface now contains a ``formatted`` attribute.
  1553. - ``SENTRY_MANAGED_USER_FIELDS`` now defaults to an empty list.
  1554. - Issues now render based on the type of data present, which are represented by
  1555. the type and metadata attributes in API responses.
  1556. - Stacktrace rendering has been greatly simplified and unified across languages.
  1557. - Client's may now pass the 'contexts' attribute, which will eventually supercede 'extra'.
  1558. - Various named contexts are now automatically generated and summarized for Cocoa and JavaScript
  1559. issues.
  1560. - Added JSON formatting for logs with ``system.logging-format``.
  1561. - Added a ``loglevel`` command line flag to most commands.
  1562. - Added two factor authentication support.
  1563. - Added support for setting IP address of an event automatically on event submission for all platforms.
  1564. - Added unsubscribe links to mails.
  1565. - Added email verification.
  1566. - Added ability to link/unlink Issues, support is dependent on plugins.
  1567. - Can now toggle between minified/original code in stacktraces where sourcemaps were applied.
  1568. - Can now upload release artifacts with tilde prefix (~) to omit protocol + host in URL lookups.
  1569. Schema Changes
  1570. ~~~~~~~~~~~~~~
  1571. - Added ``User.is_password_expired`` column.
  1572. - Added ``User.last_password_change`` column.
  1573. - Added ``UserEmail`` model.
  1574. - Added unique index on ``GroupTagValue(group_id, key, value)``
  1575. - Remove unique index on ``GroupTagValue(project_id, group_id, key, value)``
  1576. - Added index on ``GroupTagValue(project_id, key, value)``
  1577. - Added ``GroupSubscription`` model.
  1578. v8.5.1
  1579. ------
  1580. - Fixed issue with new Unsubscribe links in emails not working.
  1581. - Fixed bug with raven-js compatibility with IE8.
  1582. - Fixed bug handling IPv6 addresses.
  1583. v8.5
  1584. ----
  1585. - Added option to upload a profile image as an alternative to Gravatar.
  1586. - Deprecated ``sentry celery`` subcommand in favor of ``sentry run {worker|cron}``.
  1587. - Breadcrumb interface now rendered in event UI.
  1588. - Project notification settings page now indicates if current user is subscribed to active project.
  1589. - User is now automatically redirected to login page if their session expires inside React client application.
  1590. - Added new auth tokens to deprecate the usage of the older API keys.
  1591. Schema Changes
  1592. ~~~~~~~~~~~~~~
  1593. - Added ``ProjectPlatform`` model.
  1594. - Added index on``EventTag`` index.
  1595. - Added unique index on ``UserReport`` model.
  1596. - Added ``UserAvatar`` model.
  1597. - Added ``EventTag.group_id`` column.
  1598. - Added ``ApiToken`` model.
  1599. - Added ``Authenticator`` model.
  1600. v8.4.1
  1601. ------
  1602. - Fixed issue in running 8.4 migrations on MySQL only.
  1603. - Fixed issue that caused an infinite loop in ``patch_context.py`` under a race condition.
  1604. - Silently ignore breadcrumb data coming from clients instead of showing an error in the UI.
  1605. v8.4
  1606. ----
  1607. - Fixed bug that caused some email subjects to be generated without respecting the project subject prefix option.
  1608. - Organization's can now opt-in to early adopter features (via organization settings).
  1609. - User Feedback is now enabled by default.
  1610. - Deprecated ``sentry start`` in favor of new ``sentry run``.
  1611. - Access is no longer restricted by default to the domain matching ``system.url-prefix``. You must opt into this by setting ``ALLOWED_HOSTS`` explicitly.
  1612. - Replaced Gravatar mystery man with letter avatars
  1613. - Added 'Events Per Hour' graph to organization dashboard
  1614. - Moved organization activity stream to main column from sidebar
  1615. Schema Changes
  1616. ~~~~~~~~~~~~~~
  1617. - Added ``DSymSymbol`` model.
  1618. - Added ``DSymSDK`` model.
  1619. - Added ``DSymObject`` model.
  1620. - Added ``DSymBundle`` model.
  1621. v8.3.3
  1622. ------
  1623. - [SECURITY] Fixed a bug which allows API keys more permission than granted within the organization.
  1624. v8.3.2
  1625. ------
  1626. - Fixed bug affecting only MySQL users, see `GH-3030 <https://github.com/getsentry/sentry/issues/3030>`_.
  1627. v8.3.1
  1628. ------
  1629. - Fixed bug that, ironically, prevented saving a saved search.
  1630. - Fixed bug when merging groups and the counts are merged incorrectly.
  1631. - Fixed bug that caused the Installation Wizard to never go away if using a non-smtp email.backend setting.
  1632. - Fixed an ImproperlyConfigured issue from a cascading error.
  1633. v8.3.0
  1634. ------
  1635. - Added initial support for per-project callsigns and short IDs. This feature is not exposed to users yet.
  1636. - Improved static file delivery performance.
  1637. - Added CLI tool to monitor queue sizes. ``sentry queues --help``
  1638. - Moved email configuration into ``config.yml``.
  1639. - Added mailing list support (via ``List-Id`` header) for outbound email.
  1640. - URLs for issues that have been merged now redirect to the issue that absorbed the requested issue.
  1641. - Projects can now be bookmarked in the UI.
  1642. - Dashboard is now the default view for an organization.
  1643. Schema Changes
  1644. ~~~~~~~~~~~~~~
  1645. - Added ``ProjectDSymFile`` model.
  1646. - Added ``Counter`` model.
  1647. - Added ``GlobalDSymFile`` model.
  1648. - Added ``Group.short_id`` column.
  1649. - Added ``sentry_increment_project_counter`` function for PostgreSQL.
  1650. - Added ``Project.forced_color`` column.
  1651. - Added ``GroupRedirect`` model.
  1652. v8.2.5
  1653. ------
  1654. - [SECURITY] Fixed a bug which allows API keys more permission than granted within the organization.
  1655. v8.2.4
  1656. ------
  1657. - [SECURITY] If being run in multi-organization mode, it was possible for a user to craft a URL which would allow them to view membership details of other users.
  1658. v8.2.3
  1659. ------
  1660. - Fix compatibility with Redis 2.8.9.
  1661. v8.2.2
  1662. ------
  1663. - [SECURITY] Fixed an issue where a superuser had the ability to inject data into audit logs through the admin UI.
  1664. v8.2.1
  1665. ------
  1666. - Fix compatibility with setuptools 20.2
  1667. v8.2.0
  1668. ------
  1669. - SENTRY_DISALLOWED_IPS is no longer configured by default. If you're exposing Sentry outside of your company you may wish to configure this.
  1670. - Do not require the documentation sync on repair to succeed.
  1671. - Added basic organization on-boarding.
  1672. - Project keys are no longer usable within the web API.
  1673. - Allow requiring data scrubbing security options as an organization wide setting.
  1674. - Added basic support for dsym symbol handling. This feature might leave behind temporary files when used in this version.
  1675. - Added support for named Redis clusters for consistency in Redis connection management (GH-2693). This adds a ``redis.clusters`` section to ``config.yml`` (see documentation), and deprecates the ``SENTRY_REDIS_OPTIONS`` setting and per-backend configuration of Redis clusters.
  1676. Schema Changes
  1677. ~~~~~~~~~~~~~~
  1678. - Added ``ProjectBookmark`` model.
  1679. - Added ``EventTag`` model.
  1680. - Added ``OrganizationOnboardingTask`` model.
  1681. v8.1.5
  1682. ------
  1683. - [SECURITY] If being run in multi-organization mode, it was possible for a user to craft a URL which would allow them to view membership details of other users.
  1684. v8.1.4
  1685. ------
  1686. - [SECURITY] Fixed an issue where a superuser had the ability to inject data into audit logs through the admin UI.
  1687. v8.1.3
  1688. ------
  1689. - Fix compatibility with setuptools 20.2
  1690. v8.1.2
  1691. ------
  1692. - [CRITICAL] Fix issue running ``sentry start`` with supervisord.
  1693. - Fix compatibility with older versions of djangorestframework.
  1694. - Updated member invitation emails.
  1695. v8.1.1
  1696. ------
  1697. - Fix broken static files compiled from 8.1.0. :(
  1698. v8.1.0
  1699. ------
  1700. - Default web server is now uWSGI (https://uwsgi-docs.readthedocs.io/en/latest/) to replace gunicorn.
  1701. - New "Saved Searches". See: http://blog.getsentry.com/2016/01/19/introducing-saved-searches.html
  1702. Schema Changes
  1703. ~~~~~~~~~~~~~~
  1704. - Remove FK constraints from ``Event.group_id``, ``Event.project_id``, ``EventMapping.group_id``, and ``EventMapping.project_id``.
  1705. - Added ``SavedSearch.is_default`` column.
  1706. - Added new ``SavedSearchUserDefault`` model.
  1707. v8.0.6
  1708. ------
  1709. - Fixed assignee dropdown not being clickable from touch devices.
  1710. - Don't ignore ``SENTRY_WEB_OPTIONS['workers']`` value if set.
  1711. - Fix Global Throughput dashboard in admin.
  1712. - Fix display for Release names when they include special characters.
  1713. - Added new ``sentry config generate-secret-key`` to help with regenerating a new SECRET_KEY value if needed.
  1714. v8.0.5
  1715. ------
  1716. - [CRITICAL] Fixed another issue where performing a bulk merge could merge more than intended. We're pretty confident we got this all squared away now. :(
  1717. - Fixed a bug where Issue assignment emails weren't being delivered.
  1718. v8.0.4
  1719. ------
  1720. - Fixed an issue where notification digests weren't sending on some systems.
  1721. v8.0.3
  1722. ------
  1723. - [CRITICAL] Fixed an issue where performing a bulk merge would merge more than intended.
  1724. - Fixed saving the "Use Default Scrubbers" project setting
  1725. - Fix syncing documentation when behind an http proxy
  1726. v8.0.2
  1727. ------
  1728. - Fix ``IntegrityError`` after merging groups.
  1729. - Be less noisy about ``Cannot digest timeline, timeline is not in the ready state.``
  1730. - Fix incorrect ``Install`` links.
  1731. - Fixed being able to select a Chinese locale.
  1732. - Multiple bulk deletion improvements and bug fixes.
  1733. - Clarify ``Forcing documentation sync`` error messaging.
  1734. v8.0.1
  1735. ------
  1736. - Ignore ``blob:`` urls in hashing algorithms.
  1737. - Bump ``extra`` data size to 16k (previously 4k)
  1738. - Fixed some odd behavior where superusers appeared as members of a team when they weren't.
  1739. - By default, new superusers created through ``sentry createuser`` will be added as a member to a team, if there is only one team available.
  1740. v8.0.0
  1741. ------
  1742. Version 8 of Sentry introduces a brand new frontend. Most of the application has been overhauled
  1743. and rewritten on top of React and our web API. Additionally many new features have been exposed
  1744. related to workflows (user assignment, snooze, resolution) and release tracking. This changelog
  1745. does not attempt to capture the six+ months of incremental features and improvements in this
  1746. release of Sentry.
  1747. A Note on MySQL
  1748. ~~~~~~~~~~~~~~~
  1749. Due to numerous issues over the years and recent discoveries that nearly all schema migration was
  1750. broken in MySQL (due to some behavior in our migration tool), we've made the decision to no longer
  1751. support MySQL. It is possible to bring the schema up to date on a MySQL machine, but Sentry's
  1752. automated migrations will likely not work and require DBA assistance.
  1753. Postgres is now the only supported production database.
  1754. A Note on Workers
  1755. ~~~~~~~~~~~~~~~~~
  1756. In the past it was supported to run Sentry's queue workers with the `-B` option to also spawn
  1757. a celery beat process within the worker. This is no longer supported as it causes problems in
  1758. some queue setups (in particular if redis is being used). Instead you should now spawn two
  1759. independent processes. This is outlined in the installation documentation.
  1760. Changes to Quotas
  1761. ~~~~~~~~~~~~~~~~~
  1762. Team and System based quotas are now longer available. A new organization-relative project quota replaces them
  1763. and can be configured via Rate Limits on the organization dashboard.
  1764. Notification Digests
  1765. ~~~~~~~~~~~~~~~~~~~~
  1766. Email notifications will now automatically rollup if the rate of notifications exceeds a threshold. These can be
  1767. configured on a per project basis in Project Settings.
  1768. Configuration
  1769. ~~~~~~~~~~~~~
  1770. An Install Wizard has been added to aid in configuring necessary first-run options. Notably your Admin Email,
  1771. and URL Prefix. The Installation Wizard will also help any future updates and aid when new options are introduced.
  1772. A new configuration backend is now utilized for several options. These options can now be
  1773. configured via the web UI.
  1774. - A new configuration file, `config.yml` has been introduced. This new file is generated during `sentry init`
  1775. the first time, and expected to be pointed at a directory. `config.yml` is the home for new configuration options that will be moved from the existing python config file.
  1776. - ``SENTRY_URL_PREFIX`` has been deprecated, and moved to `system.url-prefix` inside of `config.yml` or it
  1777. can be configured at runtime.
  1778. - ``INTERNAL_IPS``, if configured, will now restrict superuser access to only users with both ``is_superuser``
  1779. and a matching IP.
  1780. CLI
  1781. ~~~
  1782. The `sentry` CLI tooling has been rewritten to be faster and less confusing.
  1783. Static files
  1784. ~~~~~~~~~~~~
  1785. Static files are now served with a far-futures Cache-Control header, and are versioned by default. If you were serving `/_static/` explicitly from your server config, you may need to update your rules or adjust the `STATIC_URL` setting accordingly.
  1786. General
  1787. ~~~~~~~
  1788. - Source builds now require Node 0.12.x or newer.
  1789. - The ``public`` setting on projects has been removed
  1790. - This also removes ``SENTRY_ALLOW_PUBLIC_PROJECTS``
  1791. - Clients which were only sending ``sentry_key`` and not using CORS will no
  1792. longer be able to authenticate.
  1793. - All incoming events now log through ``sentry.api``, which will additionally
  1794. capture far more events with improved console formatting.
  1795. - The 'sentry' user can no longer be removed.
  1796. - The Cassandra nodestore backend was broken, and this has been resolved.
  1797. - The ``has_perm`` plugin hook is no longer used.
  1798. - Do not unconditionally map sys.stdout to sys.stderr
  1799. - The HTTP interface's internal structure has greatly changed. Headers and Cookies are now lists. Body
  1800. is now stored as a string.
  1801. - The internal metrics backend now supports both Datadog and a simple logging implementation (useful in DEBUG).
  1802. - Member roles can now view client keys (DSNs).
  1803. - Documentation for configuration wizards is now pulled from docs.getsentry.com as part
  1804. of the ``upgrade`` and ``repair`` processes.
  1805. - The SSO flow for existing users has been greatly improved to avoid duplicate accounts.
  1806. - Deletions are delayed for one hour and can be cancelled by changing the status
  1807. back to ``VISIBLE``.
  1808. - Membership permissions have been overhauled and have been flattened into a single tiered
  1809. role. Additionally owners will no longer be automatically added to new teams.
  1810. - ``NotificationPlugin`` now requires ``is_configured`` to be declared.
  1811. - ``sentry.search`` should no longer be extended (``index`` and ``upgrade`` have been removed)
  1812. Client API
  1813. ~~~~~~~~~~
  1814. - The ``culprit`` attribute will now automatically be filled when not present.
  1815. - The ``in_app`` attribute on frames will now be computed on event submission when not present.
  1816. - The ``ip_address`` value will always be stored on the user interface when possible.
  1817. - The user interface no longer accepts data missing one of the required identifiers.
  1818. - The ``fingerprint`` value is now stored in ``Event.data``.
  1819. - The ``environment`` attribute is now soft-accepted and tagged.
  1820. Schema Changes
  1821. ~~~~~~~~~~~~~~
  1822. - Removed the ``Project.platform`` column.
  1823. - Removed the ``Project.organization`` column.
  1824. - Removed the ``AccessGroup`` table.
  1825. - Added ``EventUser`` table.
  1826. - Added ``user.{attribute}`` to search backends.
  1827. - Added ``Project.first_event`` column.
  1828. - Added ``Release.owner`` column.
  1829. - Added ``Organization.default_role`` column.
  1830. - Added ``OrganizationMember.role`` column.
  1831. - Added ``Broadcast.upstream_id`` column.
  1832. - Removed ``Broadcast.badge`` column.
  1833. - Added ``Broadcast.title`` column.
  1834. - Migrated blob data in ``File`` to ``FileBlob``.
  1835. - Removed ``File.storage`` column.
  1836. - Removed ``File.storage_options`` columns.
  1837. - Added ``OrganizationOption`` table.
  1838. - Added ``GroupSnooze`` table.
  1839. - Added ``GroupResolution`` table.
  1840. - Added ``GroupBookmark.date_added`` column.
  1841. - Removed ``User.last_name`` column.
  1842. - (App-only) Renamed ``User.first_name`` to ``User.name``.
  1843. - Removed ``Activity.event`` column.
  1844. - Removed ``Event.num_comments`` column.
  1845. v7.7.1
  1846. ------
  1847. - Pin Kombu dependency due to incompatibility.
  1848. v7.7.0
  1849. ------
  1850. - The behavior of ``create_or_update`` has changed. If you're using it please see the updated function.
  1851. - Added ``Group.first_release`` column.
  1852. - Added ``SavedSearch`` model for future features.
  1853. - Added ``Release.new_groups`` column.
  1854. - The explore feature is now deprecated and links have been hidden.
  1855. - Expanded various API endpoints for future usage.
  1856. - Initial prototype of embeddable crash reports. This adds the ``UserReport`` model.
  1857. - Added basic UI reporting for status checks.
  1858. - Added celery/beat alive check.
  1859. - Added celery app version check.
  1860. - Added queue overview to internal administration.
  1861. - Upped TSDB's storage of 10s to 60m of data.
  1862. - Added protocol version 7 to client spec.
  1863. - Adds ``fingerprint`` attribute.
  1864. - The behavior of ``SENTRY_ENABLE_EXPLORE_USERS`` is now default and the setting has been removed.
  1865. v7.6.2
  1866. ------
  1867. - Improved (fixed?) static bundling in various conditions.
  1868. v7.6.1
  1869. ------
  1870. - [Security] An XSS vulnerability was addressed with low cardinality tags and the stream filter box:
  1871. https://github.com/getsentry/sentry/commit/364b959811561de83f29893e105cc590224edbee
  1872. v7.6.0
  1873. ------
  1874. This releases entirely removes Access Groups. If you're upgrading from an installation that had yet to migrate away from this system you should first upgrade to a previous version, run the migration wizard, and then continue the upgrade.
  1875. - The project-wide Alert system has been removed (to be re-implemented in the future).
  1876. - Access groups have been permanently removed.
  1877. - Added 'access_token' to data blacklist.
  1878. - The legacy (unused) search tables have been removed.
  1879. - Upgrades must now be applied manually via ``sentry upgrade`` or with ``sentry start --upgrade``.
  1880. (Don't forget to use ``--noinput`` if you're doing this via automated tooling!)
  1881. - ``Event.checksum`` and ``Group.checksum`` have been removed.
  1882. - The ``cleanup`` task has been removed (the command is still available).
  1883. - Various optimizations to ``cleanup`` for Postgres users.
  1884. - Within single organization mode users will automatically be added to the default organization.
  1885. - Added ``Organization.merge_to()`` helper to assist with merging organizations.
  1886. (i.e. in an on-premise install which wants to convert to a single organization)
  1887. - New ``import`` and ``export`` commands now exist for creating backups of critical metadata
  1888. (i.e. api keys, projects, user settings)
  1889. v7.5.6
  1890. ------
  1891. - Improved (fixed?) static bundling in various conditions.
  1892. v7.5.5
  1893. ------
  1894. - [Security] An XSS vulnerability was addressed with low cardinality tags and the stream filter box:
  1895. https://github.com/getsentry/sentry/commit/364b959811561de83f29893e105cc590224edbee
  1896. v7.5.4
  1897. ------
  1898. - Yet another case where valid team membership was being excluded.
  1899. v7.5.3
  1900. ------
  1901. - Fix another case where valid team membership was being excluded
  1902. v7.5.2
  1903. ------
  1904. - Correctly support SENTRY_PROJECT.
  1905. v7.5.1
  1906. ------
  1907. - Fix case where certain pages were not correctly including valid team membership
  1908. - Fix default user creation (regain automated signal)
  1909. - Fix sampling of internal metrics
  1910. v7.5.0
  1911. ------
  1912. This release removes the ability to login or create accounts using a social auth backend.
  1913. If your install was based purely on social accounts you'll need to use the standard reset password flows to recover accounts.
  1914. Redis must be at least version 2.6.12.
  1915. - Interface.compute_hashes() now receives the platform of the event.
  1916. - Server-side data scrubbers were incorrectly filtering invalid interface aliases.
  1917. - The sensitive_fields option is now exposed in project settings.
  1918. - The default logger name is now an empty value.
  1919. - Celery has been upgraded to 3.1 and is now available at 'sentry.celery'.
  1920. - Facebook, Google, and Twitter identities are no longer available.
  1921. - Plugin's inheriting from TagPlugin are now based on v2 of the API.
  1922. - Metrics (counters) are now collected both in sentry.tsdb and an optionally configured statsd
  1923. instance.
  1924. - Organizations can now toggle open membership which allows members to freely join/leave any team.
  1925. - ProjectKey.user has been removed.
  1926. - Organization API keys are now exposed in the UI.
  1927. - Team.owner has been removed.
  1928. - TeamMember has been removed.
  1929. - PendingTeamMember has been removed.
  1930. - Added OrganizationMember.counter.
  1931. - Added 'sentry.db.postgres' optimized Postgres backend.
  1932. - Added ReleaseTrackingPlugin and various release-focused endpoints.
  1933. - Dedicated configuration pages for Release Tracking and Issue Tracking integrations now exist.
  1934. - Several additions to the Release schema.
  1935. - Notification integrations are now present within project's notification settings.
  1936. - Fixed an issue with tag key deletion not following explicit constraints.
  1937. v7.4.3
  1938. ------
  1939. - Corrected various issues involving sampled data. Things should now sample according to actual MATH.
  1940. v7.4.2
  1941. ------
  1942. - Corrected invalid reference to SENTRY_ALLOW_REGISTRATION.
  1943. v7.4.1
  1944. ------
  1945. - Correct an issue with AuthProvider's migrations on MySQL.
  1946. v7.4.0
  1947. ------
  1948. - A new features subsystem was added, and many optional features are now run through it.
  1949. - The 'add_organization' permission is no longer used.
  1950. - The 'add_team' permission is no longer used.
  1951. - SENTRY_ALLOW_REGISTRATION is deprecated in favor of SENTRY_FEATURES['auth:register'].
  1952. - SOCIAL_AUTH_CREATE_USERS is deprecated in favor of SENTRY_FEATURES['social-auth:register'].
  1953. - SENTRY_SERVER_EMAIL is no longer used.
  1954. - Added first pass API at storing javascript artifacts via release APIs.
  1955. - Improved error reporting for JavaScript source/sourcemap errors.
  1956. - Improved configuration handling on sentry.cache.
  1957. - Added various release API endpoints.
  1958. - Added various organization API endpoints.
  1959. - Added various tag API endpoints.
  1960. - Sourcemaps will now always treat sourceRoot as a path.
  1961. - Changed many permissions to use new sentry.access abstractions which are now
  1962. scoped based, shared with the API scopes.
  1963. - Initial first pass at the SSO subsystem.
  1964. - The Sentry internal client will now aggressively prevent recursive errors, but allow more
  1965. internal errors to be recorded to itself.
  1966. - An XSS vulnerability with tag values not being escaped (on the group details page) has been resolved.
  1967. v7.3.2
  1968. ------
  1969. - Fixed missing beacon task import.
  1970. v7.3.1
  1971. ------
  1972. - Updated Gunicorn version and default configuration.
  1973. - Fixed periodic task for beacon.
  1974. v7.3.0
  1975. ------
  1976. - The SENTRY_ADMIN_EMAIL setting now exists, and should be the technical contact for the install.
  1977. - Fixed an issue that would cause job fanout in deletions.
  1978. - Notifications are now sent when someone assigns you to an event.
  1979. - Release objects are now created automatically.
  1980. - Changed team-based API endpoints to use slugs.
  1981. - New API endpoints:
  1982. - Help page list
  1983. - Help page details
  1984. - Group tag values
  1985. - Project tag values
  1986. - Moved JavaScript sourcemap processing into language extension.
  1987. - Sourcemap processing errors are now annotated into the frame.
  1988. - Refactored API to be scope-based permissions.
  1989. - Added backend support for organization API keys.
  1990. - Moved sentry_webhooks into builtins.
  1991. - Added reporting Beacon (see docs).
  1992. v7.2.0
  1993. ------
  1994. - A py.test plugin now exists to make extension testing easier.
  1995. - A Mailgun webhook endpoint is now available for incoming email.
  1996. - Added security token for JS source expansion.
  1997. - Duct tape workaround for event navigation buttons repeating the same event.
  1998. - Origins now support custom protocols as well as relaxed support on other components.
  1999. - Minor optimizations for deletion tasks and endpoints.
  2000. - Minor optimizations for Redis buffer.
  2001. - Added the ability to enable/disable project keys.
  2002. - Added audit log entries for project keys.
  2003. - Added UI, API, and async task for deleting project tag keys.
  2004. - Various fixes/improvements to regression windows.
  2005. - Rules will no longer execute duplicate actions.
  2006. - EventFrequencyCondition will now fire a maximum of once every 30 minutes.
  2007. v7.1.4
  2008. ------
  2009. - Fixed an issue with hourly rollups not expiring accurately in TSDB
  2010. If you've been running a 7.x series release for a while you may considering running a cleanup script to ensure erroneous values dont still exist in Redis:
  2011. https://gist.github.com/dcramer/55a44904be883f8d03e1
  2012. v7.1.3
  2013. ------
  2014. - Resolved an issue with migrations we created in 7.1.2.
  2015. v7.1.2
  2016. ------
  2017. - Fix migrations to ensure org/teams arent created with empty slugs.
  2018. v7.1.1
  2019. ------
  2020. - Suggest realip module over X-Forwarded-For
  2021. v7.1.0
  2022. ------
  2023. Plugin v2
  2024. ~~~~~~~~~
  2025. The beginnings of version 2 of the plugin interface have landed. This will expand over time but currently includes the following hooks:
  2026. - get_actions
  2027. - get_annotations
  2028. - get_event_preprocessors
  2029. - get_notifiers
  2030. - get_rules
  2031. - get_tags
  2032. Other Changes
  2033. ~~~~~~~~~~~~~
  2034. - crossdomain.xml no longer supports projects-by-slug.
  2035. - A basic file storage abstraction is now available internally.
  2036. - The project group list API endpoint now has pagination.
  2037. - Several API endpoints have been added to public docs.
  2038. - X-Forwarded-For is now handled automatically (and we do not support non-proxy installs).
  2039. - Various tweaks to GroupMeta caching.
  2040. - The raven-python Sentry server-specific client code is now part of Sentry.
  2041. - Various improvements to tag rendering.
  2042. - Various improvements to bulk deletion strategies.
  2043. - Added NodeStore.multi_delete.
  2044. v7.0.0
  2045. ------
  2046. Between version 6.4.x and 7.0 a significant number of changes have landed (approximately a years worth of commits). There are a large number of overall architecture changes, as well as various API compatibility changes. This document does not attempt to cover them all.
  2047. As many things have changed, it's strongly recommended that you regenerate your ``sentry.conf.py`` (using ``sentry init``) and merge in your custom settings.
  2048. Backwards Incompatible Changes
  2049. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2050. - Django has been upgraded to 1.6
  2051. - The buffer API has been rewritten and the Redis buffer has had its performance greatly improved.
  2052. - The UDP server has been removed. Threaded/async models or a buffer proxy are the preferred replacement.
  2053. - The ``is_rate_limited`` plugin hook has been removed in favor of singular quota managers.
  2054. - The trends feature has been removed until it can be reimplemented in a more scalable way.
  2055. - Filters have been removed. Integrations should use the tagging infrastructure instead.
  2056. - ``NodeStore.generate_id()`` now returns a base64-encoded UUID.
  2057. - The API for interfaces has been rewritten.
  2058. - ``GroupMeta.objects.get_value`` no longer errors when a value is missing.
  2059. - ``sentry.plugins.sentry_sites`` has been removed.
  2060. - The Search API has been rewritten and now powers the entire stream.
  2061. - Removed Event.{logger,site,logger,level,culprit} references/columns. Legacy attributes for transitional behavior are available.
  2062. - Removed Project.owner.
  2063. - Removed Team.owner.
  2064. - ``is_new`` in ``Plugin.post_process`` will **only** be set if the event is brand new.
  2065. - Project-based URLs are changed to be organization scoped instead of team scoped.
  2066. - Static assets are no longer bundled as part of the repository and are instead compiled during the sdist/installation phases (as needed). See installation notes for further information.
  2067. - Graphs have been transitiong to ``sentry.tsdb`` (historical data is not preserved)
  2068. - Workers must now also run ``celerybeat``. This can be done either via passing -B to worker, or by running another process: ``sentry celerybeat``.
  2069. - Access Groups are now deprecated and will be removed in a version version.
  2070. Organizations
  2071. ~~~~~~~~~~~~~
  2072. Organizations are the new top-level item of your Sentry install. All membership and team management has been moved into the new organization hub.
  2073. Generally for self-hosted installations you'll only have a single organization.
  2074. Migrations will happen automatically for this, and while these were able to applied cleanly and automatically on getsentry.com, we suggest considering snapshotting your database before running them. Additionally consider doing this at a period of the day where users generally wont be tweaking options to team membership.
  2075. TSDB
  2076. ~~~~
  2077. A new time-series backend is now used (removing the legacy SQL-based graphing solutions). The only currently supported/bundled backend requires Redis. More information can be found in ``sentry.tsdb``.
  2078. Rules
  2079. ~~~~~
  2080. A new system for basic controls around notifications (called Rules) has been added. These are per-project hooks for doing dynamic customization of "what happens when a new event is seen?".
  2081. Web API
  2082. ~~~~~~~
  2083. The first offering a public API has landed. You'll find it with the new embedded docs (at /docs/).
  2084. Protocol Version 6
  2085. ~~~~~~~~~~~~~~~~~~
  2086. Version 6 of the protocol has been introduced. The only change is the addition of the `release` attribute.
  2087. BIGINT
  2088. ~~~~~~
  2089. All integer fields have been replaced with bigint's. This migration is *not* automated (due to it causing locking) and if you need it locally you will need to sort out the migration on your own, as well as set `SENTRY_USE_BIG_INTS = True` in your configuration.
  2090. Help Pages
  2091. ~~~~~~~~~~
  2092. The beginnings of bundled documentation now exists. The defaults are generated from disk (see sentry/data/help_pages/).
  2093. v6.4.0
  2094. ------
  2095. Some major backend changes are introduced in Sentry 6.4.0.
  2096. django.contrib.auth
  2097. ~~~~~~~~~~~~~~~~~~~
  2098. The builtin Django authentication module is no more. The Group and Permission models are no
  2099. longer used, and the User model has been replaced with sentry.User.
  2100. Search
  2101. ~~~~~~
  2102. Search has been abstracted from the simple search manager, and now lives within
  2103. ``sentry.search``. Currently only the Django backend is supported, but some sample
  2104. code for Solr Cloud integration is also available.
  2105. Event Storage
  2106. ~~~~~~~~~~~~~
  2107. A new application called ``nodestore`` now manages the event blob data. By default it
  2108. uses a Django-based backend (storing each node as a row in a table), however a Riak
  2109. backend is included and fully supported.
  2110. Additional Changes
  2111. ~~~~~~~~~~~~~~~~~~
  2112. - Some initial support for time zones (user setting).
  2113. - You can now choose which tag annotations are applied to the event stream via Project Settings -> Tags.
  2114. - A new subsystem for handling email is available in ``sentry.utils.email``.
  2115. - You can now receive email notifications for notes.
  2116. - Charts now show tooltips describing the datapoint.
  2117. - JavaScript sourcemaps now support embedded sources.
  2118. - Stream annotations can now be customized to show any tags (not just number of users).
  2119. - Stacktrace frames now get truncated down to a maximum length of 50.
  2120. Protocol Version 5
  2121. ~~~~~~~~~~~~~~~~~~
  2122. - sentry_version should be sent as '5'.
  2123. - The stacktrace interface now accepts a 'frames_omitted' tuple.
  2124. v6.3.0
  2125. ------
  2126. - Most of the db utilities were refactored into ``sentry.db``.
  2127. - The user interface now accepts an ``ip_address`` attribute.
  2128. - User tracking will now use the ip_address attribute if available.
  2129. - ``time_spent`` is now expected to be sent as an integer in milliseconds.
  2130. - A new Notes feature is available for leaving comments on an event.
  2131. v6.2.0
  2132. ------
  2133. - Added tracking to which users have seen which groups
  2134. - The stream now reflects if you've viewed an event since it was created or regressed.
  2135. - The group details page shows other users who have glanced at an event.
  2136. - Streams which have recorded user data will now show the number of unique users
  2137. an event has happened to.
  2138. - Various stream polling fixes and improvements.
  2139. v6.1.1 (Security Release)
  2140. -------------------------
  2141. Sentry 6.1.1 is a security release which patches a remote code execution exploit.
  2142. This only affects servers hosted public clients (e.g. raven.js).
  2143. The following commit demonstrates the exploit, as well as the patch:
  2144. https://github.com/getsentry/sentry/commit/5793c6cac19aeb7d2e19f9a09f4421b771af4306
  2145. v6.1.0
  2146. ------
  2147. - Added Rate Limit controls.
  2148. v6.0.0
  2149. ------
  2150. Say hello to our new logomark! Version 6 of Sentry includes many changes within
  2151. the core designed to improve future compatibility for various platforms.
  2152. It also includes quite a number of incompatible changes, so it's recommended
  2153. that plugin authors read through the notes carefully, and run some simply
  2154. sanity checks. It also introduces version 4 of the protocol.
  2155. Incompatible Changes
  2156. ~~~~~~~~~~~~~~~~~~~~
  2157. - Django has been upgraded to 1.5.
  2158. - django.contrib.auth.models.User has been replaced with sentry.models.User.
  2159. - sentry_servers no longer exists, and the behavior is now always present. If
  2160. you had it manually listed in INSTALLED_APPS, simply remove it.
  2161. - Filters have been deprecated, and most functionality removed. See notes below.
  2162. - TrackedUser, AffectedByUser, and Group.users_seen have been removed in favor
  2163. of reusing the tagging architecture for user tracking.
  2164. - Suspension of team members is no longer available. The feature was rarely
  2165. used, and removing it greatly simplifies the auth logic in the API.
  2166. - **The mail plugin can no longer be disabled, and all mail-specific options
  2167. have been removed.**
  2168. - Nearly all data within an event now has a fixed max size. See client
  2169. developer documentation for details.
  2170. - Project keys are no longer created for individuals by default
  2171. - sentry.conf.settings has been removed
  2172. - LOG_LEVELS, DEFAULT_LOG_LEVEL, and DEFAULT_LOGGER_NAME are no longer configurable.
  2173. - DEFAULT_ALERT_PROJECT_THRESHOLD and DEFAULT_ALERT_GROUP_THRESHOLD are no longer
  2174. configurable.
  2175. - SENTRY_EMAIL_SUBJECT_PREFIX and SENTRY_SERVER_EMAIL are no longer used, and default to
  2176. the appropriate Django options.
  2177. - SENTRY_CACHE_BACKEND is no longer configurable.
  2178. - SENTRY_AUTH_PROVIDERS is now AUTH_PROVIDERS.
  2179. - Existing account recovery tokens are no longer valid.
  2180. - sentry.utils.router has been removed.
  2181. Protocol Version 4
  2182. ~~~~~~~~~~~~~~~~~~
  2183. - sentry_version should be sent as '4'.
  2184. - Aliases are now recommended instead of full interface names.
  2185. - The exception interface now supports a bound stacktrace, and all events
  2186. (in all protocols) which contain both an exception and a stacktrace will
  2187. be rolled up. This should be sent as the ``stacktrace`` attribute.
  2188. - The exception interface now supports chained exceptions, and should
  2189. be sent as a list of exception values. Check the updated documentation for
  2190. ordering details.
  2191. Alerts
  2192. ~~~~~~
  2193. A basic alert system has been added.
  2194. - Configured at the project level.
  2195. - Signaled via Plugin.on_alert.
  2196. Filters
  2197. ~~~~~~~
  2198. The outdated filter system has been mostly removed. You should rely on
  2199. tagged data for filter generation.
  2200. If you were previously defining ``SENTRY_FILTERS`` you should remove it
  2201. from your settings as it will be entirely obsolete in a future version.
  2202. Other Changes
  2203. ~~~~~~~~~~~~~
  2204. - Activity feeds will now attempt to filter out some duplicates.
  2205. - Tags now show on the event details page.
  2206. - Corrected some invalid behavior when storing tags with an individual event.
  2207. - Plugin.get_tag_values was added.
  2208. - A new team select dashboard exists if you are a member of multiple teams.
  2209. - A new Sentry logo mark has replaced the simple text header.
  2210. - C# has been added to experimental clients.
  2211. v5.4.0
  2212. ------
  2213. SENTRY_PUBLIC now dictates whether or not a Sentry install should be considered
  2214. accessible by all users or not. This should better solve the use-case of companies
  2215. hosting a Sentry instance internally and not necessarily needing the permissions
  2216. that teams give you.
  2217. If enabled, all teams and all projects will be accessible all members (for any endpoint
  2218. which does not require a certain level of access). Project.is_public now dictates the
  2219. implied state of all events, but will not allow a non-member to browse events.
  2220. Additionally, this includes the following other items:
  2221. - [Important!] The URLS for social authentication have been moved.
  2222. - Improved rendering of data values in all interfaces.
  2223. - django-compressor was replaced with django-static-compiler.
  2224. - A better defined public view of events (which removes several items from being visible).
  2225. - Improved SourceMap discovery.
  2226. - Most events will no longer cause a hard error when validation fails. Instead we attempt
  2227. to drop any non-required data so that at least a partial event is stored.
  2228. - MessageCountByMinute was renamed to GroupCountByMinute.
  2229. - MessageFilterValue was renamed to GroupTag.
  2230. - Syntax highlighting was disabled (pending performance solutions).
  2231. - Added Team.date_added column.
  2232. - Lots of various design changes.
  2233. - Trending SQL queries can now be disabled by setting
  2234. ``SENTRY_USE_TRENDING = False``
  2235. v5.3.0
  2236. ------
  2237. A brand new Sentry design has landed.
  2238. Some things of note:
  2239. - An improved dashboard.
  2240. - Improved activity feeds on aggregate details.
  2241. - Similar event navigation links on aggregate details.
  2242. - Redesigned team management flow.
  2243. Additionally:
  2244. - Aggregates now happen on (project, checksum), which means events that have different
  2245. levels or culprits can now be grouped together.
  2246. - Sentry now requires authentication for all pages.
  2247. - SENTRY_PUBLIC behavior has changed to signify the default state of projects.
  2248. - Project slug's are now only unique within a team.
  2249. v5.2.2
  2250. ------
  2251. - [New] The dashboard will now stream updates to the new and trending event components.
  2252. v5.2.1
  2253. ------
  2254. - [Fix] Trends sorting options on the Stream page work correctly again.
  2255. v5.2.0
  2256. ------
  2257. - [New] A new activity stream exists on event pages.
  2258. - [New] Syntax highlighting now exists on all context frames.
  2259. - [New] Support for JavaScript Sourcemaps now exists.
  2260. - [New] The server will now fetch remote source files for JavaScript events.
  2261. - [New] Sentry will now ask for your project's platform.
  2262. - [Fix] Resolved -> Regressed state change is now atomic.
  2263. - [Fix] ``cleanup`` now runs with lower resource overhead.
  2264. - [Fix] Cookies will now be coerced to dicts if possible.
  2265. - More (storage only still) work on user tracking.
  2266. - Several indexes were added to speed up various queries.
  2267. - Removed savepoint use in plugin hooks (99% of the time there were no queries).
  2268. Additional, the following client protocol changes are part of this release:
  2269. - Cookies should be not be sent by default.
  2270. - POST data should not be sent by default.
  2271. - Recommended values regexp for sanitizing credit cards was updated.
  2272. - ``colno`` was added to the Stacktrace spec.
  2273. - Timestamps that are more than one minute in the future are now discarded.
  2274. - (Undocumented) Client-side support now exists for GET + Referrer store requests.
  2275. We've also reduced the test suite time down to 25% of what it originally was (thanks, Alex!)
  2276. v5.1.3
  2277. ------
  2278. A new user's affected-tracking mechanism is present (storage only). This will
  2279. become available in the UX in a future version, and relies on the existing HTTP
  2280. and User interface datas.
  2281. - [Fix] Correct a bug with search queries.
  2282. - [New] Group.users_seen will now track unique users when possible.
  2283. - [New] Team and project owners can now change ownership (non-superuser).
  2284. - [Fix] Counts are now formatted correctly when number of visible digits > 3.
  2285. v5.1.2
  2286. ------
  2287. - [Fix] Option schema (key length = 64).
  2288. - [Fix] Template interface now renders correctly.
  2289. - [Fix] Update design on admin status pages.
  2290. - [New] iOS client documentation.
  2291. - Improved client documentation visuals.
  2292. v5.1.1
  2293. ------
  2294. Several schema changes are made in this upgrade:
  2295. - A new model: LostPasswordHash
  2296. - Two new fields on ProjectKey: date_added and user_added
  2297. - A new field on Event: platform
  2298. - A new field on Group: platform
  2299. The following changes are also part of this release:
  2300. - [New] A new plugin, sentry-interface-types will now automatically tag the available interface
  2301. types in an event.
  2302. - [New] The platform value sent with an event is now recorded in the database.
  2303. - [New] A recover account flow has been added.
  2304. - [New] There is now a sticky nav on the event details pages.
  2305. - [New] getting started page now shows if there's no data for a project.
  2306. - [New] An API key management page now exists (under project settings).
  2307. - [New] A tag overview page now exists for group details pages.
  2308. - [Fix] Line numbers now show correctly in collapsed source context.
  2309. - [Fix] Pending members now show correctly on the team management page (under project settings).
  2310. - [Fix] The time since value now updates correctly when events change.
  2311. - Various changes to how event details components render.
  2312. - Various fixes for breadcrumbs and header styles.
  2313. - Most plugins will no longer default to enabled on new projects.
  2314. v5.1.0
  2315. ------
  2316. Minor point releases now signify major changes (5.1.0 is a major release). Bugfix and smaller
  2317. releases will continue as normal.
  2318. This release includes a very large set of changes from 5.0.0, including a new client protocol
  2319. and an overhaul to the frontend code (specifically the JavaScript).
  2320. If you're a contributor, take note that there is now a JavaScript test suite. You can run all
  2321. test suites with the ``make test`` command.
  2322. Protocol Version 3
  2323. ~~~~~~~~~~~~~~~~~~
  2324. Sentry 5.1 removes support for version 1.0 of the protocol, and maintains a compatibility layer
  2325. for version 2.0.
  2326. Additionally, the following changes apply to the new protocol:
  2327. - sentry_version should be sent as '3' (not 3.0).
  2328. - Signed messages are no longer supported (signatures are not calculated).
  2329. - sentry_signature is no longer used.
  2330. - sentry_timestamp is no longer used.
  2331. - Clients must pass sentry_secret for server-side requests as part of the auth
  2332. header. This check runs in the event that there is no Origin header sent.
  2333. - version 2.0 supports validation of this, version 3 requires it.
  2334. - The ``project`` attribute in the JSON packet is no longer required.
  2335. - The ``platform`` attribute is now recommended.
  2336. - The ``tags`` attribute is now recommended.
  2337. Other Changes
  2338. ~~~~~~~~~~~~~
  2339. - Aggregation 'Views' have been removed.
  2340. - All streaming components are now powered by Backbone.js.
  2341. - Frontend has been updated to Bootstrap 2.1.
  2342. - The event stream now includes sparklines representing the last 24 hours of data for each event.
  2343. - Trends have greatly improved.
  2344. - Grouping events that have identical stacktraces other than the function name (e.g. dynamically generated
  2345. functions) is not possible.
  2346. - SiteFilter has been removed, as has the sites plugin.
  2347. - If frames are included in a stacktrace that have the attribute ``in_app: false``, they will be hidden by default in
  2348. the details view.
  2349. - crossdomain.xml support is now available (see documentation).
  2350. - The search feature now uses buffers to better handle write concurrency.
  2351. - Early support for WSGI (should be functional) exists as ``sentry.wsgi``.
  2352. - Many fixes around cache usage.
  2353. v5.0.0
  2354. ------
  2355. - Variable versions of Django are no longer supported. Django 1.4.x must now be used.
  2356. - Public projects are restricted to viewing without being authenticated.
  2357. - The default behavior of Sentry is to now use timezone-aware datetimes everywhere.
  2358. - Permissions have been refactored to be more precise.
  2359. v4.10.0
  2360. -------
  2361. - A new IssuePlugin base is available.
  2362. - Charts have been refactored to show 7 days worth of data.
  2363. - django.contrib.staticfiles is now supported.
  2364. - django.contrib.messages is now supported.
  2365. v4.9.0
  2366. ------
  2367. Social authentication is now supported!
  2368. By configuring several options (documented in the getting started guide), you can allow users to signup and login
  2369. with accounts from several social services. Additionally users can associate their existing accounts (via a
  2370. new identities panel in their account settings) with any number of these services.
  2371. Currently, the following services are supported:
  2372. * GitHub
  2373. * Twitter
  2374. * Facebook
  2375. * Google
  2376. v4.8.0
  2377. ------
  2378. Tags are now able to be created dynamically! See the documentation for more details on implementing it inside
  2379. of your client.
  2380. You can also configure which tags will show up as filters in the sidebar via your project's settings page. By
  2381. default all tags will show up.
  2382. v4.7.0
  2383. ------
  2384. User options are now available to plugins. The builtin mail plugin also now takes advantage of them.
  2385. - sentry_mail will now use the alert_email option over your account email if specified.
  2386. - sentry_mail now allows you to choose which projects to receive alerts for.
  2387. - Numeric slugs will no longer return 404s.
  2388. - Corrected the repair command with the --owner argument.
  2389. v4.6.0
  2390. ------
  2391. Improvements to the dashboard are trickling in, with this update including:
  2392. - Changing "Top Events" to "Trends" (if supported by your RDBMS)
  2393. - Time interval selections for both widgets
  2394. Plugins now have a new interface for registering themselves. Please see the developer documentation
  2395. for notes on how to use ``entry_points``.
  2396. Additionally:
  2397. - Signed messages are now deprecated. Save yourself some CPU cycles, and rely on SSL.
  2398. - A new plugin which tags user's email addresses.
  2399. - Several UI cleanups in various areas, such as improvements to the account dropdown and lists of projects/teams.
  2400. - Long awaited cleanup/fixes for applying the initial database migrations (sorry MySQL users).
  2401. - Initial support for arbitrary event tagging (coming soon to a client near you).
  2402. v4.5.0
  2403. ------
  2404. Builtin plugins have been refactored to be more concise. This includes changes to the
  2405. servers, urls, and sites plugins. There is also a new builtin plugin::
  2406. sentry.plugins.sentry_useragents
  2407. With these changes, it now makes it even easier to create a basic plugin that just handles extra
  2408. "tag"-like data. Take a look at one of the aforementioned plugins for an example.
  2409. Additionally:
  2410. - The mail plugin now sends additional Sentry-specific headers.
  2411. - Signatures are deprecated, and no longer required.
  2412. - Several fixes regarding CORS support.
  2413. v4.4.0
  2414. ------
  2415. Two new columns were added to the ``Group`` model:
  2416. - ``resolved_at``: The datetime at which this event was marked as resolved.
  2417. - ``active_at``: The datetime at which this event was marked as open.
  2418. The dashboard's "New Events" will now use the active_at date rather than the original
  2419. first seen date on an event.
  2420. v4.3.0
  2421. ------
  2422. A new global dashboard now exists. The dashboard contains an event graph for all projects which
  2423. you have access to, as well as a list of the top events, and new events.
  2424. Additionally:
  2425. - API endpoints now properly send no-cache headers.
  2426. - Added a countdown to update buffers.
  2427. v4.2.0
  2428. ------
  2429. Sentry now has support for buffering a majority of its counters via Redis. For more information, check
  2430. the buffer section of the configuration documentation.
  2431. - Nearly all race conditions are now handled correctly using distributed cache locks.
  2432. v4.1.0
  2433. ------
  2434. Sentry now maintains full support for CORS requests from external hosts. This means that clients like
  2435. raven-js will now able to securely send messages to Sentry, without compromising their secret key.
  2436. In addition:
  2437. - Trusted domains were removed. These were not fully implemented.
  2438. - A new datepicker for selecting ranges of events.
  2439. - raven-javascript and raven-ruby are now officially supported clients.
  2440. - Added ``sentry repair``.
  2441. v4.0.0
  2442. ------
  2443. Introducing Teams!
  2444. Projects are now assigned to a single team, and that team may consist of many members. Additionally
  2445. each team may own multiple projects. This makes it much easier to handle permissions across a single
  2446. organization that has many projects.
  2447. This update also includes initial changes to how filters work. ServerName Filter and SiteFilter are
  2448. no longer specified in the ``FILTERS`` setting, but instead are included automatically if you
  2449. load the respective ``sentry_servers`` and ``sentry_sites`` plugins.
  2450. Additional changes:
  2451. - Legacy data format is no longer supported (pre-Raven 1.x)
  2452. - API will now validate data before sending it into the queue, enabling better debugging for clients.
  2453. v3.8.0
  2454. ------
  2455. Plugins are now configurable per-project. This makes it easy to install a plugin globally
  2456. and allow it to run only on selective projects.
  2457. v3.7.0
  2458. ------
  2459. Several minor fixes, as well as a backwards incompatible change with filters.
  2460. All filters must now accept the project argument in the initializer. The signature is
  2461. now __init__(request, project).
  2462. v3.6.0
  2463. ------
  2464. This version focuses on improving membership control. It includes the ability to revoke
  2465. project members access temporarily (by suspending them), as well as revoking users
  2466. (outside of Sentry) via the user.is_active flag.
  2467. Additionally, it brings the beginnings of an "invite user" flow, allowing you to
  2468. invite users who may or may not already have accounts in the system. We plan to improve
  2469. this flow in an upcoming release to allow invitees easy registration within the system
  2470. if they don't already have an account.
  2471. v3.5.0
  2472. ------
  2473. Several improvements and additions have been made around the administration, including
  2474. performance improvements.
  2475. If you're utilizing the queue, the installation guide now recommends you switch off the
  2476. database backend, and move to something more efficient (such as Redis).
  2477. v3.4.0
  2478. ------
  2479. Eventlet is no longer used as the default worker for gunicorn, and thus is no longer
  2480. installed by default. If you're using the udp worker, or ``send_fake_data`` you MUST
  2481. install eventlet yourself. The recommended worker class for gunicorn is now ``gevent``
  2482. as it corrects some issues with async queries in psycopg2.
  2483. v3.3.0
  2484. ------
  2485. The queue has been changed from direct Kombu, to utilizing Celery entirely. If you were
  2486. already using the queue, the upgrade simply requires you to change "sentry start worker"
  2487. to "sentry celeryd".
  2488. v3.0.0
  2489. ------
  2490. Version 3 of Sentry is centered around a restructure of the internal services and
  2491. the architecture for running those. It also includes improvements to the plugin architecture.
  2492. The upgrade process should be trivial, just be aware that if you were using --config before
  2493. you must change the way you pass it so that it's before the subcommand. For example
  2494. if you were doing ``sentry start --config...`` the command would now be changed to
  2495. ``sentry --config... start``.
  2496. * Sentry no longer provides the ability to daemonize processes. This should now be
  2497. done at the system level.
  2498. * All of Sentry's CLI is now handled through Logan (https://github.com/dcramer/logan),
  2499. which simply pipes commands to Django's internal system utilizing custom configuration.
  2500. * Plugins now have a hook for managing some level of permissions (beyond the required defaults).
  2501. * The plugin interface (IPlugin) is now documented.
  2502. * It is now recommended that clients allow the Sentry server to compute checksums.
  2503. v2.9.0
  2504. ------
  2505. * Plugins must now behave as singletons and be registered with a newly provided
  2506. sentry.plugins.@register decorator.
  2507. * The Bugzilla and Redmine extensions are no longer part of Sentry core.
  2508. * Added a global overview of projects to the administration.
  2509. v2.8.0
  2510. ------
  2511. * Added an Account Settings panel which allows users to change their name,
  2512. email, and password.
  2513. * The default Sentry server now correctly wraps itself in its own middleware.
  2514. * Improved Real-time JavaScript.
  2515. v2.7.0
  2516. ------
  2517. * Added first_seen and last_seen to all message filter values.
  2518. * Added a new "since" option to the dashboard with a default value of 3 days.
  2519. v2.6.0
  2520. ------
  2521. * The built-in webserver is now powered by gunicorn.
  2522. * Cleaned up several admin pages and split them into sub-pages.
  2523. v2.5.0
  2524. ------
  2525. * Corrected some queue behavior.
  2526. * Resolve Feed now only resolves items active within current filters.
  2527. * Handle unicode characters in POST body for replay request.
  2528. * Ensure client side requests run checks on HTTP_REFERER
  2529. * Adjust documentation for service settings.
  2530. v2.4.5
  2531. ------
  2532. * Corrected indexing behavior to handle non strings.
  2533. * If queuing is enabled the indexer will now queue it's jobs.
  2534. * Moved group creation into a transaction.
  2535. v2.4.4
  2536. ------
  2537. * Mail configuration value of send_to now correctly uses ',' as a separator
  2538. (rather than ';').
  2539. * Changed rendering of sidebar widgets for all builtin extensions.
  2540. * Added an event details slot to the sidebar pane for individual events.
  2541. v2.4.3
  2542. ------
  2543. * Correct some behavior with MySQL on the groups pane.
  2544. * Correct generated configuration behavior to use absolute
  2545. paths for run and log folders.
  2546. v2.4.2
  2547. ------
  2548. * Include DSN and member type on projects list grid.
  2549. v2.4.1
  2550. ------
  2551. * Change appearance of resolve states.
  2552. * Adjust user management to link username (which is required) and not
  2553. optional fields.
  2554. v2.4.0
  2555. ------
  2556. * Added user management for admins.
  2557. * Resolved events should now appear differently.
  2558. * Default membership access is now configurable.
  2559. v2.3.2
  2560. ------
  2561. * Maintaining *some* level of support for SQLite.
  2562. v2.3.1
  2563. ------
  2564. * Correct rendering of sites, urls, and servers on details panes.
  2565. v2.3.0
  2566. ------
  2567. * The polling API and JavaScript have been refactored.
  2568. Events now stream in (they generally do not update if they already
  2569. exist), and will maintain correct ordering in the feed.
  2570. This API is available for most sort options, excluding trends.
  2571. * The builtin plugin's widgets have been fixed.
  2572. * Sampling rates are now configurable.
  2573. * Some minor design tweaks.
  2574. v2.2.5
  2575. ------
  2576. * The \|date filter now forces things to UTC (it assumes local time).
  2577. * Event templates have been updated to resemble groups.
  2578. v2.2.4
  2579. ------
  2580. * Improve error logging in API.
  2581. * Update Celery client code to use new send_encoded interfaces.
  2582. * Change JS datetimes to use UTC.
  2583. * Force clients which specify version 2.0 or newer to pass identification.
  2584. * Better default logging configuration.
  2585. * Adjust eventlet to monkey patch the world before any imports happen.
  2586. * Adjust default configuration to specify LOG and RUN directories.
  2587. * upgrade now correctly handles the delete ghosts argument.
  2588. v2.2.3
  2589. ------
  2590. * Lower font size of counts on event list.
  2591. * Align actions to right side (vertical).
  2592. * Fix issue with long filters not transforming to selects.
  2593. v2.2.2
  2594. ------
  2595. * Corrected event_id key to contain (project_id, event_id).
  2596. * Adjusted project form to default the user to the current user
  2597. when accessed by an admin.
  2598. * Change sentry admin to be /manage/ to avoid any unintentional
  2599. conflict with the Django admin.
  2600. v2.2.1
  2601. ------
  2602. * Cleaned up several pages.
  2603. v2.2.0
  2604. ------
  2605. * Sentry has a brand new design utilizing Bootstrap 2.
  2606. * Superusers can now create projects for users.
  2607. v2.1.3
  2608. ------
  2609. * Ensure we truncate tokens to 128 characters for SearchDocument.
  2610. * Gracefully handle errors with indexing.
  2611. * Gracefully handle errors with post_process.
  2612. * Gracefully handle errors with regression_signal.
  2613. * Fixed priority sort option not activating.
  2614. v2.1.2
  2615. ------
  2616. * Fixed an issue that was causing signals to not be registered.
  2617. * Made date the default sort order for aggregate stream.
  2618. v2.1.1
  2619. ------
  2620. * Fixed an issue with indexing pre and post context on templates.
  2621. v2.1.0
  2622. ------
  2623. * ``pytz`` is now a requirement.
  2624. * Changed default TIME_ZONE to be "UTC".
  2625. * Corrected some issues around how dates were localized.
  2626. * Initial implementation of full-text search.
  2627. * Fixed sending of regression_signal so it only happens if event
  2628. has been marked as new.
  2629. * Changed ProjectMember.get_dsn() to use request.get_host() which
  2630. corrects a bug in some webservers.
  2631. v2.0.2
  2632. ------
  2633. * ``start`` no longer performs ``upgrade`` as its problematic.
  2634. * Initial queue usage (optional).
  2635. * Fix reference to bookmark_querystring.
  2636. * Added DSN to project member details page.
  2637. v2.0.1
  2638. ------
  2639. * Skip logging of south in default server configuration as it proves to be problematic.
  2640. * Remove use of deprecated logging handler in default server configuration.
  2641. * Run ``upgrade`` as part of ``start``.
  2642. * Fix GroupBookmark related_name to be sentry namespaced.
  2643. * Correctly handle before_events() hook in polling responses.
  2644. * Removed integrated install documentation as it is no longer officially supported.
  2645. * Gracefully handle rendering errors with interfaces.
  2646. * Correct a bug with default email options.
  2647. v2.0
  2648. ----
  2649. Sentry 2.0 is a major release which contains many new features as well as some large
  2650. rearchitecting of the codebase.
  2651. If you were previously extending Sentry, it would be wise
  2652. to test your extensions before upgrading.
  2653. * Added project scoping to all data in sentry.
  2654. * Added permissions to projects.
  2655. * The authorization header is now X-Sentry-Auth to avoid certain default behaviors such as
  2656. mod_wsgi's "don't pass HTTP Authorization header".
  2657. * sentry.client has been removed
  2658. * The default key is now base64-encoded.
  2659. * sentry.interfaces are now used for coercing and rendering structured data.
  2660. * The store endpoint has a new API.
  2661. * The from_kwargs method has a new API.
  2662. * The ``class_name``, ``traceback``, an ``url`` fields have been removed.
  2663. * GroupedMessage was renamed to Group.
  2664. * Message was renamed to Event.
  2665. * Switched to Bootstrap framework.
  2666. * Added "Replay Request" action for events.
  2667. * Graphs can now be generated for Projects.
  2668. * There is now a trends sort option for aggregated events.
  2669. * Added ``sentry manage`` command.
  2670. * Sentry now has its own isolated queues (using Kombu).
  2671. v1.13.5
  2672. -------
  2673. * Level filters are now precise (they no longer show their level + messages from higher levels).
  2674. v1.13.4
  2675. -------
  2676. * Updated message details page to resemble look and feel of group details.
  2677. v1.13.3
  2678. -------
  2679. * Added back in the "raw traceback" view.
  2680. v1.13.2
  2681. -------
  2682. * Counts will now render differently with large values (e.g. 13000 will now be 13k)
  2683. v1.13.1
  2684. -------
  2685. * Search by message_id will now display a list of results if there are multiple matches.
  2686. v1.13.0
  2687. -------
  2688. * Deprecated the Sentry client, and added Raven to the as the default builtin.
  2689. * Removed Highstock and replaced it with an awesome OPEN SOURCE alternative, jQuery Flot.
  2690. * Default Sentry server options should now work out of the box.
  2691. * Packaged Google Web Font as part of Sentry.
  2692. v1.12.2
  2693. -------
  2694. * Fixed infinite loop.
  2695. v1.12.1
  2696. -------
  2697. * Stabilize migration schema (solves problem with index creation fail introduced in 1.12.0).
  2698. v1.12.0
  2699. -------
  2700. * Adjusted message_id to include the checksum to avoid situations were the message_id
  2701. that was generated did not exist due to sampling.
  2702. v1.11.4
  2703. -------
  2704. * Several design improvements for group/message details panes.
  2705. v1.11.3
  2706. -------
  2707. * Fixed a bug that was causing exception summary to not show.
  2708. v1.11.2
  2709. -------
  2710. * Cleaned up message and group details pages (adding back some missing information).
  2711. * Cleaned up some design around odd margins/padding.
  2712. v1.11.1
  2713. -------
  2714. * Fixed a bug that would cause the admin (and potentially other modules) to get loaded multiple times.
  2715. v1.11.0
  2716. -------
  2717. * Added license headers.
  2718. * Removed ``sentry.helpers`` and ``sentry.routers``.
  2719. * Global module versions are now cached to avoid continuous path walking and
  2720. import overhead.
  2721. v1.10.1
  2722. -------
  2723. * Fixed an issue that was causing servers to show logger names.
  2724. v1.10.0
  2725. -------
  2726. * You can now pass ``extra={'stack': True}`` to logging methods to capture
  2727. the current frames and their locals.
  2728. * Code refactoring in various places related to stack extraction.
  2729. * Denormalized graph data in MessageCountByMinute (stores at 5m intervals).
  2730. * Denormalized filter counts into MessageFilterValue
  2731. * Added message sampling (adapted from Yuri Baburov's patch).
  2732. * Added SENTRY_MAIL_LEVEL setting.
  2733. * Added SENTRY_MAIL_INCLUDE_LOGGERS setting.
  2734. * Added SENTRY_MAIL_EXCLUDE_LOGGERS setting.
  2735. * Added the ``level`` argument to the cleanup command.
  2736. * The thrashed key is now set correctly in request.sentry.
  2737. * Added user information to all messages that have ``request``.
  2738. * Changed the hashing function for messages that include
  2739. stacktraces to ignore the ``message`` and line numbers.
  2740. * Much improved test coverage.
  2741. v1.9.0
  2742. ------
  2743. * Load the Frequency chart asynchronously.
  2744. * Frequency chart no longer shows for SQLite.
  2745. * Switch graphing library to Highstock from Highcharts.
  2746. v1.8.10
  2747. -------
  2748. * Ensure dictionary keys are coerced to strings.
  2749. * Fixed path to missing_permissions.html.
  2750. v1.8.9
  2751. ------
  2752. * Safely handle unpickling objects that may not have been stored in a
  2753. valid format.
  2754. v1.8.8
  2755. ------
  2756. * Changed ``sentry cleanup`` to use a range query.
  2757. v1.8.7
  2758. ------
  2759. * Added "Clear Feed" option.
  2760. * Version information will be read from pkg_resources if possible.
  2761. * Cleared up documentation on configuration settings..
  2762. * Performance improvements to ``Client.send()``.
  2763. * Added default 404/500 pages.
  2764. * Added support for Django's LOGIN_URL setting.
  2765. * Fixed a memory leak in the client (thanks to Ben Bangert).
  2766. v1.8.6.2
  2767. --------
  2768. * Reverted change which required distribute.
  2769. * Cleaned up configuration defaults.
  2770. v1.8.6.1
  2771. --------
  2772. * Include distribute_setup.py in the MANIFEST to ship it in sdists.
  2773. v1.8.6
  2774. ------
  2775. * Corrected an issue which was causing certain settings (like WEB_HOST) to
  2776. not take affect in custom configuration files.
  2777. * The Sentry server will now pull in default server settings, as well as
  2778. ~/.sentry/sentry.conf.py if --config is not passed to it.
  2779. v1.8.5.1
  2780. --------
  2781. * Fixed a bug which caused thrashing prevention to not function correctly.
  2782. * Corrected an error in transform()'s recursion safety.
  2783. * Changed packaging to use Distribute.
  2784. v1.8.5
  2785. ------
  2786. * Pulled test suite out of the Sentry namespace to avoid conflicts in projects.
  2787. v1.8.4.2
  2788. --------
  2789. * Added missing invalid_message_id template.
  2790. v1.8.4.1
  2791. --------
  2792. * Fixed an error that was causing LOG_LEVELS to not display correctly.
  2793. v1.8.4
  2794. ------
  2795. * The Sentry base client will now pass along the timestamp from when the
  2796. message was generated.
  2797. v1.8.3.1
  2798. --------
  2799. * Fixed a case where the client may hit a transaction aborted error when
  2800. transforming variables.
  2801. v1.8.3
  2802. ------
  2803. * Added several settings which were Django specific so that they can be
  2804. configured isolated to the Sentry instance.
  2805. * Graceful failover for when a cache backend isnt working properly and
  2806. throttling is enabled.
  2807. * Better rendering of non-dict variables when passed within extra data.
  2808. * Graceful failover for searching on message_id's that aren't found.
  2809. v1.8.0
  2810. ------
  2811. * Refactored Sentry server to run standalone (sentry --help).
  2812. v1.7.5
  2813. ------
  2814. * Implemented new client/server storage API and signing methods.
  2815. * Fixed a bug where accessing __sentry__ would sometimes cause errors on
  2816. certain code paths.
  2817. v1.7.4
  2818. ------
  2819. * Fixed a bug with potential recursion issues.
  2820. * Fixed a bug with the storage API and unicode keys.
  2821. v1.7.3
  2822. ------
  2823. * Storage API has better responses when data fails to decode, or
  2824. you send a bad request.
  2825. * Documentation improvements for JSON storage API.
  2826. v1.7.2
  2827. ------
  2828. * All strings, lists, tuples, and sets are now shortened before sending
  2829. to the server. Iterable data structures are truncated to the first
  2830. 50 items, and strings are truncated to the first 200 characters.
  2831. Both shorteners have configurable values in the settings.
  2832. v1.7.1
  2833. ------
  2834. * Fixed a bug that slipped through with blocktrans usage.
  2835. v1.7.0
  2836. ------
  2837. * Added ``score`` to ``GroupedMessage`` (schema change).
  2838. * Added ``MessageIndex`` (schema change).
  2839. * Added Async client (thanks to Yuri Baburov).
  2840. * Added support for raw_post_data (thanks to Matthew Schinckel).
  2841. * django-paging and django-indexer no longer need to be in INSTALLED_APPS.
  2842. * Added an index for GroupedMessages.times_seen.
  2843. * The ``score`` column will update atomically in PostgreSQL and MySQL.
  2844. * Added the frequency sort option.
  2845. * Better internationalization support.
  2846. * Fixed a bug with Oracle's date truncation support (changed to hh24).
  2847. * Respect TIME_ZONE by using auto_now_* on DateTimeField's.
  2848. * Tests required Haystack and Celery are now skipped if module is not found.
  2849. v1.6.10
  2850. -------
  2851. * Added JSON support to storage API.
  2852. * Changed default client to use JSON format.
  2853. v1.6.9.1
  2854. --------
  2855. * Fixed an issue with encoding to UTF-8 for Haystack.
  2856. v1.6.9
  2857. ------
  2858. * Added URLs to default search parameters.
  2859. * Fixed a bug to ensure template information is only added if its the correct loader
  2860. v1.6.8.1
  2861. --------
  2862. * Search will now show when unauthenticated (e.g. when SENTRY_PUBLIC is enabled)
  2863. v1.6.8
  2864. ------
  2865. * Search no longer allows filters.
  2866. * Search no longer allows arbitrary queries without Haystack.
  2867. * Added logger, level, site, server, and url to search index.
  2868. * Haystack has been updated for further flexibility.
  2869. * SearchFilter is now unused (you should update your configs).
  2870. v1.6.7
  2871. ------
  2872. * Moved static media into /static/.
  2873. * Added serve_static view to handle static media solely within Sentry.
  2874. * Added SENTRY_STATIC_URL_PREFIX setting.
  2875. v1.6.6
  2876. ------
  2877. * setup.py install will no longer install example_project.
  2878. * Fixed an issue where __sentry__ would be called even if it wasn't a callable.
  2879. * Fixed an issue where transactions would attempt a rollback when not managed while creating
  2880. the sort index.
  2881. v1.8.8
  2882. ------
  2883. * Set a last_message_id so when thrashing is hit there is still a point of reference for tracing.
  2884. * Check correct permissions for Sentry.
  2885. v1.6.4
  2886. ------
  2887. * Fixed a memory leak due to TextNode's being created from leading whitespace in realtime packets.
  2888. v1.6.3
  2889. ------
  2890. * Fixed a critical bug in the Sentry JS namespace preventing it from loading.
  2891. v1.6.2
  2892. ------
  2893. * LogHandler will attempt to pick up the request automatically using SentryLogMiddleware.
  2894. * Updated AJAX CSRF support for Django 1.2.5.
  2895. * request.sentry is now set in any event which has request as part of the parameters.
  2896. v1.6.0
  2897. ------
  2898. * Added message references (uuid's) as message_id in Message
  2899. * Fixed css compatibility issues with TextWidget
  2900. * SearchFilter now allows searching by message reference id
  2901. * Added Sentry404CatchMiddleware
  2902. * Added SentryResponseErrorIdMiddleware
  2903. * The `request` argument can now be passed into any ``create_from_`` method.
  2904. (History beyond 1.6.0 is not present)